You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

207 lines
3.3 KiB

@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&family=Poppins:wght@700&display=swap');
/*Variaveis*/
:root{
--primary-color: #101026;
--secundary-color: #1d1d2e;
--text-color: #fff;
--border-color: #fff;
--btn-primary: #fff;
--btn-hover-color: #1d1d2e;
--fira-code: 'Fira Code', monospace;
--poppins: 'Poppins', sans-serif;
}
/*Reset*/
*{
padding: 0;
margin: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
}
img{
width: 100%;
}
body{
background-color: var(--secundary-color);
color: var(--text-color);
height: 100vh;
font-family: var(--fira-code)
}
::selection{
background-color: var(--text-color);
color: var(--primary-color)
}
/*Classes auxiliares*/
.container{
width: 100%;
height: 100%;
max-width: 1200px;
margin: 0 auto;
}
.row{
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
/*Página de extinções*/
.table-animais{
width: 100%;
}
.table-animais > thead{
background-color: #fff;
color: #101026;
}
.table-animais > thead > tr > th{
border: 1px solid var(--pramary-color);
padding: 2px 8px;
}
.table-animais > tbody > tr > td{
border: 1px solid #fff;
padding: 2px 8px;
}
/*página inicial*/
main{
height: 80%;
}
/*Header*/
.header{
height:15%;
}
.header > .container > .row{
justify-content: space-between;
}
.header__logo{
width: 25%;
}
.header__list{
width: 50%;
display: flex;
justify-content: flex-end;
align-items: center;
column-gap: 10px;
}
.list__item{
padding: 5px 20px;
background-color: var(--btn-primary);
border-radius: 4px;
cursor: pointer;
transition: all 100ms ease-in-out;
}
.list__item--link{
color: #1d1d2e;
transition: all 100ms ease-in-out;
}
.list__item:hover{
transform: translateY(-2px);
background-color: var(--btn-hover-color);
border: 1px solid var(--border-color);
}
.list__item:hover > .list__item--link{
color: var(--text-color);
}
/*Hero*/
.hero{
height: 100%
}
.hero > .container > .row{
justify-content: space-between;
}
.hero__content{
width: 40%;
}
.hero__content h2{
font-family: var(--poppins);
font-size: 45px;
line-height: 45px;
margin-bottom: 10px;
}
.hero__form{
width: 40%;
}
.newsletter{
width: 100%;
display: flex;
justify-content: space-between;
align-items: stretch;
margin-top: 10px;
}
.input-group{
width: 79%;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
}
.input-group input{
width: 100%;
height: 100%;
padding-left: 5px;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.input-group input::placeholder{
color: #101026;
}
.input-group input:focus{
outline: none;
}
.form__btn{
width: 20%;
background-color: var(--btn-primary);
border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
cursor: pointer;
}
.form__btn:hover{
background-color: var(--btn-hover-color);
border: 1px solid var(--border-color);
color: var(--text-color);
}
/*Página de boas vindas*/
.boas-vindas{
height: 100%
}
.boas-vindas > .container > .row > .content{
width: 60%;
text-align: center;
}
.boas-vindas > .container > .row > .content h2{
font-size: 42px;
}
/*footer*/
.footer{
height:5%;
display: flex;
justify-content: center;
align-items: center;
}
.footer__copy{
font-size: 12px;
}