Blame view

app/styles/main.css 16.9 KB
c87bc1f33   TRUONG   first commit: ini...
1
  /* Space out content a bit */
87c93a029   Dang YoungWorld   add modal
2
  @import "../fonts/font.css";
ba689b493   DANG   canvas font text
3
  @import "../fonts/font_canvas/font-canvas.css";
0136530e3   DANG   Commit code
4
  @import "placedesign.css";
2f4c31749   DANG   Fix text design a...
5
6
7
8
  html{
    height:100%;
    width:100%;
  }
c87bc1f33   TRUONG   first commit: ini...
9
  body {
836a597e5   DANG   Commit package
10
    font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
2f4c31749   DANG   Fix text design a...
11
12
    height:100%;
    width:100%;
862daa8a4   DANG   commit theme
13
  }
04cbb68af   DANG   design text basic
14
15
16
17
18
  /*Scroll bar style*/
  ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
  }
2f4c31749   DANG   Fix text design a...
19
20
21
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  }
04cbb68af   DANG   design text basic
22
23
24
25
26
27
  ::-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
28
29
30
31
32
  .padding-right-0{
    padding-right: 0!important;
  }
  .padding-left-0{
    padding-left: 0!important;
e7c9c7707   DANG   Commit theme
33
34
35
36
37
  }
  button.red{
    color: #ffffff;
    background-color: #ff0000;
    border: 1px solid #ff0000;
c87bc1f33   TRUONG   first commit: ini...
38

c87bc1f33   TRUONG   first commit: ini...
39
  }
e7c9c7707   DANG   Commit theme
40
41
42
43
44
45
46
47
48
49
50
  button.white{
    border: 1px solid #ff8080;
    color: #ff8080;
    background-color: #ffffff;
  }
  button.brown{
    background-color: #666666;
    border: 1px solid #666666;
    color: #ffffff;
    border-radius: 5px;
  }
862daa8a4   DANG   commit theme
51
52
53
54
55
56
  button.black{
    border: 1px solid #c9c9c9;
    background-color: #343434;
    color: #ffffff;
    padding: 1px 6px;
  }
e7c9c7707   DANG   Commit theme
57
  #tshirt-container{
8f087d204   DANG   Theme + add bower...
58
59
    border-left: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
c87bc1f33   TRUONG   first commit: ini...
60
  }
8f087d204   DANG   Theme + add bower...
61
62
63
  /*HEADER*/
  header{
    border-bottom: 1px solid #dcdcdc;
c87bc1f33   TRUONG   first commit: ini...
64
  }
8f087d204   DANG   Theme + add bower...
65
66
67
68
69
  header .logo{
    color: #ed1d24;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
c87bc1f33   TRUONG   first commit: ini...
70
  }
8f087d204   DANG   Theme + add bower...
71
72
  header .logo img{
    width: 60px;
c87bc1f33   TRUONG   first commit: ini...
73
  }
8f087d204   DANG   Theme + add bower...
74
75
76
  /*NAVIGATION*/
  nav{
    border-bottom: 1px solid #dcdcdc;
862daa8a4   DANG   commit theme
77
    padding: 10px 0;
c87bc1f33   TRUONG   first commit: ini...
78
  }
8f087d204   DANG   Theme + add bower...
79
  nav h2{
862daa8a4   DANG   commit theme
80
81
    font-size: 27px;
    margin: 0 0;
c87bc1f33   TRUONG   first commit: ini...
82
  }
8f087d204   DANG   Theme + add bower...
83
84
85
  nav ul{
    list-style: none;
    padding-left: 0;
862daa8a4   DANG   commit theme
86
    margin-bottom: 0;
a56541cf9   DANG   add css
87

c87bc1f33   TRUONG   first commit: ini...
88
  }
8f087d204   DANG   Theme + add bower...
89
90
91
92
93
  nav ul li{
    margin-left: 2px;
    float: left;
    padding: 6px 12px;
    background-color: #999999;
a56541cf9   DANG   add css
94
95
96
97
98
99
100
101
102
103
    position: relative;
  }
  nav ul li i.fa{
    position: absolute;
    color: #ffffff;
    font-size: 18px;
    right: -4px;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
c87bc1f33   TRUONG   first commit: ini...
104
  }
