-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
97 lines (88 loc) · 1.56 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
.grid {
display: grid;
grid-template-columns: repeat(24, 4%);
grid-template-rows: repeat(12, 8%);
width: 100%;
height: 100%;
min-width: 1200px;
column-gap: 0;
row-gap: 0;
margin-left: 2rem;
}
.restart {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1000;
display: flex;
justify-content: center;
align-items: center;
background: black;
transition: opacity 2s ease-out;
}
.restart_button {
background: rgb(58, 131, 247);
display: flex;
box-sizing: content-box;
border-radius: 10px;
justify-content: center;
align-items: center;
font-size: 2rem;
color: white;
cursor: pointer;
width: 200px;
height: 4%;
}
.restart[type="restart"] {
opacity: 80%;
}
.cell {
display: flex;
font-size: 2px;
background: url("./thumbnail/lawn.jpeg");
background-size: 80px 80px;
width: 100;
height: 100;
border: 1px solid rgb(19, 42, 19);
top: 50%;
left: 50%;
align-items: center;
justify-content: center;
transition: all 0.5s linear;
}
html,
body {
width: 100%;
height: 100%;
min-width: 1200px;
background: url("./thumbnail/lawn.jpeg");
transition: all 0.5s linear;
overflow: hidden;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
.blue_patch {
width: 100%;
height: 100%;
background-color: blue;
opacity: 50%;
}
.status {
font-size: 2em;
color: white;
background-color: black;
font-family: "Helvetica";
}
.center {
margin: auto;
display: block;
margin-left: auto;
margin-right: auto;
width: fit-content;
font-family: "Helvetica";
}