48 lines
680 B
CSS
Executable File
48 lines
680 B
CSS
Executable File
:root {
|
|
--accent:#0066CC;
|
|
--accent2: #61A1ED;
|
|
}
|
|
|
|
body {
|
|
background-color: #fff;
|
|
color: #000;
|
|
font-family: -apple-system, system-ui, BlinkMacSystemFont, sans-serif;
|
|
max-width: 650px;
|
|
padding: 10px;
|
|
margin:0 auto;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
}
|
|
|
|
h1, h2 {
|
|
color: var(--accent);
|
|
}
|
|
|
|
strong {
|
|
color: var(--accent2);
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 10px;
|
|
} |