summaryrefslogtreecommitdiff
path: root/static/style.css
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2022-04-14 15:58:07 -0400
committerLuke Smith <luke@lukesmith.xyz>2022-04-14 15:58:07 -0400
commitc08fd719fe95604d245f3eb0d18b5b0c72c1308d (patch)
tree9b5199ebd42684f266b4918cd6191f50db98239a /static/style.css
parent1477b62cc47dd937688771a825dd9fd392aeaf25 (diff)
move to hugo
Diffstat (limited to 'static/style.css')
-rw-r--r--static/style.css69
1 files changed, 69 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
new file mode 100644
index 0000000..dbadbcf
--- /dev/null
+++ b/static/style.css
@@ -0,0 +1,69 @@
+body {
+ background: #151515 ;
+ color: #ccc ;
+ max-width: 850px ;
+ margin: auto ;
+ padding: 0 16px ;
+ margin-bottom: 500px ;
+ font-family: sans-serif ;
+}
+
+a {
+ color: lightblue ;
+}
+
+a:visited {
+ color: gray ;
+}
+
+h1 {
+ text-align: center ;
+}
+
+h2 {
+ color: tomato ;
+}
+
+footer {
+ text-align: center ;
+}
+
+img {
+ max-width: 600px ;
+ width: 100% ;
+ margin: auto ;
+ display: block ;
+}
+
+code {
+ overflow-wrap: break-word ;
+ color: lime ;
+}
+
+.taglist {
+ text-align: center ;
+ margin-bottom: 2em ;
+ margin-top: 2em ;
+}
+
+img[alt="BTC Logo"],
+img[alt="XMR Logo"] {
+ max-width: 1em ;
+ max-height: 1em ;
+ display: inline ;
+}
+
+@media print {
+ a[href] {
+ text-decoration: none ;
+ color: black ;
+ }
+}
+
+@media (min-width: 55em) {
+ #artlist { column-count: 2 ;}
+}
+
+@media (min-width: 100em) {
+ #artlist { column-count: 3 ;}
+}