-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
71 lines (63 loc) · 1 KB
/
Copy pathstyles.css
File metadata and controls
71 lines (63 loc) · 1 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
* {
margin: 0;
padding: 0;
}
canvas {
position: fixed;
top: 0;
right: 0;
z-index: -1;
}
body {
overflow-x: hidden;
overflow-y: hidden;
padding: 0;
margin: 0;
overscroll-behavior-y: contain;
}
#viewport {
position: fixed;
margin: 0;
padding: 0;
left: 0;
top: 0;
right: 0;
bottom: 0;
overflow-x: hidden;
overflow-y: hidden;
}
.container {
height: 200px;
position: relative;
z-index: 99;
}
.vertical-center {
margin: 0;
position: absolute;
top: 25%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
-ms-transform: translateX(25%);
transform: translateX(25%);
}
button.round {
background-color: #48abe0;
color: white;
border: none;
font-size: 3em;
font-weight: light;
height: 2.1em;
width: 2.1em;
line-height: 2.1em;
border-radius: 50%;
cursor: pointer;
transition: all 0.2s ease;
white-space: nowrap;
z-index: 99;
}
button.round:hover {
background-color: #65b9e6;
}
button.round:active {
transform: translateY(2px);
}