Skip to content

Commit 0bd82c9

Browse files
committed
beach
1 parent ca8cb35 commit 0bd82c9

File tree

2 files changed

+18
-8
lines changed

2 files changed

+18
-8
lines changed
File renamed without changes.

index.html

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,29 @@
134134

135135
/* Schedule tables styling */
136136
.schedule-container {
137-
background-color: #618E98;
137+
background-image: url('images/marg-beach-sunset.png');
138+
background-size: cover;
139+
background-position: center;
140+
background-repeat: no-repeat;
141+
position: relative;
138142
padding: 1em;
139143
border-radius: 4px;
140144
margin-top: 1em;
141145
}
146+
.schedule-container::before {
147+
content: '';
148+
position: absolute;
149+
top: 0;
150+
left: 0;
151+
right: 0;
152+
bottom: 0;
153+
background: rgba(0, 0, 0, 0.8);
154+
border-radius: 4px;
155+
z-index: 1;
156+
}
142157
.schedule-container table {
158+
position: relative;
159+
z-index: 2;
143160
border-color: white;
144161
}
145162
.schedule-container th,
@@ -157,13 +174,6 @@
157174
padding: 0.8em;
158175
text-align: center;
159176
}
160-
.schedule-container th {
161-
background-color: rgba(255, 255, 255, 0.25);
162-
color: white;
163-
font-weight: bold;
164-
padding: 0.8em;
165-
text-align: center;
166-
}
167177

168178
/* Contact Us section styling */
169179
#footer.main {

0 commit comments

Comments
 (0)