Форум программистов, компьютерный форум, киберфорум
HTML, CSS
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
0 / 0 / 0
Регистрация: 25.06.2018
Сообщений: 2
1

Стилизация таблицы

25.06.2018, 23:17. Показов 458. Ответов 2
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Всем привет! Я только начал кодить, поэтому плохо понимаю что как. Короче, у меня во такое:
Стилизация таблицы


элементы одинаковые, короче, не знаю как тут вставить код вот ссылки:

чать кода страницы:
https://pastebin.com/01D88avU
HTML5
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
                            <div class="servers_divs servers_div_2">
                                <div class="c_s2_i">
                                    <div>ЗАГОЛОВОК</div><div>
<span></span><BR>
<span><center>⎛ТЕКСТ ⎞</center></span><BR>
<span>✔ описание</span><BR>
<span>➦ описание</span><BR>
<span>ஜ═════════════ஜ۩۞۩ஜ═════════════ஜ</span></div>
                                    <div class="form-group">
                                        <label class="control-label" for="select"></label>
                                    </div>
                                    <div>
                                        <center><button class="w-button" onclick="buyperm(26, $('#buyperm_select_26').val())">КУПИТЬ ЗА 999 РУБ</button></center>
                                    </div>
                                </div>
                                <div class="c_s2_i">
                                    <div>ЗАГОЛОВОК</div><div>
<span></span><BR>
<span><center>⎛ТЕКСТ ⎞</center></span><BR>
<span>✔ описание</span><BR>
<span>➦ описание</span><BR>
<span>ஜ═════════════ஜ۩۞۩ஜ═════════════ஜ</span></div>
                                    <div class="form-group">
                                        <label class="control-label" for="select"></label>
                                    </div>
                                    <div>
                                        <center><button class="w-button" onclick="buyperm(26, $('#buyperm_select_26').val())">КУПИТЬ ЗА 999 РУБ</button></center>
                                    </div>
                                </div>
                                <div class="c_s2_i">
                                    <div>ЗАГОЛОВОК</div><div>
<span></span><BR>
<span><center>⎛ТЕКСТ ⎞</center></span><BR>
<span>✔ описание</span><BR>
<span>➦ описание</span><BR>
<span>ஜ═════════════ஜ۩۞۩ஜ═════════════ஜ</span></div>
                                    <div class="form-group">
                                        <label class="control-label" for="select"></label>
                                    </div>
                                    <div>
                                        <center><button class="w-button" onclick="buyperm(26, $('#buyperm_select_26').val())">КУПИТЬ ЗА 999 РУБ</button></center>
                                    </div>
                                </div>
                                <div class="c_s2_i">
                                    <div>ЗАГОЛОВОК</div><div>
<span></span><BR>
<span><center>⎛ТЕКСТ ⎞</center></span><BR>
<span>✔ описание</span><BR>
<span>➦ описание</span><BR>
<span>ஜ═════════════ஜ۩۞۩ஜ═════════════ஜ</span></div>
                                    <div class="form-group">
                                        <label class="control-label" for="select"></label>
                                    </div>
                                    <div>
                                        <center><button class="w-button" onclick="buyperm(26, $('#buyperm_select_26').val())">КУПИТЬ ЗА 999 РУБ</button></center>
                                    </div>
                                </div>                          
                            </div>
md.css
https://pastebin.com/afNWEHuV
CSS
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
###ЭТО ТЕСТОВЫЙ ФАЙЛ
.button-container {
  text-align: center;
}
 
fieldset {
  margin: 0 0 3rem;
  padding: 0;
  border: none;
}
 
.form-radio,
.form-group {
  position: relative;
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}
 
.form-inline > .form-group,
.form-inline > .btn {
  display: inline-block;
  margin-bottom: 0;
}
 
.form-help {
  margin-top: 0.125rem;
  margin-left: 0.125rem;
  color: #b3b3b3;
  font-size: 0.8rem;
}
.checkbox .form-help, .form-radio .form-help, .form-group .form-help {
  position: absolute;
  width: 100%;
}
.checkbox .form-help {
  position: relative;
  margin-bottom: 1rem;
}
.form-radio .form-help {
  padding-top: 0.25rem;
  margin-top: -1rem;
}
 
