Blame view

app/styles/main.css 21.5 KB
c87bc1f33   TRUONG   first commit: ini...
1
  /* Space out content a bit */
87c93a029   Dang YoungWorld   add modal
2
  @import "../fonts/font.css";
97d46dae2   Dang YoungWorld   update font text
3
4
  /*@import "../fonts/font_canvas/font-canvas.css";*/
  @import url('https://fonts.googleapis.com/css?family=Abel|Amatic+SC|Anton|Aref+Ruqaa|Bitter|Bree+Serif|Bungee|Bungee+Inline|Cabin|Crimson+Text|Dancing+Script|Dosis|Fjalla+One|Gloria+Hallelujah|Hind|Inconsolata|Indie+Flower|Josefin+Sans|Lato|Lobster|Lora|Maitree|Merriweather|Merriweather+Sans|Montserrat|Muli|Noto+Sans|Nunito|Open+Sans|Open+Sans+Condensed:300|Orbitron|Oswald|Oxygen|PT+Sans+Narrow|Permanent+Marker|Playfair+Display|Raleway|Reem+Kufi|Roboto|Shadows+Into+Light|Slabo+27px|Source+Code+Pro|Source+Sans+Pro|Tillana|Titillium+Web|Yanone+Kaffeesatz|Yrsa');
0136530e3   DANG   Commit code
5
  @import "placedesign.css";
2f4c31749   DANG   Fix text design a...
6
7
8
9
  html{
    height:100%;
    width:100%;
  }
c87bc1f33   TRUONG   first commit: ini...
10
  body {
836a597e5   DANG   Commit package
11
    font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
2f4c31749   DANG   Fix text design a...
12
13
    height:100%;
    width:100%;
862daa8a4   DANG   commit theme
14
  }
6582efe66   DANG   add css
15
16
17
  a:hover{
    text-transform: none;
  }
04cbb68af   DANG   design text basic
18
19
20
21
22
  /*Scroll bar style*/
  ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
  }
2f4c31749   DANG   Fix text design a...
23
24
25
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  }
04cbb68af   DANG   design text basic
26
27
28
29
30
31
  ::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
  }
  /*End scroll bar style*/
862daa8a4   DANG   commit theme
32
33
34
35
36
  .padding-right-0{
    padding-right: 0!important;
  }
  .padding-left-0{
    padding-left: 0!important;
e7c9c7707   DANG   Commit theme
37
38
39
40
41
  }
  button.red{
    color: #ffffff;
    background-color: #ff0000;
    border: 1px solid #ff0000;
236cbc7b4   Dang YoungWorld   update theme
42
43
44
45
46
47
48
49
50
51
  }
  button.yellow1{
    background:url("../images/bgbutton1.png") repeat #ff801d;
    color: #ffffff;
    border: 1px solid #ff801d;
  }
  button.yellow2{
    background:url("../images/bgbutton2.png") repeat #ff801d;
    color: #ffffff;
    border: 1px solid #ff801d;
c87bc1f33   TRUONG   first commit: ini...
52
  }
e7c9c7707   DANG   Commit theme
53
  button.white{
236cbc7b4   Dang YoungWorld   update theme
54
55
    border: 1px solid #ff801d;
    color: #ff801d;
e7c9c7707   DANG   Commit theme
56
57
58
59
60
61
62
63
    background-color: #ffffff;
  }
  button.brown{
    background-color: #666666;
    border: 1px solid #666666;
    color: #ffffff;
    border-radius: 5px;
  }
862daa8a4   DANG   commit theme
64
65
66
67
68
69
  button.black{
    border: 1px solid #c9c9c9;
    background-color: #343434;
    color: #ffffff;
    padding: 1px 6px;
  }
236cbc7b4   Dang YoungWorld   update theme
70
71
72
73
  button.none{
    border: 0;
    background-color: transparent;
  }
e7c9c7707   DANG   Commit theme
74
  #tshirt-container{
8f087d204   DANG   Theme + add bower...
75
76
    border-left: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
c87bc1f33   TRUONG   first commit: ini...
77
  }
8f087d204   DANG   Theme + add bower...
78
79
80
  /*HEADER*/
  header{
    border-bottom: 1px solid #dcdcdc;
c87bc1f33   TRUONG   first commit: ini...
81
  }
8f087d204   DANG   Theme + add bower...
82
  header .logo{
5c778530c   Dang YoungWorld   update theme
83
    padding-left: 0!important;
c87bc1f33   TRUONG   first commit: ini...
84
  }
8f087d204   DANG   Theme + add bower...
85
  header .logo img{
5c778530c   Dang YoungWorld   update theme
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
    height: 60px;
  }
  header .social-share{
    list-style: none;
    background-color: #eeeeee;
    display: table;
    padding-left: 0;
    margin-bottom: 0;
  }
  header .social-share li{
    float: left;
    margin: 15px 15px;
    background-color: #c5c5c5;
    width: 30px;
    height: 30px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    text-align: center;
    padding: 6px 0;
  }
  header .social-share li i{
    font-size: 20px;
    color: #ffffff;
  }
  header .top-menu{
    list-style: none;
    padding-left: 0;
c55955c06   DANG   new menu
114
    margin-bottom: 5px;
5c778530c   Dang YoungWorld   update theme
115
116
117
  }
  header .top-menu li{
    float: left;
c55955c06   DANG   new menu
118
119
120
121
122
123
124
125
126
    padding: 6px 0;
  
  }
  header .top-menu li a{
    color: #000000;
    padding: 0 10px;
    border-right: 1px solid #000000;
    font-size: 12px;
  }
6582efe66   DANG   add css
127
128
129
130
  header .top-menu li a:hover{
    color: #cccccc;
    text-decoration: none;
  }
