-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
80 lines (80 loc) · 1.29 KB
/
styles.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
body {
background:#1b1b1b none;
color:#f0f0f0;
font:18px/21px Helvetica, Arial, sans-serif
}
#qrcontainer {
background: rgba(0,0,0,0.9) none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
transition: opacity 0.6s ease-in;
z-index: 10000;
}
#qrcanvas {
position: absolute;
top: 50%;
left: 50%;
margin-left: -180px;
margin-top: -180px;
width: 360px;
height: 360px;
}
#container{
text-align:center;
width:960px;
margin:0 auto;
}
input {
border-radius:8px;
border:3px solid #333;
font-size:25px;
padding:.2em
}
input[type=text] {
width:5.5em
}
input[type=submit] {
margin-left: 0.5em;
}
input[type=submit]:hover {
border-color: #00f;
}
#player, form {
width:100%
}
a {
color:#66f;
}
h1 a {
color: inherit;
}
a#reset-times {
color: inherit;
text-decoration: none;
padding: 0 0.5em;
}
button {
border: none;
background: #fff none;
border-radius: 5px;
color: #999;
font: inherit;
margin-left: -2.5em;
position: relative;
padding: 0.4em 0.7em;
top: -3px;
}
button:hover {
background: #eee none;
color: #000;
}
button:active {
background: #ccc none;
color: #000;
top: -2px;
}