mektem.com/css.css

48 lines
680 B
CSS
Raw Permalink Normal View History

2024-03-09 23:00:52 +00:00
:root {
--accent:#0066CC;
2024-03-29 14:03:44 +00:00
--accent2: #61A1ED;
2024-03-09 23:00:52 +00:00
}
body {
background-color: #fff;
color: #000;
font-family: -apple-system, system-ui, BlinkMacSystemFont, sans-serif;
2024-03-29 14:03:44 +00:00
max-width: 650px;
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
}
a:link {
2024-03-15 02:28:53 +00:00
text-decoration: underline;
2024-03-09 23:00:52 +00:00
color: var(--accent2);
}
a:visited {
2024-03-15 02:28:53 +00:00
text-decoration: underline;
2024-03-09 23:00:52 +00:00
color: var(--accent2);
}
a:hover {
text-decoration: underline;
color: var(--accent2);
}
a:active {
text-decoration: underline;
color: var(--accent2);
2024-03-29 14:03:44 +00:00
}
h1, h2 {
color: var(--accent);
}
strong {
color: var(--accent2);
}
li {
margin-bottom: 10px;
2024-03-09 23:00:52 +00:00
}