Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
carrlateixxeira committed Oct 29, 2023
0 parents commit 7b260f8
Show file tree
Hide file tree
Showing 11 changed files with 1,482 additions and 0 deletions.
185 changes: 185 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,185 @@
* {
box-sizing: border-box;
font-family: "Montserrat", sans-serif;
margin: 0;
padding: 0;
}

body {
color: #263138;
}

header {
background-color: #ff9a6c;
display: flex;
align-items: center;
justify-content: space-between;
padding: 24px 80px 24px 80px;
}

header a {
color: #ffffff;
font-weight: 600;
padding: 32px;
text-decoration: none;
}

#inicio {
display: flex;
align-items: center;
gap: 32px;
padding: 24px 80px 128px 80px;
}

h1,
h2 {
font-weight: 600;
font-size: 32px;
margin-bottom: 32px;
}

.paragrafo {
line-height: 150%;
margin-bottom: 32px;
}

.botao {
background-color: #ff725e;
color: #ffffff;
text-decoration: none;
padding: 16px 32px;
border-radius: 8px;
}

.botao-transparente {
background-color: transparent;
color: #ff725e;
padding: 16px 32px;
text-underline-offset: 4px;
}

.absolute {
position: absolute;
bottom: 0px;
left: 0px;
width: 100%;
z-index: -10;
}

#clinica {
display: flex;
align-items: center;
gap: 64px;
padding: 64px 80px;
}

#clinica li {
margin-bottom: 16px;
margin-left: 32px;
}

.detalhe {
background-color: rgba(255, 152, 108, 0.25);
padding: 1px;
}

#farmacia {
padding: 64px 80px;
text-align: center;
}

#farmacia img {
margin: 64px auto;
}

#farmacia .paragrafo {
max-width: 950px;
margin: 0 auto;
}

#duvidas {
display: flex;
align-items: center;
gap: 64px;
padding: 64px 80px;
}

.duvida {
position: relative;
}
.duvida h3 {
border: 2px solid #ff725e;
border-radius: 8px;
cursor: pointer;
padding: 24px;
font-size: 18px;
}

.duvida img {
position: absolute;
top: 32px;
right: 24px;
}

.duvida .paragrafo {
border-right: 1px solid #ff725e;
border-bottom: 1px solid #ff725e;
border-left: 1px solid #ff725e;
border-radius: 0 0 8px 8px;
margin-top: -8px;
padding: 0 24px;
height: 0;
opacity: 0;
overflow: hidden;
transition: 0.2s;
}

.duvida.ativa .paragrafo {
height: fit-content;
opacity: 1;
padding: 24px;
}

footer {
background-color: rgba(255, 152, 108, 0.25);
display: flex;
justify-content: space-evenly;
gap: 80px;
padding: 64px 80px;
}

footer img,
footer .titulo {
display: block;
font-weight: 600;
margin-bottom: 24px;
}

footer nav a {
color: #263138;
display: block;
margin-bottom: 16px;
text-decoration: none;
}

footer p {
margin-bottom: 16px;
max-width: 350px;
}

footer p a {
color: #263138;
text-decoration: none;
}

#copyright {
background-color: #263138;
color: #ffffff;
text-align: center;
padding: 24px;
}

#copyright a {
color: #ff9a6c;
text-decoration: none;
}
3 changes: 3 additions & 0 deletions img/arrow-down.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
158 changes: 158 additions & 0 deletions img/clinic-img.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
171 changes: 171 additions & 0 deletions img/faq-img.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions img/logo-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions img/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions img/shape.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7b260f8

Please sign in to comment.