Skip to content

Commit 10d4aeb

Browse files
committed
💄 Drum > Init styles
1 parent a64f81a commit 10d4aeb

File tree

1 file changed

+104
-0
lines changed

1 file changed

+104
-0
lines changed

medium/Drum-Kit/styles.css

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
body {
2+
text-align: center;
3+
background-color: #283149;
4+
}
5+
6+
h1 {
7+
font-size: 5rem;
8+
color: #DBEDF3;
9+
font-family: "Arvo", cursive;
10+
text-shadow: 3px 0 #DA0463;
11+
12+
}
13+
14+
footer {
15+
color: #DBEDF3;
16+
font-family: sans-serif;
17+
}
18+
19+
.w {
20+
background-image: url("images/tom1.png");
21+
}
22+
23+
.a {
24+
background-image: url("images/tom2.png");
25+
}
26+
27+
.s {
28+
background-image: url("images/tom3.png");
29+
}
30+
31+
.d {
32+
background-image: url("images/tom4.png");
33+
}
34+
35+
.j {
36+
background-image: url("images/snare.png");
37+
}
38+
39+
.k {
40+
background-image: url("images/crash.png");
41+
}
42+
43+
.i {
44+
background-image: url("images/kick.png");
45+
}
46+
47+
.set {
48+
margin: 10% auto;
49+
}
50+
51+
.game-over {
52+
background-color: red;
53+
opacity: 0.8;
54+
}
55+
56+
.pressed {
57+
box-shadow: 0 3px 4px 0 #DBEDF3;
58+
opacity: 0.5;
59+
}
60+
61+
.red {
62+
color: red;
63+
}
64+
65+
.drum {
66+
outline: none;
67+
border: 10px solid #404B69;
68+
font-size: 5rem;
69+
font-family: 'Arvo', cursive;
70+
line-height: 2;
71+
font-weight: 900;
72+
color: #DA0463;
73+
text-shadow: 3px 0 #DBEDF3;
74+
border-radius: 15px;
75+
display: inline-block;
76+
width: 150px;
77+
height: 150px;
78+
text-align: center;
79+
margin: 10px;
80+
background-color: white;
81+
}
82+
83+
.drum:hover{
84+
color: yellow;
85+
}
86+
87+
88+
#footer{
89+
margin-top:17%;
90+
padding: 1% 5%;
91+
text-align: center;
92+
background-color:black;
93+
94+
}
95+
96+
.git
97+
{
98+
color: grey;
99+
margin : 20px 10px;
100+
border-radius: 20px;
101+
}
102+
.git:hover{
103+
color: blue;
104+
}

0 commit comments

Comments
 (0)