2025-03-27 11:47:23 +02:00

48 lines
689 B
CSS

html {
background: url("assets/background.jpg");
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
html * {
color: white;
font-family: Roboto;
}
span {
font-size: 20px;
}
.navbar {
background-color: #333;
overflow: hidden;
border-radius: 15px;
box-shadow: 10px 10px 5px rgba(0,0,0,0.5);
margin-bottom: 50px;
}
.navbar a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
background-color: #6687ff;
color: black;
}
.navbar a.active {
background-color: #2250f5;
color: white;
}
@-webkit-keyframes fadeIn {
from {opacity: 0;}
to {opacity: 1;}
}