-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (81 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
body {
padding: 0;
margin: 0;
background: #8C969E;
font-family: 'Roboto', sans-serif;
-webkit-user-select: none; /* Chrome all / Safari all */
-moz-user-select: none; /* Firefox all */
-ms-user-select: none; /* IE 10+ */
user-select: none; /* Likely future */
text-align: center;
}
p {
margin-bottom: 5px;
font-size:18px;
}
#sidebar {
position: fixed;
left: 0;
top: 0;
height: 100%;
width: 180px;
background-color: #F7FCFF;
background: -webkit-linear-gradient(top, #f7fcff, #e7f0f7);
}
#game-holder {
top: 20%;
left: 37%;
}
#game-buttons {
width: 100%;
height: 40px;
}
#face-button {
width: 30px;
height: 30px;
background-image: url('images/happy_face.png');
background-size: 25px 26px;
margin-top: 5px;
}
#solve-button {
margin-top: 50px;
}
.no-outline {
outline: none;
}
.input-style {
border: 1px solid #ccc;
background-color: #fff;
width: 80px;
height: 27px;
}
.column-left{
float: left;
width: 33.33%;
height: 100%;
}
.column-center{
display: inline-block;
width: 33.33%;
height: 100%;
}
.column-right{
float: right;
width: 33.33%;
height: 100%;
}
.italics {
font-style: italic;
}
.dark-blue {
color: rgb(0, 0, 100);
}
.box-shadow {
box-shadow: 1px 0 3px 0 #404A52, 1px 0 0 #646D74;
}
.absolute {
position: absolute;
}
.minesweeper-gray {
background-color: rgb(192, 192, 192);
}