summaryrefslogtreecommitdiff
path: root/data/style.css
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2021-03-14 20:18:59 -0400
committerGitHub <noreply@github.com>2021-03-14 20:18:59 -0400
commitf65132e9cf82eeebcdca6f73e592f9134bee1a40 (patch)
treed4fdc5c59aba6c4c2c8051757e3cbd45c10c1f7a /data/style.css
parentfeb5d6ca8e96c579751788b676b14e72d51f84df (diff)
parent18d49745d55f46fbbfbc2f05cfc4fdbdb5d7be8a (diff)
Merge pull request #78 from sylGauthier/syg/master
Makefile-based generation system
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 0000000..2e6aa32
--- /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 ;
+ }
+}