.form-group input {
  height: 1.9rem;
}
.form-group textarea {
  resize: none;
}
.form-group select {
  width: 100%;
  font-size: 1rem;
  height: 1.6rem;
  padding: 0.125rem 0.125rem 0.0625rem;
  background: none;
  border: none;
  line-height: 1.6;
  box-shadow: none;
}
.form-group .control-label {
  position: absolute;
  top: 0.25rem;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  color: #b3b3b3;
  font-size: 1rem;
  font-weight: normal;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
}
.form-group .bar {
  position: relative;
  border-bottom: 0.0625rem solid #999;
  display: block;
}
.form-group .bar::before {
  content: '';
  height: 0.125rem;
  width: 0;
  left: 50%;
  bottom: -0.0625rem;
  position: absolute;
  background: #337ab7;
  -webkit-transition: left 0.28s ease, width 0.28s ease;
  transition: left 0.28s ease, width 0.28s ease;
  z-index: 2;
}
.form-group input,
.form-group textarea {
  display: block;
  background: none;
  padding: 0.125rem 0.125rem 0.0625rem;
  font-size: 1rem;
  border-width: 0;
  border-color: transparent;
  line-height: 1.9;
  width: 100%;
  color: transparent;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
  box-shadow: none;
}
.form-group input[type="file"] {
  line-height: 1;
}
.form-group input[type="file"] ~ .bar {
  display: none;
}
.form-group select,
.form-group input:focus,
.form-group input:valid,
.form-group input.form-file,
.form-group input.has-value,
.form-group textarea:focus,
.form-group textarea:valid,
.form-group textarea.form-file,
.form-group textarea.has-value {
  color: #333;
}
.form-group select ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group input:valid ~ .control-label,
.form-group input.form-file ~ .control-label,
.form-group input.has-value ~ .control-label,
.form-group textarea:focus ~ .control-label,
.form-group textarea:valid ~ .control-label,
.form-group textarea.form-file ~ .control-label,
.form-group textarea.has-value ~ .control-label {
  font-size: 0.8rem;
  color: gray;
  top: -1rem;
  left: 0;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}
.form-group select:focus ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group textarea:focus ~ .control-label {
  color: #337ab7;
}
.form-group select:focus ~ .bar::before,
.form-group input:focus ~ .bar::before,
.form-group textarea:focus ~ .bar::before {
  width: 100%;
  left: 0;
}
 
.checkbox label,
.form-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 2rem;
  text-align: left;
  color: #333;
  display: block;
}
.checkbox input,
.form-radio input {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
}
 
.radio {
  margin-bottom: 1rem;
}
.radio .helper {
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #999;
}
.radio .helper::before, .radio .helper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 0.25rem;
  width: 1rem;
  height: 1rem;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  border-radius: 50%;
  border: 0.125rem solid currentColor;
}
.radio .helper::after {
  -webkit-transform: scale(0);
          transform: scale(0);
  background-color: #337ab7;
  border-color: #337ab7;
}
.radio label:hover .helper {
  color: #337ab7;
}
.radio input:checked ~ .helper::after {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}
.radio input:checked ~ .helper::before {
  color: #337ab7;
}
 
