|
|
|
@use "sass:color";
|
|
|
|
|
|
|
|
$bg: #FFFDF3;
|
|
|
|
$bg0: #{color.adjust($bg, $lightness: -5%, $hue: -2%, $saturation: -50%)};
|
|
|
|
$fg: #011627;
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--bg: #{$bg};
|
|
|
|
--fg: #{$fg};
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: 'Nunito', 'K Gothic', sans-serif;
|
|
|
|
margin: 0;
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 2em;
|
|
|
|
background: $bg0;
|
|
|
|
color: var(--fg);
|
|
|
|
font-size: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content, dialog {
|
|
|
|
background: var(--bg);
|
|
|
|
box-shadow: 0 0 16px rgba(0, 0, 0, 0.125);
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=number] {
|
|
|
|
background: var(--bg);
|
|
|
|
color: var(--fg);
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
font: inherit;
|
|
|
|
text-align: center;
|
|
|
|
width: 4em;
|
|
|
|
appearance: textfield;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
& > div {
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
--bg: #{$fg};
|
|
|
|
--fg: #{$bg};
|
|
|
|
background: var(--bg);
|
|
|
|
color: var(--fg);
|
|
|
|
box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.125);
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.dropdown {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
.dropdown-content {
|
|
|
|
flex-direction: column;
|
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
|
|
|
right: 0;
|
|
|
|
min-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:hover) .dropdown-content {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& > *, .dropdown .link {
|
|
|
|
padding: 0.45em;
|
|
|
|
|
|
|
|
& > * {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a, .link {
|
|
|
|
color: var(--fg);
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > .right {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
height: 32px;
|
|
|
|
border-radius: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown:hover > .link, nav > .link:hover {
|
|
|
|
border: none;
|
|
|
|
--fg: #{$fg};
|
|
|
|
--bg: #{$bg};
|
|
|
|
background: var(--bg);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.svg-inline {
|
|
|
|
height: 1em;
|
|
|
|
vertical-align: -0.125em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
|
|
border-bottom: 2px solid;
|
|
|
|
}
|
|
|
|
&.noun {
|
|
|
|
color: #a6e3a1;
|
|
|
|
}
|
|
|
|
&.adjective {
|
|
|
|
color: #f38ba8;
|
|
|
|
}
|
|
|
|
&.verb {
|
|
|
|
color: #87b0f9;
|
|
|
|
}
|
|
|
|
&.adverb {
|
|
|
|
color: #94e2d5;
|
|
|
|
}
|
|
|
|
&.particle {
|
|
|
|
color: #f9e2af;
|
|
|
|
}
|
|
|
|
&.phrase {
|
|
|
|
color: #fab387;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.servers {
|
|
|
|
display: flex;
|
|
|
|
gap: 0.5em;
|
|
|
|
& > :not(.recommended) {
|
|
|
|
// To match the missing recommended label
|
|
|
|
padding-bottom: 1em;
|
|
|
|
}
|
|
|
|
& > * {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.5em;
|
|
|
|
border: 2px solid;
|
|
|
|
border-radius: 0.5em;
|
|
|
|
padding: 0.5em;
|
|
|
|
width: 100%;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
img {
|
|
|
|
width: 96px;
|
|
|
|
border-radius: 100%;
|
|
|
|
border: 2px solid;
|
|
|
|
}
|
|
|
|
.name {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
background: seagreen;
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
padding: 0.25em 0.5em 0.25em 0.5em;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.recommended {
|
|
|
|
border-color: mediumseagreen;
|
|
|
|
.label-wrapper {
|
|
|
|
height: 0;
|
|
|
|
.label {
|
|
|
|
position: relative;
|
|
|
|
width: fit-content;
|
|
|
|
border: auto;
|
|
|
|
bottom: 0px;
|
|
|
|
background: mediumseagreen;
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 0.75em;
|
|
|
|
text-transform: uppercase;
|
|
|
|
padding: 0 0.5em 0 0.5em;
|
|
|
|
border-radius: 2px;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|