c55955c06   DANG   new menu
131
132
  header .top-menu li:last-child a{
    border-right: 0;
5c778530c   Dang YoungWorld   update theme
133
134
135
136
137
138
139
140
141
142
  }
  header .top-control{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  header .top-control li{
    float: left;
    margin: 0 10px;
  }
6582efe66   DANG   add css
143
144
145
  header .top-control li div{
    cursor: pointer;
  }
5c778530c   Dang YoungWorld   update theme
146
147
148
  header .top-control li .bt-yellow{
    background-color: #fe6a00;
    color: #ffffff;
c55955c06   DANG   new menu
149
    padding: 3px 10px;
5c778530c   Dang YoungWorld   update theme
150
151
    font-size: 12px;
  }
6582efe66   DANG   add css
152
153
154
  header .top-control li .bt-yellow:hover{
    background-color: #fe913e;
  }
5c778530c   Dang YoungWorld   update theme
155
156
157
  header .user-control{
    background-color: #888888;
    text-align: center;
6582efe66   DANG   add css
158
    cursor: pointer;
c87bc1f33   TRUONG   first commit: ini...
159
  }
c55955c06   DANG   new menu
160
161
162
163
  header .user-control div{
    font-size: 12px;
    color: #ffffff;
  }
6582efe66   DANG   add css
164
165
166
  header .user-control div:first-child:hover{
    background-color: #b2b1b1;
  }
c55955c06   DANG   new menu
167
168
169
170
171
172
173
  header .user-control div:first-child{
    padding: 10px 10px;
  }
  header .user-control div:last-child{
    background-color: #fe6a00;
    padding: 3px 10px;
  }
6582efe66   DANG   add css
174
175
176
  header .user-control div:last-child:hover{
    background-color: #fe913e;
  }
8f087d204   DANG   Theme + add bower...
177
178
179
  /*NAVIGATION*/
  nav{
    border-bottom: 1px solid #dcdcdc;
c55955c06   DANG   new menu
180
    padding: 5px 0;
c87bc1f33   TRUONG   first commit: ini...
181
  }
8f087d204   DANG   Theme + add bower...
182
  nav h2{
862daa8a4   DANG   commit theme
183
    font-size: 27px;
c55955c06   DANG   new menu
184
    margin: 20px 0;
c87bc1f33   TRUONG   first commit: ini...
185
  }
8f087d204   DANG   Theme + add bower...
186
187
188
  nav ul{
    list-style: none;
    padding-left: 0;
862daa8a4   DANG   commit theme
189
    margin-bottom: 0;
a56541cf9   DANG   add css
190

c87bc1f33   TRUONG   first commit: ini...
191
  }
8f087d204   DANG   Theme + add bower...
192
  nav ul li{
8f087d204   DANG   Theme + add bower...
193
    float: left;
c55955c06   DANG   new menu
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
  }
  nav ul li.line{
    border-bottom: 2px dashed #000000;
    width: 34px;
    height: 34px;
  }
  nav ul li.line-action{
    border-bottom: 2px dashed #fe6a00;
  }
  nav ul li.circle{
    width: 70px;
    height: 70px;
    -moz-border-radius: 35px;
    -webkit-border-radius: 35px;
    border-radius: 35px;
    text-align: center;
    font-size: 12px;
    /*margin-left: 26px;*/
8f087d204   DANG   Theme + add bower...
212
    background-color: #999999;
a56541cf9   DANG   add css
213
    position: relative;
c55955c06   DANG   new menu
214
215
    display: inline;
    cursor: pointer;
a56541cf9   DANG   add css
216
  }
c55955c06   DANG   new menu
217
218
  
  nav ul li.circle a{
a56541cf9   DANG   add css
219
    color: #ffffff;
c55955c06   DANG   new menu
220
    position: absolute;
a56541cf9   DANG   add css
221
    top: 50%;
c55955c06   DANG   new menu
222
    left: 50%;
a56541cf9   DANG   add css
223
224
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
c87bc1f33   TRUONG   first commit: ini...
225
  }
a56541cf9   DANG   add css
226
227
228
229
  nav ul li:hover a{
    text-decoration: none;
    color: #ffffff;
  }
8f087d204   DANG   Theme + add bower...
230
  nav ul li.action{
c55955c06   DANG   new menu
231
    background-color: #fe6a00;
8f087d204   DANG   Theme + add bower...
232
  }
e7c9c7707   DANG   Commit theme
233
234
  /*ASIDE*/
  aside{
862daa8a4   DANG   commit theme
235
    margin: 10px 0;
e7c9c7707   DANG   Commit theme
236
  }
c55955c06   DANG   new menu
237
238
239
240
241
242
243
  aside .break-left{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
  }
e7c9c7707   DANG   Commit theme
244
245
246
247
248
249
250
251
  aside .break-down{
    padding: 0 0;
  }
  aside .break-down i.fa{
    font-size: 35px;
    color: #ff0000;
  }
  aside .break-line{
19a110aef   DANG   add css
252
    height: 10px;
e7c9c7707   DANG   Commit theme
253
254
255
256
257
258
259
260
  }
  aside .break-line hr{
    border-top: 1px dotted #cccccc;
  }
  aside .step{
    margin: 0 0;
  }
  aside .step .title{
862daa8a4   DANG   commit theme
261
    font-size: 15px;
e7c9c7707   DANG   Commit theme
262
263
    line-height: 16px;
    font-weight: bold;
862daa8a4   DANG   commit theme
264
    margin-bottom: 3px;
e7c9c7707   DANG   Commit theme
265
  }
236cbc7b4   Dang YoungWorld   update theme
266
267
268
269
270
271
272
273
274
275
276
277
278
  aside .step .title span:first-child {
    float: left;
    width: 28%
  }
  aside .step .title span:last-child{
    float: left;
    width: 72%;
    padding: 6px 0;
  }
  
  aside .step .title span:last-child {
  
  }
e7c9c7707   DANG   Commit theme
279
280
281
  aside .step .title-notice{
    font-size: 13px;
    line-height: 16px;
236cbc7b4   Dang YoungWorld   update theme
282
    margin-bottom: 5px;
e7c9c7707   DANG   Commit theme
283
284
285
286
287
288
289
  }
  aside .step .title-notice .require{
    font-size: 10px;
  }
  aside .step .step-box{
    border: 2px solid #dcdcdc;
    font-size: 12px;
236cbc7b4   Dang YoungWorld   update theme
290
    position: relative;
e7c9c7707   DANG   Commit theme
291
292
293
  }
  /*Step 1*/
  aside .step .step-box .tshirt-design{
c55955c06   DANG   new menu
294
    margin: 4px 4px;
e7c9c7707   DANG   Commit theme
295
  }
990a1e38d   DANG   Edit css
296
  aside .step .step-box .tshirt-design:hover{
c55955c06   DANG   new menu
297
    /*border: 1px solid #ff0000;*/
990a1e38d   DANG   Edit css
298
299
300
301
302
  }
  aside .step .step-box .tshirt-design button:hover{
    background-color: #fa7b7b;
    border: 1px solid #fa7b7b;
  }
e7c9c7707   DANG   Commit theme
303
  aside .step .step-box .tshirt-design div{
c55955c06   DANG   new menu
304
    /*float: left;*/
e7c9c7707   DANG   Commit theme
305
306
307
  }
  aside .step .step-box .tshirt-design .icon{
    padding: 4px 4px;
c55955c06   DANG   new menu
308
309
    text-align: center;
    width: 100%;
e7c9c7707   DANG   Commit theme
310
311
  }
  aside .step .step-box .tshirt-design .icon img{
c55955c06   DANG   new menu
312
    max-width: 100%;
e7c9c7707   DANG   Commit theme
313
  }
236cbc7b4   Dang YoungWorld   update theme
314

e7c9c7707   DANG   Commit theme
315
  aside .step .step-box .tshirt-design .name{
c55955c06   DANG   new menu
316
317
    padding: 2px 4px;
    text-align: center;
e7c9c7707   DANG   Commit theme
318
319
320
  
  }
  aside .step .step-box .tshirt-design .action{
c55955c06   DANG   new menu
321
322
    /*padding: 10px 10px;*/
    /*float: right;*/
e7c9c7707   DANG   Commit theme
323
324
325
  
  }
  aside .step .step-box .tshirt-design .action button{
c55955c06   DANG   new menu
326
327
    padding: 6px 8px;
    width: 100%;
e7c9c7707   DANG   Commit theme
328
329
330
  }
  /*Step 2*/
  aside .step .step-box .tshirt-color{
236cbc7b4   Dang YoungWorld   update theme
331
332
    padding: 6px 6px;
    height: 100%;
e7c9c7707   DANG   Commit theme
333
334
    position: relative;
  }
236cbc7b4   Dang YoungWorld   update theme
335

e7c9c7707   DANG   Commit theme
336
337
338
339
340
  aside .step .step-box .tshirt-color ul.choice-color{
    float: left;
    list-style: none;
    padding-left: 0;
    width: 100%;
862daa8a4   DANG   commit theme
341
    margin-bottom: 3px;
e7c9c7707   DANG   Commit theme
342
343
  }
  aside .step .step-box .tshirt-color ul.choice-color li{
236cbc7b4   Dang YoungWorld   update theme
344
    margin: 0 6px 6px 0;
e7c9c7707   DANG   Commit theme
345
346
347
    border: 1px solid #cccccc;
    padding: 2px 2px;
    float: left;
990a1e38d   DANG   Edit css
348
349
350
351
352
353
354
    cursor: pointer;
  }
  aside .step .step-box .tshirt-color ul.choice-color li.action{
    border: 1px solid #ff0000;
  }
  aside .step .step-box .tshirt-color ul.choice-color li:hover{
    border: 1px solid #ff0000;
e7c9c7707   DANG   Commit theme
355
356
  }
  aside .step .step-box .tshirt-color ul.choice-color li div{
236cbc7b4   Dang YoungWorld   update theme
357
358
359
    height: 26px;
    width: 26px;
    margin: 0;
e7c9c7707   DANG   Commit theme
360
361
362
363
364
365
366
367
  }
  
  aside .step .step-box .tshirt-color ul.choice-color li.white div{
    background-color: #ece7e4;
  }
  aside .step .step-box .tshirt-color ul.choice-color li.blue div{
    background-color: #e7dfd0;
  }
236cbc7b4   Dang YoungWorld   update theme
368
369
370
371
372
373
374
375
  aside .step .step-box .choice-color-bottom{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    margin: 0 10%;
  }
  aside .step .step-box .choice-color-bottom .color-name{
e7c9c7707   DANG   Commit theme
376
    width: 100%;
236cbc7b4   Dang YoungWorld   update theme
377
378
379
    font-size: 12px;
    text-align: center;
    padding: 4px 0;
e7c9c7707   DANG   Commit theme
380
  }
236cbc7b4   Dang YoungWorld   update theme
381
382
  aside .step .step-box .choice-color-bottom .view-more{
    text-align: right;
e7c9c7707   DANG   Commit theme
383
384
385
  }
  /*Step 3*/
  aside .step .step-box .tshirt-saveorder{
236cbc7b4   Dang YoungWorld   update theme
386
    padding: 10px 10px 10px 10px;
e7c9c7707   DANG   Commit theme
387
388
389
390
391
392
393
394
395
396
397
398
  }
  aside .step .step-box .tshirt-saveorder .action{
    width: 50%;
    float: left;
  }
  aside .step .step-box .tshirt-saveorder .action:first-child{
    padding-right: 5px;
  }
  aside .step .step-box .tshirt-saveorder .action:last-child{
    padding-left: 5px;
  }
  aside .step .step-box .tshirt-saveorder .action button{
6582efe66   DANG   add css
399
    padding: 4px 35px;
236cbc7b4   Dang YoungWorld   update theme
400
    width: 100%;
e7c9c7707   DANG   Commit theme
401
  }
c55955c06   DANG   new menu
402

236cbc7b4   Dang YoungWorld   update theme
403

e7c9c7707   DANG   Commit theme
404
  /*Step 4*/
e7c9c7707   DANG   Commit theme
405

e7c9c7707   DANG   Commit theme
406
  aside .step .step-box .change-design{
236cbc7b4   Dang YoungWorld   update theme
407
    /*padding: 4px 4px;*/
e7c9c7707   DANG   Commit theme
408
409
  }
  aside .step .step-box .change-design table{
236cbc7b4   Dang YoungWorld   update theme
410
    width: 100%;
e7c9c7707   DANG   Commit theme
411
412
413
414
  }
  aside .step .step-box .change-design table tr{
    border-bottom: 1px dotted #cccccc;
  }
236cbc7b4   Dang YoungWorld   update theme
415
416
417
418
419
420
421
422
423
424
425
  aside .step .step-box .change-design table tr td{
    padding: 4px 3px;
  }
  aside .step .step-box .change-design table tr td:first-child{
    background-color: #ededed;
  }
  aside .step .step-box .change-design table tr td:last-child{
    background: url("../images/bgbutton2.png");
    color: #ffffff;
    font-size: 15px;
  }
e7c9c7707   DANG   Commit theme
426
427
428
429
430
431
  aside .step .step-box .change-design table tr:last-child{
    border-bottom: 0;
  }
  
  /*Step 5- finish*/
  aside .step .finish-design{
862daa8a4   DANG   commit theme
432
    padding: 20px 0;
e7c9c7707   DANG   Commit theme
433
434
435
  }
  aside .step .finish-design button{
    width: 100%;
862daa8a4   DANG   commit theme
436
    padding: 8px 10px;
e7c9c7707   DANG   Commit theme
437
438
439
440
  }
  
  /*DESIGN CONTENT*/
  #tshirt-content{
862daa8a4   DANG   commit theme
441
442
443
444
445
446
447
448
    position: relative;
  }
  #tshirt-content .switch-border-design{
    position: absolute;
    top: 5px;
    right: 10px;
    color: red;
    font-size: 11px;
