236 lines
3.2 KiB
CSS
236 lines
3.2 KiB
CSS
/* SNACKBAR */
|
|
#snackbar {
|
|
visibility: hidden;
|
|
min-width: 250px;
|
|
margin-left: -125px;
|
|
background-color: #ffffff00;
|
|
color: rgb(255, 255, 255);
|
|
text-align: center;
|
|
border: 5px solid white;
|
|
border-radius: 10px;
|
|
box-shadow: 0 0 10px white;
|
|
box-shadow: inset 0 0 10px white;
|
|
padding: 16px;
|
|
position: fixed;
|
|
z-index: 1;
|
|
left: 50%;
|
|
top: 20px;
|
|
}
|
|
|
|
#snackbar.show {
|
|
visibility: visible;
|
|
-webkit-animation: fadein 0.5s, fadeout 1s 2.5s;
|
|
animation: fadein 0.5s, fadeout 1s 2.5s;
|
|
}
|
|
|
|
@-webkit-keyframes fadein {
|
|
from {
|
|
top: 0;
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
top: 20px;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes fadein {
|
|
from {
|
|
top: 0;
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
top: 20px;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes fadeout {
|
|
from {
|
|
top: 20px;
|
|
opacity: 1;
|
|
}
|
|
to {
|
|
top: 0;
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes fadeout {
|
|
from {
|
|
top: 20px;
|
|
opacity: 1;
|
|
}
|
|
to {
|
|
top: 0;
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
/* MAIN STUFF */
|
|
|
|
body {
|
|
background-color: black;
|
|
color: white;
|
|
background-image: url("../../assets/images/NSW2-BG.jpg");
|
|
background-repeat: repeat-y;
|
|
background-size: cover;
|
|
text-align: center;
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.logo {
|
|
width: 80%;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.subtext {
|
|
width: 70%;
|
|
height: 10%;
|
|
padding-bottom: 20px;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.webdate {
|
|
width: 50%;
|
|
height: 20%;
|
|
padding-top: 20px;
|
|
padding-bottom: 25px;
|
|
}
|
|
|
|
.note {
|
|
width: 80%;
|
|
height: 20%;
|
|
}
|
|
|
|
div {
|
|
display: inline-block;
|
|
}
|
|
|
|
.ip img {
|
|
width: 70%;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.times img {
|
|
width: 90%;
|
|
padding-bottom: 2vh;
|
|
}
|
|
|
|
div.button > img {
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
/* height: 100vh; */
|
|
}
|
|
.list {
|
|
font-size: 6vw;
|
|
display: -ms-inline-grid;
|
|
display: inline-grid;
|
|
padding-left: 0;
|
|
}
|
|
div.buttons > img {
|
|
padding-left: 0;
|
|
width: 100%;
|
|
display: inline-block;
|
|
}
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
#credits {
|
|
color: white;
|
|
font-size: 1vw;
|
|
}
|
|
|
|
#credits a {
|
|
color: #fec019;
|
|
}
|
|
|
|
@media (max-device-width: 667px), (max-width: 1024px) {
|
|
body {
|
|
background-color: black;
|
|
color: white;
|
|
background-image: url("/assets/images/NSW2-BG.jpg");
|
|
background-repeat: repeat-y;
|
|
background-size: auto;
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: sans-serif;
|
|
font-style: italic;
|
|
}
|
|
.logo {
|
|
width: 75%;
|
|
height: 20%;
|
|
padding-top: 5px;
|
|
}
|
|
.subtext {
|
|
width: 95%;
|
|
}
|
|
.webdate {
|
|
width: 95%;
|
|
padding-bottom: 0;
|
|
}
|
|
.note {
|
|
width: 95%;
|
|
}
|
|
div {
|
|
display: inline-block;
|
|
}
|
|
.button {
|
|
width: 100%;
|
|
}
|
|
.list {
|
|
font-size: 6vw;
|
|
display: -ms-inline-grid;
|
|
display: inline-grid;
|
|
padding-left: 0;
|
|
}
|
|
.buttons {
|
|
padding-left: 0;
|
|
width: 100vw;
|
|
display: inline-block;
|
|
}
|
|
|
|
.times img {
|
|
width: 80%;
|
|
padding-bottom: 2vh;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
#credits {
|
|
color: white;
|
|
font-size: 2.5vw;
|
|
}
|
|
#credits a {
|
|
color: #fec019;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1921px) {
|
|
.allages {
|
|
display: none;
|
|
}
|
|
.ticket {
|
|
display: none;
|
|
}
|
|
.time {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
.button {
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
width: 80%;
|
|
}
|
|
.buttons {
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
/*# sourceMappingURL=main.css.map */
|