-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
148 lines (138 loc) · 2.3 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
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
@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'PT Sans', sans-serif;
font-size: 24px;
}
section {
display: flex;
flex-direction: column;
align-items: center;
min-height: 740px;
line-height: 1.5em;
}
.header {
background-color: #fcdb00;
display: flex;
}
.header .container {
display: flex;
margin-top: 77px;
margin-bottom: 124px;
}
.vectors {
display: flex;
position: absolute;
top: 90px;
right: 150px;
}
.vectors img {
margin: 0px 8px 0px;
}
.slogan {
text-align: center;
width: 754px;
}
h1 {
font-size: 48px;
margin-bottom: 6px;
font-weight: bolder;
height: 64px;
}
.v1, .v2, .v3 {
width: 68px;
height: 68px;
border: 2px solid #010101;
border-radius: 100%;
margin: 9px;
padding: 19px;
}
.vectors2 {
display: flex;
margin-top: 22px;
}
/*
.content {
display: flex;
justify-content: space-between;
}
.content .text {
display: flex;
}
.text h2 {
width: 270px;
height: 44px;
font-size: 24px;
}
.text p {
color: #8b8a8b;
width: 270px;
height: 85px;
font-size: 18px;
line-height: 1.5em;
}
*/
.footer {
background-color: #010101;
display: flex;
}
.footer .info, .content .info {
text-align: center;
width: 754px;
}
.footer h2, .content .info h2 {
height: 38px;
font-size: 36px;
margin-top: 77px;
}
.footer h2 {
color: #fcdb00;
}
.footer p, .content .info p {
margin-top: 7px;
margin-bottom: 38px;
}
.footer p {
color: #8b8a8b;
}
.email {
width: 560px;
height: 50px;
color: #8b8a8b;
padding: 16px 17px 17px 19px;
border: none;
border-radius: 3px;
}
.submit {
width: 174px;
height: 50px;
background-color: #fcdb00;
color: #010101;
text-transform: uppercase;
font-weight: bold;
border: none;
border-radius: 3px;
padding: 14px 21px 13px 18px;
}
.footer ul {
list-style-type: none;
display: flex;
justify-content: space-between;
margin-top: 103px;
color: #fff;
font-size: 18px;
line-height: 1.5em;
}
li:first-child {
width: 367px;
height: 155px;
}
li {
width: 77px;
height: 155px;
margin-left: 116px;
}