askiiart-net/style.css

64 lines
863 B
CSS
Raw Normal View History

2023-08-05 19:33:50 -05:00
body {
color: #fff;
background: #101213;
margin: 1em auto;
max-width: 100em;
padding: 0 .62em;
font: 1.0em/1.35 sans-serif
2023-03-22 15:37:47 -05:00
}
2023-08-05 19:33:50 -05:00
a:link,
a:visited {
color: #80c47b;
2023-03-22 15:37:47 -05:00
}
2023-08-05 19:33:50 -05:00
a:hover,
a:visited:hover {
color: #6bb794
2023-03-22 15:37:47 -05:00
}
2023-08-05 19:33:50 -05:00
h1,
h2,
h3 {
line-height: 1.2
}
2023-05-09 12:39:43 -05:00
code {
background: #202020
}
2023-08-05 19:33:50 -05:00
2023-05-09 12:39:43 -05:00
pre {
background: #202020
}
2023-08-05 19:33:50 -05:00
wrap {
word-wrap: break-word
2023-08-28 09:30:40 -05:00
}
@media (max-device-width: 1200px) {
h1 {
line-height: 1.2;
font-size: 40px;
}
h2 {
line-height: 1.2;
font-size: 30px;
}
body {
font-size: 20px;
}
pre,
code {
font-size: 16px;
}
}
@media print {
body {
max-width: none
}
2023-08-05 19:33:50 -05:00
}