-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
73 lines (71 loc) · 1.38 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
html {
padding-left: 45%;
margin-top: 10%;
}
body {
background-color: #DB9EA6;
}
h1 {
font-family: monospace;
color: #1C181F;
font-size: 19pt;
font-weight: lighter;
text-align: center;
background: #8B3A62;
border-bottom: 3px dashed #A46582;
width: 190px;
}
button {
background-color: #fce4ec; color: #000000;
font-size: 12pt;
font-family: monospace;
text-align: center;
text-decoration: none;
border: none;
padding: 15px 51px;
display: inline-block;
}
button:hover {
background: #C51162;
}
.mineboard {
display: table;
width: 100%;
text-align: center;
border-radius: 3px;
box-shadow: 0 0 5px 2px rgba(0,0,0,.35)
}
.mineRow {
display: table-row;
}
.mineCell {
border: 1px solid #F8BBD0;
display: table-cell;
padding: 9px 14px;
background: #EE799F;
border: 1px solid rgba(0,0,0,0.05);
box-shadow: inset 0 2px 3px rgba(255,255,255,0.3),
inset 0 -2px 3px rgba(0,0,0,0.3),
0 1px 1px rgba(255,255,255,0.9);
}
.mineBody {
display: table-row-group;
}
#mineCell {
border: 1px solid #F8BBD0;
display: table-cell;
padding: 9px 14px;
background: #EE799F;
border: 1px solid rgba(0,0,0,0.05);
box-shadow: inset 0 2px 3px rgba(255,255,255,0.3),
inset 0 -2px 3px rgba(0,0,0,0.3),
0 1px 1px rgba(255,255,255,0.9);
}
/*
.img {
width: 13px;
height: 13px;
background-image: url('images/bomb.png');
margin: 0 auto;
display: none;
}*/