Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
milhoverde.ml
96 changes: 96 additions & 0 deletions footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
.main-footer {
display: flex;
flex-direction: column;
align-items: center;
padding: 80px 0 24px;
}

.main-footer h1 {
font-size: 1.75rem;
font-weight: 500;
line-height: 2rem;
margin-bottom: 16px;
}

.main-footer > p {
font-size: 1.125rem;
line-height: 1.5rem;
}

.btn-create-nanny {
color: #fff;
padding: 12px 21px;
background: #5E20A4;
border-radius: 5%;
border: 0;
align-items: center;
display: flex;
gap: 21px;
margin: 32px 0 24px;
width: 304px;
}

.btn-create-nanny div {
align-items: flex-start;
display: flex;
flex-direction: column;
}

.title-btn {
font-size: 1rem;
font-weight: 1.75rem;
}

.desc-btn {
font-size: 0.75rem;
font-weight: 1rem;
}

.nanny-shares {
font-size: 1rem;
margin-bottom: 66px;
color: #5E20A4;
}

.nav-footer {
align-items: center;
display: flex;
justify-content: space-between;
margin: 58px 128px;
max-width: 1440px;
}

.logo-hapu {
width: 14vw;
}

.logo-gray {
width: 4.4vw;
}

.nav-menu-footer {
display: flex;
gap: 30px;
justify-content: center;
}

.area-nav {
display: flex;
gap: 30px;
justify-content: center;
}

.nav-footer .link-nav {
color: #3d3d3d;
font-size: 0.9rem;
line-height: 1.25rem;
text-decoration: none;
}

.copyrigth {
font-size: 0.75rem;
line-height: 1rem;
opacity: 0.6;
padding: 32px 0;
text-align: center;
}
132 changes: 132 additions & 0 deletions hero.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
* {
box-sizing: border-box;
font-family: Inter, sans-serif;
margin: 0;
padding: 0;
}
a, a:visited {
font-weight: 500;
transition: 0.15s;
text-underline-position: under;
}

body {
background-color: #f2f2f2;
}

header {
background-blend-mode: overlay;
background-position: center;
background: url("resources/banner_image.png"),
linear-gradient(
314.72deg,
#c86dd7 -1.5%,
#7e49c3 39.43%,
#5912ac 86.02%
);
background-size: cover;
background-repeat: no-repeat;
height: 616px;
display: flex;
flex-direction: column;
font-size: 1rem;
font-weight: 500;
left: 0;
margin: auto;
max-width: 1440px;
right: 0;
}

.nav-header {
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
margin: 0 20px;
}

.nav-menu {
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
}

.logo {
height: 64px;
}

.nav-header a {
color: #fff;
text-decoration: none;
font-size: 0.875rem;
line-height: 1.25rem;
}

.nav-sign {
display: flex;
align-items: center;
gap: 23px;
}
nav {
display: flex;
gap: 32px;
}

.nav-sign button {
border: 1px;
border-radius: 5%;
color: #fff;
padding: 12px 21px;
background: #00C88C;
}

.hero {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
justify-items: center;
color: #fff;
gap: 15vw;
margin-left: 8vw;
height: 100%;
width: 80vw;
}

.hero article {
width: 38vw;
}
.hero article h1 {
font-size: 2.5rem;
font-weight: 500;
letter-spacing: -1px;
line-height: 3rem;
margin-bottom: 24px;
}

.hero article p {
font-size: 1.125rem;
line-height: 1.5rem;
margin-bottom: 24px;
}

.hapu-action, .hapu-action > a {
align-items: center;
display: flex;
gap: 16px;
color: #fff;
}

.btn-play {
align-items: center;
border-radius: 100%;
border: 0;
display: flex;
cursor: pointer;

}

.hero > img {
width: 25vw;
}

Loading