-
Notifications
You must be signed in to change notification settings - Fork 0
/
helper.css
56 lines (50 loc) · 966 Bytes
/
helper.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
.gk-helper-hide {
display: none;
}
.gk-helper-container {
background-color: rgba(0,0,0,.7);
color: #FFF;
font-family: 'Helvetica', 'Arial', sans-serif;
z-index: 9999;
position: absolute;
top: 0;
width: 100%;
min-height: 100%;
}
.gk-helper-title {
font-weight: normal;
padding: 15px 0;
margin: 0 50px 10px 10px;
font-size: 2em;
}
.gk-helper-gesture {
width: 50%;
display: inline-block;
text-align: center;
vertical-align: top;
overflow: scroll;
}
.gk-helper-label {
text-align: center;
font-weight: normal;
margin: 5px;
}
.gk-helper-close {
border: 1px solid #EEE;
border-radius: 5px;
padding: 0;
width: 42px;
height: 42px;
color: #FFF;
background-color: rgba(0,0,0,.5);
position: fixed;
top: 10px;
right: 10px;
z-index: 9999;
}
.gk-helper-close:before{
content: '˟';
font-size: 6em;
position: relative;
top: -9px;
}