2023-01-10 15:24:43 +00:00
|
|
|
body {
|
|
|
|
background-size: cover;
|
|
|
|
background-attachment: fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
#__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;
|
|
|
|
}
|
|
|
|
|
2023-10-03 23:35:44 +00:00
|
|
|
.suffix, .prefix {
|
2023-01-10 15:24:43 +00:00
|
|
|
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;
|
|
|
|
}
|