forked from FreelancerLifeStyle/dynamic_adapt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (108 loc) · 1.67 KB
/
style.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
@charset "UTF-8";
/*Обнуление*/
*,
*:before,
*:after {
padding: 0;
margin: 0;
border: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html,
body {
height: 100%;
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
color: #fff;
font-size: 14px;
background-color: #383838;
}
.wrapper {
display: flex;
overflow: hidden;
min-height: 100%;
flex-direction: column;
}
.header {
background-color: #000;
height: 80px;
display: flex;
padding: 0px 30px;
align-items: center;
font-size: 30px;
}
.content {
padding: 30px;
flex: 1 1 auto;
}
.content__section {
margin: 0px 0px 50px 0px;
}
h2.content__title {
font-size: 40px;
margin: 0px 0px 30px 0px;
}
h3.content__title {
font-size: 30px;
margin: 0px 0px 30px 0px;
}
.content__blocks {
display: flex;
flex-wrap: wrap;
}
.content__row {
display: flex;
flex-wrap: wrap;
padding: 30px 30px 0px 30px;
background-color: rgb(85, 85, 85);
}
.content__column {
flex: 0 1 50%;
margin: 0px 0px 30px 0px;
}
.content__block {
width: 180px;
height: 180px;
display: flex;
justify-content: center;
align-items: center;
font-weight: 700;
text-transform: uppercase;
font-size: 20px;
letter-spacing: 2px;
}
.content__block_1 {
background-color: #794f45;
}
.content__block_2 {
background-color: #77608d;
}
.content__block_3 {
background-color: #7a956b;
}
/*
.content__block_item {
}
.content__block_new-item {
display: none;
}
@media (max-width: 992px) {
.content__block_new-item {
display: flex;
}
.content__block_item {
display: none;
}
}
*/
.footer {
background-color: #000;
padding: 0px 30px;
height: 70px;
display: flex;
align-items: center;
}
.footer__text {
font-size: 20px;
color: #fff;
}