-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (56 loc) · 1.13 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
body,
html{
margin: 0;
padding: 0;
height: 100%;
}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
body {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
svg {
display: block;
width: 100%;
height: 100vh;
position: fixed;
top: 0;
left: 0;
}
.scrollElement {
position: absolute;
height: 6000px;
width: 100px;
top: 0;
z-index: 0;
}
.btn {
position: fixed;
bottom: 5%;
right: 0px;
transform: translateX(-50%);
border: 1px solid #fff;
border-radius: 5px;
font-size: 0.9rem;
padding: 0.5rem 0.7em;
background-color: transparent;
color: #ffffff;
font-family: Verdana, Geneva, Tahoma, sans-serif;
-webkit-font-smoothing: antialiased;
cursor: pointer;
transition: all .3s;
z-index: 11;
}
.btn_works {
left: 100px;
right: unset;
text-decoration: none;
}
.btn:hover {
background: #ffffff;
color: #1B1734;
}