hbbs.decentral1.se/hbbs/static/css/styles.css

51 lines
695 B
CSS
Raw Normal View History

2020-04-04 21:09:47 +02:00
@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;
}
2020-04-04 22:04:12 +02:00
@media (max-width: 768px) {
#hbbs-logo-invisible {
display: none !important;
}
}
2020-04-04 21:34:32 +02:00
ul {
padding-left: 0;
}
ul li {
list-style: none;
}
2020-04-04 22:04:12 +02:00
#hbbs-logo,
#hbbs-logo-invisible {
2020-04-04 21:34:32 +02:00
width: 90%;
}
2020-04-04 21:09:47 +02:00
html * {
border: 1px black solid;
}