-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfruit_style.css
66 lines (58 loc) · 1.11 KB
/
fruit_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
html{
background: url('bg.jpg');
background-size: cover;
width: 100%;
height: 100%;
}
button{
margin:20px;
padding:20px;
cursor:pointer;
}
img{
width: 140px;
height: 160px;
}
.container {
width: 600px;
height: 350px;
margin: auto;
margin-top: 70px;
text-align: center;
background-color: darkcyan;
border-radius: 5px;
}
.slot{
width: 140px;
height: 160px;
border: 6px solid DarkTurquoise;
padding: 10px;
margin: 10px;
background-color: lightcyan;
display: inline-block;
}
h1{
font-family: 'Patrick Hand SC', cursive;;
font-weight: normal;
color: darkcyan;
text-align: center;
font-size: 80px;
margin-top: 50px;
text-shadow: 1px 2px 3px black;
}
/* Exercise 6: Style the stop button to match our theme and add different style on hover slide 13 */
#btn, #soundBtn, #musicBtn{
border-radius:20px;
color:white;
background-color:MediumAquaMarine;
border:3px solid black;
font-size:30px;
font-family:'Patrick Hand SC', cursive;
}
#btn:hover, #soundBtn:hover, #musicBtn:hover{
background-color:MediumSeaGreen;
border-radius:23px;
}
#gameOver{
display:inline;
}