2024-02-27 17:58:08 +01:00
|
|
|
html, body {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
background-color: white;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-26 16:58:39 +01:00
|
|
|
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, th, td, iframe, blockquote {
|
2024-02-27 17:58:08 +01:00
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2024-03-22 12:09:17 +01:00
|
|
|
}
|
|
|
|
|
|
2024-03-26 20:45:41 +01:00
|
|
|
hr {
|
|
|
|
|
border: var(--hr-border, revert);
|
|
|
|
|
border-top: var(--hr-border-top, revert);
|
|
|
|
|
height: var(--hr-height, revert);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-26 15:07:28 +01:00
|
|
|
.greentext {
|
|
|
|
|
color: var(--post-greentext-color);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-22 12:09:17 +01:00
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
.button {
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
font-size: var(--button-font-size-mobile);
|
|
|
|
|
font-weight: var(--button-font-weight-mobile);
|
|
|
|
|
font-family: var(--button-font-family-mobile);
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
padding: 5px 10px 5px;
|
|
|
|
|
background-color: var(--button-background-color-mobile);
|
|
|
|
|
color: var(--button-text-color-mobile);
|
|
|
|
|
border: var(--button-border-mobile);
|
|
|
|
|
background-image: var(--button-background-image-mobile);
|
|
|
|
|
background-repeat: var(--button-background-repeat-mobile);
|
|
|
|
|
text-decoration: var(--button-text-decoration-mobile);
|
|
|
|
|
user-select: none;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 640px) {
|
|
|
|
|
.button {
|
|
|
|
|
all: unset;
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
color: var(--button-desktop-text-color);
|
|
|
|
|
text-decoration: var(--button-text-decoration);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button:hover {
|
|
|
|
|
color: var(--button-desktop-text-color-hover);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2024-02-27 17:58:08 +01:00
|
|
|
}
|