236cbc7b4   Dang YoungWorld   update theme
449
    cursor: pointer;
2f1fcd7ad   Dang YoungWorld   update
450
    z-index: 99;
e7c9c7707   DANG   Commit theme
451
452
  }
  #tshirt-content .tshirt-image{
19a110aef   DANG   add css
453
    padding: 20px 0 0 0;
2f4c31749   DANG   Fix text design a...
454
455
456
    position: relative;
    height: 100%;
    width: 100%;
e7c9c7707   DANG   Commit theme
457
  }
80ff9bbd4   TRUONG   fix bugs and optimal
458

010854c35   TRUONG   fix responsive on...
459
460
461
  #tshirt-content .tshirt-image img{
    width: 100%;
  }
e7c9c7707   DANG   Commit theme
462
463
464
465
466
467
468
469
470
471
472
  #tshirt-content .tshirt-choice{
  
  }
  #tshirt-content .tshirt-choice ul{
    list-style: none;
    padding-left: 0;
    display: table;
    margin: auto;
  }
  #tshirt-content .tshirt-choice ul li{
    float: left;
e7c9c7707   DANG   Commit theme
473
    margin: 10px 10px;
422e7837d   DANG   Change color t-shirt
474
    cursor: pointer;
e7c9c7707   DANG   Commit theme
475
476
477
478
479
480
481
482
483
484
485
  }
  #tshirt-content .tshirt-choice ul li .image{
    border: 1px solid #cccccc;
    padding: 3px 3px;
  }
  #tshirt-content .tshirt-choice ul li.focus{
  
  }
  #tshirt-content .tshirt-choice ul li.focus .image{
    border: 1px solid #ff0000;
  }
