-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcss.css
More file actions
63 lines (58 loc) · 988 Bytes
/
css.css
File metadata and controls
63 lines (58 loc) · 988 Bytes
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
body {
font-family: Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
}
path.quadrilateral {
fill: steelblue;
}
#render-progress {
display: block;
position: absolute;
left: 0;
bottom: 0;
height: 20px;
width: 120px;
overflow: none;
}
#render-progress .bar {
position: absolute;
background: steelblue;
height: 100%;
}
#render-progress .text {
position: absolute;
width: 100%;
line-height: 20px;
text-align: right;
}
#github {
position: absolute;
bottom: 0;
right: 0;
color: #bbb;
font-size: 85%;
text-decoration: none;
padding: 6px;
}
#github:hover {
color: #999;
text-decoration: underline;
}
.hide {
display: none !important;
}
#unsupported-browser {
position: absolute;
top: 20%;
left: 0;
right: 0;
text-align: center;
}
#unsupported-browser .face {
font-size: 5em;
}
#unsupported-browser .line1 {
font-weight: bold;
padding: 6px 0;
}