website/css/style.css

97 lines
1.5 KiB
CSS
Raw Normal View History

2024-05-19 18:25:14 -03:00
@font-face {
font-family: 'Cozette';
src: url('../assets/fonts/CozetteVector/CozetteVector.ttf') format('truetype');
}
2024-04-18 15:00:25 -03:00
* {
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
2024-05-19 18:25:14 -03:00
font-family: 'Cozette';
font-size: x-large;
2024-04-18 15:00:25 -03:00
}
2024-05-19 18:25:14 -03:00
html, body {
height: 100%;
2024-04-18 15:00:25 -03:00
}
body {
2024-05-19 18:25:14 -03:00
background-color: #202020;
2024-04-18 15:00:25 -03:00
color: white;
}
2024-05-19 18:25:14 -03:00
a {
color: #ad7690;
}
main {
text-align: center;
}
.box {
border: solid 1px #808080;
padding: 15px 30px;
margin: 20px 50px 0px 50px;
}
.links {
2024-04-18 15:00:25 -03:00
text-align: center;
}
2024-05-19 18:25:14 -03:00
.container {
display: flex;
flex-direction: column;
}
.home {
2024-04-18 15:00:25 -03:00
line-height: 50px;
}
2024-05-19 18:25:14 -03:00
.website {
margin: 50px 0px;
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
from {
-webkit-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rotating {
from {
-ms-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-ms-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.rotating {
-webkit-animation: rotating 5s linear infinite;
-moz-animation: rotating 5s linear infinite;
-ms-animation: rotating 5s linear infinite;
-o-animation: rotating 5s linear infinite;
animation: rotating 5s linear infinite;
}
.smile {
text-align: end;
margin: 30px 50px;
color: rgb(142, 195, 63);
}