51 lines
695 B
CSS
51 lines
695 B
CSS
@font-face {
|
|
font-family: "Compagnon Roman";
|
|
src: url("fonts/Compagnon-Roman.woff") format("woff");
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
}
|
|
|
|
@keyframes gradient {
|
|
0% {
|
|
background-color: pink;
|
|
}
|
|
25% {
|
|
background-color: lightgreen;
|
|
}
|
|
50% {
|
|
background-color: lightblue;
|
|
}
|
|
100% {
|
|
background-color: cornsilk;
|
|
}
|
|
}
|
|
|
|
body {
|
|
font-family: "Compagnon Roman", serif;
|
|
animation-name: gradient;
|
|
animation-duration: 120s;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
#hbbs-logo-invisible {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
padding-left: 0;
|
|
}
|
|
|
|
ul li {
|
|
list-style: none;
|
|
}
|
|
|
|
#hbbs-logo,
|
|
#hbbs-logo-invisible {
|
|
width: 90%;
|
|
}
|
|
|
|
html * {
|
|
border: 1px black solid;
|
|
}
|