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