-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathjquery.tutorial.css
More file actions
117 lines (111 loc) · 2.09 KB
/
Copy pathjquery.tutorial.css
File metadata and controls
117 lines (111 loc) · 2.09 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.tutorial {
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
background-color: #000000;
color: #FFFFFF;
display: none;
font-size: 14px;
line-height: 150%;
padding: 15px;
position: fixed;
width: 320px;
z-index: 10000;
}
.tutorial.tl {
top: 15px;
left: 15px;
}
.tutorial.tr {
top: 15px;
right: 15px;
}
.tutorial.bl {
bottom: 15px;
left: 15px;
}
.tutorial.br {
bottom: 15px;
right: 15px;
}
.tutorial h1 {
background-color: transparent;
border-bottom: 1px solid #333333;
float: none;
font-size: 22px;
margin: 0;
padding: 0 0 12px;
text-shadow: none;
}
.tutorial p {
padding-top:8px;
margin-bottom:15px;
color: #FFFFFF;
line-height: 150%;
}
.tutorial-overlay {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #ffffff;
z-index: 9999;
}
.tutorial-button {
background-color: #E2B500;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
display:block;
float:right;
font-size:14px;
padding:5px 8px;
color:#000000;
font-weight:bold;
text-decoration:none;
margin-right:5px;
border:none;
}
.tutorial-button:hover {
background-color:#EFC313;
color:#000000;
border:none;
}
.tutorial-cancel {
position:absolute;
top:15px;
right:15px;
padding:0px 6px;
background-color:#333333;
color:#999999;
text-decoration:none;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
border:none;
}
.tutorial-cancel:hover {
border:none;
background-color:#333333;
color:#999999;
}
.tutorial-arrow {
position: absolute;
display:block;
width:48px;
height:48px;
z-index:10000;
}
.tutorial-arrow.tc {
background:url('tutorial/arrow-tc.png') no-repeat;
}
.tutorial-arrow.bc {
background:url('tutorial/arrow-bc.png') no-repeat;
}
.tutorial-arrow.ml {
background:url('tutorial/arrow-ml.png') no-repeat;
}
.tutorial-arrow.mr {
background:url('tutorial/arrow-mr.png') no-repeat;
}