-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (59 loc) · 1.25 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@media all and (max-width: 450px) {
h1 {font-size: 1.8rem;}
}
html, body {
background-image: url('img/01.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.banner {
margin: auto;
color: floralwhite;
text-align: center;
}
h1 {
font-family: fantasy;
font-size: 2.5rem;
letter-spacing: 0.2rem;
padding-bottom: 5px;
border-bottom: rgba(128, 0, 0, 0.8) 3px solid;
}
.drumKit {
width: 85%;
height: 70%;
margin: auto;
text-align: center;
display: grid;
justify-content: center;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 1.75rem;
}
.pads {
display: flex;
justify-content: start;
align-items: flex-end;
padding-bottom: 8px;
padding-left: 8px;
background-color: rgba(128, 0, 0, 0.8);
border-radius: 10px;
font-family: fantasy;
font-weight: 500;
font-size: 1.25rem;
color: floralwhite;
box-shadow: 0px 0px 10px floralwhite;
}
@media all and (max-width: 450px) {
h1 {font-size: 1.8rem;}
}