summaryrefslogtreecommitdiffstats
path: root/data/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'data/style.css')
-rw-r--r--data/style.css55
1 files changed, 55 insertions, 0 deletions
diff --git a/data/style.css b/data/style.css
new file mode 100644
index 000000000..2e6aa32ae
--- /dev/null
+++ b/data/style.css
@@ -0,0 +1,55 @@
+body {
+ max-width: 800px ;
+ margin: auto ;
+ padding: 0 16px ;
+ margin-bottom: 500px ;
+}
+
+h1 {
+ text-align: center ;
+}
+
+footer {
+ text-align: center ;
+}
+
+img {
+ max-width: 600px ;
+ width: 100% ;
+ margin: auto ;
+ display: block ;
+}
+
+code {
+ overflow-wrap: break-word ;
+ color: lime ;
+}
+
+li img {
+ max-width: 1em ;
+ max-height: 1em ;
+ display: inline ;
+}
+
+@media (prefers-color-scheme: dark) {
+ body {
+ background: #151515 ;
+ color: white ;
+ }
+ a {
+ color: lightblue ;
+ }
+ a:visited {
+ color: gray ;
+ }
+ h2 {
+ color: tomato ;
+ }
+}
+
+@media print {
+ a[href] {
+ text-decoration: none ;
+ color: black ;
+ }
+}