All checks were successful
Build and Deploy / build_and_deploy (push) Successful in 1m8s
118 lines
2.0 KiB
CSS
118 lines
2.0 KiB
CSS
/* You think this palette is ugly AF? Too bad. But maybe you can knock some
|
|
sense into me at https://git.mixedup.dev/themixedupstuff/1000fps */
|
|
|
|
html {
|
|
background-color: #c5b2cd;
|
|
padding: 10pt;
|
|
}
|
|
|
|
body {
|
|
margin: auto;
|
|
background-color: rgb(253, 253, 245);
|
|
max-width: 300mm;
|
|
box-shadow: 4pt 4pt 8pt 2pt gray;
|
|
font-family: 'Recursive', 'Franklin Gothic Medium', 'Noto Sans', 'Arial', sans-serif;
|
|
}
|
|
|
|
body > div {
|
|
padding: 30pt;
|
|
}
|
|
|
|
.meta-blocks {
|
|
background-color: #5f517b;
|
|
color: #e8b5ff;
|
|
}
|
|
|
|
.meta-blocks h2 {
|
|
font-weight: 800;
|
|
color: inherit;
|
|
}
|
|
|
|
body header {
|
|
padding: 30pt;
|
|
padding-bottom: 10pt;
|
|
|
|
}
|
|
|
|
body footer {
|
|
padding: 30pt;
|
|
}
|
|
|
|
table {
|
|
margin: auto;
|
|
border-collapse: collapse;
|
|
background-color: #c5b2cd;
|
|
}
|
|
|
|
table, th, td {
|
|
border: 2pt #5f517b solid;
|
|
padding: 4pt
|
|
}
|
|
|
|
a {
|
|
color: darkorange;
|
|
}
|
|
|
|
a:visited {
|
|
color: rgb(221, 122, 0);
|
|
}
|
|
|
|
a:hover, a:focus {
|
|
color: orangered;
|
|
}
|
|
|
|
hr {
|
|
color: #c4b5e1;
|
|
}
|
|
|
|
h2 {
|
|
font-weight: 800;
|
|
color: #5f517b;
|
|
}
|
|
|
|
ol li::marker {
|
|
font-weight: 800;
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
}
|
|
|
|
ul li ul li::marker {
|
|
content: "- ";
|
|
font-weight: 800;
|
|
}
|
|
|
|
span.question-mark {
|
|
border-bottom: 1pt dotted;
|
|
cursor: help;
|
|
}
|
|
|
|
i.question-mark, label.question-mark {
|
|
text-decoration: 1pt dotted underline;
|
|
cursor: help;
|
|
}
|
|
|
|
.vertical-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
input[type="submit"], input[type="button"] {
|
|
margin: auto;
|
|
|
|
border-color: #5f517b;
|
|
border-radius: 2pt;
|
|
background-color: #c4b5e1;
|
|
padding: 4pt;
|
|
transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
|
|
}
|
|
|
|
input[type="submit"]:focus, input[type="submit"]:hover,
|
|
input[type="button"]:focus, input[type="button"]:hover {
|
|
color: #fcfaff;
|
|
background-color: #b5a6d0;
|
|
}
|
|
|
|
input[type="submit"]:active, input[type="button"]:active {
|
|
border-color: #c4b5e1;
|
|
background-color: #5f517b;
|
|
color: whitesmoke;
|
|
} |