-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (72 loc) · 1.46 KB
/
style.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
.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px; /* Preferred icon size */
display: inline-block;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;
/* Support for Safari and Chrome. */
text-rendering: optimizeLegibility;
/* Support for Firefox. */
-moz-osx-font-smoothing: grayscale;
/* Support for IE. */
font-feature-settings: 'liga';
}
.type-description {
}
.func-description {
margin-bottom: 22px;
}
.func-params {
margin-left: 14px;
}
.param-item:before {
content: '-';
}
.param-name {
font-weight: bold;
}
.param-type {
color: blue;
margin-left: 6px;
font-style: italic;
}
.param-desc {
margin-bottom: 14px;
font-size:0.9em;
}
.func-return-type {
font-weight: lighter;
font-size: 0.7em;
color: blue;
margin-right: 8px;
}
.func-returns {
margin-left: 14px;
font-size:0.9em;
}
.table-item {
padding-left: 14px;
}
.table-item:nth-child(odd) {
background-color: #eee;
}
.table-item-type {
font-size: 0.9em;
color: blue;
font-style: italic;
}
.table-item-value:before {
content:' = '
}
.table-item-name {
width: 220px;
display:inline-block;
}