.checkbox {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.checkbox .helper {
  color: #999;
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  z-index: 0;
  border: 0.125rem solid currentColor;
  border-radius: 0.0625rem;
  -webkit-transition: border-color 0.28s ease;
  transition: border-color 0.28s ease;
}
.checkbox .helper::before, .checkbox .helper::after {
  position: absolute;
  height: 0;
  width: 0.2rem;
  background-color: #337ab7;
  display: block;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  border-radius: 0.25rem;
  content: '';
  -webkit-transition: opacity 0.28s ease, height 0s linear 0.28s;
  transition: opacity 0.28s ease, height 0s linear 0.28s;
  opacity: 0;
}
.checkbox .helper::before {
  top: 0.65rem;
  left: 0.38rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  box-shadow: 0 0 0 0.0625rem #fff;
}
.checkbox .helper::after {
  top: 0.3rem;
  left: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.checkbox label:hover .helper {
  color: #337ab7;
}
.checkbox input:checked ~ .helper {
  color: #337ab7;
}
.checkbox input:checked ~ .helper::after, .checkbox input:checked ~ .helper::before {
  opacity: 1;
  -webkit-transition: height 0.28s ease;
  transition: height 0.28s ease;
}
.checkbox input:checked ~ .helper::after {
  height: 0.5rem;
}
.checkbox input:checked ~ .helper::before {
  height: 1.2rem;
  -webkit-transition-delay: 0.28s;
          transition-delay: 0.28s;
}
 
.radio + .radio,
.checkbox + .checkbox {
  margin-top: 1rem;
}
 
.has-error .legend.legend, .has-error.form-group .control-label.control-label {
  color: #d9534f;
}
.has-error.form-group .form-help,
.has-error.form-group .helper, .has-error.checkbox .form-help,
.has-error.checkbox .helper, .has-error.radio .form-help,
.has-error.radio .helper, .has-error.form-radio .form-help,
.has-error.form-radio .helper {
  color: #d9534f;
}
.has-error .bar::before {
  background: #d9534f;
  left: 0;
  width: 100%;
}
 
.button {
  position: relative;
  background: currentColor;
  border: 1px solid currentColor;
  font-size: 1.1rem;
  color: #4f93ce;
  margin: 3rem 0;
  padding: 0.75rem 3rem;
  cursor: pointer;
  -webkit-transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
  transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.button span {
  color: #fff;
  position: relative;
  z-index: 1;
}
.button::before {
  content: '';
  position: absolute;
  background: #071017;
  border: 50vh solid #1d4567;
  width: 30vh;
  height: 30vh;
  border-radius: 50%;
  display: block;
  top: 50%;
  left: 50%;
  z-index: 0;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}
.button:hover {
  color: #337ab7;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}
.button:active::before, .button:focus::before {
  -webkit-transition: opacity 0.28s ease 0.364s, -webkit-transform 1.12s ease;
  transition: opacity 0.28s ease 0.364s, -webkit-transform 1.12s ease;
  transition: transform 1.12s ease, opacity 0.28s ease 0.364s;
  transition: transform 1.12s ease, opacity 0.28s ease 0.364s, -webkit-transform 1.12s ease;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}
.button:focus {
  outline: none;
}
main.css
https://pastebin.com/piYmaXb6
CSS
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
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
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
###ЭТО ТЕСТОВЫЙ ФАЙЛ
* {
    box-sizing: border-box;
}
html, body {
    background-color: #1a1f3d;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    font-size: 100%;
}
a {
    text-decoration: none;
}
button {
    background-color: unset;
    border: none;
    border-radius: unset;
    font-family: 'Rubik', sans-serif;
    cursor: pointer;
    outline: none;
}
input {
    background-color: unset;
    border: none;
    font-family: 'Rubik', sans-serif;
    outline: none;
}
textarea {
    border: none;
    font-family: 'Rubik', sans-serif;
    outline: none;
    resize: none;
}
p, ul, ol {
    margin: 0;
}
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    border-radius: 0;
}
.wrapper {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
.w-div {
    background-color: #1d223d;
    padding: 4rem;
    box-shadow: 0px 6px 6px #181c33;
}
.w-button {
    background-color: #8e24aa;
    border: 1px solid #8e24aa;
    padding: 1.2rem 2.4rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.12rem;
    transition: 0.4s;
    box-shadow: 0 10px 60px rgba(142, 36, 170, 0.6);
}
.w-button-w {
    background-color: unset;
    border: 1px solid #ffffff;
    box-shadow: unset;
}
.w-button:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #8e24aa;
    box-shadow: 0 10px 60px rgba(255, 255, 255, 0.6);
}
.w-a {
    text-transform: uppercase;
    color: #bdbdbd;
    font-size: 1.2rem;
    font-weight: 400;
    transition: 0.4s;
}
.w-a:hover {
    color: #ffffff;
}
.sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #181c33;
    width: 100%;
    height: 100%;
    padding: 4rem;
    z-index: 99999;
}
.sidebar ul {
    padding: 0;
    list-style-type: none;
}
.sidebar ul li {
    margin-bottom: 2.6rem;
}
.sidebar a:nth-child(2) {
    color: #ffffff;
}
.w-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #181c33;
    width: 100%;
    padding: 1.6rem 10%;
    z-index: 99999;
}
.w-nav img {
    width: 12%;
    float: left;
}
.w-nav a {
    float: right;
}
.l1 {
    background-image: url(../images/bg1.png);
    background-size: cover;
    background-position: center center;
    width: 100%;
    padding: 4rem 10% 8rem;
    overflow: auto;
}
.l1_nav {
    width: 100%;
    float: left;
}
.l1_nav img {
    width: 12%;
    float: left;
}
.l1_nav a {
    margin-left: 2.6rem;
    float: right;
}
.l1_nav a:nth-child(2) {
    display: none;
}
.l1_nav a:nth-child(7) {
    color: #ffffff;
}
.l1_inner {
    margin-top: 12rem;
    float: left;
}
.l1_inner p {
    margin-bottom: 2.4rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 300;
}
.l1_inner p span {
    display: block;
    margin-bottom: 1.8rem;
    color: #ffffff;
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 3.6rem;
    letter-spacing: -0.2rem;
}
.l1_inner button {
    float: left;
}
.l1_inner button:last-child {
    margin-left: 2.6rem;
    padding: 1.2rem;
}
.l2 {
    position: relative;
    z-index: 1000;
    width: 80%;
    margin: 0 10%;
}
.l2 div:first-child, .l2 .w-div {
    width: calc(50% - 1rem);
    padding: 1rem;
    color: #ffffff;
    float: left;
}
.l2 div:first-child p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 2rem;
}
.l2 div:first-child p span {
    display: block;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: -0.12rem;
}
.l2 .w-div {
    margin: 2rem 0 0 2rem;
}
.l2 .w-div button {
    width: 3.2rem;
    height: 3.2rem;
    margin-bottom: 4rem;
    padding: unset;
    float: left;
}
.l2 .w-div button:nth-child(n+3){
    float: right;
}
.l2 .w-div div {
    width: 100%;
    float: left;
}
.l2 .w-div p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 2rem;
}
.l2 .w-div p span:first-child {
    display: block;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: -0.12rem;
}
.l2 .w-div p span:last-child {
    display: block;
    margin-top: 1.8rem;
    font-style: italic;
}
.l3 {
    width: 100%;
    padding: 12rem 10%;
    overflow: auto;
}
.l3 .w-div, .l3 div:nth-child(2) {
    width: calc(50% - 1rem);
    padding: 4rem;
    color: #ffffff;
    float: left;
}
.l3 .w-div {
    background-image: url(../images/bg1.png);
    background-size: cover;
    background-position: center center;
    margin-right: 2rem;
}
.l3 .w-div button {
    width: 3.2rem;
    height: 3.2rem;
    margin-bottom: 24rem;
    padding: unset;
    float: left;
}
.l3 .w-div button:nth-child(n+3) {
    float: right;
}
.l3 div:nth-child(2) p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 2rem;
}
.l3 div:nth-child(2) p span:first-child {
    display: block;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: -0.12rem;
}
.l3 div:nth-child(2) p span:last-child {
    display: block;
    margin-top: 1.8rem;
    font-style: italic;
}
.l3 div:nth-child(2) div {
    width: 100%;
    padding: 0;
    float: left;
}
.l4 {
    position: relative;
    z-index: 1000;
    max-width: 36rem;
    margin: 0 auto -2rem;
    overflow: auto;
}
.l4 p:first-child {
    display: block;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 2rem;
    letter-spacing: -0.12rem;
}
.l4_inner {
    width: 100%;
}
#form1, #form2 {
    width: 100%;
}
#form2, #l4_start {
    display: none;
}
#form1 .checkbox {
    margin-bottom: 2.25rem;
}
#form1 .checkbox a {
    text-transform: none;
    font-size: inherit;
}
.l4_inner div button {
    float: left;
}
.l4_inner div button:last-child {
    padding: 1.2rem;
    float: right;
}
.l5 {
    background-color: #181c33;
    width: 100%;
    padding: 4rem 10%;
    overflow: auto;
}
.l5 button {
    padding: 1.2rem 1.4rem;
}
.l5 a {
    margin: 1.2rem 0 0 2.8rem;
}
.l5 a:nth-child(2) {
    color: #ffffff;
}
.l5 a:last-child {
    float: right;
}
.header {
    width: 100%;
    padding: 4rem 10% 4rem;
}
.header img {
    width: 12%;
    float: left;
}
.header a {
    margin-left: 2.6rem;
    float: right;
}
.content {
    width: 100%;
    padding: 4rem 10%;
    overflow: auto;
}
.c_p1 {
    width: 100%;
}
.c_p1_skin {
    background-color: #1d223d;
    width: calc(30% - 1rem);
    margin-right: 2rem;
    padding: 4rem;
    float: left;
    box-shadow: 0px 6px 6px #181c33;
}
.c_p1_skin p {
    text-align: center;
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: -0.2rem;
}
.c_p1_skin hr {
    background-color: #8e24aa;
    border: none;
    width: 4rem;
    height: 0.4rem;
    margin: 1.2rem auto 0;
    box-shadow: 0 1px 1px #212121;
}
#skinpreview0 {
    width: 100%;
    float: left;
}
#skinpreview0 canvas {
    width: 100%;
}
.c_p1_info {
    background-color: #1d223d;
    width: calc(70% - 1rem);
    padding: 4rem;
    float: left;
    box-shadow: 0px 6px 6px #181c33;
}
.c_p1_info p:first-child {
    text-align: center;
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: -0.2rem;
}
.c_p1_info hr {
    background-color: #8e24aa;
    border: none;
    width: 4rem;
    height: 0.4rem;
    margin: 1.2rem auto 0;
    box-shadow: 0 1px 1px #212121;
}
.c_p1_info button {
    border: 1px solid #ffffff;
    margin: 1rem 1rem 0 0;
    padding: 1.2rem 1.4rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 300;
    float: left;
    transition: 0.4s;
    box-shadow: 0 1px 1px #212121;
}
.c_p1_info button:hover {
    background-color: #ffffff;
    color: #8e24aa;
}
.c_p1_info_div {
    margin: 1rem 1rem 0 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    float: left;
}
.c_p1_info_div div {
    font-size: 1.4rem;
    font-weight: 400;
}
#refill {
    margin: 1rem 1rem 0 0;
    float: left;
}
#refill button {
    margin-top: 0;
}
#change_pass {
    margin: 1rem 1rem 0 0;
    float: left;
}
#change_pass button {
    margin-top: 0;
}
.c_p1_inv {
    background-color: #1d223d;
    width: 100%;
    margin-top: 2rem;
    padding: 4rem;
    float: left;
    box-shadow: 0px 6px 6px #181c33;
}
.c_p1_inv p {
    text-align: center;
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: -0.2rem;
}
.c_p1_inv hr {
    background-color: #8e24aa;
    border: none;
    width: 4rem;
    height: 0.4rem;
    margin: 1.2rem auto 0;
    box-shadow: 0 1px 1px #212121;
}
.c_p1_inv div {
    border: 1px solid #ffffff;
    margin: 1rem 1rem 0 0;
    padding: 1.2rem 1.4rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 300;
    float: left;
    transition: 0.4s;
}
.c_p2 {
    width: 100%;
    max-width: 26rem;
    margin: 0 auto;
}
.c_p2 p {
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 2rem;
    letter-spacing: -0.12rem;
}
.c_p2 button {
    display: block;
    margin: 0 auto;
}
.c_s1 {
    width: 100%;
    float: left;
}
.c_s2 {
    width: 100%;
    margin-top: 2rem;
    float: left;
}
.c_s2 .servers_divs {
    display: flex;
}
.c_s2_i {
    display: flex;
    flex-direction: column;
}
.c_s2_i div {
    border: 1px solid #ffffff;
    padding: 0.8rem;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 300;
}
.c_s2_i:nth-child(n+3) div:nth-last-child(-n+2) {
    border: none;
    padding: 0;
}
 
