-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
103 lines (100 loc) · 1.68 KB
/
main.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
95
96
97
98
99
100
101
102
103
@charset "utf-8";
body {
font-family: sans-serif;
font-size: 18px;
margin: 0px;
padding: 0px;
background-color: #CCC;
}
#scorekeeper div {
text-align: center;
height: 30px;
width: 25%;
overflow: hidden;
float: left;
background-color: #999;
line-height: 30px;
color: #FFF;
}
#letterholder {
background-color: #666;
}
#inanswersletter div {
line-height: 30px;
color: #FFF;
background-color: #333;
float: left;
height: 27px;
width: 20%;
text-align: center;
text-transform: uppercase;
margin-bottom: 2px;
transition: all 0.2s;
}
#inanswersletter div:hover {
background-color: #999;
transition: all 0.2s;
}
#devsettings {
background-color: rgba(255,255,255,0.9);
box-shadow: 0 0 25px 1px rgba(0,0,50,0.3);
transition: all 0.5s;
position: absolute;
z-index: 2;
height: auto;
width: 80%;
margin-right: 5%;
margin-left: 5%;
display: none;
margin-top: 15%;
padding: 5%;
font-size: 14px;
}
#questionshere {
width: 90%;
text-align: center;
padding-top: 50px;
height: 100px;
padding-right: 5%;
padding-left: 5%;
}
#answershere {
text-align: center;
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
visibility: hidden;
background-color: #FFF;
padding-top: 10px;
padding-bottom: 8px;
}
#askquestions {
background-color: #FFF;
}
#playergetready {
background-color: #FFF;
text-align: center;
height: 100%;
width: 100%;
position: absolute;
font-size: 24px;
font-weight: normal;
display: none;
z-index: 1;
}
#endround {
background-color: #FFF;
text-align: center;
height: 100%;
width: 100%;
position: absolute;
font-size: 24px;
font-weight: normal;
display: none;
z-index: 1;
}
#skipbutton {
width: 80% !important;
background-color: #CCC;
text-align: center;
}