GWY
2022-05-18 7597e22d6dc731bc56ee0f411a50343ddebfc8bd
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/*-------------------------
    Simple reset
--------------------------*/
 
 
*{
    margin:0;
    padding:0;
}
 
 
/*-------------------------
    General Styles
--------------------------*/
 
 
body{
    font:15px/1.3 'Raleway', sans-serif;
    color: #5e5b64;
    padding-bottom:120px;
    text-align: center;
}
 
a, a:visited {
    outline:none;
    color:#389dc1;
}
 
a:hover{
    text-decoration:none;
}
 
section, footer, header, aside{
    display: block;
}
 
 
/*-------------------------
    The main page elements
--------------------------*/
 
 
h1{
    font-size: 36px;
    color: #5e5b64;
    text-align: center;
    padding-top: 100px;
    padding-bottom:40px;
    position: relative;
}
 
div.control-area{
    font: bold 14px 'Raleway',sans-serif;
    margin: 40px auto 0;
    background-color: #f3f3f3;
    padding: 20px;
    border-radius: 5px;
    width: 400px;
    color:#888;
}
 
div.control-area a{
    display: inline-block;
    cursor: pointer;
    margin: 7px auto;
    background-color: #fdfdfd;
    border-radius: 2px;
    padding: 8px 10px;
    font-size: 13px;
    text-transform: uppercase;
}
 
div.control-area a:hover{
    background-color: #fff;
    box-shadow:0 1px 1px #dfdfdf;
}
 
 
/*-------------------------
    The buttons
--------------------------*/
 
 
.progress-button{
    display: inline-block;
    font-size:24px;
    color:#fff !important;
    text-decoration: none !important;
    padding:14px 60px;
    line-height:1;
    overflow: hidden;
    position:relative;
 
    box-shadow:0 1px 1px #ccc;
    border-radius:2px;
 
    background-color: #51b7e6;
    background-image:-webkit-linear-gradient(top, #51b7e6, #4dafdd);
    background-image:-moz-linear-gradient(top, #51b7e6, #4dafdd);
    background-image:linear-gradient(top, #51b7e6, #4dafdd);
}
 
/*    Hide the original text of the button. Then the loading or finished
    text will be shown in the :after element above it. */
 
.progress-button.in-progress,
.progress-button.finished{
    color:transparent !important;
}
 
.progress-button.in-progress:after,
.progress-button.finished:after{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    padding-top: inherit;
    color: #fff !important;
    left: 0;
}
 
/*    If the .in-progress class is set on the button, show the
    contents of the data-loading attribute on the butotn */
 
.progress-button.in-progress:after{
    content:attr(data-loading);
}
 
/* The same goes for the .finished class */
 
.progress-button.finished:after{
    content:attr(data-finished);
}
 
/* The colorful bar that grows depending on the progress */
 
.progress-button .tz-bar{
    background-color:#e667c0;
    height:3px;
    bottom:0;
    left:0;
    width:0;
    position:absolute;
    z-index:1;
 
    border-radius:0 0 2px 2px;
 
    -webkit-transition: width 0.5s, height 0.5s;
    -moz-transition: width 0.5s, height 0.5s;
    transition: width 0.5s, height 0.5s;
}
 
/* The bar can be either horizontal, or vertical */
 
.progress-button .tz-bar.background-horizontal{
    height:100%;
    border-radius:2px;
}
 
.progress-button .tz-bar.background-vertical{
    height:0;
    top:0;
    width:100%;
    border-radius:2px;
}
 
 
/*----------------------------
    Color themes
-----------------------------*/
 
 
.progress-button.red{
    background-color: #e6537d;
    background-image:-webkit-linear-gradient(top, #e6537d, #df5179);
    background-image:-moz-linear-gradient(top, #e6537d, #df5179);
    background-image:linear-gradient(top, #e6537d, #df5179);
}
 
.progress-button.red .tz-bar{
    background-color:#6876b4;
}
 
 
.progress-button.green{
    background-color: #64c896;
    background-image:-webkit-linear-gradient(top, #64c896, #5fbd8e);
    background-image:-moz-linear-gradient(top, #64c896, #5fbd8e);
    background-image:linear-gradient(top, #64c896, #5fbd8e);
}
 
.progress-button.green .tz-bar{
    background-color:#9e81d6;
}
 
 
/*----------------------------
    The Demo Footer
-----------------------------*/
 
 
footer{
 
    width: 770px;
    font: normal 16px Arial, Helvetica, sans-serif;
    padding: 15px 35px;
    position: fixed;
    bottom: 0;
    left: 50%;
    margin-left: -420px;
 
    background-color:#1f1f1f;
 
    background-image:-webkit-linear-gradient(top, #1f1f1f, #101010);
    background-image:-moz-linear-gradient(top, #1f1f1f, #101010);
    background-image:linear-gradient(top, #1f1f1f, #101010);
 
    border-radius:2px 2px 0 0;
 
    box-shadow: 0 -1px 4px rgba(0,0,0,0.4);
    z-index:1;
}
 
footer a.tz{
    font-weight:normal;
    font-size:16px !important;
    text-decoration:none !important;
    display:block;
    margin-right: 300px;
    text-overflow:ellipsis;
    white-space: nowrap;
    color:#bfbfbf !important;
    z-index:1;
}
 
footer a.tz:before{
    content: '';
    background: url('http://cdn.tutorialzine.com/misc/enhance/v2_footer_bg.png') no-repeat 0 -53px;
    width: 138px;
    height: 20px;
    display: inline-block;
    position: relative;
    bottom: -3px;
}
 
footer .close{
    position: absolute;
    cursor: pointer;
    width: 8px;
    height: 8px;
    background: url('http://cdn.tutorialzine.com/misc/enhance/v2_footer_bg.png') no-repeat 0 0px;
    top:10px;
    right:10px;
    z-index: 3;
}
 
footer #tzine-actions{
    position: absolute;
    top: 8px;
    width: 500px;
    right: 50%;
    margin-right: -650px;
    text-align: right;
    z-index: 2;
}
 
footer #tzine-actions iframe{
    display: inline-block;
    height: 21px;
    width: 95px;
    position: relative;
    float: left;
    margin-top: 11px;
}