-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (96 loc) · 1.63 KB
/
style.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
html {
box-sizing: border-box;
background: #ffc600;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
padding: 0;
margin: 0;
font-family: "Amatic SC", cursive;
}
h1 {
text-align: center;
font-size: 4rem;
line-height: 1;
margin-top: 0;
margin-bottom: 0;
}
.score-timer {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 5px;
padding: 10px 0;
}
.score-timer p {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
padding: 0;
margin: 0;
}
.start-game {
display: flex;
justify-content: center;
flex-wrap: wrap;
padding-top: 10px;
padding-bottom: 10px;
}
button {
padding: 8px;
background-color: transparent;
color: black;
border: 3px solid black;
border-radius: 5px;
font-family: "Amatic SC", cursive;
font-size: 3rem;
font-weight: 700;
cursor: pointer;
}
button:hover {
background-color: black;
color: #ffc600;
border-color: #ffc600;
outline: black solid 1px;
}
.game {
width: 600px;
height: 400px;
display: flex;
flex-wrap: wrap;
margin: 0 auto 70px auto;
}
.hole {
flex: 1 0 33.33%;
overflow: hidden;
position: relative;
}
.hole:after {
display: block;
background: url("dirt.svg") bottom center no-repeat;
background-size: contain;
content: "";
width: 100%;
height: 70px;
position: absolute;
z-index: 2;
bottom: -30px;
}
.mole {
background: url("mole.svg") bottom center no-repeat;
background-size: 60%;
position: absolute;
top: 100%;
width: 100%;
height: 100%;
cursor: pointer;
transition: all 0.4s;
}
.hole.up .mole {
top: 0;
}