-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsweeper.css
More file actions
173 lines (147 loc) · 2.92 KB
/
Copy pathsweeper.css
File metadata and controls
173 lines (147 loc) · 2.92 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
body {
font-family: 'Droid Sans Mono', Courier, mono;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
text-align: center;
}
h1 {
font-family: 'Permanent Marker', 'Source Sans Pro', 'Droid Sans Mono', Courier, mono;
letter-spacing: 4px;
font-size: 4em;
color: #C53131;
margin: 0;
}
p {
font-family: 'IM Fell DW Pica SC', 'Source Sans Pro', 'Droid Sans Mono', Courier, mono;
font-size: 1.3em;
color: #909090;
margin-top: 0;
}
div#menu {
margin: auto;
}
li {
display: inline-block;
text-transform: uppercase;
background-color: #e3e3e3;
text-align: center;
padding: 4px;
width: 120px;
}
li:hover {
cursor: pointer;
background-color: #C53131;
color: white;
}
div#resize {
margin-top: 2em;
margin-bottom: 0;
font-family: 'IM Fell DW Pica SC', 'Source Sans Pro';
font-size: 1em;
color: #808080;
}
input {
border: 2px solid white;
-webkit-box-shadow:
inset 0 0 2px rgba(0,0,0,0.1),
0 0 4px rgba(0,0,0,0.1);
-moz-box-shadow:
inset 0 0 2px rgba(0,0,0,0.1),
0 0 4px rgba(0,0,0,0.1);
box-shadow:
inset 0 0 2px rgba(0,0,0,0.1),
0 0 4px rgba(0,0,0,0.1);
padding: 3px;
background: rgba(255,255,255,0.5);
margin: 0 10px;
text-align: center;
color: #C53131;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
table {
font-family: 'Permanent Marker', 'Droid Sans Mono', Courier, mono;
border-spacing: 1px;
background-color: #425275;
margin: auto;
margin-top: 2em;
}
td {
width: 24px;
height: 24px;
border: 1px solid #909090;
text-align: center;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
-moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
}
body span {
color: #C53131;
}
#result {
font-family: 'Permanent Marker', cursive;
height: 2em;
line-height: 2em;
margin: 3px;
padding: 3px;
font-size: 2em;
}
.win {
color: green;
}
#flags {
font-family: 'Permanent Marker', cursive;
font-size: 2em;
margin-top: 3em;
height: 2em;
color: #C53131;
}
td#clicked {
background-color: #ececec;
border: none;
}
td.reveal {
background-color: #C53131;
}
td.flag {
padding: 0;
margin: 0;
font-size: 1em;
color: #ececec;
background-color: #050041;
}
td.mine {
padding: 0;
margin: 0;
font-size: 1.1em;
color: #C53131;
}
td.colorize1 {
color: blue;
}
td.colorize2 {
color: green;
}
td.colorize3 {
color: orange;
}
td.colorize4 {
color: purple;
}
td.colorize5 {
color: #FF00EB;
}
td.colorize6 {
color: #858585;
}
td.colorize7 {
color: #07BDBD;
}
td.colorize8 {
color: black;
}