prettier notes
[mdref/mdref] / index.css
1 * {
2 font-size: 99.9%;
3 }
4
5 body, code {
6 font-family: Inconsolata, Monospace, 'Courier New', Courier, monospace;
7 }
8 body {
9 font-size: 1.5em;
10 margin: 0;
11 padding: 0;
12 color: #3f3f3f;
13 }
14
15 body>* {
16 margin-left: 1em;
17 }
18
19 .sidebar {
20 font-size: .9em;
21 float: right;
22 background: #f0f0f0;
23 border-bottom-left-radius: 10px;
24 padding: 0;
25 width: auto;
26 padding-right: 1em;
27 }
28 .sidebar>ul {
29 }
30 .sidebar ul {
31 margin-left: 1em;
32 padding: 0;
33 list-style-type: none;
34 }
35
36 code {
37 display: inline-block;
38 border-radius: 2px;
39 padding: 0px 2px 2px 2px;
40 background: #e0e0e0;
41 color: #606060;
42 box-shadow: 0 0 1px #999;
43 }
44
45 code code {
46 display: inline;
47 padding: 0;
48 background: transparent;
49 border: none;
50 box-shadow: none;
51 }
52
53 pre>code {
54 padding: 1em;
55 }
56 pre>code, pre>code code {
57 background: #333;
58 color: #eee;
59 }
60
61 p, pre {
62 margin: 1em 2em;
63 }
64
65 blockquote {
66 border: 1px solid #800000;
67 background: #ffe4e1;
68 margin: 2em 0;
69 }
70
71 ul {
72 margin-bottom: 2em;
73 }
74 li {
75 margin-bottom: .5em;
76 }
77 a, h1 code>a {
78 color: #2f4f4f;
79 }
80 a:hover {
81 text-decoration: none;
82 }
83
84 .var {
85 color: #800000;
86 }
87 .constant {
88 color: #2e8b57;
89 }
90
91 h1 {
92 line-height: 1.5;
93 }
94 h1 code {
95 font-weight: normal;
96 font-size: .9em;
97 line-height: 1.33;
98 }
99
100 footer, h1, li h3 {
101 background: #708090;
102 color: #f5f5dc;
103 }
104
105 footer, h1 {
106 margin: 0;
107 padding: 1em;
108 }
109
110 li h3 {
111 border-radius: 4px;
112 display: inline-block;
113 width: auto;
114 padding: .2em;
115 margin: .5em 0 0 0;
116 }
117
118 h1 .constant, pre>code .consant, li h3 .constant {
119 color: #98fb98;
120 }
121
122 h1 .var, pre>code .var, li h3 .var {
123 color: #f4a460;
124 }
125
126 footer a, h1 a, pre>code a, li h3 a {
127 color: #b0e0e6;
128 }
129
130 li h3 a {
131 text-decoration: none;
132 }
133 li h3 a:hover {
134 text-decoration: underline;
135 }
136
137 footer {
138 font-size: smaller;
139 text-align: center;
140 word-spacing: 1em;
141 clear: both;
142 margin-top: 8em;
143 }