2020-08-20 01:48:01 +01:00
|
|
|
/* link underlines tend to make hypertext less readable,
|
|
|
|
because underlines obscure the shapes of the lower halves of words */
|
2021-07-20 19:30:49 +01:00
|
|
|
:link, :visited {
|
|
|
|
text-decoration: none
|
|
|
|
}
|
2020-08-20 01:48:01 +01:00
|
|
|
|
|
|
|
/* no list-markers by default, since lists are used more often for semantics */
|
2021-07-20 19:30:49 +01:00
|
|
|
ul, ol {
|
|
|
|
list-style: none
|
|
|
|
}
|
2020-08-20 01:48:01 +01:00
|
|
|
|
|
|
|
/* avoid browser default inconsistent heading font-sizes */
|
|
|
|
/* and pre/code too */
|
2021-07-20 19:30:49 +01:00
|
|
|
h1, h2, h3, h4, h5, h6, pre, code {
|
2021-08-05 14:46:17 +01:00
|
|
|
font-size: 1rem;
|
2021-07-20 19:30:49 +01:00
|
|
|
}
|
2020-08-20 01:48:01 +01:00
|
|
|
|
|
|
|
/* remove the inconsistent (among browsers) default ul,ol padding or margin */
|
2021-08-05 14:46:17 +01:00
|
|
|
/* the default spacing on headings does not match nor align with
|
2020-08-20 01:48:01 +01:00
|
|
|
normal interline spacing at all, so let's get rid of it. */
|
|
|
|
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
|
|
|
|
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
|
|
|
|
/* nonetheless strip their margin and padding as well */
|
2021-07-20 19:30:49 +01:00
|
|
|
ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, p, blockquote, fieldset, input, textarea {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
}
|
2020-08-20 01:48:01 +01:00
|
|
|
|
|
|
|
/* whoever thought blue linked image borders were a good idea? */
|
2021-07-20 19:30:49 +01:00
|
|
|
a img, :link img, :visited img {
|
2021-08-05 14:46:17 +01:00
|
|
|
border: none;
|
2021-07-20 19:30:49 +01:00
|
|
|
}
|
2020-08-20 01:48:01 +01:00
|
|
|
|
|
|
|
/* de-italicize address */
|
2021-07-20 19:30:49 +01:00
|
|
|
address {
|
2021-08-05 14:46:17 +01:00
|
|
|
font-style: normal;
|
2021-07-20 19:30:49 +01:00
|
|
|
}
|
2020-08-20 01:48:01 +01:00
|
|
|
|
2020-08-29 06:20:02 +01:00
|
|
|
/* firefox focus outline */
|
2021-07-20 19:30:49 +01:00
|
|
|
:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
2021-07-20 15:51:32 +01:00
|
|
|
|
2021-07-27 13:51:49 +01:00
|
|
|
form {
|
|
|
|
all: unset;
|
|
|
|
}
|
|
|
|
|
2021-07-20 15:51:32 +01:00
|
|
|
/* details element arrow */
|
|
|
|
details > summary {
|
|
|
|
list-style: none;
|
|
|
|
}
|
2021-07-20 19:30:49 +01:00
|
|
|
|
2021-07-20 15:51:32 +01:00
|
|
|
details > summary::-webkit-details-marker {
|
|
|
|
display: none;
|
2021-07-20 19:30:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* have IE ignore the detail elements altogether */
|
|
|
|
@supports not (-ms-ime-align: auto) {
|
|
|
|
details summary {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2021-08-05 14:46:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
[hidden] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
2021-08-10 21:05:47 +01:00
|
|
|
vertical-align: middle !important;
|
|
|
|
box-sizing: border-box !important;
|
2021-08-05 14:46:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* TYPOGRAPHY AND GENERAL SELECTORS */
|
|
|
|
body,
|
|
|
|
html {
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2021-08-05 22:47:03 +01:00
|
|
|
text-rendering: optimizeLegibility;
|
2021-08-11 02:49:23 +01:00
|
|
|
scroll-behavior: smooth;
|
2021-08-05 14:46:17 +01:00
|
|
|
|
|
|
|
background-attachment: fixed;
|
|
|
|
color: var(--white);
|
|
|
|
font-family: var(--main-font);
|
2021-08-10 21:05:47 +01:00
|
|
|
font-size: var(--small-size);
|
2021-08-05 14:46:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-family: var(--display-font);
|
|
|
|
font-size: var(--main-size);
|
|
|
|
font-weight: 900;
|
|
|
|
opacity: 1.00;
|
|
|
|
letter-spacing: -0.40px;
|
|
|
|
word-spacing: 4.00px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-family: var(--display-font);
|
|
|
|
font-size: var(--medium-size);
|
|
|
|
font-weight: 800;
|
|
|
|
letter-spacing: -0.75px;
|
|
|
|
word-spacing: 3.00px;
|
|
|
|
text-transform: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-family: var(--display-font);
|
2021-08-10 21:05:47 +01:00
|
|
|
font-size: var(--small-size);
|
|
|
|
font-weight: 700;
|
2021-08-05 14:46:17 +01:00
|
|
|
line-height: 1.00;
|
|
|
|
letter-spacing: -0.20px;
|
|
|
|
word-spacing: 1.00px;
|
|
|
|
text-transform: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-family: var(--main-font);
|
2021-08-10 21:05:47 +01:00
|
|
|
font-size: var(--small-size);
|
2021-08-05 14:46:17 +01:00
|
|
|
font-weight: 400;
|
|
|
|
letter-spacing: -0.30px;
|
|
|
|
word-spacing: -0.10px;
|
|
|
|
margin-bottom: var(--small-size);
|
|
|
|
text-transform: none;
|
|
|
|
}
|
|
|
|
|
2021-08-10 21:05:47 +01:00
|
|
|
textarea {
|
|
|
|
font-family: var(--main-font);
|
|
|
|
font-weight: 400;
|
|
|
|
letter-spacing: -0.30px;
|
|
|
|
word-spacing: -0.10px;
|
|
|
|
text-transform: none;
|
|
|
|
}
|
|
|
|
|
2021-08-05 14:46:17 +01:00
|
|
|
ul {
|
|
|
|
text-decoration: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-08-09 18:06:45 +01:00
|
|
|
a {
|
2021-08-05 14:46:17 +01:00
|
|
|
text-decoration: none;
|
|
|
|
color: var(--white);
|
2021-08-09 18:06:45 +01:00
|
|
|
border-radius: var(--unit-size);
|
|
|
|
|
|
|
|
padding-left: var(--unit-size);
|
|
|
|
padding-right: var(--unit-size);
|
|
|
|
margin-bottom: 1px;
|
2021-08-05 14:46:17 +01:00
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: var(--white);
|
2021-08-09 18:06:45 +01:00
|
|
|
padding-left: var(--unit-size);
|
|
|
|
padding-right: var(--unit-size);
|
2021-08-05 14:46:17 +01:00
|
|
|
outline: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:focus,
|
|
|
|
a:hover {
|
|
|
|
background: var(--white);
|
|
|
|
color: var(--bg1) !important;
|
|
|
|
transition: var(--cubic-transition);
|
|
|
|
}
|
|
|
|
|
|
|
|
figcaption a:link {
|
|
|
|
font-size: var(--small-size);
|
|
|
|
color: var(--white);
|
|
|
|
}
|
|
|
|
|
2021-08-05 22:47:03 +01:00
|
|
|
summary:hover > svg,
|
|
|
|
summary:focus > svg {
|
|
|
|
border-radius: var(--unit-size);
|
|
|
|
background-color: var(--white);
|
|
|
|
fill: var(--bg1);
|
|
|
|
border: 2px solid var(--white);
|
|
|
|
transition: var(--cubic-transition);
|
2021-08-05 17:30:45 +01:00
|
|
|
}
|
|
|
|
|
2021-08-05 22:47:03 +01:00
|
|
|
hr {
|
|
|
|
all: unset;
|
|
|
|
display: block;
|
|
|
|
height: 2px;
|
|
|
|
background: var(--translucent);
|
|
|
|
}
|
2021-08-05 14:46:17 +01:00
|
|
|
|
2021-08-05 22:47:03 +01:00
|
|
|
/* BUTTONS AND FILEPICKER */
|
2021-08-09 18:27:24 +01:00
|
|
|
button {
|
|
|
|
float: right !important;
|
|
|
|
width: min-content !important;
|
|
|
|
align-self: end !important;
|
|
|
|
}
|
|
|
|
|
2021-08-05 22:47:03 +01:00
|
|
|
button,
|
|
|
|
input:not([type=text]) {
|
|
|
|
all: unset;
|
2021-08-05 14:46:17 +01:00
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: var(--medium-size);
|
|
|
|
|
|
|
|
border-radius: var(--unit-size);
|
2021-08-09 18:27:24 +01:00
|
|
|
padding: 6px 12px;
|
2021-08-05 22:47:03 +01:00
|
|
|
}
|
2021-08-05 14:46:17 +01:00
|
|
|
|
2021-08-05 22:47:03 +01:00
|
|
|
*|*::-moz-button-content {
|
|
|
|
all: unset;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=radio] {
|
|
|
|
all: unset;
|
|
|
|
display: inline-block;
|
2021-08-10 21:05:47 +01:00
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
2021-08-05 22:47:03 +01:00
|
|
|
border-radius: 50%;
|
|
|
|
margin: 3px 3px 0px 5px;
|
2021-08-05 14:46:17 +01:00
|
|
|
}
|
|
|
|
|
2021-08-05 22:47:03 +01:00
|
|
|
/* file selector */
|
|
|
|
input[type=file] {
|
|
|
|
all: unset;
|
2021-08-10 21:05:47 +01:00
|
|
|
|
|
|
|
display: block !important;
|
|
|
|
width: 100%;
|
2021-08-05 22:47:03 +01:00
|
|
|
|
|
|
|
font-family: var(--main-font);
|
|
|
|
font-size: var(--medium-size);
|
|
|
|
|
2021-08-05 14:46:17 +01:00
|
|
|
border-radius: var(--unit-size);
|
2021-08-05 22:47:03 +01:00
|
|
|
}
|
2021-08-05 14:46:17 +01:00
|
|
|
|
2021-08-05 22:47:03 +01:00
|
|
|
input + label {
|
2021-08-05 14:46:17 +01:00
|
|
|
all: unset;
|
2021-08-05 22:47:03 +01:00
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* button part of file selector */
|
|
|
|
::file-selector-button {
|
|
|
|
font-family: var(--display-font);
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
background-color: unset;
|
|
|
|
|
|
|
|
border: unset;
|
2021-08-10 21:05:47 +01:00
|
|
|
margin: 3px;
|
2021-08-05 22:47:03 +01:00
|
|
|
}
|