-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
291704e
commit 43e34e5
Showing
1 changed file
with
111 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,111 @@ | ||
:root{ | ||
--clrblue--:#1D7ff1; | ||
} | ||
*{ | ||
margin: 0px; | ||
padding: 0px; | ||
box-sizing: border-box; | ||
} | ||
.container_adulto1{ | ||
padding: 10px 300px 0px 300px; | ||
} | ||
.titule_adulto1{ | ||
color: var(--clrblue--); | ||
font-size: 25px; | ||
font-style: start; | ||
font-weight: 700; | ||
line-height: normal; | ||
text-transform: uppercase; | ||
display: inline block; | ||
margin-bottom: 10px; | ||
} | ||
.subtitule_adulto1{ | ||
color: #000; | ||
font-family: Josefin Sans; | ||
font-size: 20px; | ||
font-style: justify; | ||
font-weight: 500; | ||
line-height: normal; | ||
display: inline; | ||
position: relative; | ||
right: 25px; | ||
} | ||
.phrase_adulto1{ | ||
color: #757272; | ||
font-family: Josefin Sans; | ||
font-size: 17px; | ||
text-align: justify; | ||
font-weight: 200; | ||
display: inline block; | ||
margin: 0px 0px 20px 0px; | ||
} | ||
.checkbox_adulto1{ | ||
width: 20px; | ||
height: 20px; | ||
size: 100px; | ||
display: inline block; | ||
position: relative; | ||
right: 70px; | ||
top: 7px; | ||
} | ||
.checkbox_adulto1:hover{ | ||
cursor: pointer; | ||
} | ||
.btn_adulto1_voltar, .btn_adulto1_continuar{ | ||
box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.25); | ||
background-color: var(--clrblue--); | ||
border: none; | ||
color: white; | ||
border-radius: 5px; | ||
padding: 10px; | ||
bottom: 20px; | ||
position: relative; | ||
} | ||
.btn_adulto1_continuar{ | ||
|
||
left: 635px; | ||
} | ||
.btn_adulto1_continuar:hover, .btn_adulto1_voltar:hover{ | ||
background-color: #023D83; | ||
box-shadow: none; | ||
cursor: pointer; | ||
} | ||
:root{ | ||
--clrblue--:#1D7ff1; | ||
} | ||
*{ | ||
margin: 0px; | ||
padding: 0px; | ||
box-sizing: border-box; | ||
} | ||
.container_adulto1{ | ||
padding-top: 22px; | ||
margin: auto; | ||
} | ||
.titule_adulto1{ | ||
color: var(--clrblue--); | ||
/* font-style: start; | ||
font-weight: 700; | ||
line-height: normal; | ||
text-transform: uppercase; | ||
display: inline block; | ||
margin-bottom: 10px; */ | ||
position: relative; | ||
display: block; | ||
color: var(--color3); | ||
font-size: 22px; | ||
font-weight: bold; | ||
padding: 2px 0; | ||
margin-left: 10px; | ||
margin-bottom: 6px; | ||
} | ||
h2{ | ||
margin: 30px 0 20px 0; | ||
} | ||
.subtitule_adulto1{ | ||
color: #000; | ||
font-family: Josefin Sans; | ||
font-size: 20px; | ||
font-style: justify; | ||
font-weight: 500; | ||
line-height: normal; | ||
display: inline; | ||
position: relative; | ||
right: 25px; | ||
} | ||
.phrase_adulto1{ | ||
color: #757272; | ||
font-family: Josefin Sans; | ||
font-size: 17px; | ||
text-align: justify; | ||
font-weight: 200; | ||
display: inline block; | ||
margin: 0px 0px 20px 0px; | ||
} | ||
.checkbox_adulto1{ | ||
width: 20px; | ||
height: 20px; | ||
size: 100px; | ||
display: inline block; | ||
position: relative; | ||
right: 70px; | ||
top: 7px; | ||
} | ||
.checkbox_adulto1:hover{ | ||
cursor: pointer; | ||
} | ||
.btn_adulto1_voltar, .btn_adulto1_continuar{ | ||
box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.25); | ||
background-color: var(--clrblue--); | ||
border: none; | ||
color: white; | ||
border-radius: 5px; | ||
padding: 10px; | ||
bottom: 20px; | ||
position: relative; | ||
} | ||
.btn_adulto1_continuar:hover, .btn_adulto1_voltar:hover{ | ||
background-color: #023D83; | ||
box-shadow: none; | ||
cursor: pointer; | ||
} | ||
#box-button{ | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
width: 100%; | ||
} | ||
|
||
@media (max-width: 2560px) { | ||
.container_adulto1{ | ||
width: 40%; | ||
} | ||
} | ||
@media (max-width: 1024px) { | ||
.container_adulto1{ | ||
width: 70%; | ||
} | ||
} | ||
@media (max-width: 425px) { | ||
.container_adulto1{ | ||
width: 80%; | ||
} | ||
input[type=checkbox]{ | ||
margin-left: 50px; | ||
margin-bottom: 10px; | ||
|
||
} | ||
.subtitule_adulto1{ | ||
font-size: 16px; | ||
margin-left: -30px; | ||
hyphens: auto; | ||
} | ||
} |