46 lines
678 B
CSS
46 lines
678 B
CSS
:root {
|
|
--accent:#0066CC;
|
|
--accent2: #0066CC;
|
|
}
|
|
|
|
body {
|
|
background-color: #fff;
|
|
color: #000;
|
|
font-family: -apple-system, system-ui, BlinkMacSystemFont, sans-serif;
|
|
max-width: 800px;
|
|
padding: 10px;
|
|
margin:0 auto;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
h1 {
|
|
color: var(--accent);
|
|
}
|
|
|
|
h2, strong {
|
|
color: var(--accent2);
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
a:link {
|
|
text-decoration: underline;
|
|
color: var(--accent2);
|
|
}
|
|
|
|
a:visited {
|
|
text-decoration: underline;
|
|
color: var(--accent2);
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
color: var(--accent2);
|
|
}
|
|
|
|
a:active {
|
|
text-decoration: underline;
|
|
color: var(--accent2);
|
|
} |