-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.css
147 lines (121 loc) · 2.35 KB
/
game.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
141
142
143
144
145
146
147
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Press Start 2P', monospace;
}
h2#title {
text-align: center;
margin: 20px 0;
}
#the-dojo {
margin: 0 auto;
width: 320px;
}
#remaining {
display: flex;
justify-content: space-between;
background-color: dimgray;
padding: 3px;
border: 3px solid darkgray;
border-right-color: black;
border-bottom-color: black;
}
#remaining h3 {
border: 3px solid black;
border-bottom-color: darkgray;
border-right-color: darkgray;
padding: 5px;
background-color: rgb(66, 66, 66);
}
h3#safes {
color: rgb(175, 196, 140);
}
h3#ninjas {
color: rgb(236, 88, 88)
}
#buttons {
display: flex;
flex-wrap: wrap;
}
#buttons button {
background-color: wheat;
height: 32px;
width: 32px;
border: 2px solid #ccc;
border-right: 2px solid #999;
border-bottom: 2px solid #999;
}
#buttons button:active {
border: 2px solid #999;
border-right: 2px solid #ccc;
border-bottom: 2px solid #ccc;
}
#buttons button.revealed {
background-color: rgb(175, 196, 140);
border: none;
}
#buttons button.revealed:active {
border: none;
}
#buttons button.marked {
background-color: rgb(236, 88, 88);
}
#buttons button.revealed.cheat {
background-color: rgb(140, 190, 196)
}
#buttons button.marked.cheat {
background-color: rgb(236, 189, 88)
}
#buttons button.cheat.mistake {
background-color: rgb(190, 140, 196);
}
#settings {
margin: 5px auto;
}
.row {
display: flex;
justify-content: center;
}
#settings label,
#settings input,
button#newgame {
font-size: 1em;
padding: 5px 10px;
}
#settings label {
color: gray;
width: 150px;
}
#settings input {
width: 500px;
}
button#newgame {
background-color: rgb(175, 196, 140);
border: 3px solid black;
box-shadow: 2px 2px 0px black;
display: block;
margin: 0 auto;
}
button#newgame:active {
box-shadow: none;
}
#win_message,
#lose_message {
width: 30%;
padding: 10px;
margin: 0 auto;
position: fixed;
left: 0;
right: 0;
top: 100px;
background-color: rgba(0, 0, 0, 0.5);
}
#win_message h3 {
color: rgb(108, 245, 255);
text-align: center;
}
#lose_message h3 {
color: rgb(236, 88, 88);
text-align: center;
}