-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
189 lines (160 loc) · 2.94 KB
/
main.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
body {
background-color: #FFFFFF;
padding: 0;
margin: 0;
text-align: center;
font-family: 'Roboto', arial;
}
.container {
display: flex;
flex-direction: column;
}
/* Navbar Part */
.navbar {
display: flex;
color: #F9FAF8;
background-color: #1F2937;
padding: 20px 0px 20px 100px;
align-items: center;
}
.header-logo img {
width: 84px;
height: 84px;
margin-right: auto;
}
.header-link {
display: flex;
margin-left: auto;
padding: 0px 100px 0px 0px;
}
.header-link a {
text-decoration: none;
color: #E5E7EB;
font-size: 18px;
padding: 10px;
font-family: 'Roboto', arial;
}
/* Hero Part */
.hero {
display: flex;
color: #F9FAF8;
background-color: #1F2937;
align-items: center;
justify-content: center;
padding: 90px;
}
.hero-cta {
flex-basis: 400px;
display: flex;
flex-direction: column;
text-align: left;
margin-right: 50px;
}
.hero-cta p {
font-family: 'Roboto', arial;
opacity: 0.7;
}
h1 {
font-size: 48px;
font-weight: bold;
color: #F9FAF8;
margin: 0;
font-family: 'Roboto', arial;
}
.hero button {
display: block;
text-align: center;
width: 110px;
border: none;
background: #3882f6;
padding: 10px;
border-radius: 8px;
color: #fff;
font-family: 'Roboto', arial;
text-decoration: none;
font-weight: bold;
}
.hero-image img {
width: 500px;
height: 350px;
}
/* Content Part */
.content {
align-items: center;
}
.content-info {
display: flex;
/* border: 1px solid gold; */
justify-content: center;
flex-wrap: wrap;
}
.content-info img {
width: 200px;
height: 200px;
object-fit: cover;
border: 4px solid #3882F6;
border-radius: 15px;
margin: 5px 20px 0px 20px;
}
/* Quotation Part */
.quote {
display: flex;
flex-direction: column;
background-color: #E5E7EB;
padding: 0 200px;
}
.quote p {
font-size: 36px;
color: #1F2937;
font-style: italic;
font-weight: lighter;
font-family: 'Roboto', arial;
}
.quote b {
padding-bottom: 20px;
padding-right: 10px;
font-family: 'Roboto', arial;
text-align: right;
}
/* Sign Up Part */
.sign-up {
background-color: #3882F6 ;
margin: 50px 200px;
padding: 10px 80px;
display: flex;
align-items: center;
border-radius: 5px;
border-color: none;
}
.sign-item {
flex: 1;
}
.signs-text {
text-align: left;
}
.signs-text p {
color: #fff;
opacity: 0.7;
margin: 5px 30px 30px 50px;
}
h3 {
color: #fff;
font-family: 'Roboto', arial;
padding: 0;
margin: 30px 0px 0px 50px;
}
.signs-button button {
color: #fff;
font-family: 'Roboto', arial;
border-color: #fff;
border-radius: 8px;
background-color: #3882F6;
padding: 5px 25px;
font-size: 15px;
}
/* Footerlast */
.footer {
background-color: #1F2937;
color: #fff;
font-family: 'Roboto', arial;
}