Skip to content

Commit

Permalink
Merge branch 'main' of github.com:krishaarya/Ticket-Booking
Browse files Browse the repository at this point in the history
  • Loading branch information
krishaarya committed Oct 28, 2024
2 parents 9e58e14 + 843accf commit a56e9bb
Show file tree
Hide file tree
Showing 6 changed files with 1,229 additions and 1,289 deletions.
2 changes: 1 addition & 1 deletion buy.html
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@
<a href="about.html"><i class="fas fa-info-circle"></i> About</a>
<a href="buy.html"><i class="fas fa-ticket-alt"></i> Buy Ticket</a>
<a href="sell.html"><i class="fas fa-tags"></i> Sell</a>
<a href="#contact"><i class="fas fa-envelope"></i> Contact</a>
<a href="contactus.html"><i class="fas fa-envelope"></i> Contact</a>
<a href="contributor.html"><i class="fas fa-users"></i> Contributors</a>
<a href="register.html"><i class="fas fa-sign-in-alt"></i> Login</a>

Expand Down
2 changes: 1 addition & 1 deletion contributor.html
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@
<a href="about.html"><i class="fas fa-info-circle"></i> About</a>
<a href="buy.html"><i class="fas fa-ticket-alt"></i> Buy Ticket</a>
<a href="sell.html"><i class="fas fa-tags"></i> Sell</a>
<a href="#contact"><i class="fas fa-envelope"></i> Contact</a>
<a href="contactus.html"><i class="fas fa-envelope"></i> Contact</a>
<a href="contributor.html"><i class="fas fa-users"></i> Contributors</a>
<a href="register.html"><i class="fas fa-sign-in-alt"></i> Login</a>

Expand Down
24 changes: 23 additions & 1 deletion index.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,28 @@ body {
transition: background-color 0.3s, color 0.3s;
overflow-x: hidden;
}
.Wrapper{
position: fixed;
inset: 0;
z-index: 9999;
background-color: #b9e6ec;
display: grid;
place-items: center;
transition: opacity .25s, visiblity 1s;
}
.fade {
opacity: 0;
visibility: hidden;
}

.loader{
border: 17px solid #b9e6ec; /* Light grey background */
border-top: 17px solid #061824; /* Blue color for top */
border-radius: 50%;
width: 170px;
height: 170px;
animation: spin 1s linear infinite;
}

h1,
h2,
Expand Down Expand Up @@ -146,7 +168,6 @@ p {
transition: all 0.3s ease;
border-radius: 5px;
}

/* Hover effect with underline and color change */
.navbar ul li a:hover {
color: #FFD700; /* Golden color on hover */
Expand Down Expand Up @@ -512,6 +533,7 @@ body.dark-mode .ticket-card button:hover {

.slide {
position: relative;
margin-top: 0;
width: 100%;
height: 100%;
display: none;
Expand Down
Loading

0 comments on commit a56e9bb

Please sign in to comment.