422e7837d   DANG   Change color t-shirt
486
487
488
489
  #tshirt-content .tshirt-choice ul li .image img{
    width: 50px;
    height: auto;
  }
5fe93ca88   Dang YoungWorld   Theme modal
490
491
  /*MODAL Design*/
  #tshirt-design{
862daa8a4   DANG   commit theme
492
    background-color: #666666;
5fe93ca88   Dang YoungWorld   Theme modal
493
494
  }
  #tshirt-design .modal-dialog{
2f4c31749   DANG   Fix text design a...
495
    /*width: 800px!important;*/
5fe93ca88   Dang YoungWorld   Theme modal
496
497
498
499
500
501
    margin: 0 auto;
  }
  #tshirt-design .modal-dialog .modal-content{
    background-color: transparent;
    border-radius: 0;
    border: 0;
a56541cf9   DANG   add css
502
503
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, .5)!important;
    box-shadow: 0 0 0 rgba(0, 0, 0, .5)!important;
5fe93ca88   Dang YoungWorld   Theme modal
504
505
506
507
  }
  #tshirt-design .modal-dialog .modal-content .modal-header{
    padding: 0 0 10px 0;
    border-bottom: 0;
862daa8a4   DANG   commit theme
508
    border-shadow: none!important;
5fe93ca88   Dang YoungWorld   Theme modal
509
510
  }
  #tshirt-design .modal-dialog .modal-content .modal-body{
