-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.css
91 lines (81 loc) · 1.6 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
* {
margin: 0;
padding: 0;
}
.heading {
height: 60px;
color: rgb(36, 24, 10);
background-color: #e2e264;
opacity: 0.6;
display: flex;
justify-content: center;
align-items: center;
}
body {
background-color: rgb(15, 20, 15);
text-align: center;
}
.container {
height: 70vmin;
display: flex;
justify-content: center;
text-align: center;
flex-wrap: wrap;
}
.game {
width: 60vmin;
height: 50vmin;
display: flex;
margin-top: 2rem;
justify-content: center;
text-align: center;
flex-wrap: wrap;
gap: 1rem;
}
.box {
height: 15vmin;
width: 15vmin;
font-size: 6vmin;
background-color: rgb(230, 230, 141);
color: rgb(88, 12, 12);
border-radius: 1rem;
border: none;
/* box-shadow: 0 0 0.4rem rgb(204, 236, 128); */
}
#reset {
margin-bottom: 20px;
padding: 1rem;
font-size: 1.25rem;
font-weight: 900;
color: #301111;
background-color: #e2e264;
border-radius: 0.8rem;
border: wheat;
box-shadow: 0 0 1rem rgba(0,0,0.5);
}
#newBtn {
padding: 1rem;
font-size: 1.25rem;
font-weight: 900;
color: #301111;
background-color: #e2e264;
border-radius: 0.8rem;
border: wheat;
box-shadow: 0 0 1rem rgba(0,0,0.5);
}
#msg {
color: whitesmoke;
font-size: 2rem;
}
.msg-div {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
/* padding: 20px; */
gap: 1rem;
height: 90vmin;
}
.hide {
display: none;
}