174 lines
2.7 KiB
CSS
174 lines
2.7 KiB
CSS
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
background-color: #0f1724;
|
|
}
|
|
|
|
#main {
|
|
background-color: #0b1220;
|
|
width: 100%;
|
|
margin: 0.5rem 3rem;
|
|
border-radius: 0.8rem;
|
|
height: 35rem;
|
|
}
|
|
|
|
|
|
* {
|
|
font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
|
|
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 15px 2rem;
|
|
|
|
|
|
}
|
|
|
|
.header h1, small {
|
|
|
|
color: white;
|
|
}
|
|
small, h1 {
|
|
margin: 0;
|
|
}
|
|
#Icon {
|
|
display: flex;
|
|
border-radius: 0.4rem;
|
|
background-color: aqua;
|
|
width: 3.5rem;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
nav a {
|
|
text-decoration: none;
|
|
color: #94a3b8;
|
|
}
|
|
nav {
|
|
display: flex;
|
|
gap: 15px;
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
.main-header {
|
|
gap: 10px;
|
|
display: flex;
|
|
|
|
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
margin: 30px 2rem;
|
|
color: white;
|
|
|
|
}
|
|
|
|
#btncontato {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 50px;
|
|
background-color: aqua;
|
|
border-style: none;
|
|
border-radius: 10px;
|
|
font-weight: bold;
|
|
font-size: medium;
|
|
padding: 20px;
|
|
|
|
}
|
|
#btnsaber {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 50px;
|
|
background: transparent;
|
|
color: #94a3b8;
|
|
font-weight: bold;
|
|
border-radius: 10px;
|
|
font-size: medium;
|
|
border-color: #94a3b8;
|
|
border-width: 0.1px;
|
|
padding: 20px;
|
|
border:1px solid rgba(255,255,255,0.04);
|
|
|
|
}
|
|
.text-muted {
|
|
color: #94a3b8;
|
|
}
|
|
|
|
.text-buttons {
|
|
display: flex;
|
|
gap: 30px;
|
|
}
|
|
|
|
.cards {
|
|
|
|
background-color: rgba(255,255,255,0.04);
|
|
padding: 3px 20px 5px;
|
|
height: 150px;
|
|
width: 220px;
|
|
margin: 30px 0;
|
|
border-radius: 15px;
|
|
|
|
}
|
|
.secrets_cards {
|
|
display: flex;
|
|
gap: 30px;
|
|
}
|
|
|
|
.forms-menu {
|
|
background-color: rgba(255,255,255,0.04);
|
|
padding: 2px 15px 5px;
|
|
margin-left: 10px;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.container-text {
|
|
width: 64%;
|
|
}
|
|
|
|
input {
|
|
margin-top: 7px;
|
|
background: transparent ;
|
|
border-radius: 6px;
|
|
border:1px solid rgba(255,255,255,0.04);
|
|
height: 40px;
|
|
color: white;
|
|
width: 100%;
|
|
padding-left: 7px;
|
|
}
|
|
textarea {
|
|
margin-top: 7px;
|
|
background: transparent ;
|
|
border-radius: 6px;
|
|
padding-left: 7px;
|
|
border:1px solid rgba(255,255,255,0.04);
|
|
height: 50px;
|
|
color: white;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
|
|
#submitform {
|
|
background-color: aqua;
|
|
height: 40px;
|
|
width: 90px;
|
|
border-radius: 15px;
|
|
font-weight: bold;
|
|
border-style: none;
|
|
}
|
|
|
|
#resetform {
|
|
border:1px solid rgba(255,255,255,0.04);
|
|
border-radius: 6px;
|
|
height: 40px;
|
|
width: 90px;
|
|
background: transparent ;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.buttons-forms {
|
|
margin-top: 5px;
|
|
} |