862daa8a4   DANG   commit theme
511
    background-color: #f5f5f5;
5fe93ca88   Dang YoungWorld   Theme modal
512
513
514
    padding: 0 0;
  }
  #tshirt-design header{
862daa8a4   DANG   commit theme
515
516
    border-bottom: 1px solid #cccccc;
    background-color: #dddddd;
5fe93ca88   Dang YoungWorld   Theme modal
517
518
519
520
521
522
523
  }
  #tshirt-design header ul.nav{
    padding-left: 0;
    list-style: none;
  }
  #tshirt-design header ul.nav li{
    float: left;
862daa8a4   DANG   commit theme
524
525
526
527
528
    padding: 8px 26px;
    border-right: 1px solid #cccccc;
    font-size: 14px;
    cursor: pointer;
  }
6f105dbd5   Truong LD   add source code i...
529
  #tshirt-design header ul.nav li:hover, #tshirt-design header ul.nav li.active{
236cbc7b4   Dang YoungWorld   update theme
530
    background-color: #ff7200;
862daa8a4   DANG   commit theme
531
532
    color: #ffffff;
  }
6f105dbd5   Truong LD   add source code i...
533
  #tshirt-design header ul.nav li:hover i.fa, #tshirt-design header ul.nav li.active i.fa{
862daa8a4   DANG   commit theme
534
535
536
    color: #ffffff;
  }
  #tshirt-design header ul.nav li i.fa{
236cbc7b4   Dang YoungWorld   update theme
537
    color: #fc7500;
862daa8a4   DANG   commit theme
538
539
540
541
542
543
544
    font-size: 20px;
    margin-right: 10px;
  }
  #tshirt-design header .action{
  
  }
  #tshirt-design header .action button{
19a110aef   DANG   add css
545
546
    padding: 2px 10px;
    margin: 6px 10px;
862daa8a4   DANG   commit theme
547
548
549
550
  }
  #tshirt-design header .action button:hover{
    background-color: red;
    color: #ffffff;
5fe93ca88   Dang YoungWorld   Theme modal
551
  }
e7c9c7707   DANG   Commit theme
552

5fe93ca88   Dang YoungWorld   Theme modal
553
554
  /*Aside modal*/
  .aside{
5fe93ca88   Dang YoungWorld   Theme modal
555
  }
c8bfdfd96   DANG   event click object
556
557
  
  .aside .box-design-option{
5fe93ca88   Dang YoungWorld   Theme modal
558
559
    list-style: none;
    padding-left: 0;
862daa8a4   DANG   commit theme
560
    margin-top: 10px;
c8bfdfd96   DANG   event click object
561
  }
862daa8a4   DANG   commit theme
562

c8bfdfd96   DANG   event click object
563
  .aside .box-design-option li{
862daa8a4   DANG   commit theme
564
    border: 1px solid #cdcdcd;
a56541cf9   DANG   add css
565
    position: relative;
682a3b12d   TRUONG   fix illustration ...
566
    /*cursor: pointer;*/
e5669639a   TRUONG   merge #1759
567
    margin-bottom: 10px;
862daa8a4   DANG   commit theme
568
  }
c8bfdfd96   DANG   event click object
569
  .aside .box-design-option li .hover{
862daa8a4   DANG   commit theme
570
    background-color: #fddad4;
a56541cf9   DANG   add css
571
572
573
574
    opacity: 0.6;
    position: absolute;
    width: 100%;
    height: 100%;
862daa8a4   DANG   commit theme
575
576
    display: none;
  }
c8bfdfd96   DANG   event click object
577
  .aside .box-design-option li:hover .hover{
862daa8a4   DANG   commit theme
578
579
    display: block;
  }
c8bfdfd96   DANG   event click object
580
  .aside .box-design-option li .title{
862daa8a4   DANG   commit theme
581
582
583
    background: url("../images/bg1.png") repeat #cdcdcd;
    padding: 3px 10px;
  }
c8bfdfd96   DANG   event click object
584
  .aside .box-design-option li .title i.fa{
862daa8a4   DANG   commit theme
585
586
    color: #000000;
  }
c8bfdfd96   DANG   event click object
587
  .aside .box-design-option li .content{
862daa8a4   DANG   commit theme
588
589
  
  }
c8bfdfd96   DANG   event click object
590
  .aside .box-design-option li .content i.fa{
862daa8a4   DANG   commit theme
591
    font-size: 30px;
236cbc7b4   Dang YoungWorld   update theme
592
    color: #ff7200;
862daa8a4   DANG   commit theme
593
594
    margin: 8px 0;
  }
c8bfdfd96   DANG   event click object
595
  .aside .box-design-option li .content .des{
862daa8a4   DANG   commit theme
596
597
    padding: 3px 10px 3px 0;
  }
04cbb68af   DANG   design text basic
598
599
600
601
602
  .aside .box-design-option li .content .color-patterns {
    width: 100%;
    border: #bbb solid 1px;
    background: #FFF;
    margin-top: 5px;
e5669639a   TRUONG   merge #1759
603
    min-height: 65px;
04cbb68af   DANG   design text basic
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
  }
  
  .aside .box-design-option li .content .color-patterns .color-pattern-item{
    height: 20px;
    float: left;
    margin-left: 4px;
    margin-top: 2px;
    width: 20px;
    cursor: pointer;
    border: 1px solid #ddd;
  }
  
  .aside .box-design-option li .content .color-patterns .color-pattern-item:hover {
    outline: 1px solid #ed1d24;
  }
80ff9bbd4   TRUONG   fix bugs and optimal
619
620
621
622
623
624
625
626
  
  .aside .box-design-option li .title .reset-color-patterns {
    cursor: pointer;
  }
  
  .aside .box-design-option li .title .reset-color-patterns:hover {
    opacity: 0.6;
  }
