Introduction
Introduction Statistics Contact Development Disclaimer Help
style.css - saait - the most boring static page generator
git clone git://git.codemadness.org/saait
Log
Files
Refs
README
LICENSE
---
style.css (1351B)
---
1 html {
2 overflow-y: scroll;
3 }
4 body {
5 background-color: #fff;
6 color: #000;
7 font-family: sans-serif;
8 margin: 0;
9 padding: 1ex;
10 }
11 /* HTML5 semantic tags: some (older) browsers display this inline by def…
12 article, figcaption, figure, header, main, nav {
13 display: block;
14 }
15 /* center images */
16 img {
17 display: block;
18 margin: 0 auto;
19 }
20 table, img {
21 border: 0;
22 }
23 hr {
24 border: 0;
25 border-bottom: 3px solid #aaa;
26 height: 3px;
27 }
28 h1 {
29 font-size: 140%;
30 }
31 h2 {
32 font-size: 120%;
33 }
34 h3 {
35 font-size: 120%;
36 }
37 h1,
38 h1 a,
39 h1 a:visited,
40 h2,
41 h2 a,
42 h2 a:visited,
43 h3,
44 h3 a,
45 h3 a:visited,
46 h1 a:hover,
47 h2 a:hover,
48 h3 a:hover {
49 color: inherit;
50 text-decoration: none;
51 }
52 table tr td {
53 padding: 2px 10px 2px 0px;
54 }
55 pre {
56 margin: 0;
57 }
58 code {
59 background-color: #eee;
60 border: 3px solid #aaa;
61 display: block;
62 font-family: monospace;
63 overflow-x: auto;
64 padding: 5px;
65 word-wrap: normal;
66 }
67 #menu td {
68 padding: 1ex 0;
69 }
70 #main {
71 border-top: 3px solid #aaa;
72 }
73 #menuwrap,
74 #menu,
75 #main {
76 margin: 0px auto;
77 max-width: 80ex;
78 }
79 #menu a {
80 font-weight: bold;
81 vertical-align: middle;
82 }
83 .hidden {
84 display: none;
85 }
86 @media (prefers-color-scheme: dark) {
87 body {
88 background-color: #000;
89 color: #bdbdbd;
90 }
91 code {
92 background-color: #111;
93 border-color: #222;
94 }
95 hr {
96 border-color: #222;
97 }
98 a {
99 color: #56c8ff;
100 }
101 #main {
102 border-top: 3px solid #222;
103 }
104 }
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.