-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (82 loc) · 1.64 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
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,800");
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
.container {
width: 500px;
align-content: center;
font-family: 'Permanent Marker', cursive;
}
.grid {
height: 400px;
width: 400px;
display: flex;
flex-wrap: wrap;
background-color: #dcd6bc;
margin-left: 50px;
margin-top: 20px;
border: 10px solid #dcd6bc;
margin-bottom: 10px;
}
div {
font-size: 25px;
text-align: center;
font-family: 'Roboto Mono', monospace;
}
.valid {
height: 40px;
width: 40px;
border: 5px solid;
border-color: #f5f3eb #bab7a9 #bab7a9 #fff9db;
box-sizing: border-box;
}
.checked {
height: 40px;
width: 40px;
border: 2px solid;
background-color: #cecab7;
border-color: #9c998d;
box-sizing: border-box;
}
.bomb {
height: 40px;
width: 40px;
border: 5px solid;
border-color: #f5f3eb #bab7a9 #bab7a9 #fff9db;
box-sizing: border-box;
}
.one {
color: #e76346;
}
.two {
color: #4199d3;
}
.three {
color: #57da59;
}
.four{
color: #bb41d3;
}
#result {
margin-top: 5px;
color: #e76346;
}
footer {
background-color: #222;
color: #fff;
font-size: 14px;
bottom: 0;
position: fixed;
left: 0;
right: 0;
text-align: center;
z-index: 999;
}
footer p {
margin: 10px 0;
}
footer i {
color: red;
}
footer a {
color: #3c97bf;
text-decoration: none;
}