-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
153 lines (147 loc) · 2.38 KB
/
styles.css
File metadata and controls
153 lines (147 loc) · 2.38 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
@media (max-device-width: 900px) {
#wrapper {
width: 100%;
}
}
@media (min-device-width: 900px) {
#wrapper {
width: 300px;
}
#lC, #rC {
display: none;
}
}
body {
font-family: verdana
}
#wrapper {
margin: auto;
}
#game {
position: relative;
margin-bottom: 5px;
}
#dtFrame {
border: 1px solid gray;
width: 100%;
position: relative;
margin-bottom: -5px;
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
}
#lC, #rC {
position: absolute;
width: 50%;
height: 50%;
bottom: 4px;
background-repeat: no-repeat;
}
#lC {
left: 0px;
background-image: url('controls/leftArrow.fw.png');
background-position: bottom 10px left;
}
#rC {
right: -2px;
text-align: right;
background-image: url('controls/rightArrow.fw.png');
background-position: bottom 10px right;
}
#scoreBoard {
color: white;
font-weight: bold;
font-size: 10pt;
position: absolute;
top: -5px;
left: 20px;
text-shadow: 2px 2px 5px black;
background-color: rgba(64, 64, 64, .5);
box-shadow: 0 0 15px rgb(64, 64, 64);
}
#overlay {
border: 1px solid black;
background-color: rgba(64, 64, 64, .5);
width: 100%;
height: 100%;
position: absolute;
top: 0px;
color: white;
text-align: center;
text-shadow: 3px 3px 7px black;
}
#overlay h1 {
margin-top: 50%;
}
#overlay h3 {
font-size: 10pt;
margin-top: 20%;
}
#overlay h4 {
font-size: 6pt;
margin-top: 5px;;
}
.visible {
display: block;
}
.invisible {
display: none;
}
#optControl:hover {
color: #666666;
cursor: pointer;
}
#optList > li {
margin-bottom: 10px;
}
#options {
background-color: #DDDDDD;
padding: 3px;
border: 1px solid gray;
}
#options li {
list-style: none;
padding-bottom: 5px;
}
#options ul {
padding-left: 0px;
}
#options output {
display: inline-block;
width: 15%;
height: 12px;
font-size: 10px;
border-bottom: 1px solid gray;
border-right: 1px dashed gray;
padding-right: 5px;
text-align: right;
}
#options p {
font-size: 10px;
margin-top: 2px;
}
#options h3, #options h4, #options h5 {
margin: 0px;
}
#options h4, #options h5 {
border-bottom: 1px solid gray;
}
#cheats.disabled {
color: gray;
}
input[type=range] /deep/ #track {
background-color: #999999;
margin-left: 0px;
}
#cheats.disabled input[type=range] /deep/ #track {
background-color: #BBBBBB;
}
input[type=range] /deep/ #thunb::before {
background-color: red;
width: 50px;
height: 50px;
display: block;
}
input[type=range] {
height: 12px;
width: 75%;
}