-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscore.css
More file actions
161 lines (142 loc) · 2.58 KB
/
Copy pathscore.css
File metadata and controls
161 lines (142 loc) · 2.58 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
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
161
html{
font-family: Poppins;
padding: 0px;
margin:0px;
border:0px;
}
body{
background-color: #000;
color:#ddd;
font-size: 1vw;
padding: 0px;
margin:0px;
border:0px;
}
.WSWrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9, for an aspect ratio of 1:1 change to this value to 100% */
padding-left: 0px;
padding-right:0px:
margin:0px;
border:0px;
}
.WS{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #444;
overflow: hidden;
padding: 0px;
margin:0px;
border:0px;
}
#banner{
width: 100%;
}
#split{
padding: 0px;
margin:0px;
border:0px;
}
#left_side{
display: inline-block;
width:49%;
vertical-align: top;
padding: 0px;
margin:0px;
border:0px;
}
#right_side{
display: inline-block;
width:50%;
vertical-align: top;
padding: 0px;
margin:0px;
border:0px;
}
h1{
font-weight: 600;
font-size: 4vw;
color: #eee;
}
h2{
font-size: 2vw;
font-weight: 400;
}
h1,h2{
text-transform: uppercase;
text-align: center;
}
#loading{
font-size: 2vw;
}
table {
font-size: 1vw;
border-collapse: collapse;
border-spacing: 0;
width: 100%;
}
thead th {
border: 0;
padding: 0em;
text-align: center;
font-weight: 600;
font-size: 2.5vw;
}
td{
border-right: 1px solid #ddd;
padding: .5vw;
text-align: center;
width: 4vw;
}
td:nth-child(1) {
/* your stuff here */
font-weight: 600;
font-size: 2.5vw;
text-align: right;
}
tbody {
padding: .5vw;
}
#key{
border: 1px solid #eee;
padding: 1vw;
margin-right: 4vw;
margin-top: 12vw;
margin-left: 8vw;
font-size: 1.5vw;
color: #444;
background-color: #eee;
}
.keyHeader{
font-weight: 400;
display: block;
}
.keyDetail{
font-size: 1.3vw;
color: #777;
display: block;
}
.pie {
--w:5vw;
width: var(--w);
aspect-ratio: 1;
position: relative;
display: inline-grid;
place-content: center;
margin: .1vw;
font-size: 1.8vw;
font-weight: bold;
font-family: sans-serif;
}
.pie:before {
content: "";
position: absolute;
border-radius: 50%;
inset: 0;
background: conic-gradient(var(--c) calc(var(--p)*1%),#0000 0);
-webkit-mask:radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
mask:radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
}