-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (105 loc) · 2.44 KB
/
Copy pathstyle.css
File metadata and controls
116 lines (105 loc) · 2.44 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
/*Monospace font was an intentional choice*/
*{
padding: 0;
margin: 0;
}
body{
background-image: linear-gradient(
115deg,
rgba(58, 58, 158, 0.8),
rgba(252, 15, 192, 0.3),
rgba(136, 136, 206, 0.7)
), url('./nikolai-chernichenko-QOLyehGXRyA-unsplash.jpg');
background-position: center;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
min-height: 100vh;
}
h1{
color: white;
text-align: center;
text-shadow: 2px 2px 4px #000, -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
main{
position: relative;
}
.drums{
display: block;
margin:0 auto;
width: 400px;
margin-top: 100px;
}
.kicks, .snare{
margin: 0;
}
footer{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
text-align: center;
color: white;
margin-top: 10px;
text-shadow: 4px 4px 20px black;
position: absolute;
bottom: 0;
width: 100%;
}
input{
box-shadow: 1px 1px 4px darkgray inset;
}
a{
text-decoration: none;
color: white;
user-select: none;
}
a:hover{
color: cyan;
}
#start{
position: absolute;
padding: 20px;
width: 50%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
margin: 0;
border-radius: 30px;
background: purple;
color: white;
font-weight: 500;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 2em;
}
.start{
display: none;
position: absolute;
height: 100vh;
top: 0;
left: 0;
margin: 0;
width: 100vw;
background: linear-gradient(
115deg,
rgba(58, 58, 158, 0.8),
rgba(252, 15, 192, 0.3),
rgba(136, 136, 206, 0.7)
), url('./nikolai-chernichenko-QOLyehGXRyA-unsplash.jpg');
background-position: center;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
}
.start::before{
content: "";
opacity: 0.4;
background: linear-gradient(
115deg,
rgba(58, 58, 158, 0.8),
rgba(252, 15, 192, 0.3),
rgba(136, 136, 206, 0.7)
), url('./nikolai-chernichenko-QOLyehGXRyA-unsplash.jpg');
background-position: center;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
}