Skip to content

Commit 2bf3204

Browse files
authored
Update index.html
1 parent a71630e commit 2bf3204

File tree

1 file changed

+11
-168
lines changed

1 file changed

+11
-168
lines changed

index.html

Lines changed: 11 additions & 168 deletions
Original file line numberDiff line numberDiff line change
@@ -664,113 +664,7 @@
664664
}
665665

666666
}
667-
668-
/* ===== Parking Map ===== */
669-
.map-section{
670-
max-width: 1000px;
671-
margin: 0 auto;
672-
}
673-
.map-card{
674-
background:#fff;
675-
border: 1px solid #ddd;
676-
border-radius: 8px;
677-
padding: 18px;
678-
margin-top: 12px;
679-
}
680-
.map-card img{
681-
width: 100%;
682-
height: auto;
683-
display: block;
684-
border-radius: 6px;
685-
}
686-
.map-note{
687-
font-size: 16px;
688-
color: #444;
689-
line-height: 1.6;
690-
margin: 10px 0 0 0;
691-
}
692-
/* ===== Parking Map (thumbnail + lightbox) ===== */
693-
.parking-wrap{
694-
max-width: 1000px;
695-
margin: 0 auto;
696-
}
697-
698-
.parking-card{
699-
background:#fff;
700-
border: 1px solid #ddd;
701-
border-radius: 10px;
702-
padding: 18px;
703-
margin-top: 12px;
704-
}
705667

706-
.parking-thumb{
707-
width: 100%;
708-
max-width: 900px;
709-
height: auto;
710-
display: block;
711-
margin: 0 auto;
712-
border-radius: 8px;
713-
cursor: zoom-in;
714-
}
715-
716-
.parking-actions{
717-
margin-top: 10px;
718-
display: flex;
719-
gap: 14px;
720-
justify-content: center;
721-
flex-wrap: wrap;
722-
font-size: 16px;
723-
}
724-
725-
.parking-actions a{
726-
color: #006791;
727-
text-decoration: underline;
728-
}
729-
730-
/* Lightbox overlay */
731-
.lightbox{
732-
position: fixed;
733-
inset: 0;
734-
background: rgba(0,0,0,0.8);
735-
display: none;
736-
align-items: center;
737-
justify-content: center;
738-
padding: 20px;
739-
z-index: 9999;
740-
}
741-
742-
.lightbox.open{ display:flex; }
743-
744-
.lightbox-content{
745-
position: relative;
746-
max-width: 1100px;
747-
width: 100%;
748-
}
749-
750-
.lightbox-img{
751-
width: 100%;
752-
height: auto;
753-
border-radius: 10px;
754-
display:block;
755-
cursor: zoom-out;
756-
background:#fff;
757-
}
758-
759-
.lightbox-close{
760-
position: absolute;
761-
top: -12px;
762-
right: -12px;
763-
width: 40px;
764-
height: 40px;
765-
border-radius: 50%;
766-
border: none;
767-
background: #fff;
768-
font-size: 22px;
769-
cursor: pointer;
770-
box-shadow: 0 2px 8px rgba(0,0,0,0.35);
771-
}
772-
773-
774668
</style>
775669
<link href="https://fonts.googleapis.com/css?family=Ubuntu:300" rel="stylesheet">
776670
<link rel="stylesheet" id="contact-form-7-css" href="./styles.css" type="text/css" media="all">
@@ -838,20 +732,18 @@
838732
<h2 class="widget-heading">Welcome to TMC AI Summit 2026</h2>
839733

840734
<h3 class="widget-heading" style="font-size: 30px; color: #333; text-align: center; margin-top: 20px;">Location</h3>
841-
<h3 style="margin-left:20px">
842-
<strong><span style="font-size:20px">Duncan Neurological Research Institute (NRI)<br>Texas Medical Center, 1250 Moursund St, Houston, TX 77030
843-
<br><!-- Parking map link (under Location) -->
844-
<p class="quote-content" style="margin-left:20px; margin-top:10px;">
845-
<strong>Parking Map:</strong>
846-
<a href="./TMC_AI_Summit2026_Parking.jpg" target="_blank" rel="noopener">
847-
Open Parking Map
848-
</a>
849-
&nbsp;|&nbsp;
850-
<a href="./TMC_AI_Summit2026_Parking.jpg" download>
851-
Download Parking Map
852-
</a>
853-
</p></span></strong>
735+
<h3 style="margin-left:20px; font-size:20px; font-weight:bold; line-height:1.5;">
736+
Duncan Neurological Research Institute (NRI)<br>
737+
Texas Medical Center, 1250 Moursund St, Houston, TX 77030
854738
</h3>
739+
740+
<p style="margin-left:20px; margin-top:10px; margin-bottom:0; font-size:16px; line-height:1.6;">
741+
<strong>Parking Map:</strong>
742+
<a href="./TMC_AI_Summit2026_Parking.jpg" target="_blank" rel="noopener">Open Parking Map</a>
743+
&nbsp;|&nbsp;
744+
<a href="./TMC_AI_Summit2026_Parking.jpg" download>Download Parking Map</a>
745+
</p>
746+
855747

856748

857749

@@ -2335,54 +2227,5 @@ <h3 style="font-size: 22px; color:#fff; margin:0;">
23352227
}
23362228
</script>
23372229

2338-
<script>
2339-
(function(){
2340-
const thumb = document.getElementById('parkingThumb');
2341-
const lightbox = document.getElementById('parkingLightbox');
2342-
const closeBtn = document.getElementById('parkingCloseBtn');
2343-
const largeImg = document.getElementById('parkingLargeImg');
2344-
2345-
function openLightbox(){
2346-
lightbox.classList.add('open');
2347-
lightbox.setAttribute('aria-hidden', 'false');
2348-
document.body.style.overflow = 'hidden';
2349-
}
2350-
2351-
function closeLightbox(){
2352-
lightbox.classList.remove('open');
2353-
lightbox.setAttribute('aria-hidden', 'true');
2354-
document.body.style.overflow = '';
2355-
}
2356-
2357-
if(thumb){
2358-
thumb.addEventListener('click', openLightbox);
2359-
}
2360-
2361-
if(closeBtn){
2362-
closeBtn.addEventListener('click', closeLightbox);
2363-
}
2364-
2365-
// Click outside image closes
2366-
if(lightbox){
2367-
lightbox.addEventListener('click', function(e){
2368-
if(e.target === lightbox) closeLightbox();
2369-
});
2370-
}
2371-
2372-
// Click on large image closes (optional)
2373-
if(largeImg){
2374-
largeImg.addEventListener('click', closeLightbox);
2375-
}
2376-
2377-
// ESC closes
2378-
document.addEventListener('keydown', function(e){
2379-
if(e.key === 'Escape' && lightbox && lightbox.classList.contains('open')){
2380-
closeLightbox();
2381-
}
2382-
});
2383-
})();
2384-
</script>
2385-
2386-
23872230
</body>
23882231
</html>

0 commit comments

Comments
 (0)