-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (83 loc) · 1.8 KB
/
Copy pathstyle.css
File metadata and controls
87 lines (83 loc) · 1.8 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
* {
padding: 0px;
margin: 0px;
border-spacing: 0px; }
body {
background: #edca51;
font: 10px/12px verdana; }
.center {
margin: 100px auto;
width: 730px;
text-align: center;
border: 10px solid #cd333e;
padding: 30px;
-webkit-border-radius: 50px;
-moz-border-radius: 50px;
border-radius: 50px;
display: block;
position: relative; }
.center h1 {
font-size: 4em;
color: #694b3c;
margin: 40px 0px; }
.center.start-screen .select {
font-size: 1.5em;
color: #694b3c;
margin: 25px; }
.center.start-screen .select .shift {
color: #00a0b0;
font-weight: bold;
text-transform: uppercase; }
.button {
list-style-type: none;
font: bold 2.5em/2em verdana;
color: #00a0b0;
background: #eb6940;
width: 250px;
height: 50px;
margin: 20px auto;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px; }
.button:hover {
color: #cd333e;
cursor: pointer; }
.grid {
font-size: 1.2em;
font-weight: bold; }
.grid table {
margin: auto; }
.grid table.game-over td {
cursor: default !important; }
.grid td {
height: 20px;
width: 20px;
border: 2px solid;
border-color: #edca51;
cursor: pointer; }
.grid td.exploded {
color: #cd333e; }
.grid td.covered {
border-color: #eeeeee #999999 #999999 #eeeeee;
background-color: #cccccc;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none; }
.grid td.undefined {
cursor: default; }
.grid .one {
color: #0000cd; }
.grid .two {
color: #228b22; }
.grid .three {
color: #cd333e; }
.grid .four {
color: #00008b; }
.grid .five {
color: #8b0000; }
.grid .six {
color: teal; }
.grid .seven {
color: #7851a9; }
.grid .eight {
color: black; }