-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdomy.css
More file actions
147 lines (113 loc) · 2.91 KB
/
Copy pathdomy.css
File metadata and controls
147 lines (113 loc) · 2.91 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&family=Madimi+One&family=Micro+5&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Ojuju:wght@200..800&family=Signika+Negative:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Kode+Mono:wght@400..700&family=Madimi+One&family=Micro+5&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Ojuju:wght@200..800&family=Signika+Negative:wght@300..700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Kanit", sans-serif;
}
body{
height: 80vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #283149;
}
.title {
color: white;
font-size: 4rem;
text-align: center;
margin: 50px 0;
padding: 24px;
text-shadow: 3px 1px rgb(0, 166, 255);
}
.allbtn {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.play{
color: white;
font-size: 3rem;
text-align: center;
margin-top: 50px;
}
.btn {
padding: 45px 45px;
background-color: #fff;
color: rgb(0, 166, 255);
font-size: 2.5rem;
font-weight: 700;
border: 0;
border: 5px solid #404b692d;
border-radius: 5px ;
margin: 0 20px;
box-shadow: 0 0 40px rgba(0, 166, 255, 0.689);
background-size: cover;
background-position: 0 0;
}
.btn:hover {
box-shadow: 7px 0 5px rgba(0, 166, 255, 0.689);
transition: box-shadow .2s ease;
}
.scaling {
transition: .3s;
transform: scale(1.3);
}
.w {
background-image: url(crash.png);
}
.a {
background-image: url(kick.png);
}
.s {
background-image: url(snare.png);
}
.d {
background-image: url(tom1.png);
}
.j {
background-image: url(tom2.png);
}
.k {
background-image: url(tom3.png);
}
.l {
background-image: url(tom4.png);
}
.me {
text-align: center;
color: rgba(128, 128, 128, 0.79);
}
@media screen and (max-width:1020px) {
body{
display: block;
height: 20vh;
}
.btn {
padding: 35px 45px;
margin: 15px 0;
}
.allbtn{
display: grid;
grid-template-columns: repeat(3 , 80px);
grid-template-rows: repeat(2 , 85px);
justify-content: center;
align-content: center;
width: 100%;
align-items: center;
padding: 10px;
grid-gap: 80px 30px;
}
.title{
font-size: 2.3rem;
margin: 20px 0;
}
}
@media screen and (max-width:600px) {
.play {
font-size: 1.8rem;
margin: 0;
}
}