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