ltqf/assets/css/style.css
2024-01-05 17:21:51 +01:00

60 lines
901 B
CSS

h1{
font-family: 'Advent Pro', sans-serif;
text-transform: uppercase;
font-size: 3rem;
font-weight: 700;
color: black;
}
h2{
font-family: 'Advent Pro', sans-serif;
}
p {
padding-bottom: 1rem !important;
}
.has-background-black, .is-black{
background-color: #000 !important;
}
a.has-text-white:hover {
color: #000 !important;
}
.menu-list li a:hover {
color: #000 !important;
}
.subtitles {
font-family: 'Advent Pro', sans-serif;
color: black;
font-size: 2rem;
font-weight: 500;
}
@media screen and (orientation: landscape) {
.navbar {
display: none;
}
.menu-column {
display: flex;
}
#main-col {
width: 80%;
}
}
@media screen and (orientation: portrait) {
.navbar {
display: flex;
position: fixed;
bottom: 0%;
width: 100%;
}
.menu-column {
display: none;
}
#main-col {
width: 100%;
}
}