-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
140 lines (118 loc) · 2.28 KB
/
style.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
.flex-container {
display: flex;
flex-flow: row wrap;
padding: 3%;
justify-content: center;
}
.break {
width: 100%;
flex-basis: 100%;
}
.item:before {
content: "";
display: block;
padding-top: 100%;
}
.item {
display: flex;
justify-content: center;
align-items: center;
font-size: 40px;
}
.mines-1 {
color: #5296a5;
}
.mines-2 {
color: #50723c;
}
.mines-3 {
color: #d81159;
}
.mines-4 {
color: #ffbc42;
}
.mines-5 {
color: #218380;
}
.mines-6 {
color: #685369;
}
.mines-7 {
color: #8f2d56;
}
.mines-8 {
color: #423e28
}
.clickable2 {
box-shadow: inset 0px 2px 0px 0px #ffffff;
background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
border-radius: 10px;
cursor: pointer;
color: #666666;
font-weight: bold;
text-decoration: none;
}
.clickable2:active {
position: relative;
top: 2px;
box-shadow: inset 0px 0px 0px 0px #ffffff;
}
.not-clickable2 {
box-shadow: inset 0px 2px 0px 0px #ffffff;
border-radius: 10px;
cursor: pointer;
color: #666666;
font-weight: bold;
text-decoration: none;
background: linear-gradient(to bottom, #f9f9f9 5%, #f9f9f9 100%);
}
.clickable {
box-shadow: inset 0px 2px 0px 0px #ffffff;
background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
background-color: #f9f9f9;
border-radius: 10px;
border: 2px solid #dcdcdc;
cursor: pointer;
color: #666666;
font-weight: bold;
text-decoration: none;
height: 2em;
width: 2em;
margin-left: 1em;
margin-right: 1em;
}
.not-clickable {
box-shadow: inset 0px 2px 0px 0px #ffffff;
border-radius: 10px;
cursor: pointer;
color: #666666;
font-weight: bold;
text-decoration: none;
background: linear-gradient(to bottom, #f9f9f9 5%, #f9f9f9 100%);
height: 2em;
width: 2em;
margin-left: 1em;
margin-right: 1em;
}
.clickable:active {
position: relative;
top: 2px;
box-shadow: inset 0px 0px 0px 0px #ffffff;
background-color: #beebf6;
}
.clickable2.active {
background-color: #beebf6;
}
.ongoing {
background-color: #ffffff;
}
.won {
background-color: #057F74;
}
.failed {
background-color: #f4796b;
}
body {
margin: 0;
font-family: 'Roboto', sans-serif;
}