8f087d204   DANG   Theme + add bower...
105
106
107
  nav ul li a{
    color: #ffffff;
  }
a56541cf9   DANG   add css
108
109
110
111
  nav ul li:hover a{
    text-decoration: none;
    color: #ffffff;
  }
8f087d204   DANG   Theme + add bower...
112
113
114
115
  nav ul li.action{
    color: #ffffff;
    background-color: #ed1d24;
  }
e7c9c7707   DANG   Commit theme
116
117
  /*ASIDE*/
  aside{
862daa8a4   DANG   commit theme
118
    margin: 10px 0;
e7c9c7707   DANG   Commit theme
119
120
121
122
123
124
125
126
127
128
  }
  
  aside .break-down{
    padding: 0 0;
  }
  aside .break-down i.fa{
    font-size: 35px;
    color: #ff0000;
  }
  aside .break-line{
19a110aef   DANG   add css
129
    height: 10px;
e7c9c7707   DANG   Commit theme
130
131
132
133
134
135
136
137
  }
  aside .break-line hr{
    border-top: 1px dotted #cccccc;
  }
  aside .step{
    margin: 0 0;
  }
  aside .step .title{
862daa8a4   DANG   commit theme
138
    font-size: 15px;
e7c9c7707   DANG   Commit theme
139
140
    line-height: 16px;
    font-weight: bold;
862daa8a4   DANG   commit theme
141
    margin-bottom: 3px;
e7c9c7707   DANG   Commit theme
142
143
144
145
  }
  aside .step .title-notice{
    font-size: 13px;
    line-height: 16px;
862daa8a4   DANG   commit theme
146
    margin-bottom: 3px;
e7c9c7707   DANG   Commit theme
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
  }
  aside .step .title-notice .require{
    font-size: 10px;
  }
  aside .step .step-box{
    border: 2px solid #dcdcdc;
    font-size: 12px;
  
  }
  /*Step 1*/
  aside .step .step-box .tshirt-design{
    border: 1px solid #cccccc;
    background-color: #f5f5f5;
    margin: 10px 10px;
  }
990a1e38d   DANG   Edit css
162
163
164
165
166
167
168
  aside .step .step-box .tshirt-design:hover{
    border: 1px solid #ff0000;
  }
  aside .step .step-box .tshirt-design button:hover{
    background-color: #fa7b7b;
    border: 1px solid #fa7b7b;
  }
e7c9c7707   DANG   Commit theme
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
  aside .step .step-box .tshirt-design div{
    float: left;
  }
  aside .step .step-box .tshirt-design .icon{
    padding: 4px 4px;
    border-right: 1px solid #cccccc;
  
  }
  aside .step .step-box .tshirt-design .icon img{
    height: 50px;
  }
  aside .step .step-box .tshirt-design .name{
    padding: 10px 10px;
  
  }
  aside .step .step-box .tshirt-design .action{
    padding: 10px 10px;
    float: right;
  
  }
  aside .step .step-box .tshirt-design .action button{
    padding: 8px 10px;
  }
  /*Step 2*/
  aside .step .step-box .tshirt-color{
    padding: 6px 10px;
    position: relative;
  }
  aside .step .step-box .tshirt-color ul.choice-color{
    float: left;
    list-style: none;
    padding-left: 0;
    width: 100%;
862daa8a4   DANG   commit theme
202
    margin-bottom: 3px;
e7c9c7707   DANG   Commit theme
203
204
  }
  aside .step .step-box .tshirt-color ul.choice-color li{
3ca9f7356   Dang YoungWorld   Add t-shirt
205
    margin: 0 8px 4px 0;
e7c9c7707   DANG   Commit theme
206
207
208
    border: 1px solid #cccccc;
    padding: 2px 2px;
    float: left;
990a1e38d   DANG   Edit css
209
210
211
212
213
214
215
    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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
  }
  aside .step .step-box .tshirt-color ul.choice-color li div{
    height: 30px;
    width: 30px;
  }
  
  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;
  }
  aside .step .step-box .tshirt-color .color-name{
    width: 100%;
862daa8a4   DANG   commit theme
230
    font-size: 10px;
e7c9c7707   DANG   Commit theme
231
232
233
234
235
236
237
238
  }
  aside .step .step-box .tshirt-color .view-more{
    position: absolute;
    bottom: 6px;
    right: 10px;
  }
  /*Step 3*/
  aside .step .step-box .tshirt-saveorder{
862daa8a4   DANG   commit theme
239
    padding: 10px 10px 6px 10px;
e7c9c7707   DANG   Commit theme
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
  }
  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{
    padding: 8px 10px;
  
  }
  aside .step .step-box .tshirt-saveorder .action button .text{
    float: left;
    width: 80%;
    text-align: center;
    padding-left: 10px;
    vertical-align: bottom;
  }
  aside .step .step-box .tshirt-saveorder .action button .arrow{
    float: left;
    width: 20%;
    height: 40px;
    position: relative;
  }
  aside .step .step-box .tshirt-saveorder .action button .arrow i.fa{
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
  }
