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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
| @-webkit-keyframes galleryScaleDown {
0% { -webkit-transform: scale(1.4,1.4); opacity: 0; }
100% { -webkit-transform: scale(1,1); opacity: 1; }
}
@-moz-keyframes galleryScaleDown {
0% { -moz-transform: scale(1.4,1.4); opacity: 0; }
100% { -moz-transform: scale(1,1); opacity: 1; }
}
@-o-keyframes galleryScaleDown {
0% { -o-transform: scale(1.4,1.4); opacity: 0; }
100% { -o-transform: scale(1,1); opacity: 1; }
}
@-ms-keyframes galleryScaleDown {
0% { -ms-transform: scale(1.4,1.4); opacity: 0; }
100% { -ms-transform: scale(1,1); opacity: 1; }
}
@keyframes galleryScaleDown {
0% { transform: scale(1.4,1.4); opacity: 0; }
100% { transform: scale(1,1); opacity: 1; }
}
div.css3-gallery-scaleup {
-webkit-animation: galleryScaleDown 0.5s ease-in-out;
-moz-animation: galleryScaleDown 0.5s ease-in-out;
-o-animation: galleryScaleDown 0.5s ease-in-out;
-ms-animation: galleryScaleDown 0.5s ease-in-out;
animation: galleryScaleDown 0.5s ease-in-out;
}
/* Стили меню */
#nav {
display:inline-block;
width:100%;
margin:0px auto;
padding:0;
border-radius:5px; /*немного css3*/
-moz-border-radius:5px;
-webkit-border-radius:5px;
box-shadow:0 2px 2px rgba(0,0,0, .5);
-moz-box-shadow:0 2px 2px rgba(0,0,0, .5);
-webkit-box-shadow:0 2px 2px rgba(0,0,0, .5);
}
#nav2 {
color: black;
}
#nav li {
margin:5px;
float:left;
position:relative;
list-style:none;
}
#nav a {
font-weight:bold;
color: white;
text-decoration:none;
display:block;
border-radius:5px; /*немного css3*/
-moz-border-radius:5px;
-webkit-border-radius:5px;
text-shadow:0 2px 2px rgba(0,0,0, .7);
}
/* sВыбранный пункт меню */
#nav .current a, #nav li:hover > a {
color:#000;
border-top:1px solid #f8f8f8;
box-shadow:0 2px 2px rgba(0,0,0, .7); /*немного css3*/
-moz-box-shadow:0 2px 2px rgba(0,0,0, .7);
-webkit-box-shadow:0 2px 2px rgba(0,0,0, .7);
text-shadow:0 2px 2px rgba(255,255,255, 0.7);
}
/* Подуровень */
#nav ul li:hover a, #nav li:hover li a {
background:none;
border:none;
color:#000;
}
#nav ul li a:hover {
color:#fff;
background:#ff9000; // курсор на выпадающем пункте #335599
border-radius:5px; /*немного css3*/
-moz-border-radius:5px;
-webkit-border-radius:5px;
text-shadow:0 2px 2px rgba(0,0,0, 0.7);
}
#nav ul li:first-child > a {
-moz-border-radius-topleft:10px; /*немного css3*/
-moz-border-radius-topright:10px;
-webkit-border-top-left-radius:10px;
-webkit-border-top-right-radius:10px;
}
#nav ul li:last-child > a {
-moz-border-radius-bottomleft:10px; /*немного css3*/
-moz-border-radius-bottomright:10px;
-webkit-border-bottom-left-radius:10px;
-webkit-border-bottom-right-radius:10px;
}
/* выпадающий список */
#nav li:hover > ul {
opacity:1;
visibility:visible;
}
#nav ul {
opacity: 0;
visibility:hidden;
padding:0;
width:175px;
position:absolute;
background: #04e4ff; //#aabbcc;
border:2px solid orange;
border-radius:10px; /*немного css3*/
-moz-border-radius:10px;
-webkit-border-radius:10px;
box-shadow:0 2px 2px rgba(0,0,0, .5);
-moz-box-shadow:0 2px 2px rgba(0,0,0, .5);
-webkit-box-shadow:0 2px 2px rgba(0,0,0, .5);
-moz-transition:opacity .25s linear, visibility .1s linear .1s;
-webkit-transition:opacity .25s linear, visibility .1s linear .1s;
-o-transition:opacity .25s linear, visibility .1s linear .1s;
transition:opacity .25s linear, visibility .1s linear .1s;
}
#nav ul li {
float:none;
margin:0;
}
#nav ul a {
font-weight:normal;
text-shadow:0 2px 2px rgba(255,255,255, 0.7);
}
#nav ul ul {
left:160px;
top:0px;
}
/*** Header Link *************************************************************************/
div.i-want-site {
width:800px;
font-family: Verdana, Arial;
font-size: 10px;
position:fixed; top:0px; left:50%;
margin-left:-410px;
background: #000;
color: #fff;
padding: 5px 10px 0px 10px;
z-index: 100;
-webkit-border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-bottom-right: 5px;
-moz-border-radius-bottom-left: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,0.75); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,0.75); box-shadow: 1px 2px 5px rgba(0,0,0,0.75);
}
#opacity-1 {
opacity: 0.5;
}
div.i-want-site {
top:-22px; -webkit-transition: all 0.6s linear;
-moz-transition: all 0.6s linear 1s;-o-transition: all 0.6s linear 1s;
-ms-transition: all 0.6s linear 1s;transition: all 0.6s linear 1s;
}
div.i-want-site:hover {
top:0px; -webkit-transition: all 0.3s linear;-moz-transition: all 0.3s
linear;-o-transition: all 0.3s linear;-ms-transition: all 0.3s linear;transition: all 0.3s linear; }
div.i-want-site p { margin-bottom: 3px; text-align:center; }
div.i-want-site a { color: #fff; border-bottom: 0px dotted #fff; text-decoration:none; font-weight:bold; }
div.i-want-site a:hover { color: #fff; border-bottom: 1px solid #fff; }
div.i-want-site a.i-want-site-link {
opacity: 1;
widht: avto;
align: center;
display:inline-block;
padding: 3px 5px 3px 5px;
-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; text-decoration:none; font-size: 10px; font-weight:bold; text-align:center;
-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,0.75); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,0.75); box-shadow: 1px 2px 5px rgba(0,0,0,0.75);
-moz-transform: scale(1);-webkit-transform: scale(1);-o-transform: scale(1);-ms-transform: scale(1);transform: scale(1); -webkit-transition: all 0.4s ease-in-out;-moz-transition: all 0.4s ease-in-out;-o-transition: all 0.4s ease-in-out;-ms-transition: all 0.4s ease-in-out;transition: all 0.4s ease-in-out;
background-color: #ff9000;
color: #fff;
border:none;
}
div.i-want-site a.i-want-site-link:hover {
opacity: 1;
-moz-transform: scale(1.05);-webkit-transform: scale(1.01);-o-transform: scale(1.01);-ms-transform: scale(1.01);transform: scale(1.01); -webkit-transition: all 0.4s ease-in-out;-moz-transition: all 0.4s ease-in-out;-o-transition: all 0.4s ease-in-out;-ms-transition: all 0.4s ease-in-out;transition: all 0.4s ease-in-out;
background-color: #f08e02;
}
/*** Footer Link *************************************************************************/
div.site-collection {
width:280px;
font-family: Verdana, Arial;
font-size: 11px;
font-weight:bold;
position:fixed; bottom:0px; right:0px;
background: #000;
color: #fff;
padding: 8px 0px 8px 0px;
text-align:center;
display:none;
}
div.site-collection a { color: #fff; border-bottom: 1px dotted #fff; text-decoration:none; }
div.site-collection a:hover { color: #fff; border-bottom: 1px solid #fff; }
div.site-collection a.how-to-remove { margin-right:5px; color: #000; font-size: 11px; padding: 2px 4px 2px 4px; background-color: #fff; border:none; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
/*** Clone Signup CSS ****************************************************************************/
div#gallerysite_screen_overlay {
position: fixed; top: 0; left: 0;
width: 100%; height: 100%;
z-index: 99991 !important;
background: url(../../../img/black90.png) repeat;
}
div.gallerysite_screen_overlay_form {
background: #fff;
position: absolute; top: 20px; left:50%;
width:800px; margin-left:-400px;
padding: 20px 20px 20px 20px;
z-index: 99992 !important;
}
div#id_gallerysite_screen_overlay_form_submitted
{
position: fixed !important; top: 40% !important; left:50% !important;
margin-top:-50px;
}
div#id_gallerysite_screen_overlay_form_submitted p.gallerysite_screen_overlay_waiting
{
font-size: 14px; color: #222; line-height: 18px;
}
div.gallerysite_screen_overlay_form
{
font-size:12px; color: #535331; line-height: 14px;
-webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px;
-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,0.75); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,0.75); box-shadow: 1px 2px 5px rgba(0,0,0,0.75);
}
div.gallerysite_screen_overlay_form p.hint { font-size: 11px; color: #444; margin-bottom: 20px; line-height: 14px;}
div.gallerysite_screen_overlay_form div.field-row { margin-bottom: 10px; }
div.gallerysite_screen_overlay_form fieldset { background: #fff5bb; padding: 5px 10px 0px 10px; margin-bottom: 20px; border: 1px solid #fac75a; }
div.gallerysite_screen_overlay_form fieldset input, #gallerysite_screen_overlay_form fieldset select { font-size:16px; width: 400px; }
div.gallerysite_screen_overlay_form fieldset div.field-row div.name { font-size:14px; padding-left:10px; position:relative; float:left; width: 180px; font-weight: bold; color: #873300; text-align:right; line-height:30px; }
div.gallerysite_screen_overlay_form fieldset div.field-row div.value { margin-left: 200px; color: #bb4600; }
div.gallerysite_screen_overlay_form fieldset div.field-row p.hint { margin: 5px 0px 0px 200px; font-size: 11px; color: #873300; }
div.gallerysite_screen_overlay_form p.error { font-size: 11px; color: #5e0000; background: #ffc3c3 url(../img/icons/icon-error.gif) no-repeat; border: 1px solid #bd1c1c; padding: 8px 20px 8px 30px; margin: 5px 0px 10px 0px; }
div.gallerysite_screen_overlay_form fieldset div.field-row p.error { margin: 5px 0px 0px 200px; }
div.gallerysite_screen_overlay_form h2 { font-size:16px; margin:0px 0px 10px 0px; color: #551e00; background: none; }
div.gallerysite_screen_overlay_form p.valid-coupon {color: #033c4f; margin: 5px 0px 0px 200px; font-size:11px; font-weight:bold; }
div.gallerysite_screen_overlay_form p.valid-coupon strong { font-size:16px; }
div.gallerysite_screen_overlay_form a { color: #a83b00; }
div.gallerysite_screen_overlay_form a.btn-gallerysite_screen_overlay_form
{
display:inline-block; padding: 8px 20px 8px 20px;
-webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px; text-decoration:none; font-size: 12px; font-weight:bold; text-align:center; text-transform:uppercase;
-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,0.75); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,0.75); box-shadow: 1px 2px 5px rgba(0,0,0,0.75);
-moz-transform: scale(1);-webkit-transform: scale(1);-o-transform: scale(1);-ms-transform: scale(1);transform: scale(1); -webkit-transition: all 0.4s ease-in-out;-moz-transition: all 0.4s ease-in-out;-o-transition: all 0.4s ease-in-out;-ms-transition: all 0.4s ease-in-out;transition: all 0.4s ease-in-out;
color: #fff; background-color: #ff9000;
}
div.gallerysite_screen_overlay_form a.btn-gallerysite_screen_overlay_form strong
{
font-size: 14px; color: #692500; text-transform: lowercase;
}
div.gallerysite_screen_overlay_form a.btn-gallerysite_screen_overlay_form:hover
{
-moz-transform: scale(1.05);-webkit-transform: scale(1.05);-o-transform: scale(1.05);-ms-transform: scale(1.05);transform: scale(1.05); -webkit-transition: all 0.4s ease-in-out;-moz-transition: all 0.4s ease-in-out;-o-transition: all 0.4s ease-in-out;-ms-transition: all 0.4s ease-in-out;transition: all 0.4s ease-in-out;
background-color: #f08e02;
}
div.gallerysite_screen_overlay_form a.btn-gallerysite_screen_overlay_form_create_site
{
background: #ff9000 url(../../../img/icons/icon-32-ok.png) 10px center no-repeat;
padding-left: 50px; text-align:left;
line-height:20px;
}
div.gallerysite_screen_overlay_form a.btn-gallerysite_screen_overlay_form-cancel
{
display:inline-block; padding: 2px 5px 2px 5px;
-webkit-border-radius: 12px; -moz-border-radius: 12px; border-radius: 12px; text-decoration:none; font-size: 12px; font-weight:bold; text-align:center; text-transform:uppercase;
-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,0.75); -moz-box-shadow: 1px 2px 5px rgba(0,0,0,0.75); box-shadow: 1px 2px 5px rgba(0,0,0,0.75);
-moz-transform: scale(1);-webkit-transform: scale(1);-o-transform: scale(1);-ms-transform: scale(1);transform: scale(1); -webkit-transition: all 0.4s ease-in-out;-moz-transition: all 0.4s ease-in-out;-o-transition: all 0.4s ease-in-out;-ms-transition: all 0.4s ease-in-out;transition: all 0.4s ease-in-out;
color: #fff; background: #dc1a00;
}
div.gallerysite_screen_overlay_form a.btn-gallerysite_screen_overlay_form-cancel:hover
{
-moz-transform: scale(1.05);-webkit-transform: scale(1.05);-o-transform: scale(1.05);-ms-transform: scale(1.05);transform: scale(1.05); -webkit-transition: all 0.4s ease-in-out;-moz-transition: all 0.4s ease-in-out;-o-transition: all 0.4s ease-in-out;-ms-transition: all 0.4s ease-in-out;transition: all 0.4s ease-in-out;
background: #a11300;
} |