-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
118 lines (97 loc) · 1.89 KB
/
Copy pathcontact.css
File metadata and controls
118 lines (97 loc) · 1.89 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #ff7d00;
padding: 1rem 0;
color: white;
text-align: center;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 1rem;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}
nav ul li a.active {
text-decoration: underline;
}
main {
padding: 2rem;
max-width: 800px;
margin: 0 auto;
background-color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact h1, .contact h2 {
color: #ff7d00;
}
.contact p {
line-height: 1.6;
margin-bottom: 1rem;
}
.contact a {
color: #4958FF;
text-decoration: none;
}
.contact a:hover {
text-decoration: underline;
}
.custom-footer {
background-color: #d1eecc; /* Subtle gray background color */
color: #333; /* Dark text color for contrast */
padding: 40px 0; /* Add some padding for spacing */
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
.footer-content {
display: flex;
justify-content: space-between;
}
.footer-left,
.footer-right {
flex: 1;
}
.footer h4 {
color: #333; /* Dark text color for headings */
}
.footer p {
margin: 0; /* Remove default margin for cleaner appearance */
}
/* Social Media Icons */
.social-icons {
margin-top: 20px;
}
.social-icon {
display: inline-block;
font-size: 20px;
margin-right: 10px;
color: #333; /* Adjust color to match your theme */
}
.social-icon:hover {
color: #FF7A00; /* Adjust hover color to match your theme */
}
/* Copyright Link */
.copyright-link {
color: #007bff; /* Adjust color to match your theme */
text-decoration: none;
}
.copyright-link:hover {
text-decoration: underline;
}