-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (83 loc) · 1.57 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (83 loc) · 1.57 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
* {
box-sizing : border-box;
}
html, body {
min-height : 100%;
display : block;
}
body {
margin : 0;
padding : 0 30px;
}
iframe {
position : absolute;
z-index : 200;
top : 0;
left : 0;
right : 0;
bottom : 0;
width : 100%;
height : 100%;
}
button {
border-radius : 50%;
height : 75px;
width : 75px;
appearance : none;
-webkit-appearance : none;
border : 1px solid rgba(0,0,0,0.1);
position : fixed;
bottom : 30px;
left : calc(50vw - 37px);
transition : all .1s cubic-bezier(0.2,0,0.4,1);
box-shadow : 0px 1px 0px rgba(255,255,255,0.2) inset, 0px -1px 0px rgba(0,0,0,0.1) inset, 0px 2px 6px rgba(0,0,0,0.1), 0px 6px 18px rgba(0,0,0,0.1);
transform : translateY(0px);
z-index : 200;
background-color : #2196F3;
}
.righthand button {
left : calc(100vw - 105px);
}
.lefthand button {
left : 30px;
}
button:focus {
outline : none;
}
button:active {
box-shadow : 0px 1px 0px rgba(255,255,255,0.2) inset, 0px -1px 0px rgba(0,0,0,0.1) inset, 0px 2px 6px rgba(0,0,0,0.1), 0px 2px 3px rgba(0,0,0,0);
background-color : #1976D2;
transform : translateY(5px);
}
button span {
width : 20px;
height : 2px;
background-color : #fff;
display : inline-block;
position : relative;
top : -2px;
}
button span:before, button span:after {
display : inline-block;
content : '';
width : 20px;
height : 2px;
background-color : #fff;
position : absolute;
left : 0;
}
button span:before {
top : -6px;
}
button span:after {
top : 6px;
}
h2 {
position: fixed;
background-color: rgba(255,255,255,0.9);
width: 100%;
z-index: 2000;
top: 0;
margin: 0;
line-height: 3;
}