-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
48 lines (44 loc) · 953 Bytes
/
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
* {
margin: 0;
padding: 0;
background-clip: border-box;
}
html {
width: 100%;
height: 100%;
background-color: #181818;
}
body {
width: 100%;
height: 100%;
background-image: url(./brett-jordan-SssdoXhhtJw-unsplash.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
#button-container {
width: 30%;
min-width: 100px;
max-width: 500px;
height: 100px;
position: absolute;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
border-radius: 10px;
background: transparent;
background-color: rgba(255, 255, 255, 0.4);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}
#button-positioning {
width: 50px;
height: 50px;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
position: absolute;
left: 50%;
top: 50%;
}
/*# sourceMappingURL=style.css.map */