-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
144 lines (137 loc) · 3.04 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
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
*{
margin: 0;
padding: 0;
max-width: 100%;
font-family: 'Cabin Sketch', cursive;
}
body{
background-image: url(background.jpg);
background-size: cover;
text-align: center;
}
.logo{
display: inline-flex;
padding-top: 3%;
}
.heading{
padding-top: 4%;
font-size: 40px;
color: whitesmoke;
animation: glow 1s ease-in-out infinite alternate;
}
.Drum{
height: 60px;
margin-left: 10px;
}
.heading:hover{
cursor: pointer;
transition: 1s;
text-shadow: 0 0 3px whitesmoke, 0 0 6px whitesmoke, 0 0 9px #f10c45, 0 0 12px #f10c45, 0 0 15px #f10c45, 0 0 18px #f10c45, 0 0 21px #f10c45;
}
#drumkit {
margin: 1.5rem auto;
color: whitesmoke;
text-align: center;
}
.keyBlock{
display: inline-grid;
place-content: center;
border-radius: 1rem;
width: 175px;
height: 145px;
padding: 1%;
margin: 1%;
cursor: pointer;
transition: 0.15s;
background: rgba(255, 255, 255, 0.274);
backdrop-filter: blur( 4px );
border: none;
}
.active {
background-color: #f10c45;
transform: scale(1.025);
border: none;
box-shadow: 0 0 3px whitesmoke, 0 0 6px whitesmoke, 0 0 9px #f10c45, 0 0 12px #f10c45, 0 0 15px #f10c45, 0 0 18px #f10c45, 0 0 21px #f10c45;
}
footer{
padding-top: 1%;
color: whitesmoke;
font-size: 18px;
animation: glow1 1s ease-in-out infinite alternate;
}
@keyframes glow {
from{color: whitesmoke;}
to{text-shadow: 0 0 3px whitesmoke, 0 0 6px whitesmoke, 0 0 9px #f10c45, 0 0 12px #f10c45, 0 0 15px #f10c45, 0 0 18px #f10c45, 0 0 21px #f10c45;}
}
@keyframes glow1 {
from{color: whitesmoke;}
to{text-shadow: 0 0 3px whitesmoke, 0 0 6px whitesmoke, 0 0 9px #f10c45, 0 0 12px #f10c45, 0 0 15px #f10c45, 0 0 18px #f10c45, 0 0 21px #f10c45;}
}
@media only screen and (max-width: 600px)
{
body{
background-image: url(background.jpg);
background-size: auto;
}
.logo{
padding-top: 10%;
}
.heading{
padding-top: 5%;
font-size: 28px;
color: whitesmoke;
animation: glow 1s ease-in-out infinite alternate;
}
#drumkit{
margin-top: 17%;
}
.Drum{
height: 43px;
margin-left: 10px;
}
.keyBlock{
width: 105px;
height: 100px;
padding: 1%;
margin: 1.5%;
font-size: 12px;
}
footer{
font-size: 13.5px;
margin-top: 15%;
}
}
@media only screen and (max-width: 400px)
{
body{
background-image: url(background.jpg);
background-size: auto;
}
.logo{
padding-top: 2%;
}
.heading{
padding-top: 5%;
font-size: 28px;
color: whitesmoke;
animation: glow 1s ease-in-out infinite alternate;
}
#drumkit{
margin-top: 2%;
}
.Drum{
height: 43px;
margin-left: 10px;
}
.keyBlock{
width: 95px;
height: 80px;
padding: 2%;
margin: 1.5%;
font-size: 12px;
}
footer{
font-size: 13.5px;
margin-top: -3%;
}
}