-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
executable file
·129 lines (109 loc) · 1.59 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
*{
background-color:#F9C7D1;
font-family: Corbel;
}
html, body {
max-width: 100% !important;
#overflow-x: hidden !important;
}
#WebGL-output{
margin: 0 auto;
width: 33%;
}
#page-description{
text-align: center;
}
#game-info{
width: 20em;
height: 1.3em;
position: relative;
float:left;
vertical-align:middle;
}
#game-lives{
width: 4em;
height: 1.3em;
position: relative;
float: right;
font-weight: bold;
//color: AE1534;
}
#game-screen{
margin-top: -1em;
width: 100%;
height: auto;
}
#toolbar{
width: 9em;
height: 2.5em;
margin: 0em auto;
}
#button1{
background-color:blue;
cursor:pointer;
}
#button1:hover, #game-mode:hover{
font-weight: 900;
}
#button2{
background-color:red;
}
.button-toolbar{
width: 5em;
text-align: center;
float: left;
color: white;
}
#game-mode{
width: 4em;
text-align: center;
float: left;
color: white;
background-color: orange;
cursor:pointer;
}
#select-object{
width: 4em;
text-align: center;
float: left;
color: white;
background-color: #9fcc90;
}
#instructions{
text-align: center;
}
.line{
background-color: #607D8B;
margin-top: 1em;
width: 100%;
height: 0.1em;
}
#bt-play{
width: 5em;
height: 2em;
text-align: center;
background-color: red;
color: white;
margin: 0 auto;
line-height: 2em;
cursor:pointer;
}
#bt-play:hover{
background-color: white;
color: red;
font-weight:bold;
}
.invisible{
position:absolute;
// top: -99999px;
visibility: hidden;
}
.visible{
position:relative;
visibility: visible;
}
#log{
margin: 0 auto;
width: 11em;
height: 1.3em;
}