github edit link
[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-top: 1px solid #800000;
67 border-bottom: 1px solid #800000;
68 background: #ffe4e1;
69 margin: 2em 0;
70 }
71
72 ul {
73 margin-bottom: 2em;
74 }
75 li {
76 margin-bottom: .5em;
77 }
78 a, h1 code>a {
79 color: #2f4f4f;
80 }
81 a:hover {
82 text-decoration: none;
83 }
84
85 .var {
86 color: #800000;
87 }
88 .constant {
89 color: #2e8b57;
90 }
91
92 h1 {
93 line-height: 1.5;
94 }
95 h1 code {
96 font-weight: normal;
97 font-size: .9em;
98 line-height: 1.33;
99 }
100
101 footer, h1, li h3 {
102 background: #708090;
103 color: #f5f5dc;
104 }
105
106 footer, h1 {
107 margin: 0;
108 padding: 1em;
109 }
110
111 li h3 {
112 border-radius: 4px;
113 display: inline-block;
114 width: auto;
115 padding: .2em;
116 margin: .5em 0 0 0;
117 }
118
119 h1 .constant, pre>code .consant, li h3 .constant {
120 color: #98fb98;
121 }
122
123 h1 .var, pre>code .var, li h3 .var {
124 color: #f4a460;
125 }
126
127 footer a, h1 a, pre>code a, li h3 a {
128 color: #b0e0e6;
129 }
130
131 li h3 a {
132 text-decoration: none;
133 }
134 li h3 a:hover {
135 text-decoration: underline;
136 }
137
138 #disqus_thread {
139 margin-top: 8em;
140 margin-right: 2em;
141 }
142
143 footer {
144 font-size: smaller;
145 text-align: center;
146 word-spacing: 1em;
147 clear: both;
148 margin-top: 8em;
149 }