-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
84 lines (81 loc) · 1.71 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
body {
background-color: rgb(48, 48, 48);
text-align: center;
}
.btn, button {
padding: .33em;
display: block;
background-color: #58d;
border: none;
border-radius: .75em;
font-family: sans-serif;
color: white;
box-shadow: 0px 2px 5px -1px rgba(0,0,0,.8);
width: 60%;
margin: 0 auto;
font-size: 32;
text-transform: uppercase;
}
.btn:active, button:active {
box-shadow: 0 0px #666;
transform: scale(.99,.98);
outline: 0;
}
button:focus {outline:0;}
a {
text-decoration: none;
}
hr {
width: 30%;
}
input[type="text"] {
font-size: 28;
text-align: center;
}
#controller {
display: none;
}
#msg, #debug {
margin: 0 auto;
text-align: center;
font-size: 28;
color: white;
height: 1em;
}
#instructions {
margin: 20px auto;
text-align: left;
font-size: 14;
color: white;
height: 1em;
}
#msgcontainer {
position: absolute;
left: 50%;
border: 10px solid white;
}
.mv_msg {
-webkit-transition: all .5s; /* Safari prior 6.1 */
transition: all .5s;
}
.right_msg {
top: 62px;
left: 50%;
margin-left: 256px;
}
.middle_msg {
top: 128px;
left: 50%;
margin-left: -132px;
}
.top_msg {
top: -20%;
left: 50%;
margin-left: -132px;
}
.visible_msg {
opacity: 1
}
.invisible_msg {
opacity: 0;
}