-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
153 lines (126 loc) · 2.34 KB
/
about.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
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body Styling */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f4f4f4;
color: #333;
}
/* Header Styling */
header {
background-color: #7198c2;
color: white;
padding: 10px 0;
}
header .container {
width: 80%;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
header h1 {
font-size: 2.5em;
font-weight: bold;
}
header nav ul {
list-style: none;
display: flex;
}
header nav ul li {
margin-left: 20px;
}
header nav ul li a {
color: white;
text-decoration: none;
font-size: 1.2em;
}
/* About Section Styling */
.about-section {
padding: 50px 0;
background-color: #fff;
}
.about-section .container {
width: 80%;
margin: 0 auto;
}
.about-section h2 {
font-size: 2.5em;
color: #007BFF;
margin-bottom: 20px;
}
.about-section h3 {
font-size: 2em;
color: #007BFF;
margin-top: 30px;
}
.about-section p {
font-size: 1.1em;
line-height: 1.8;
color: #333;
margin-bottom: 20px;
}
.about-section ul {
list-style: none;
padding-left: 20px;
}
.about-section ul li {
font-size: 1.1em;
margin-bottom: 10px;
}
.about-section ul li strong {
color: #007BFF;
}
.about-section ul li {
margin-left: 10px;
}
/* Footer Styling */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 20px 0;
margin-top: 50px;
}
footer p {
font-size: 1em;
}
footer a {
color: #007BFF;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
header .container {
flex-direction: column;
align-items: center;
}
header nav ul {
flex-direction: column;
margin-top: 20px;
}
header nav ul li {
margin-left: 0;
margin-top: 10px;
}
.about-section .container {
width: 90%;
}
.about-section h2 {
font-size: 2em;
}
.about-section h3 {
font-size: 1.7em;
}
.about-section p {
font-size: 1em;
}
}