-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
179 lines (178 loc) · 3.13 KB
/
style.css
File metadata and controls
179 lines (178 loc) · 3.13 KB
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
:root {
--mobile-nav-menu-bg-color: #30444e;
--text-color: #30444e;
--section-dark-bg-color: #f6f6f6;
font-size: 16px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
button {
border: none;
outline: none;
}
body {
font-family: "Roboto", sans-serif;
background: #fff;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
width: 100%;
padding: 0 15px;
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
background: #ffffff;
}
.header a {
display: flex;
align-items: center;
}
.header a img {
max-width: 120px;
}
.header .social-links a {
display: inline-block;
}
.header .social-links a:not(:last-child) {
margin-right: 24px;
}
.header .social-links a img {
max-width: 20px;
height: auto;
}
/*nav menu start*/
.navigation-menu {
display: flex;
align-self: stretch;
}
.navigation-menu ul {
display: flex;
list-style: none;
}
.navigation-menu ul li {
display: flex;
align-items: center;
position: relative;
padding: 0 25px;
}
.navigation-menu ul a {
text-decoration: none;
}
.navigation-menu > ul > li > a {
color: #1f2e35;
font-size: 1rem;
}
.navigation-menu > ul > li.has-submenu > a:after {
display: flex;
content: "";
width: 15px;
height: 10px;
margin-left: 8px;
background-repeat: no-repeat;
background-image: url(./assets/icons/chevron_down.svg);
}
/*21 Feb Start*/
.main-content {
display: flex;
justify-content: center;
padding: 102px 50px 50px;
}
.main-content-info {
max-width: 545px;
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 20px;
/* padding: 44px 0; */
margin-right: 15px;
}
.main-content-info h1 {
font-style: normal;
font-weight: bold;
font-size: 48px;
line-height: 133.69%;
color: #1f2e35;
}
.red-info {
color: #ee4248;
}
.main-content-info p {
font-size: 20px;
line-height: 29px;
color: #30444e;
}
.main-content-info-btn button {
background: #ee4248;
box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.25);
border-radius: 4px;
padding: 12px 36px;
font-size: 20px;
line-height: 29px;
color: #ffffff;
}
/* main-content end */
.section {
display: flex;
justify-content: center;
align-items: center;
gap: 80px;
padding: 55px 50px 50px;
margin-top: 100px;
}
.section.dark {
background-color: var(--section-dark-bg-color);
}
.section-info {
max-width: 520px;
flex-direction: column;
display: flex;
justify-content: stretch;
gap: 24px;
}
.section-info h2 {
font-size: 32px;
line-height: 42px;
font-weight: 500;
}
.section-info p {
font-size: 18px;
line-height: 27px;
font-weight: 400;
color: var(--text-color);
}
/* section-dark end */
.article{
display: flex;
flex-direction: column;
align-items: center;
margin-top: 180px;
padding: 90px 50px 50px;
}
.article h2{
font-weight: 500;
font-size: 2rem;
line-height: 37px;
}
.article-info{
display: flex;
justify-content: center;
max-width: 1083px;
margin-top: 47px;
}
.article-info-item{
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 20px;
}
.article-info-item h3{
color: #EE4248;
}
.article-info-item img{
max-width: 100px;
}