04cbb68af   DANG   design text basic
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
  .aside .box-design-option li .content .layer-item {
    text-align: center;
    border: 1px #ddd solid;
    background: #FFF;
    padding: 5px;
    font-size: 12px;
    cursor: pointer;
  }
  
  .aside .box-design-option li .content .layer-item:hover {
    background: #ffcccc;
  }
  
  
  /*Design Text*/
  .aside #choice-text{
  
  }
  .aside #choice-text .content{
    padding: 10px 10px;
  }
  .aside #choice-text .content ul.font-family-box{
    list-style: none;
    margin: 10px 0;
    padding-left: 0;
    height: 180px;
    width: 100%;
    overflow-y: scroll;
    border: 1px solid #c0c0c0;
  }
862daa8a4   DANG   commit theme
657

04cbb68af   DANG   design text basic
658
659
660
661
662
663
664
  .aside #choice-text .content .font-family-box li{
    cursor: pointer;
    padding: 4px 8px;
    border: 0;
    border-bottom: 1px solid #c0c0c0;
    border-right: 1px solid #c0c0c0;
    font-size: 16px;
2f4c31749   DANG   Fix text design a...
665
666
667
668
    margin-bottom: 0;
  }
  .aside #choice-text .content .font-family-box li.active{
    border: 1px solid #fe070f;
04cbb68af   DANG   design text basic
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
  }
  .aside #choice-text .content .spacing-letter{
  
  }
  .aside #choice-text .content .spacing-letter .text-label{
    font-size: 16px;
    padding: 4px 0;
  }
  .aside #choice-text .content .spacing-letter .box{
    border: 1px solid #8c8c8c;
    box-shadow: 0 0 5px #888888;
    background-color: #f0f0f0;
  }
  .aside #choice-text .content .spacing-letter .item{
    float: left;
  }
2f4c31749   DANG   Fix text design a...
685
686
687
  .aside #choice-text .content .spacing-letter .item:hover{
    background-color: #fddad4;
  }
04cbb68af   DANG   design text basic
688
689
690
691
692
693
694
695
  
  .aside #choice-text .content .spacing-letter .item i.fa{
    font-size: 22px;
    margin: 0 0;
    color: #000000;
  }
  .aside #choice-text .content .spacing-letter .item-text{
    padding: 6px 20px;
2f4c31749   DANG   Fix text design a...
696
    font-size: 13px;
04cbb68af   DANG   design text basic
697
698
699
700
701
702
703
704
705
706
707
  }
  .aside #choice-text .content .spacing-letter .item-plus{
    border-right: 1px solid #8c8c8c;
  }
  .aside #choice-text .content .spacing-letter .item-minus{
    border-left: 1px solid #8c8c8c;
  }
  .aside #choice-text .content .spacing-letter .item-plus, .aside #choice-text .content .spacing-letter .item-minus {
    padding: 5px 6px 1px 6px;
    cursor: pointer;
  }
c8bfdfd96   DANG   event click object
708
  /*Design Choice Illustration*/
6f105dbd5   Truong LD   add source code i...
709
710
711
712
713
714
715
716
717
718
719
720
721
  .aside #choice-illustration li .content {
    padding: 10px 10px;
  }
  
  .aside #choice-illustration li .content select{
    width: 100%;
  }
  
  .aside #choice-illustration li .content .illustration-list {
    width: 100%;
    border: #bbb solid 1px;
    background: #FFF;
    margin-top: 5px;
e32d6b2cb   TRUONG   fix style
722
723
    min-height: 310px;
    padding-bottom: 20px;
6f105dbd5   Truong LD   add source code i...
724
725
726
  }
  
  .aside #choice-illustration li .content .illustration-list .illstration-item{
19a541686   TRUONG   restruct + fix style
727
    height: 60px;
6f105dbd5   Truong LD   add source code i...
728
729
    overflow: hidden;
    float: left;
19a541686   TRUONG   restruct + fix style
730
731
732
733
734
735
    margin-left: 6px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 2px;
    background: #e2e2e2;
    border: solid 2px #d7d7d7;
1de5c616d   TRUONG   build dist
736
    cursor: pointer;
6f105dbd5   Truong LD   add source code i...
737
738
739
740
741
742
743
  }
  
  .aside #choice-illustration li .content .illustration-list .illstration-item:hover {
    outline: 2px solid #ed1d24;
  }
  
  .aside #choice-illustration li .content .illustration-list .illstration-item img {
19a541686   TRUONG   restruct + fix style
744
    width: 50px;
6f105dbd5   Truong LD   add source code i...
745
746
    cursor: pointer;
  }
2681003ca   TRUONG   update #1808, #1809
747
  .illustration-list .footer-bar, .saved-list .footer-bar {
e32d6b2cb   TRUONG   fix style
748
749
750
751
752
753
      text-align: center;
      margin-top: 5px;
      bottom: 10px;
      position: absolute;
      width: 100%;
      padding-right: 20px;
682a3b12d   TRUONG   fix illustration ...
754
  }
53828b4e7   TRUONG   process save/rest...
755
  .footer-bar .footer-pagination {
682a3b12d   TRUONG   fix illustration ...
756
757
758
759
760
761
762
763
    margin-right: 5px;
    cursor: pointer;
    font-size: 9px;
    color: #FFF;
    background: #666666;
    text-transform: uppercase;
    padding: 2px 5px;
  }
53828b4e7   TRUONG   process save/rest...
764
  .footer-bar .footer-pagination:hover {
682a3b12d   TRUONG   fix illustration ...
765
766
    background: #999999;
  }