862daa8a4   DANG   commit theme
275
276
277
  aside .step .step-box .tshirt-saveorder .notice{
    padding: 5px 0 0 0;
  }
e7c9c7707   DANG   Commit theme
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
  /*Step 4*/
  aside .step .title-notice{
  
  }
  aside .step .step-box .change-design{
    padding: 4px 4px;
  }
  aside .step .step-box .change-design table{
  
  }
  aside .step .step-box .change-design table tr{
    border-bottom: 1px dotted #cccccc;
  }
  aside .step .step-box .change-design table tr:last-child{
    border-bottom: 0;
  }
  
  /*Step 5- finish*/
  aside .step .finish-design{
862daa8a4   DANG   commit theme
297
    padding: 20px 0;
e7c9c7707   DANG   Commit theme
298
299
300
  }
  aside .step .finish-design button{
    width: 100%;
862daa8a4   DANG   commit theme
301
    padding: 8px 10px;
e7c9c7707   DANG   Commit theme
302
303
304
305
  }
  
  /*DESIGN CONTENT*/
  #tshirt-content{
862daa8a4   DANG   commit theme
306
307
308
309
310
311
312
313
    position: relative;
  }
  #tshirt-content .switch-border-design{
    position: absolute;
    top: 5px;
    right: 10px;
    color: red;
    font-size: 11px;
e7c9c7707   DANG   Commit theme
314
315
  }
  #tshirt-content .tshirt-image{
19a110aef   DANG   add css
316
    padding: 20px 0 0 0;
2f4c31749   DANG   Fix text design a...
317
318
319
    position: relative;
    height: 100%;
    width: 100%;
e7c9c7707   DANG   Commit theme
320
  }
80ff9bbd4   TRUONG   fix bugs and optimal
321

010854c35   TRUONG   fix responsive on...
322
323
324
  #tshirt-content .tshirt-image img{
    width: 100%;
  }
e7c9c7707   DANG   Commit theme
325
326
327
328
329
330
331
332
333
334
335
  #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
336
    margin: 10px 10px;
422e7837d   DANG   Change color t-shirt
337
    cursor: pointer;
e7c9c7707   DANG   Commit theme
338
339
340
341
342
343
344
345
346
347
348
  }
  #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
349
350
351
352
  #tshirt-content .tshirt-choice ul li .image img{
    width: 50px;
    height: auto;
  }
5fe93ca88   Dang YoungWorld   Theme modal
353
354
  /*MODAL Design*/
  #tshirt-design{
862daa8a4   DANG   commit theme
355
    background-color: #666666;
5fe93ca88   Dang YoungWorld   Theme modal
356
357
  }
  #tshirt-design .modal-dialog{
2f4c31749   DANG   Fix text design a...
358
    /*width: 800px!important;*/
5fe93ca88   Dang YoungWorld   Theme modal
359
360
361
362
363
364
    margin: 0 auto;
  }
  #tshirt-design .modal-dialog .modal-content{
    background-color: transparent;
    border-radius: 0;
    border: 0;
a56541cf9   DANG   add css
365
366
    -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
367
368
369
370
  }
  #tshirt-design .modal-dialog .modal-content .modal-header{
    padding: 0 0 10px 0;
    border-bottom: 0;
