Skip to content

Commit

Permalink
Hello again folder
Browse files Browse the repository at this point in the history
  • Loading branch information
ArrowVark committed Dec 17, 2024
1 parent 0cba21a commit c2be1ee
Show file tree
Hide file tree
Showing 116 changed files with 79,392 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Stage-Fright/Readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Thanks for downloading this template!

Template Name: Squadfree
Template URL: https://bootstrapmade.com/squadfree-free-bootstrap-template-creative/
Author: BootstrapMade.com
License: https://bootstrapmade.com/license/
152 changes: 152 additions & 0 deletions Stage-Fright/assets/css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
/*--------------------------------------------------------------
# Custom CSS Classes
--------------------------------------------------------------*/

.hidden {
opacity: 0 !important;
animation: none !important;

margin: 0;
padding: 0;
width: 0;
height: 0;

display: none !important;

pointer-events: none;
cursor: default;
}

.logo-container {
/* background-color: red; */
width: 35%;
}

.tour-banner {
/* background-color: blue; */
background-color: var(--accent-color);
overflow: hidden;
width: 0;
margin: 0;
padding: 1rem;
opacity: 0;

text-wrap: nowrap;

animation: tour-banner-open 2.75s ease-in-out 2s 1 forwards,
tour-banner-fade-in 2.75s ease-out 2s 1 forwards,
tour-banner-transforms 2.75s ease-out 2s 1 forwards,
tour-banner-styling 2.75s ease-out 2s 1 forwards;

border-radius: 0.35rem;
}

@keyframes tour-banner-open {
from {
width: 0;
}
to {
/* width: 27rem; */
width: 35rem;
}
}

@keyframes tour-banner-fade-in {
from {
opacity: 0;
}
15% {
opacity: 0;
}
75% {
opacity: 1;
}
to {
opacity: 1;
}
}

@keyframes tour-banner-transforms {
from {
transform: scale(0.9) translateY(3rem);
}
to {
transform: scale(1.1);
}
}

@keyframes tour-banner-styling {
from {
box-shadow: none;
}
to {
/* box-shadow: 1rem 1.25rem 2rem red; */
box-shadow: 1rem 1.25rem 2rem rgba(0, 0, 0, 0.485);

}
}

.main-countdown-container {
margin-right: 1rem;
/* background-color: red; */
}

.countdown-container {
text-align: center;
width: 100%;
}

.countdown-number {
font-size: 3rem !important;
/* color: red; */
}

.countdown-text {
font-size: 1rem !important;
}

.tickets-container {
/* background-color: red; */
}

.maximum-tickets-td {
padding-left: 1rem;
/* background-color: blue; */
padding-top: 1rem;

p {
color: lightgray;
}
}

#tickets {
font-size: 2.25rem !important;
}

#location-selector {
font-family: var(--default-font);
/* appearance: none; */
}

#location-selector:hover {
background-color: rgb(36, 36, 36);
color: white;
}

.purchase-select-container {
padding-left: 5rem;
}

#purchase-ticket-btn {
/* background-color: var(--heading-color); */
border-radius: 0.7rem;
background-color: #2f4d5a;
color: white;
padding: 0.4rem;
padding-right: 1rem;
padding-left: 1rem;
}

#purchase-ticket {
margin-bottom: 3rem;
}
Loading

0 comments on commit c2be1ee

Please sign in to comment.