aboutsummaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorBlista Kanjo2021-11-28 15:09:00 -0500
committerBlista Kanjo2021-11-28 15:09:00 -0500
commit51308847b317d0e93629d58fa5204e0295c51b32 (patch)
tree3ebe5965b0bc3cf454761213b636ae06bd380c2c /css
initial commmit
Diffstat (limited to 'css')
-rw-r--r--css/style.css138
1 files changed, 138 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css
new file mode 100644
index 0000000..00d9efb
--- /dev/null
+++ b/css/style.css
@@ -0,0 +1,138 @@
+body {
+ background: #151515 ;
+ color: #ccc ;
+ max-width: 800px ;
+ margin: auto ;
+ padding: 0 16px ;
+ margin-bottom: 500px ;
+ font-family: sans-serif ;
+}
+
+a {
+ color: lightblue ;
+}
+
+a:visited {
+ color: gray ;
+}
+
+h1 {
+ text-align: center ;
+}
+
+h1.forte {
+ text-align: center ;
+ font-family: 'Forte', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
+ font-size: 36px;
+ padding:10px;
+}
+
+
+h2 {
+ color: tomato ;
+}
+
+footer {
+ text-align: center ;
+}
+
+img {
+ max-width: 600px ;
+ width: 100% ;
+ margin: auto ;
+ display: block ;
+}
+
+code {
+ overflow-wrap: break-word ;
+ color: lime ;
+}
+
+img[alt="BTC logo"],
+img[alt="XMR Logo"] {
+ max-width: 1em ;
+ max-height: 1em ;
+ display: inline ;
+}
+
+@media (prefers-color-scheme: light) {
+ body {
+ background: white ;
+ color: black ;
+ }
+ a {
+ color: blue ;
+ }
+ a:visited {
+ color: purple ;
+ }
+ h2 {
+ color: inherit ;
+ }
+ code {
+ color: forestgreen ;
+ }
+}
+
+@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 ;}
+}
+
+div.centered {
+ text-align: center;
+}
+
+p.centered {
+ text-align: center;
+}
+
+h2.centered {
+ text-align: center;
+}
+
+h3.centered {
+ text-align: center;
+}
+
+h4.centered {
+ text-align: center;
+}
+
+input.center-block {
+ text-align: center;
+ display: block;
+ margin-right: auto;
+ margin-left: auto;
+}
+
+.CodeMirror,
+.CodeMirror-scroll {
+ max-height: 300px;
+}
+
+.CodeMirror-fullscreen.CodeMirror {
+ max-height: none;
+}
+
+.CodeMirror-fullscreen .CodeMirror-scroll {
+ max-height: none;
+}
+
+pre {
+ white-space: pre-wrap; /* Since CSS 2.1 */
+ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
+ white-space: -pre-wrap; /* Opera 4-6 */
+ white-space: -o-pre-wrap; /* Opera 7 */
+ word-wrap: break-word; /* Internet Explorer 5.5+ */
+}