862daa8a4   DANG   commit theme
371
    border-shadow: none!important;
5fe93ca88   Dang YoungWorld   Theme modal
372
373
  }
  #tshirt-design .modal-dialog .modal-content .modal-body{
862daa8a4   DANG   commit theme
374
    background-color: #f5f5f5;
5fe93ca88   Dang YoungWorld   Theme modal
375
376
377
    padding: 0 0;
  }
  #tshirt-design header{
862daa8a4   DANG   commit theme
378
379
    border-bottom: 1px solid #cccccc;
    background-color: #dddddd;
5fe93ca88   Dang YoungWorld   Theme modal
380
381
382
383
384
385
386
  }
  #tshirt-design header ul.nav{
    padding-left: 0;
    list-style: none;
  }
  #tshirt-design header ul.nav li{
    float: left;
862daa8a4   DANG   commit theme
387
388
389
390
391
    padding: 8px 26px;
    border-right: 1px solid #cccccc;
    font-size: 14px;
    cursor: pointer;
  }
6f105dbd5   Truong LD   add source code i...
392
  #tshirt-design header ul.nav li:hover, #tshirt-design header ul.nav li.active{
862daa8a4   DANG   commit theme
393
394
395
    background-color: red;
    color: #ffffff;
  }
6f105dbd5   Truong LD   add source code i...
396
  #tshirt-design header ul.nav li:hover i.fa, #tshirt-design header ul.nav li.active i.fa{
862daa8a4   DANG   commit theme
397
398
399
400
401
402
403
404
405
406
407
    color: #ffffff;
  }
  #tshirt-design header ul.nav li i.fa{
    color: #fe070f;
    font-size: 20px;
    margin-right: 10px;
  }
  #tshirt-design header .action{
  
  }
  #tshirt-design header .action button{
19a110aef   DANG   add css
408
409
    padding: 2px 10px;
    margin: 6px 10px;
862daa8a4   DANG   commit theme
410
411
412
413
  }
  #tshirt-design header .action button:hover{
    background-color: red;
    color: #ffffff;
5fe93ca88   Dang YoungWorld   Theme modal
414
  }
e7c9c7707   DANG   Commit theme
415

5fe93ca88   Dang YoungWorld   Theme modal
416
417
  /*Aside modal*/
  .aside{
5fe93ca88   Dang YoungWorld   Theme modal
418
  }
c8bfdfd96   DANG   event click object
419
420
  
  .aside .box-design-option{
5fe93ca88   Dang YoungWorld   Theme modal
421
422
    list-style: none;
    padding-left: 0;
862daa8a4   DANG   commit theme
423
    margin-top: 10px;
c8bfdfd96   DANG   event click object
424
  }
862daa8a4   DANG   commit theme
425

c8bfdfd96   DANG   event click object
426
  .aside .box-design-option li{
862daa8a4   DANG   commit theme
427
    border: 1px solid #cdcdcd;
a56541cf9   DANG   add css
428
    position: relative;
682a3b12d   TRUONG   fix illustration ...
429
    /*cursor: pointer;*/
e5669639a   TRUONG   merge #1759
430
    margin-bottom: 10px;
862daa8a4   DANG   commit theme
431
  }
c8bfdfd96   DANG   event click object
432
  .aside .box-design-option li .hover{
862daa8a4   DANG   commit theme
433
    background-color: #fddad4;
a56541cf9   DANG   add css
434
435
436
437
    opacity: 0.6;
    position: absolute;
    width: 100%;
    height: 100%;
862daa8a4   DANG   commit theme
438
439
    display: none;
  }
c8bfdfd96   DANG   event click object
440
  .aside .box-design-option li:hover .hover{
862daa8a4   DANG   commit theme
441
442
    display: block;
  }
c8bfdfd96   DANG   event click object
443
  .aside .box-design-option li .title{
862daa8a4   DANG   commit theme
444
445
446
    background: url("../images/bg1.png") repeat #cdcdcd;
    padding: 3px 10px;
  }
c8bfdfd96   DANG   event click object
447
  .aside .box-design-option li .title i.fa{
862daa8a4   DANG   commit theme
448
449
    color: #000000;
  }
