47 lines
666 B
CSS
47 lines
666 B
CSS
|
/**
|
||
|
* SPDX-FileCopyrightText: 2023 jordi fita mas <jordi@tandem.blog>
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
*, *::before, *::after {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
* {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
html, body {
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
font-family: monospace;
|
||
|
font-size: 62.5%;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-size: 1.6rem;
|
||
|
line-height: 1.5;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
background-color: white;
|
||
|
color: #3f3b37;
|
||
|
}
|
||
|
|
||
|
img, picture, video, canvas, svg {
|
||
|
display: block;
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
|
||
|
input, button, textarea, select {
|
||
|
font: inherit;
|
||
|
}
|
||
|
|
||
|
p, h1, h2, h3, h4, h5, h6 {
|
||
|
overflow-wrap: break-word;
|
||
|
}
|
||
|
|
||
|
:any-link {
|
||
|
color: #0000ff;
|
||
|
}
|