-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle1.css
More file actions
78 lines (74 loc) · 1.57 KB
/
style1.css
File metadata and controls
78 lines (74 loc) · 1.57 KB
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
* {
padding: 0; margin: 0;
-webkit-tap-highlight-color:transparent;
}
body {
height: 100%;
overflow: hidden;
font-size: 18px;
font-family: 'Open Sans', sans-serif;
}
.game {
position: relative;
}
#gameCanvas {
background: #dfdfdf;
position: absolute;
}
/*canvas { background: #eee; display: block; margin: 0 auto; }*/
#interface {
height: 31%;
position: fixed;
bottom:0%;
width:100%;
background-color: #c2c2c2;
opacity: 1;
font-family: 'Open Sans', sans-serif;
}
.interface_button {
background-color: #8f8f8f;
color: #48488d;
box-shadow: 3px 4px 0px 0px #899599;
border: 1px solid #636363;
cursor: pointer;
text-shadow: 0px 1px 0px #2f6627;
user-select: none;
text-align: center;
}
.interface_button:hover {
background-color: #888888;
}
.interface_button:active {
background-color: #666666;
}
.open_menu_button {
background-color: #8f8f8f;
color: #48488d;
box-shadow: 2px 3px 0px 0px #899599;
border: 1px solid #636363;
cursor: pointer;
text-shadow: 0px 1px 0px #2f6627;
user-select: none;
text-align: center;
}
.open_menu_button:hover {
background-color: #888888;
}
.open_menu_button:active {
background-color: #666666;
}
#menu {
position: absolute;
left: 100px;
top: 100px;
width: 100px;
height: 100px;
background-color: #8f8f8f;
color: #48488d;
box-shadow: 3px 4px 0px 0px #899599;
border: 1px solid #636363;
cursor: pointer;
text-shadow: 0px 1px 0px #2f6627;
user-select: none;
text-align: center;
}