flush
[mdref/mdref] / index.css
1 * {
2 font-size: 99.9%;
3 }
4
5 body {
6 font-family: Inconsolata, Monospace, 'Courier New', Courier, monospace;
7 font-size: 1.5em;
8 margin: 0;
9 padding: 0;
10 color: #3f3f3f;
11 }
12
13 body>* {
14 margin-left: 1em;
15 }
16
17 .sidebar {
18 font-size: .9em;
19 float: right;
20 width: 500px;
21 background: #f0f0f0;
22 border-bottom-left-radius: 10px;
23 padding: 0;
24 margin-bottom: 1em;
25 margin-left: 2em;
26 }
27 .sidebar>ul {
28 }
29 .sidebar ul {
30 margin-left: 1em;
31 padding: 0;
32 list-style-type: none;
33 }
34
35 code {
36 display: inline-block;
37 border-radius: 2px;
38 padding: 0px 2px 2px 2px;
39 background: #e0e0e0;
40 color: #606060;
41 box-shadow: 0 0 1px #999;
42 }
43
44 code code {
45 display: inline;
46 padding: 0;
47 background: transparent;
48 border: none;
49 box-shadow: none;
50 }
51
52 pre>code {
53 padding: 1em;
54 }
55 pre>code, pre>code code {
56 background: #333;
57 color: #eee;
58 }
59
60 p, pre {
61 margin: 1em 2em;
62 }
63
64 blockquote {
65 border-radius: 4px;
66 border: 1px solid #800000;
67 background: #ffe4e1;
68 display: inline-block;
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: .5em;
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 }