fix: Prettified CSS and removed ""dark"" mode
This commit is contained in:
parent
f1c49bcb9c
commit
ac4a731def
1 changed files with 57 additions and 9 deletions
|
@ -1,9 +1,57 @@
|
||||||
html {overflow-y: scroll}
|
html {
|
||||||
body{max-width:800px;margin:40px auto;padding:0 10px;font:14px/1.5 monospace;color:#444}h1,h2,h3{line-height:1.2}@media (prefers-color-scheme: dark){body{color:white;background:#444}a:link{color:#5bf}a:visited{color:#ccf}}
|
overflow-y: scroll
|
||||||
p > code{color: #FFFFFF; background:#000000; padding:2px}
|
}
|
||||||
pre{color: #FFFFFF; background:#000000; padding:24px; overflow-x: auto}
|
|
||||||
article{padding:24px 0}
|
body {
|
||||||
.center {display: block;margin-left: auto;margin-right: auto;width: 100%;}
|
max-width: 800px;
|
||||||
img {display: block; max-width: 100%; height: auto;}
|
margin: 40px auto;
|
||||||
figcaption {color: #888; font: 12px/1.5 monospace; text-align: center;}
|
padding: 0 10px;
|
||||||
figure {margin: auto}
|
font: 14px/1.5 monospace;
|
||||||
|
color: #444
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3 {
|
||||||
|
line-height: 1.2
|
||||||
|
}
|
||||||
|
|
||||||
|
p>code {
|
||||||
|
color: #FFFFFF;
|
||||||
|
background: #000000;
|
||||||
|
padding: 2px
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
color: #FFFFFF;
|
||||||
|
background: #000000;
|
||||||
|
padding: 24px;
|
||||||
|
overflow-x: auto
|
||||||
|
}
|
||||||
|
|
||||||
|
article {
|
||||||
|
padding: 24px 0
|
||||||
|
}
|
||||||
|
|
||||||
|
.center {
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
display: block;
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
figcaption {
|
||||||
|
color: #888;
|
||||||
|
font: 12px/1.5 monospace;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
figure {
|
||||||
|
margin: auto
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue