-
Notifications
You must be signed in to change notification settings - Fork 12
/
caniuse-brackets.css
128 lines (106 loc) · 1.88 KB
/
caniuse-brackets.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
.caniuse_contentdiv {
height:100%;
overflow:auto;
}
.caniuse_catlistColumn,
.caniuse_featureColumn {
position: relative;
float:left;
box-sizing: border-box;
padding: 18px;
}
.caniuse_catlistColumn {
width: 30%;
height: 100%;
border-right: 1px solid #cdd0d0;
}
.caniuse_featureColumn {
width: 70%;
height: 100%;
overflow-y: auto;
}
.caniuse_catlist {
position: absolute;
top: 63px;
left: 0;
right: 0;
bottom: 0;
overflow-y: auto;
padding-bottom: 18px;
}
.caniuse_filter {
width: -webkit-calc(100% - 9px);
width: calc(100% - 9px);
}
.caniuse_noMatches {
margin: 36px 0;
opacity: 0.6;
text-align: center;
}
.caniuse_cat {
margin-bottom: 12px;
}
.caniuse_catheader {
margin-bottom: 6px;
padding: 0 18px;
font-weight: bold;
font-size: 18px;
line-height: 1;
}
.caniuse_catheader:first-child {
margin-top: 0;
}
.caniuse_supportdisplay:not(:empty) {
margin-bottom: 36px;
}
.caniuse_feature {
display: block;
padding: 2px 18px;
color: inherit;
}
.caniuse_feature:hover {
color: inherit;
background: rgba(0,0,0,0.1);
text-decoration: none;
}
.caniuse_feature:focus {
background: #e0f0fa;
outline: 0;
}
.caniuse_feature_title { font-size:2em;font-weight:bold;}
.caniuse_legend * {
display: inline-block;
}
.caniuse_legend {
font-size: 13px;
text-align: center;
}
.caniuse_legend dt {
width: 25px;
height: 1em;
margin-right: 3px;
position: relative;
top: 2px;
}
.caniuse_legend dd::before {
content: '= ';
}
.caniuse_legend dd {
margin: 0 1em 0 0;
line-height: 1em;
}
.caniuse_y { background-color:#3c3; color: black; }
.caniuse_n { background-color:#f33; color: black; }
.caniuse_a { background-color:#ff0; color: black; }
.caniuse_u { background-color:#ccc; color: black; }
table.caniuse {
width: 100%!important;
}
th.caniuse, td.caniuse {
text-align: center;
vertical-align: middle;
}
td.caniuse:first-child {
text-align: right;
padding-right: 5px;
}