-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles4.css
More file actions
183 lines (155 loc) · 3.05 KB
/
styles4.css
File metadata and controls
183 lines (155 loc) · 3.05 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
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
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
}
/* Container */
body {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
/* Header Styles */
header {
background-color: #8B4513;
color: white;
padding: 20px 0;
text-align: center;
margin-bottom: 20px;
}
header h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
/* Navigation */
nav ul {
list-style: none;
display: flex;
justify-content: center;
background-color: #935529;
padding: 10px 0;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #FFD700;
}
/* Main Content */
main {
background-color: white;
padding: 30px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
main section {
margin-bottom: 30px;
}
main h2 {
color: #8B4513;
border-bottom: 2px solid #D2691E;
padding-bottom: 10px;
margin-bottom: 15px;
}
/* About Page Specific Styles */
.about-story, .our-mission, .our-values {
background-color: #FFF8DC;
padding: 20px;
border-radius: 5px;
margin-bottom: 20px;
}
.about-story ul, .our-mission ul, .our-values ul {
list-style-type: disc;
margin-left: 30px;
}
/* Contact Page Specific Styles */
.contact-info, .social-media {
background-color: #FFF8DC;
padding: 20px;
border-radius: 5px;
margin-bottom: 20px;
}
.contact-details p {
margin-bottom: 10px;
}
/* Contact Form Styles */
.contact-form {
background-color: #F0F0F0;
padding: 20px;
border-radius: 5px;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #D2691E;
border-radius: 4px;
}
.contact-form button {
background-color: #8B4513;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.contact-form button:hover {
background-color: #D2691E;
}
.social-media .social-links {
display: flex;
justify-content: center;
gap: 20px;
}
.social-media .social-links a {
text-decoration: none;
color: #8B4513;
font-weight: bold;
}
.social-media .social-links a:hover {
color: #D2691E;
}
/* Footer */
footer {
text-align: center;
padding: 20px 0;
background-color: #8B4513;
color: white;
margin-top: 20px;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
nav ul {
flex-direction: column;
align-items: center;
}
nav ul li {
margin: 10px 0;
}
.social-media .social-links {
flex-direction: column;
align-items: center;
}
}