-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
164 lines (138 loc) · 2.34 KB
/
styles.css
File metadata and controls
164 lines (138 loc) · 2.34 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
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
background-color: #2b6777;
color: white;
padding: 15px 20px;
}
header nav {
display: flex;
justify-content: space-between;
align-items: center;
}
header nav ul {
list-style-type: none;
display: flex;
gap: 15px;
}
header nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}
h1 {
margin: 0;
}
/* Section Styles */
section {
padding: 20px;
}
section h2 {
margin-bottom: 20px;
color: #333;
}
/* Product Categories */
.categories {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.category {
flex: 1 1 calc(33.333% - 20px);
background-color: #f9f9f9;
border: 1px solid #ddd;
padding: 10px;
border-radius: 5px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.category h3 {
text-align: center;
color: #444;
}
.product-list .product {
margin-bottom: 15px;
padding: 10px;
border-bottom: 1px solid #ddd;
}
.product h4 {
margin: 0;
font-size: 1.1em;
color: #333;
}
.product p {
margin: 5px 0;
color: #666;
}
.product button {
background-color: #2b6777;
color: white;
border: none;
padding: 8px 12px;
border-radius: 4px;
cursor: pointer;
}
.product button:hover {
background-color: #1b4f5a;
}
/* Booking Section */
.booking {
display: flex;
flex-direction: column;
gap: 10px;
max-width: 400px;
}
.booking label {
font-weight: bold;
}
.booking select,
.booking input,
.booking button {
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
.booking button {
background-color: #2b6777;
color: white;
cursor: pointer;
}
.booking button:hover {
background-color: #1b4f5a;
}
#booking-status {
margin-top: 10px;
font-weight: bold;
color: #444;
}
/* Login Section */
form {
max-width: 300px;
margin: auto;
display: flex;
flex-direction: column;
gap: 10px;
}
form label {
font-weight: bold;
}
form input {
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
form button {
background-color: #2b6777;
color: white;
border: none;
padding: 10px;
border-radius: 4px;
cursor: pointer;
}
form button:hover {
background-color: #1b4f5a;
}