-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (72 loc) · 1.36 KB
/
Copy pathstyle.css
File metadata and controls
90 lines (72 loc) · 1.36 KB
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: rgb(196, 182, 138);
}
#heading{
text-align: center;
}
#screen{
size: 70vmin;
display: flex;
justify-content: center;
align-items: center;
}
.hidden {
display: none !important;
}
#result-popup {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 10;
}
#result-box {
background-color: white;
padding: 2rem;
border-radius: 1rem;
text-align: center;
}
#result-text {
font-size: 2rem;
margin-bottom: 1rem;
}
#restart {
padding: 0.5rem 1rem;
font-size: 1.2rem;
border: none;
background-color: darkcyan;
color: white;
border-radius: 0.5rem;
cursor: pointer;
}
#game
{
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1vmin;
height: 60vmin;
width: 60vmin;
margin: auto;
margin-top: 10vmin;
}
.box{
height: 18vmin;
width: 18vmin;
text-align: center;
border-radius: 1rem;
background-color: darkcyan;
color: rgb(5, 13, 13);
cursor: pointer;
border-color: black;
font-size: 9vmin;
}