83 lines
1.1 KiB
CSS
83 lines
1.1 KiB
CSS
|
body {
|
||
|
margin: 0;
|
||
|
overflow-x: hidden;
|
||
|
}
|
||
|
|
||
|
#zodiac {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
position: absolute;
|
||
|
}
|
||
|
|
||
|
#container {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
z-index: 1;
|
||
|
animation: fadeIn 1s forwards ease;
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
background: white;
|
||
|
padding: 50px;
|
||
|
text-align: center;
|
||
|
border-radius: 50px;
|
||
|
z-index: 1;
|
||
|
}
|
||
|
|
||
|
main p:nth-child(1) {
|
||
|
font-size: 50px;
|
||
|
margin: 0;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
font-family: sans-serif;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
border: none;
|
||
|
border-bottom: solid #99AAB5;
|
||
|
background: none;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
border: solid #99AAB5 3px;
|
||
|
border-radius: 10px;
|
||
|
font-style: italic;
|
||
|
padding: 10px;
|
||
|
background: none;
|
||
|
}
|
||
|
|
||
|
button:active, input:focus, footer a:hover {
|
||
|
border-color: lightgrey;
|
||
|
transition-duration: 0.5s;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
position: absolute;
|
||
|
bottom: 5px;
|
||
|
right: 5px;
|
||
|
}
|
||
|
|
||
|
footer p {
|
||
|
color: grey;
|
||
|
margin: 0;
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
footer a {
|
||
|
color: inherit;
|
||
|
border-bottom: solid grey 1px;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.mail-button::before {
|
||
|
content: "\f0e0";
|
||
|
}
|
||
|
|
||
|
.mail-button:hover::before {
|
||
|
content: "\f2b6";
|
||
|
}
|