-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (49 loc) · 1.03 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
* {
margin: 0;
padding: 0 -webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Safari */
-khtml-user-select: none;
/* Konqueror HTML */
-moz-user-select: none;
/* Old versions of Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
}
body {
height: 100vh;
width: 100vw;
background: black;
}
div.button {
padding: 20px;
pointer-events: all;
}
div.button-wrapper {
position: fixed;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
z-index: 2;
pointer-events: none;
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
cursor: pointer;
}
div.button span {
color: white;
font-size: 40vw;
font-weight: 100;
font-family: -apple-system, "HelveticaNeue-ExtraLight", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Roboto, sans-serif;
text-transform: uppercase;
}
.hide {
opacity: 0;
cursor: default !important;
backdrop-filter: blur(0);
transition: opacity 2.5s ease-in;
}