forked from vitmalina/w2ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
160 lines (134 loc) · 2.58 KB
/
index.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
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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
overflow: hidden;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
}
h1 {
font-size: 36px;
line-height: 40px;
margin: 15px 0px;
}
h2 {
font-size: 30px;
line-height: 40px;
margin: 10px 0px;
}
h3 {
font-size: 24px;
line-height: 40px;
margin: 10px 0px;
}
h4 {
font-size: 18px;
line-height: 20px;
margin: 10px 0px;
}
ul {
margin: 15px 10px 25px 40px;
}
#main_layout {
position: absolute;
width: 100%;
height: 100%;
}
.CodeMirror {
border: 1px solid silver;
border-radius: 4px;
background-color: #fafafa;
font-size: 12px;
overflow: auto;
margin-top: 15px !important;
margin-bottom: 15px !important;
line-height: 160% !important;
}
table.list {
margin: 20px 0px;
border-collapse: collapse;
}
table.list td {
border: 1px solid #d1d1d1;
padding: 3px 10px !important;
}
/* Documentation */
.obj-property {
font-size: 16px;
font-weight: bold;
color: #176092;
}
.obj-property > a {
color: #176092 !important;
}
.obj-property > span {
font-weight: normal;
color: #555;
}
.obj-property-desc {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
margin: 5px 0px 10px 0px;
padding: 5px 0px 15px 20px;
border-bottom: 1px solid #efefef
}
.obj-desc {
padding: 10px 20px;
line-height: 150%;
width: 850px;
}
.obj-desc h4 {
margin-top: 20px;
}
.obj-desc .definition {
background-color: #fafafa;
border: 1px solid silver;
padding: 5px;
border-radius: 4px;
margin: 15px 0px;
font-weight: bold;
color: #304E77;
font-family: Monaco, "Courier New";
}
.obj-desc .arguments {
border: 1px solid silver;
border-radius: 4px;
margin: 15px 0px;
padding: 1px;
margin-left: 50px;
}
.obj-desc .arguments table {
border-collapse: collapse;
width: 100%;
background-color: #fafafa;
}
.obj-desc table td {
padding: 5px 10px;
border-radius: 4px;
border-bottom: 1px solid silver;
width: 80%;
}
.obj-desc table tr td:first-child {
width: 15%;
color: #304E77;
border-right: 1px solid silver;
font-family: Monaco, "Courier New";
}
.obj-desc table tr:last-child td {
border-bottom: 0px;
}
.method, .property, .argument {
display: inline-block;
background-color: #f1f1f1;
border-radius: 4px;
margin: 0px;
padding: 0px 5px;
min-height: 17px;
font-family: Courier;
color: #176092;
}
a.method, a.property, a.argument {
color: blue;
}