e0ee74c15   TRUONG   update fix layer ...
767
768
769
770
771
772
  .tooltip-arrow,
  .red-tooltip + .tooltip > .tooltip-inner {
    background-color: #FFF;
    margin:0;
    padding:0;
  }
682a3b12d   TRUONG   fix illustration ...
773

e0ee74c15   TRUONG   update fix layer ...
774
  /* Insert image*/
e5669639a   TRUONG   merge #1759
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
  #btn-choose-image {
    background: #ff0f00;
    cursor: pointer;
    margin: 10px 0px;
    padding: 0 10px;
    color: #FFF;
    font-size: 12px;
  }
  
  #btn-choose-image:hover {
    background: #f8aeae;
  }
  
  .aside #choice-image li .content {
    margin: 0 10px;
    padding: 10px 0;
  }
6f105dbd5   Truong LD   add source code i...
792

e5669639a   TRUONG   merge #1759
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
  .aside #choice-image li .content .small-text {
    font-size:10px;
    margin-bottom: 10px;
  }
  
  .aside #choice-image {
    font-size: 13px;
  }
  
  .aside #imgLoader{
    display: none;
  }
  
  .aside #choice-image li .content .list-images {
    height: 300px;
    background: #FFF;
    border: 1px solid #DDD;
  }
6f105dbd5   Truong LD   add source code i...
811

bd0414901   TRUONG   update store rece...
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
  .aside #choice-image li .content .list-images .recent-img{
    height: 60px;
    overflow: hidden;
    float: left;
    margin-left: 6px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 2px;
    background: #e2e2e2;
    border: solid 2px #d7d7d7;
    cursor: pointer;
  }
  
  .aside #choice-image li .content .list-images .recent-img:hover {
    outline: 2px solid #ed1d24;
  }
  
  .aside #choice-image li .content .list-images .recent-img img {
    width: 50px;
    cursor: pointer;
  }
862daa8a4   DANG   commit theme
833
834
  /*Design content*/
  .tshirt-design-container{
4ae9cc634   DANG   fix reponsive
835

862daa8a4   DANG   commit theme
836
837
  }
  .tshirt-design-container .design-content{
2f4c31749   DANG   Fix text design a...
838
    padding: 10px 0;
862daa8a4   DANG   commit theme
839
840
841
  }
  .tshirt-design-container .design-content .content{
    width: 100%;
2f4c31749   DANG   Fix text design a...
842
    height: 100%;
4ae9cc634   DANG   fix reponsive
843
844
    min-height: 600px;
    position: relative;
422e7837d   DANG   Change color t-shirt
845
    padding: 40px 40px;
862daa8a4   DANG   commit theme
846
847
848
  }
  .tshirt-design-container .design-content .content .selection-design{
    border: 1px solid #ff0000;
862daa8a4   DANG   commit theme
849
850
851
852
853
  }
  .tshirt-design-container .agree-design{
    position: absolute;
    right: -16px;
    top: 40%;
80ff9bbd4   TRUONG   fix bugs and optimal
854
855
856
857
    cursor: pointer;
  }
  .tshirt-design-container .agree-design:hover{
    opacity: 0.8;
862daa8a4   DANG   commit theme
858
859
860
861
862
  }
  .tshirt-design-container .trash-design{
    position: absolute;
    right: 5px;
    bottom: 0;
5fe93ca88   Dang YoungWorld   Theme modal
863
  }
e0ee74c15   TRUONG   update fix layer ...
864
865
866
  .tshirt-design-container .trash-design:hover{
    opacity: 0.5;
  }
d7aae10e2   TRUONG   update fix delete...
867
868
869
870
871
  .object-border{
    position: absolute;
    background-color: rgb(0, 108, 255);
    border: 0;
    display:none;
c674a3608   TRUONG   fix delete effect
872
    transform-origin: 0% 0%;
d7aae10e2   TRUONG   update fix delete...
873
874
875
876
877
878
879
  }
  #object-border-top, #object-border-bottom{
    height: 2px;
  }
  #object-border-right, #object-border-left{
    width: 2px;
  }
a56541cf9   DANG   add css
880
881
882
883
884
885
886
887
888
  
  
  /*FOOTER*/
  footer{
    background-color: #333333;
  }
  footer ul.nav-footer{
    padding-left: 0;
    list-style: none;
236cbc7b4   Dang YoungWorld   update theme
889
890
891
    float: left;
    width: 80%;
    margin-bottom: 0
a56541cf9   DANG   add css
892
893
894
895
896
897
898
899
900
901
902
  }
  footer ul.nav-footer li{
    float: left;
    padding: 3px 10px;
    border-right: 1px dotted #ffffff;
  
  }
  footer ul.nav-footer li a{
    color: #ffffff;
    font-size: 11px;
  }
236cbc7b4   Dang YoungWorld   update theme
903
904
905
906
907
908
909
910
911
912
913
914
915
916
  footer .logo-bottom{
    float: left;
    width: 20%;
    margin-bottom: 0;
    text-align: right;
  }
  footer .logo-bottom img{
    height: 25px;
    max-width: 100%;
  }
  .footer{
    padding: 15px 0;
    text-align: center;
  }
8f087d204   DANG   Theme + add bower...
917
918
919
920
921
  /* Customize container */
  @media (min-width: 768px) {
    .container {
      /*max-width: 730px;*/
    }
c87bc1f33   TRUONG   first commit: ini...
922
923
924
925
926
  }
  
  /* Responsive: Portrait tablets and up */
  @media screen and (min-width: 768px) {
    /* Remove the padding we set earlier */
8f087d204   DANG   Theme + add bower...
927

c87bc1f33   TRUONG   first commit: ini...
928
  }
