Initial commmit

This commit is contained in:
Edward Tirado Jr 2025-02-16 20:21:30 -06:00
commit 88383f90e5
1174 changed files with 227188 additions and 0 deletions

111
static/app.css Normal file
View file

@ -0,0 +1,111 @@
@font-face {
font-family: 'BloodSeeker';
src: url('fonts/bloodseeker.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Xolonium';
src: url('fonts/xolonium-regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
body, .list-header {
background: #080809;
font-family: "Xolonium";
}
.movie-card {
/*background: #0a0d40;*/
background: #1b1f24;
color: white;
}
.schedule-poster {
width: 15em;
height: 15em;
object-fit: fill;
padding: .5em;
}
.btn {
color: white;
border: unset;
background: #6f0b51;
}
.btn:hover {
background: #a80f7a;
}
.neon-border {
border: #6f0b51 1px solid;
}
.site-title {
font-size: 20pt;
text-decoration: none;
}
.site-title:hover {
color: #6f0b51 !important;
}
.header {
border-bottom: #6f0b51 solid 2px;
}
.bloodseeker {
font-family: "BloodSeeker";
}
.header-link {
text-decoration: none;
font-size: 15pt;
}
.header-link:hover {
color: #6f0b51 !important;
}
.selected-link {
color: #6f0b51 !important;
}
.movie-modal {
position: fixed; /* Stay in place */
left: 0;
top: 0;
width: 100vw; /* Full width */
height: 100vh; /* Full height */
overflow: auto; /* Enable scroll if needed */
background: #080809;
z-index: 10000;
}
/* Modal Content/Box */
.movie-modal-content {
background: #1b1f24;
min-height: 20rem;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
width: 80%; /* Could be more or less, depending on screen size */
}
.hover-pointer {
cursor: pointer;
}
.delete-button:hover, .logout-button:hover, .close-button:hover {
cursor: pointer;
}
.tabs > li {
cursor: pointer;
}
.tabs > li:hover {
color: #6f0b51 !important;
}

4124
static/bootstrap/bootstrap-grid.css vendored Normal file

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4123
static/bootstrap/bootstrap-grid.rtl.css vendored Normal file

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

0
static/bootstrap/bootstrap-reboot.css vendored Normal file
View file

File diff suppressed because one or more lines are too long

View file

File diff suppressed because one or more lines are too long

View file

File diff suppressed because one or more lines are too long

View file

File diff suppressed because one or more lines are too long

4197
static/bootstrap/bootstrap-utilities.css vendored Normal file

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

10880
static/bootstrap/bootstrap.css vendored Normal file

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

7
static/bootstrap/bootstrap.min.css vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

0
static/favicon-16x16.png Normal file
View file

View file

View file

19
static/js/app.js Normal file
View file

@ -0,0 +1,19 @@
let mn = {
"getToken": function () {
let cookies = document.cookie.replace(";", "").split(" ");
try {
return cookies[0].split("=")[1].trim();
} catch (_) {
return ""
}
},
"setNav": function (link) {
let links = document.getElementsByClassName("header-link");
[...links].forEach(link_el => {
if (link_el.id === link) {
document.getElementById(link).classList.add("selected-link")
}
});
},
}