-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (42 loc) · 838 Bytes
/
style.css
File metadata and controls
45 lines (42 loc) · 838 Bytes
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
body{
display: flex;
justify-content: center;
align-content: center;
vertical-align: middle;
background-color: gainsboro;
}
.game{
margin: 20px;
background-color: white;
display: flex;
position: relative;
flex-flow: row wrap;
flex-wrap: wrap;
align-items:stretch;
width: 408px;
height: 408px;
}
.cubs{
width: 100px;
height: 100px;
font-size: 40px;
color: orange;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid black;
}
#reset{
cursor: pointer;
display: flex;
padding: 10px;
color:white;
height: 60px;
border-radius: 20%;
font-size: 50px;
background-color: dimgray;
transition: color 2s;
}
#reset:hover{
background-color: #050505;
}