-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
100 lines (87 loc) · 1.72 KB
/
about.css
File metadata and controls
100 lines (87 loc) · 1.72 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
/* About Section Styling */
.about-section {
max-width: 900px;
margin: 40px auto;
padding: 30px;
background-color: #f2e9e4;
border: 2px solid #c9ada7;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
font-family: 'Lato', sans-serif;
color: #22223B;
}
.about-section h1 {
font-size: 32px;
margin-bottom: 20px;
font-family: 'Playfair Display', serif;
color: #4A4E69;
border-bottom: 2px solid #c9ada7;
padding-bottom: 10px;
}
.about-section p {
font-size: 18px;
line-height: 1.7;
}
/*FOOTER SECTION*/
.footer-content {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 30px;
padding-bottom: 20px;
border-bottom: 1px solid #C9ADA7;
}
.footer-section {
flex: 1;
min-width: 200px;
}
.footer-section h3 {
font-size: 18px;
margin-bottom: 10px;
}
.footer-section ul {
list-style: none;
padding: 0;
}
.footer-section ul li a {
color: #F2E9E4;
text-decoration: none;
}
.footer-section a:hover {
color: #C9ADA7;
text-decoration: underline;
}
.footer-bottom {
text-align: center;
margin-top: 15px;
font-size: 14px;
color: #C9ADA7;
}
.social-icons a {
margin-right: 10px;
color: #F2E9E4;
text-decoration: none;
}
.social-icons i {
margin-right: 6px;
color: #C9ADA7;
}
.social-icons a:hover i {
color: #F2E9E4;
}
@media (max-width: 1200px) {
.about-section {
padding: 20px;
margin: 20px;
}
.about-section h1 {
font-size: 26px;
}
.about-section p {
font-size: 16px;
}
.dropdown-submenu {
right: 100%;
left: auto;
}
}