-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (82 loc) · 1.24 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
89
90
91
92
93
94
html, body
{
background: #020202;
color: #f5f5f5;
padding: 0; margin: 0;
font-family: 'Open Sans', Tahoma, Verdana, Arial, Sans-Serif;
}
a
{
color: #f5f5f5;
}
.popup
{
position: fixed;
top: 50%;
left: 0;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
width: 100%;
padding: 7px;
text-align: center;
background: #101010;
box-sizing: border-box;
}
.popup-container
{
width: 500px;
margin: 0 auto;
}
.popup-button
{
display: block;
margin: 0 auto;
width: 300px;
font-weight: 300;
text-align: center;
background: #202020;
color: #f5f5f5;
text-decoration: none;
padding: 5px;
box-sizing: border-box;
font-size: 21pt;
}
#log
{
font-family: 'Courier New', 'Lucida Console', 'Ubuntu Mono', 'Liberation Mono', monospace;
box-sizing: border-box;
padding: 5px;
}
#log .info
{
color: #8AEFFF;
}
#log .ok
{
color: #1FFF62;
}
#log .warn
{
color: #ECFF45;
}
#log .error
{
color: #FF4040;
}
#audio-popup
{
display: none;
}
@media handheld, only screen and (max-width: 1024px)
{
html, body
{
padding: 3px; margin: 0;
}
.popup-container
{
width: 100%;
box-sizing: border-box;
}
}