-
Notifications
You must be signed in to change notification settings - Fork 20
/
core.css
103 lines (86 loc) · 1.73 KB
/
core.css
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
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200italic,300,600|Anonymous+Pro:400,700,400italic);
body {
font-family: 'Source Sans Pro', calibri, helvetica, "sans serif";
font-weight: 200;
}
body strong {
font-weight: 600;
}
h1, h2, h3, h4, h5 { font-weight: 300; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h6 {
font-family: 'Anonymous Pro', monospace;
font-size: 16px;
}
code {
font-family: 'Anonymous Pro', monospace;
font-size: 10pt;
margin: .15em;
padding: .15em;
background-color: #dddddd;
border: 1px solid #bbbbbb;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-o-border-radius: 5px;
}
code strong {
font-weight: 700;
}
code span.required, code span.optional {
font-size: 10pt !important;
}
span.deprecated, span.scope, span.readonly {
padding-left: .4em;
padding-right: .4em;
font-size: 9pt;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-o-border-radius: 10px;
border: 1px solid;
font-family: 'Source Sans Pro', calibri, helvetica, "sans serif";
font-weight: 200;
}
span.deprecated {
background-color: #ffcccc;
border-color: #cc0000;
font-weight: bold;
}
span.scope {
background-color: #ffffcc;
border-color: #dddd00;
font-style: italic;
}
span.readonly {
background-color: #ffddaa;
border-color: #ffa500;
font-weight: bold;
font-style: italic;
}
div.indent {
margin-left: 1em;
padding-left: 1em;
border-left: 1px dashed #dddddd;
}
code span.comment {
font-weight: bold;
color: #00007f;
}
code span.string {
font-weight: bold;
color: #7f0000;
}
code span.variable {
font-weight: bold;
color: #007f00;
}
/*
code.lvalue.readonly {
border-color: #cc0000;
}
code.lvalue.readwrite {
border-color: #00cc00;
}
*/