commitfordocket

This commit is contained in:
Liam Stamper
2023-09-23 16:46:10 -05:00
parent 4bade8e5ae
commit 7e4c9bcddd
2 changed files with 158 additions and 0 deletions

View File

@ -658,6 +658,51 @@ input[type=checkbox]{
max-width: 900px; max-width: 900px;
} }
/* ***************** TICKETS BODY ************************ */
.tab {
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
}
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
font-size: 17px;
}
.tab button:hover {
background-color: #ddd;
}
.tab button.active {
background-color: #ccc;
}
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
}

View File

@ -0,0 +1,113 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SeatStock</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<!--************************ HEADER *********************-->
<logo><a href="index.html">SeatStock</a></logo>
<signinButton><a href="signin.html">Sign In</a></signinButton>
<faqButton><a href="FAQ.html">How it Works</a></faqButton>
<tixButton><a href="tickets.html">Your Tickets</a></tixButton>
<!--************************** BODY ***********************-->
<div class="tab">
<button class="tablinks" onclick="openCity(event, 'Tickets')">Tickets</button>
<button class="tablinks" onclick="openCity(event, 'Active-Bids')">Active Bids</button>
<button class="tablinks" onclick="openCity(event, 'Active-Asks')">Active Asks</button>
<button class="tablinks" onclick="openCity(event, 'History')">History</button>
</div>
<div id="Tickets" class="tabcontent">
<h3>London</h3>
<p>London is the capital city of England.</p>
</div>
<div id="Active-Bids" class="tabcontent">
<h3>Paris</h3>
<p>Paris is the capital of France.</p>
</div>
<div id="Active-Asks" class="tabcontent">
<h3>Tokyo</h3>
<p>Tokyo is the capital of Japan.</p>
</div>
<div id="History" class="tabcontent">
<h3>Tokyo</h3>
<p>Tokyo is the capital of Japan.</p>
</div>
<!--************************ SCRIPT ****************-->
<script>
function openCity(evt, cityName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(cityName).style.display = "block";
evt.currentTarget.className += " active";
}
</script>
</body>
</html>