-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
219 lines (187 loc) · 3.79 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
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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Roboto';
}
.header {
background-color: #1F2937;
padding: 24px 196px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
height: 480px;
width: 100%;
}
.header-logo{
font-size: 24px;
color: #f9faf8;
}
.nav-bar {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
margin-bottom: 20px;
}
.nav-bar ul {
list-style-type: none;
display: flex;
gap: 20px;
color: #e5e7eb;
font-size: 18px;
}
.nav-bar ul li a {
text-decoration: none;
}
.nav-bar ul li a:visited {
text-decoration: none;
color: inherit;
}
.hero {
display: flex;
justify-content: space-between;
width: 100%;
gap: 20px;
}
.hero-title{
font-size: 48px;
font-weight: extra-bold;
color: #f9faf8;
}
.hero-text {
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 20px;
height: 100%;
}
.hero-text p{
color: #e5e7eb;
font-size: 18px;
}
.hero-image {
width: 50%;
display: flex;
justify-content: flex-end;
align-items: flex-end;
height: 100%;
}
.hero-image img {
height: auto;
max-height: 300px;
}
button{
background-color: #3882f6;
padding: 10px 30px;
font-size: 16px;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
width: fit-content;
font-weight: 800;
}
.container {
background-color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
height: 480px;
padding: 24px 196px;
gap: 50px;
}
.information-header {
font-size: 36px;
font-weight: 800; /* Extra-bold */
color: #1F2937;
margin: 0;
padding-top: 24px;
}
.info-boxes {
display: flex;
flex-direction: row;
justify-content: space-between;
gap: 20px;
width: 100%; /* Full width of container */
}
.styled-box {
width: 200px;
height: 200px;
border: 5px solid #3882f6; /* Blue border */
border-radius: 15px; /* Rounded corners */
}
.info-box{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 10px;
}
.info-box p {
color: #6e737a;
font-size: 18px;
width: 200px;
margin: 0;
text-align: center;
}
.quote-section {
background-color: #E5E7EB; /* Background color for the quote section */
display: flex;
justify-content: center;
align-items: center;
height: 480px;
}
.quote{
padding: 140px 300px;
}
.quote-text {
font-size: 36px;
font-weight: lighter; /* Light */
font-style: italic;
color: #1F2937; /* Text color for the quote */
margin-bottom: 10px;
}
.quote-author {
font-size: 36px;
font-weight: 700; /* Bold */
color: #1F2937; /* Text color for the author */
text-align: right;
}
.call-to-action {
display: flex;
justify-content: center;
align-items: center;
background-color: white;
height: 350px;
}
.call-to-action-box {
display: flex;
justify-content: space-around;
align-items: center;
width: 70%; /* Adjust the width as needed */
padding: 20px; /* Optional: Adds some padding around the box */
background-color: #3882f6;
height: 35%;
color: white;
border-radius: 8px;
}
.call-to-action-text {
display: flex;
flex-direction: column;
}
.call-to-action-button button {
border: 2px solid white;
}
.fo{
display: flex;
justify-content: center;
align-items: center;
background-color: #1F2937;
height: 100px;
color: white;
}