c8bfdfd96   DANG   event click object
450
  .aside .box-design-option li .content{
862daa8a4   DANG   commit theme
451
452
  
  }
c8bfdfd96   DANG   event click object
453
  .aside .box-design-option li .content i.fa{
862daa8a4   DANG   commit theme
454
455
456
457
    font-size: 30px;
    color: #fe070f;
    margin: 8px 0;
  }
c8bfdfd96   DANG   event click object
458
  .aside .box-design-option li .content .des{
862daa8a4   DANG   commit theme
459
460
    padding: 3px 10px 3px 0;
  }
04cbb68af   DANG   design text basic
461
462
463
464
465
  .aside .box-design-option li .content .color-patterns {
    width: 100%;
    border: #bbb solid 1px;
    background: #FFF;
    margin-top: 5px;
e5669639a   TRUONG   merge #1759
466
    min-height: 65px;
04cbb68af   DANG   design text basic
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
  }
  
  .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
482
483
484
485
486
487
488
489
  
  .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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
  .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
520

04cbb68af   DANG   design text basic
521
522
523
524
525
526
527
  .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...
528
529
530
531
    margin-bottom: 0;
  }
  .aside #choice-text .content .font-family-box li.active{
    border: 1px solid #fe070f;
04cbb68af   DANG   design text basic
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
  }
  .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...
548
549
550
  .aside #choice-text .content .spacing-letter .item:hover{
    background-color: #fddad4;
  }
04cbb68af   DANG   design text basic
551
552
553
554
555
556
557
558
  
  .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...
559
    font-size: 13px;
04cbb68af   DANG   design text basic
560
561
562
563
564
565
566
567
568
569
570
  }
  .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
571
  /*Design Choice Illustration*/
6f105dbd5   Truong LD   add source code i...
572
573
574
575
576
577
578
579
580
581
582
583
584
  .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
585
586
    min-height: 310px;
    padding-bottom: 20px;
6f105dbd5   Truong LD   add source code i...
587
588
589
  }
  
  .aside #choice-illustration li .content .illustration-list .illstration-item{
19a541686   TRUONG   restruct + fix style
590
    height: 60px;
6f105dbd5   Truong LD   add source code i...
591
592
    overflow: hidden;
    float: left;
19a541686   TRUONG   restruct + fix style
593
594
595
596
597
598
    margin-left: 6px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 2px;
    background: #e2e2e2;
    border: solid 2px #d7d7d7;
1de5c616d   TRUONG   build dist
599
    cursor: pointer;
6f105dbd5   Truong LD   add source code i...
600
601
602
603
604
605
606
  }
  
  .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
607
    width: 50px;
6f105dbd5   Truong LD   add source code i...
608
609
    cursor: pointer;
  }
682a3b12d   TRUONG   fix illustration ...
610
  .aside #choice-illustration li .content .illustration-list .footer-bar {
e32d6b2cb   TRUONG   fix style
611
612
613
614
615
616
      text-align: center;
      margin-top: 5px;
      bottom: 10px;
      position: absolute;
      width: 100%;
      padding-right: 20px;
682a3b12d   TRUONG   fix illustration ...
617
618
619
620
621
622
623
624
625
626
627
628
629
630
  }
  .aside #choice-illustration li .content .illustration-list .footer-bar .footer-pagination {
    margin-right: 5px;
    cursor: pointer;
    font-size: 9px;
    color: #FFF;
    background: #666666;
    text-transform: uppercase;
    padding: 2px 5px;
  }
  
  .aside #choice-illustration li .content .illustration-list .footer-bar .footer-pagination:hover {
    background: #999999;
  }
e0ee74c15   TRUONG   update fix layer ...
631
632
633
634
635
636
  .tooltip-arrow,
  .red-tooltip + .tooltip > .tooltip-inner {
    background-color: #FFF;
    margin:0;
    padding:0;
  }
682a3b12d   TRUONG   fix illustration ...
637

e0ee74c15   TRUONG   update fix layer ...
638
  /* Insert image*/
e5669639a   TRUONG   merge #1759
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
  #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...
656

e5669639a   TRUONG   merge #1759
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
  .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...
675

bd0414901   TRUONG   update store rece...
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
  .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
