-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (67 loc) · 1.19 KB
/
Copy pathstyle.css
File metadata and controls
77 lines (67 loc) · 1.19 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
* {
margin: 0;
padding: 0;
align-items: center;
justify-content: center;
}
body {
background-color: rgb(211, 188, 158);
text-align: center;
align-items: center;
justify-content: center;
position:relative;
display:flex;
height:100vh;
}
.box {
height: 18vmin;
width: 18vmin;
margin: 2px;
padding: 0px;
border: none;
display: inline-block;
flex-wrap: wrap;
background-color: rgb(197, 144, 75);
border-radius: 1rem;
font-size: 8vmin;
color: black;
}
.container {
height: 70vh;
width:70min;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.game {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
height: 60vmin;
width: 60vmin;
}
#reset-btn {
background-color: black;
color: white;
padding: 1rem;
font-size: 1.25rem;
border-radius: 1rem;
text-transform: uppercase;
}
#new-btn {
background-color: black;
color: white;
padding: 1rem;
font-size: 1.25rem;
border-radius: 1rem;
text-transform: uppercase;
}
#msg{
color: rgb(84, 9, 9);
font-size: x-large;
}
.hide{
display:none;
}