99 lines
1.3 KiB
CSS
99 lines
1.3 KiB
CSS
/* CSS */
|
|
:root {
|
|
font-family: Inter, sans-serif;
|
|
/* fix for Chrome */
|
|
font-feature-settings: 'liga' 1, 'calt' 1;
|
|
}
|
|
|
|
@supports (font-variation-settings: normal) {
|
|
:root {
|
|
font-family: InterVariable, sans-serif;
|
|
}
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #111;
|
|
color: #CCC;
|
|
tab-size: 4;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.main-container {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 95%;
|
|
max-width: 1280px;
|
|
padding: 1em 0 1em 0;
|
|
}
|
|
|
|
.content {
|
|
background-color: #222;
|
|
border-radius: 1em;
|
|
padding: 1em;
|
|
}
|
|
|
|
h1,
|
|
h2 {
|
|
color: #40C3C3
|
|
}
|
|
|
|
h2 {
|
|
margin-bottom: 0.25em;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
font-style: italic;
|
|
/*font-weight: bold; */
|
|
}
|
|
|
|
a:hover {
|
|
color: #E8B;
|
|
}
|
|
|
|
.card {
|
|
border-radius: 1em;
|
|
padding: 0.75em;
|
|
margin: 0.25em;
|
|
background-color: #333;
|
|
min-width: 250px;
|
|
}
|
|
|
|
.card li {
|
|
padding-bottom: 0.2em;
|
|
}
|
|
|
|
li {
|
|
padding-bottom: 0.5em;
|
|
}
|
|
|
|
ul {
|
|
margin: 0.5em 0 0 0;
|
|
}
|
|
|
|
.input_label {
|
|
color: #8EB;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.column {
|
|
padding: 0.5em;
|
|
border-color: #E8B;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
width: 95%;
|
|
} |