-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
114 lines (95 loc) · 1.8 KB
/
index.css
File metadata and controls
114 lines (95 loc) · 1.8 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
body {
font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Source Han Sans CN", "Noto Sans CJK", sans-serif;
background-color: #f8f9fa;
color: #495057;
padding: 0 0 20px;
margin: 0;
line-height: 1.6;
}
h1 {
margin: 0;
text-align: center;
padding: 20px 0;
color: #343a40;
font-weight: 400;
font-size: 1.8rem;
border-bottom: 1px solid #e9ecef;
margin-bottom: 20px;
position: sticky;
top: 0;
left: 0;
right: 0;
background-color: #fff;
}
h1>span {
font-size: 0.9rem;
color: #6c757d;
font-weight: normal;
}
h1>span:nth-child(2n) {
margin-right: 1em;
padding: 0 0 0 0.5em;
}
h1>span:nth-child(2) {
color: #28a745;
}
h1>span:nth-child(4) {
color: #dc3545;
}
table {
width: 100%;
border-collapse: collapse;
background-color: #fff;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
border-radius: 0.375rem;
overflow: hidden;
margin-bottom: 2rem;
}
thead {
background-color: #f8f9fa;
}
th,
td {
padding: 1rem;
text-align: left;
border-bottom: 1px solid #e9ecef;
}
th {
font-weight: 500;
color: #495057;
font-size: 0.875rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}
tbody tr {
transition: all 0.2s ease;
}
tbody tr:hover {
background-color: #e9ecef;
}
tbody tr:last-child td {
border-bottom: none;
}
.supported {
color: #28a745;
font-weight: 500;
}
.not-supported {
color: #dc3545;
font-weight: 500;
}
.tag {
margin-left: 1em;
padding: 0.2em 1em;
color: #999;
background-color: #f2f2f2;
font-size: 0.4em;
}
.en-us {}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}