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