-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschematic.css
More file actions
184 lines (181 loc) · 3.64 KB
/
Copy pathschematic.css
File metadata and controls
184 lines (181 loc) · 3.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/*
* Layout and Typography
*
* Lifted shamelessly from jashkenas' original docco stylesheet.
*/
body {
color: #252519;
margin: 0; padding: 0;
}
a {
color: #204a87;
}
a:visited {
color: #204a87;
}
p {
margin: 0 0 15px 0;
}
h1, h2, h3, h4, h5, h6 {
margin: 0px 0 15px 0;
}
h1 {
margin-top: 40px;
}
#container {
position: relative;
}
#background {
position: fixed;
top: 0; left: 525px; right: 0; bottom: 0;
background: #f5f5ff;
border-left: 1px solid #e5e5ee;
z-index: -1;
}
#jump_to, #jump_page {
background: white;
-webkit-box-shadow: 0 0 25px #777; -moz-box-shadow: 0 0 25px #777;
-webkit-border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px;
font: 10px Arial;
text-transform: uppercase;
cursor: pointer;
text-align: right;
}
#jump_to, #jump_wrapper {
position: fixed;
right: 0; top: 0;
padding: 5px 10px;
}
#jump_wrapper {
padding: 0;
display: none;
}
#jump_to:hover #jump_wrapper {
display: block;
}
#jump_page {
padding: 5px 0 3px;
margin: 0 0 25px 25px;
}
#jump_page .source {
display: block;
padding: 5px 10px;
text-decoration: none;
border-top: 1px solid #eee;
}
#jump_page .source:hover {
background: #f5f5ff;
}
#jump_page .source:first-child {
}
table td {
border: 0;
outline: 0;
}
td.docs, th.docs {
font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
font-size: 16px;
line-height: 22px;
max-width: 450px;
min-width: 450px;
min-height: 5px;
padding: 0px 25px 0px 50px;
overflow-x: hidden;
vertical-align: top;
text-align: left;
}
.docs pre {
margin: 15px 0 15px;
padding-left: 15px;
}
.docs p tt, .docs p code {
background: #f8f8ff;
border: 1px solid #dedede;
font-size: 12px;
padding: 0 0.2em;
}
.pilwrap {
position: relative;
}
.pilcrow {
font: 12px Arial;
text-decoration: none;
color: #454545;
position: absolute;
top: 3px; left: -20px;
padding: 1px 2px;
opacity: 0;
-webkit-transition: opacity 0.2s linear;
}
td.docs:hover .pilcrow {
opacity: 1;
}
td.code, th.code {
padding: 0px 15px 15px 25px;
margin: 0 0 15px 0;
width: 100%;
vertical-align: top;
background: #f5f5ff;
border-left: 1px solid #e5e5ee;
}
pre, tt, code {
font-size: 14px;
font-family: Menlo, Monaco, Consolas, "Lucida Console", monospace;
margin: 0; padding: 0;
}
/*
* Default styles for the colorize egg.
*
* Uses the Tango colorscheme.
*/
.highlight i {
background-color: #F5F5FF;
}
.highlight .symbol, .highlight .default, .highlight .comment {
background-color: #F5F5FF;
color: #333333;
font-weight: normal;
}
.highlight i {
font-style: normal;
}
.highlight .paren1, .highlight .paren2, .highlight .paren3, .highlight .paren4, .highlight .paren5, .highlight .paren6 {
background-color: inherit;
}
.highlight .paren1:hover, .highlight .paren2:hover, .highlight .paren3:hover, .highlight .paren4:hover, .highlight .paren5:hover, .highlight .paren6:hover {
color: white;
font-weight: bold;
}
.highlight .paren1:hover { background-color: #204a87; }
.highlight .paren2:hover { background-color: #4e9a06; }
.highlight .paren3:hover { background-color: #5c3566; }
.highlight .paren4:hover { background-color: #ce5c00; }
.highlight .paren5:hover { background-color: #a40000; }
.highlight .paren6:hover { background-color: #8f5902; }
.highlight .symbol {
color: #204a87;
font-weight: bold;
}
.highlight .variable {
color: #ce5c00;
}
.highlight .comment {
color: #8f5902;
font-style: italic;
}
.highlight .character {
color: #4e9a06;
font-weight: bold;
}
.highlight .string {
color: #4e9a06;
}
.highlight .special {
color: #ce5c00;
}
.highlight .diff-added {
color: #4e9a06;
}
.highlight .diff-deleted {
color: #a40000;
}