697
698
  /*Design content*/
  .tshirt-design-container{
4ae9cc634   DANG   fix reponsive
699

862daa8a4   DANG   commit theme
700
701
  }
  .tshirt-design-container .design-content{
2f4c31749   DANG   Fix text design a...
702
    padding: 10px 0;
4ae9cc634   DANG   fix reponsive
703
    /*min-height: 580px;*/
862daa8a4   DANG   commit theme
704
705
706
  }
  .tshirt-design-container .design-content .content{
    width: 100%;
2f4c31749   DANG   Fix text design a...
707
    height: 100%;
4ae9cc634   DANG   fix reponsive
708
709
    min-height: 600px;
    position: relative;
422e7837d   DANG   Change color t-shirt
710
    padding: 40px 40px;
862daa8a4   DANG   commit theme
711
712
713
  }
  .tshirt-design-container .design-content .content .selection-design{
    border: 1px solid #ff0000;
862daa8a4   DANG   commit theme
714
715
716
717
718
  }
  .tshirt-design-container .agree-design{
    position: absolute;
    right: -16px;
    top: 40%;
80ff9bbd4   TRUONG   fix bugs and optimal
719
720
721
722
    cursor: pointer;
  }
  .tshirt-design-container .agree-design:hover{
    opacity: 0.8;
862daa8a4   DANG   commit theme
723
724
725
726
727
  }
  .tshirt-design-container .trash-design{
    position: absolute;
    right: 5px;
    bottom: 0;
5fe93ca88   Dang YoungWorld   Theme modal
728
  }
e0ee74c15   TRUONG   update fix layer ...
729
730
731
  .tshirt-design-container .trash-design:hover{
    opacity: 0.5;
  }
d7aae10e2   TRUONG   update fix delete...
732
733
734
735
736
  .object-border{
    position: absolute;
    background-color: rgb(0, 108, 255);
    border: 0;
    display:none;
c674a3608   TRUONG   fix delete effect
737
    transform-origin: 0% 0%;
d7aae10e2   TRUONG   update fix delete...
738
739
740
741
742
743
744
  }
  #object-border-top, #object-border-bottom{
    height: 2px;
  }
  #object-border-right, #object-border-left{
    width: 2px;
  }
a56541cf9   DANG   add css
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
  
  
  /*FOOTER*/
  footer{
    background-color: #333333;
  }
  footer ul.nav-footer{
    padding-left: 0;
    list-style: none;
  }
  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;
  }
8f087d204   DANG   Theme + add bower...
765
766
767
768
769
  /* Customize container */
  @media (min-width: 768px) {
    .container {
      /*max-width: 730px;*/
    }
c87bc1f33   TRUONG   first commit: ini...
770
771
772
773
774
  }
  
  /* Responsive: Portrait tablets and up */
  @media screen and (min-width: 768px) {
    /* Remove the padding we set earlier */
8f087d204   DANG   Theme + add bower...
775

c87bc1f33   TRUONG   first commit: ini...
776
  }
e0ee74c15   TRUONG   update fix layer ...
777
778
779
780
  
  @media (min-width: 1024px) {
    #tshirt-design .modal-dialog{
      min-width: 1000px;
2f4c31749   DANG   Fix text design a...
781
      width: 1000px;
e0ee74c15   TRUONG   update fix layer ...
782
    }
a3d420e25   TRUONG   fix responsive on...
783
  }
2f4c31749   DANG   Fix text design a...
784
785
  @media (max-width: 762px) {
    .modal-dialog{
2f4c31749   DANG   Fix text design a...
786
787
788
789
790
791
792
793
794
795
      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...
796
797
798
799
800
801
802
803
804
805
806
    }
  
    #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...
807
    }
faf1542f8   TRUONG   fix lazy border w...
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
  }
  
  
  
  #tshirt-design-saved .subframe-design {
    width: 80%;
    margin: auto;
    margin-top: 150px;
    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 */
  }
  
  #tshirt-design-saved .modal-content button.close {
    margin-right: 100px;
    font-size: 41px;
    margin-top: -10px;
  }
  
  #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;
e0ee74c15   TRUONG   update fix layer ...
853
  }