-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimpasse.css
executable file
·126 lines (109 loc) · 1.58 KB
/
impasse.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
body {
font-size: 12px;
font-family: "Trebuchet MS", "Arial";
background-color: black;
color: white;
}
h1 {
margin: 0 auto;
font-size: 16px;
text-align: center;
}
#game_wrapper {
margin: 0 auto;
margin-top: 80px;
width: 600px;
}
#level_title, #level_number {
border: 1px solid black;
height: 60px;
background-color: #222222;
}
#level_title {
line-height: 60px;
text-align: center;
font-size: 1.3em;
}
#canvas_wrapper {
height: 180px;
}
#canvas {
background-color: white;
}
#level_number {
width: 550;
padding: 0 25px;
}
#level_number table {
padding: 20px 0 0 0;
border: none;
}
#level_number tbody {
border: none;
}
#level_number td {
width: 13px;
height: 14px;
padding: 0;
border-left: 4px solid #222;
border-right: 4px solid #222;
background-color: blue;
}
.selected {
background-image: url(on.png);
}
.unselected {
background-image: url(off.png);
}
#options_title {
text-align: right;
margin: 10px 0 3px 0;
padding: 0 5px;
}
#options_title:hover {
cursor: pointer;
}
#options_wrap {
display: none;
width: 350px;
float: right;
padding-bottom: 20px;
}
#options {
width: 350px;
background-color: #222;
padding: 10px;
text-align: left;
}
#op_table {
text-align: left;
}
#op_table tr td:last-child {
float: right;
}
.op_sec {
padding: 15px 0 5px 0;
border-bottom: 1px solid white;
}
#options label {
line-height: 25px;
}
#options input {
float: right;
}
#footer {
clear: both;
margin: 0 auto;
text-align: center;
}
a {
color: white;
}
#help_text {
display: none;
text-align: center;
background-color: #222;
}
#best_view {
text-align: center;
}