1
Fork 0
mirror of https://github.com/Steffo99/distributed-arcade-viewer.git synced 2024-10-16 14:37:30 +00:00
distributed-arcade-viewer/styles/globals.css

74 lines
1 KiB
CSS
Raw Normal View History

2023-01-10 15:24:43 +00:00
body {
2023-01-12 18:03:26 +00:00
background-image: url(/pineapple-surf.png);
2023-01-10 15:24:43 +00:00
background-size: cover;
background-attachment: fixed;
}
2023-01-12 18:03:26 +00:00
footer {
border-radius: 4px;
padding: 2px 2px 0 2px;
background-color: white;
color: black;
}
2023-01-10 15:24:43 +00:00
#__next {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
#host {
font-size: small;
}
#board {
font-family: monospace;
}
.rank {
text-align: right;
font-family: monospace;
}
.score {
text-align: right;
font-family: monospace;
}
.suffix {
opacity: 50%;
}
.gold {
--bhsl-current-hue: 36deg;
--bhsl-current-saturation: 100%;
--bhsl-current-lightness: 60%;
background-color: hsla(36deg 100% 60% / 0.1);
font-size: xx-large;
}
.silver {
--bhsl-current-hue: 205deg;
--bhsl-current-saturation: 20%;
--bhsl-current-lightness: 83%;
background-color: hsla(205deg 20% 83% / 0.1);
font-size: x-large;
}
.bronze {
--bhsl-current-hue: 24deg;
--bhsl-current-saturation: 100%;
--bhsl-current-lightness: 62%;
background-color: hsla(24deg 100% 62% / 0.1);
font-size: large;
}