-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
58 lines (57 loc) · 1.08 KB
/
main.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
*{
margin:0;
padding: 0;
box-sizing: border-box;
}
body{
background: #666;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.game{
display: flex;
}
.slot{
width: 100px;
height: 100px;
border-bottom: 3px solid white;
margin: 1rem;
font-size: 5rem;
font-family: 'Courier New', Courier, monospace;
display: flex;
justify-content: center;
align-items: center;
color: white;
background-image: url('Lily_Pad.png');
background-size: contain;
background-position: center;
}
.control{
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
height: 100px;
}
.reset{
width: 100%;
height: 30px;
background: white;
border: none;
transition: all 0.3s ;
}
.control > p {
color: white;
font-family: 'Courier New', Courier, monospace;
margin-bottom:1rem;
}
.reset:hover{
background: #ddd;
cursor: pointer;
}
.frog{
height: 90px;
width: 90px;
}