-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (82 loc) · 1.29 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 62.5%;
}
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #283149;
}
.container {
height: 60vh;
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: column;
}
.title {
font-size: 7rem;
color: white;
}
.set {
margin-bottom: 3rem;
}
.drum {
cursor: pointer;
border: none;
border-radius: 2rem;
background: none;
padding: 3rem 4rem;
margin-right: 1.5rem;
color: #da0463;
font-weight: 900;
font-size: 6rem;
border: 1.1rem solid #404b69;
background: url(/images/crash.png);
}
.k {
background: url(/images/kick.png);
}
.j {
background: url(/images/snare.png);
}
.d {
background: url(/images/tom1.png);
}
.s {
background: url(/images/tom2.png);
}
.a {
background: url(/images/tom3.png);
}
.w {
background: url(/images/tom4.png);
}
@media (max-width: 375px) {
.container {
height: 100vh;
justify-content: space-between;
}
.title {
font-size: 3rem;
}
.set {
width: 100%;
margin: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
/* justify-content: space-around; */
}
.drum {
margin: auto;
margin-bottom: 1rem;
}
}