e0ee74c15   TRUONG   update fix layer ...
929
930
931
932
  
  @media (min-width: 1024px) {
    #tshirt-design .modal-dialog{
      min-width: 1000px;
2f4c31749   DANG   Fix text design a...
933
      width: 1000px;
e0ee74c15   TRUONG   update fix layer ...
934
    }
a3d420e25   TRUONG   fix responsive on...
935
  }
236cbc7b4   Dang YoungWorld   update theme
936
  /*Mobile responsive*/
2f4c31749   DANG   Fix text design a...
937
938
  @media (max-width: 762px) {
    .modal-dialog{
2f4c31749   DANG   Fix text design a...
939
940
941
942
943
944
945
946
947
948
      margin: 0 0!important;
    }
    #tshirt-design header .menu-nav{
      overflow-x: scroll!important;
      -webkit-overflow-scrolling: touch;
    }
  
    #tshirt-design header ul.nav {
      text-align: justify;
      width: 680px;
2f4c31749   DANG   Fix text design a...
949
950
951
952
953
954
955
956
957
958
959
    }
  
    #tshirt-design header ul.nav li {
      display: inline-block; /* 6 */
    }
  
    .tshirt-design-container .design-content .content{
      padding: 14px 14px;
    }
    .tshirt-design-container .design-content{
      padding: 0 0;
a3d420e25   TRUONG   fix responsive on...
960
    }
236cbc7b4   Dang YoungWorld   update theme
961
962
963
964
965
966
967
    /*Header*/
    header .logo{
      text-align: left;
    }
    header .top-control li{
      margin: 0 4px;
    }
6582efe66   DANG   add css
968

236cbc7b4   Dang YoungWorld   update theme
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
    header .top-menu{
      display: table;
      margin: auto;
    }
    header .social-share{
      display: none;
    }
    header .col-sm-6{
      padding: 0!important;
    }
    header .user-control{
      position: absolute;
      right: 0;
      top: -120%;
    }
    /*Footer*/
    footer ul.nav-footer{
      width: 100%;
    }
    footer .logo-bottom{
      display: none;
    }
faf1542f8   TRUONG   fix lazy border w...
991
992
993
994
995
996
997
  }
  
  
  
  #tshirt-design-saved .subframe-design {
    width: 80%;
    margin: auto;
53828b4e7   TRUONG   process save/rest...
998
    margin-top: 100px;
faf1542f8   TRUONG   fix lazy border w...
999
1000
1001
1002
    border: 10px solid rgb(0, 0, 0);
    border: 20px solid rgba(0, 0, 0, .5);
    -webkit-background-clip: padding-box; /* for Safari */
    background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
53828b4e7   TRUONG   process save/rest...
1003
    background: #FFF;
faf1542f8   TRUONG   fix lazy border w...
1004
1005
1006
  }
  
  #tshirt-design-saved .modal-content button.close {
53828b4e7   TRUONG   process save/rest...
1007
    margin-right: 103px;
faf1542f8   TRUONG   fix lazy border w...
1008
    font-size: 41px;
53828b4e7   TRUONG   process save/rest...
1009
    margin-top: -8px;
faf1542f8   TRUONG   fix lazy border w...
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
  }
  
  #tshirt-design-saved .subframe-design .nav-tabs {
    background: rgba(0, 0, 0, .5);
    border-bottom: 1px solid #F5F5F5;
  }
  
  #tshirt-design-saved .subframe-design .nav-tabs li a {
    text-decoration: none;
    background-color: #CCC;
    cursor: pointer;
    margin-right: 10px;
    padding: 2px 30px;
    color: #000;
    font-weight: 600;
    border-bottom: 1px solid #F5F5F5
  }
  
  #tshirt-design-saved .subframe-design .nav-tabs li.active a {
    background: #F5F5F5;
    color: #fe070f;
  }
  
  #tshirt-design-saved .subframe-design .tab-content {
    background: #F5F5F5;
      width: 100%;
      min-height: 400px;
53828b4e7   TRUONG   process save/rest...
1037
1038
1039
1040
1041
1042
  }
  
  #tshirt-design-saved .saved-list {
    width: 100%;
    border: #bbb solid 1px;
    background: #FFF;
2681003ca   TRUONG   update #1808, #1809
1043
    margin-top: 0px;
53828b4e7   TRUONG   process save/rest...
1044
    min-height: 400px;
2681003ca   TRUONG   update #1808, #1809
1045
    padding: 10px;
53828b4e7   TRUONG   process save/rest...
1046
1047
1048
  }
  
  #tshirt-design-saved .saved-list .saved-item{
2681003ca   TRUONG   update #1808, #1809
1049
    width: 100px;
53828b4e7   TRUONG   process save/rest...
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
    height: 100px;
    overflow: hidden;
    float: left;
    margin-left: 6px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 2px;
    background: #e2e2e2;
    border: solid 2px #d7d7d7;
    cursor: pointer;
  }
  
  #tshirt-design-saved .saved-list .saved-item:hover {
    outline: 2px solid #ed1d24;
  }
  
  #tshirt-design-saved .saved-list .saved-item img {
    width: 100px;
    cursor: pointer;
  }
2681003ca   TRUONG   update #1808, #1809
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
  #tshirt-design-saved .saved-list .saved-item button {
    background: #ff0f00;
    color: #FFF;
    border: 0;
    position: absolute;
    margin-left: -5px;
    margin-top: -5px;
    padding: 0 5px;
  }
  #tshirt-design-saved .saved-list .saved-item button:hover {
    background: #ffcccc;
  }
53828b4e7   TRUONG   process save/rest...
1082
1083
1084
  
  #tshirt-design-saved .saved-list .footer-bar {
    bottom: 20px;
2681003ca   TRUONG   update #1808, #1809
1085
    width: 75%;
e0ee74c15   TRUONG   update fix layer ...
1086
  }