mektem.com/css.css

46 lines
660 B
CSS
Raw Normal View History

2024-03-09 23:00:52 +00:00
:root {
--accent:#0066CC;
--accent2: #0066CC;
}
body {
background-color: #fff;
color: #000;
font-family: -apple-system, system-ui, BlinkMacSystemFont, sans-serif;
max-width: 800px;
2024-03-09 23:00:52 +00:00
padding: 10px;
margin:0 auto;
word-wrap: break-word;
2024-03-09 23:00:52 +00:00
}
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);
}