65 lines
821 B
CSS
65 lines
821 B
CSS
:root::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
:root {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Candara;
|
|
src: url("../fonts/Candara/candara-light.ttf");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Carattere;
|
|
src: url("../fonts/Carattere/Carattere-Regular.ttf");
|
|
}
|
|
|
|
body {
|
|
height: 100vh;
|
|
}
|
|
|
|
header,
|
|
footer {
|
|
font-family: Candara;
|
|
background-image: linear-gradient(to bottom, #3C2C72, rgb(91, 79, 161));
|
|
color: white;
|
|
}
|
|
|
|
.navbar-brand {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.navbar-brand:hover {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.navbar-brand img {
|
|
height: 40px;
|
|
}
|
|
|
|
.nav-link {
|
|
color: white;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: rgb(255, 144, 125);
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
a:hover {
|
|
cursor: pointer;
|
|
color: black;
|
|
}
|
|
|
|
footer {
|
|
background-color: #3C2C72;
|
|
color: white;
|
|
height: var(--footer-height);
|
|
} |