-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_contact.css
More file actions
139 lines (115 loc) · 2.44 KB
/
Copy pathstyle_contact.css
File metadata and controls
139 lines (115 loc) · 2.44 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
body {
margin: 0;
font-family: Arial, sans-serif;
}
.logo a{
font-size: 30px;
color:orange;
}
.home-nav {
padding: 10px;
background-color: #333;
/* color: white; */
color: orange;
text-align: center;
}
.home-nav a {
text-decoration: none;
}
.home-nav a {
text-decoration: none;
color: orange; /* Match the logo color */
}
.heading {
padding: 20px;
text-align: center; /* Center text for consistency */
}
.container {
padding: 20px 140px;
}
.contact-info {
margin-bottom: 20px;
}
.contact-info p {
font-size: 16px;
margin: 5px 0;
color: orange; /* Match contact details color */
}
.feedback-form {
margin-top: 20px;
}
.feedback-form h3 {
margin-bottom: 10px;
color: orange; /* Match heading color */
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
.feedback-form button {
padding: 10px 15px;
background-color: #444; /* Consistent button background */
color: white; /* Button text color */
border: none;
border-radius: 5px;
cursor: pointer;
}
.feedback-form button:hover {
background-color: #575757; /* Button hover effect */
}
.footer {
background-color: #333; /* Dark footer background */
color: white; /* Footer text color */
padding: 20px;
text-align: center;
}
.footer-about,
.footer-contact,
.footer-social {
margin-bottom: 20px;
}
.footer-bottom {
margin-top: 20px;
font-size: 14px; /* Font size for footer text */
}
/* Adding additional styles for consistency with food list from the first CSS */
.food-list {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.food-item {
border: 1px solid #ddd;
border-radius: 8px;
padding: 10px;
width: 200px;
text-align: center;
}
.food-item img {
width: 100%;
border-radius: 8px;
}
.price {
font-weight: bold;
color: green; /* Price color */
}
.container h1 {
font-size: 36px;
color: orange; /* Match the logo color */
text-align: center;
margin-bottom: 20px;
}
.container p {
line-height: 1.6; /* Improve readability */
text-align: justify; /* Justify text for better alignment */
}