Skip to content

Commit

Permalink
Merge pull request #170 from markalbrand56/jime
Browse files Browse the repository at this point in the history
update
  • Loading branch information
jazurdia authored Sep 26, 2023
2 parents 396ae07 + c81f428 commit 904a9f1
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 35 deletions.
7 changes: 1 addition & 6 deletions uniEmpleos/src/components/Button/Button.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
padding: 10px;
font-size: 14px;
border: 2px solid #ccc;
border-radius: 12px;
border-radius: 10px;
background-color: #fff;
color: #000;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
Expand All @@ -19,9 +19,4 @@
border-color: #a08ae5;
box-shadow: 0 0 0 3px rgba(160, 138, 229, 0.25);
outline: none;
}

.buttonContainer button:hover {
border-color: #a08ae5;
outline: none;
}
9 changes: 0 additions & 9 deletions uniEmpleos/src/components/LottieAnimation/LottieAnimation.jsx

This file was deleted.

1 change: 0 additions & 1 deletion uniEmpleos/src/components/LottieAnimation/student.json

This file was deleted.

4 changes: 1 addition & 3 deletions uniEmpleos/src/pages/Home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import styles from "./Home.module.css"
import Infocontainer from "../../components/Infocontainer/Infocontainer"
import Button from "../../components/Button/Button"
import { navigate } from "../../store"
import LottieAnimation from "../../components/LottieAnimation/LottieAnimation"

const Home = () => {
const handleNav = (path) => {
Expand Down Expand Up @@ -41,8 +40,7 @@ const Home = () => {
</div>
</div>
<div className={styles.image}>
<h1>UniEmpleos</h1>
<LottieAnimation />
<img src="/images/Uniempleos.png" alt="Uniempleos" />
</div>
<div className={styles.info}>
<Infocontainer
Expand Down
51 changes: 35 additions & 16 deletions uniEmpleos/src/pages/Home/Home.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
display: flex;
flex-direction: column;
width: 100%;
background-color: #fff;
background-color: #f5f5f5;
}

.homeContent{
Expand All @@ -27,24 +27,13 @@
margin-right: 20px;
}

.image h1{
font-size: 80px;
font-family: 'Poppins', sans-serif;
font-weight: 700;
color: #a08ae5;
margin: 20px 0;
}

.image{
width: 100%;
}

.topcontent{
display: flex;
gap: 20px;
background-color: #fff;
align-items: center;
width: 100%;
border-bottom: 2px solid #ccc;
}

.image img{
Expand All @@ -60,6 +49,28 @@
background-color: transparent;
}

.wave{
width: 100%;
height: 180px;
}

.wave img {
width: 100%;
height: 100%;
object-fit: cover;
}

.waveup{
width: 100%;
height: 300px;
}

.waveup img {
width: 100%;
height: 100%;
object-fit: cover;
}

.infobutton{
width: 800px;
}
Expand All @@ -84,7 +95,7 @@ span.text{
display: flex;
flex-direction: column;
width: 100%;
background-color: #fff;
background-color: #f5f5f5;
}

.button{
Expand All @@ -100,8 +111,16 @@ span.text{
flex-direction: column;
}

.image h1{
font-size: 40px;
.wave, .waveup{
height: 150px;

.infobutton{
width: 100%;
}

.button{
flex-direction: column;
align-items: center;
}
}
}

0 comments on commit 904a9f1

Please sign in to comment.