-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
133 lines (128 loc) · 2.34 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
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');
/* enitre page declarations */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Orbitron', sans-serif;
color: white;
}
/* hero page container declaration */
#hero{
width: 100vw;
height: 100vh;
background-color: black;
}
/* page container declaration */
#pageContainer{
width: 100%;
height: 100%;
display:flex;
flex-direction: column;
justify-content: center;
align-content: center;
}
/* page container heading declaration(s) for all elements of heading */
#pageContainer #heading{
width: 90%;
height: 25%;
display:flex;
flex-direction: row;
flex-wrap: wrap;
align-content: space-around;
justify-content: center;
align-self: center;
border-bottom: 4px solid white;
}
#heading h1, h3{
width: 100%;
text-align: center;
}
h1{
color: white;
font-size: 55px;
}
h3{
font-size: 25px;
color: white;
}
/* button container-box declaration */
#buttonContainer{
display:flex;
width: 90%;
height: 50%;
flex-direction: row;
flex-wrap: wrap;
align-content: space-around;
justify-content: center;
align-self: center;
background-image: url(images/background.png)
}
/* actual button declaration*/
#boom, #clap, #hihat, #kick, #openhat, #ride, #snare, #tink, #tom {
width: 10%;
border: 1px solid white;
text-align: center;
justify-self: space-between;
margin-left: 5px;
margin-right: 5px;
background-color: white;
cursor: pointer;
}
#boom{
border: 2px solid coral;
}
#boom:hover{
box-shadow: 2px coral;
}
#boom h2, #boom p{
color: coral;
}
#clap{
border: 2px solid blue;
}
#clap h2, #clap p{
color: blue;
}
#hihat{
border: 2px solid green;
}
#hihat h2, #hihat p{
color: green;
}
#kick{
border: 2px solid red;
}
#kick h2, #kick p{
color: red;
}
#openhat{
border: 2px solid orange;
}
#openhat h2, #openhat p{
color: orange;
}
#ride{
border: 2px solid purple;
}
#ride h2, #ride p{
color: purple;
}
#snare{
border: 2px solid darkolivegreen;
}
#snare h2, #snare p{
color: darkolivegreen;
}
#tink{
border: 2px solid hsl(73, 98%, 41%);
}
#tink h2, #tink p{
color: hsl(73, 98%, 41%);
}
#tom{
border: 2px solid magenta;
}
#tom h2, #tom p{
color: magenta;
}