.c_s21_i {
    display: flex;
    flex-direction: column;
}
.c_s21_i div {
    border: 1px solid #ffffff;
    padding: 0.8rem;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 300;
}
.c_s21_i:nth-child(n+3) div:nth-last-child(-n+2) {
    border: none;
    padding: 0;
}
 
.c_s3 {
    width: 100%;
    margin-top: 2rem;
    float: left;
}
.c_s3 .servers_divs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.c_s3_i {
    width: calc(70% - 2rem);
    max-height: 500px;
    overflow: scroll;
    float: left;
}
.c_s3_i button {
    border: 1px solid #ffffff;
    width: 6rem;
    margin-bottom: 1rem;
    padding: 1rem;
    transition: 0.4s;
}
.c_s3_i button:hover {
    background-color: #ffffff;
}
.c_s3_i button img {
    width: 100%;
}
.c_s3_i button p {
    display: none;
}
.c_s3_b {
    width: calc(30% - 2rem);
    margin-left: 4rem;
    float: left;
}
.c_s3_b p {
    display: block;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 2rem;
    letter-spacing: -0.12rem;
}
.c_s3_b img {
    display: block;
    width: 50%;
    margin: 2rem auto;
}
.c_s3_b button {
    width: 100%;
    float: left;
}
.c_i {
    width: 100%;
    float: left;
}
.infcdt {
    width: 100%;
    float: left;
}
#infidt1 ol, #infidt2 ol {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
}
#infidt1 ol li ol, #infidt1 ol li ul, #infidt2 ol li ol {
    font-size: 1rem;
    font-weight: 400;
}
#infidt3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 400;
}
.footer {
    background-color: #181c33;
    width: 100%;
    padding: 4rem 10%;
    overflow: auto;
}
.footer button {
    padding: 1.2rem 1.4rem;
}
.footer a {
    margin: 1.2rem 0 0 2.8rem;
}
.footer a:last-child {
    float: right;
}
@media screen and (max-width: 1800px) {
    
}
@media screen and (max-width: 1600px) {
    
}
@media screen and (max-width: 1400px) {
    
}
@media screen and (max-width: 1200px) {
    
}
@media screen and (max-width: 1000px) {
    .l1_nav a:nth-child(n+3) {
        display: none;
    }
    .l1_nav a:nth-child(2) {
        display: block;
    }
    .l2 div:first-child, .l2 .w-div {
        width: 100%;
    }
    .l2 .w-div {
        margin: -2rem 0 0 0;
    }
    .l3 .w-div, .l3 div:nth-child(2) {
        width: 100%;
    }
    .l3 .w-div {
        margin-right: 0;
    }
    .l5 a:nth-child(n+2):nth-child(-n+6) {
        display: none;
    }
    .header a:nth-child(n+3) {
        display: none;
    }
    .footer a:nth-child(n+2):nth-child(-n+6) {
        display: none;
    }
}
@media screen and (max-width: 800px) {
    
}
мне нужно чтобы таблица была, как последний столбик. Я редактирую магазин ну в общем это неважно.
заранее сорри если нарушил какие-то правила, исправлюсь.
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
25.06.2018, 23:17
Ответы с готовыми решениями:

Стилизация таблицы
Всем доброго вечера. Подскажите пожалуйста, как сделать класс таблицы, чтобы стили применились...

Стилизация таблицы
Здравствуйте. Пытаюсь стилизовать таблицу: &lt;table&gt; &lt;tr&gt; &lt;th&gt;№&lt;/th&gt; &lt;th&gt;Название&lt;/th&gt;...

Стилизация границ таблицы
Здравствуйте! Требуется создать стилизованную таблицу и одним из пунктов является стилизация...

Стилизация hr
Здрасте! Вот написал я такой код &lt;div id=&quot;header&quot;&gt; &lt;div class=&quot;text&quot;&gt;Привет!!!&lt;/div&gt; ...

2
278 / 272 / 106
Регистрация: 12.01.2016
Сообщений: 1,666
26.06.2018, 00:07 2
Envel,

Не по теме:

Цитата Сообщение от Envel Посмотреть сообщение
Я редактирую магазин ну в общем это неважно.
А что за магазин?

0
0 / 0 / 0
Регистрация: 25.06.2018
Сообщений: 2
26.06.2018, 11:15  [ТС] 3
Внутри игровой
0
26.06.2018, 11:15
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
26.06.2018, 11:15
Помогаю со студенческими работами здесь

Стилизация
Всем привет ! не могу никак отстилизовать последнего кота. Через опасити не получается т.к....

Стилизация скролбара
Ребята, посоветуйте хороший (проверенный) и легковесный плагин, для стилизации скрола, как...

Стилизация select
всем привет, подскажите пожалуйста, как сделать такой select , как на картинке &lt;select...

Стилизация кнопок
Привет всем, как можно сделать стилизацию кнопок, просто сменяя одну картинку на другую, но что бы...

Стилизация <select>
Всем доброго времени суток! Я новичок в веб-разработке, тем не менее достался проект. Вопрос...

Стилизация формы
Нет опыта в стилизациях форм и не могу найти подобный туториал, как можно сверстать такое поле?


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
3
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru