initial commit

This commit is contained in:
2026-07-03 15:50:14 -04:00
commit 8729c1e325
148 changed files with 99618 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
// main: ../main.scss
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
[data-aos-delay] {
transition-delay: 0 !important;
}
}
+144
View File
@@ -0,0 +1,144 @@
// main: ../main.scss
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
--background-color: #110a06;
--default-color: #ffffff;
--heading-color: #ffffff;
--accent-color: #cc0000;
--surface-color: #121212;
--contrast-color: #000000;
color: var(--default-color);
background-color: var(--background-color);
font-size: 14px;
position: relative;
.footer-top {
background-color: color-mix(in srgb, var(--background-color), white 5%);
padding-top: 50px;
}
.footer-about {
.logo {
line-height: 1;
margin-bottom: 25px;
img {
max-height: 40px;
margin-right: 6px;
}
span {
color: var(--heading-color);
font-family: var(--heading-font);
font-size: 26px;
font-weight: 700;
letter-spacing: 1px;
}
}
p {
font-size: 14px;
font-family: var(--heading-font);
}
}
h4 {
font-size: 16px;
font-weight: 600;
position: relative;
padding-bottom: 12px;
margin-bottom: 15px;
&::after {
content: '';
position: absolute;
display: block;
width: 20px;
height: 2px;
background: var(--accent-color);
bottom: 0;
left: 0;
}
}
.footer-links {
margin-bottom: 30px;
ul {
list-style: none;
padding: 0;
margin: 0;
i {
padding-right: 2px;
font-size: 12px;
line-height: 0;
}
li {
padding: 10px 0;
&:first-child {
padding-top: 0;
}
display: flex;
align-items: center;
}
a {
color: color-mix(in srgb, var(--default-color), transparent 30%);
display: inline-block;
line-height: 1;
&:hover {
color: var(--accent-color);
}
}
}
}
.footer-contact {
p {
margin-bottom: 5px;
}
}
.copyright {
padding: 30px 0;
p {
margin-bottom: 0;
}
}
.credits {
margin-top: 5px;
font-size: 13px;
}
.social-links {
a {
font-size: 18px;
display: inline-block;
background: color-mix(in srgb, var(--default-color), transparent 92%);
color: var(--accent-color);
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 4px;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
&:hover {
color: var(--contrast-color);
background: var(--accent-color);
text-decoration: none;
}
}
}
}
+30
View File
@@ -0,0 +1,30 @@
// main: ../main.scss
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
color: var(--default-color);
background-color: var(--background-color);
font-family: var(--default-font);
}
a {
color: var(--accent-color);
text-decoration: none;
transition: 0.3s;
}
a:hover {
color: color-mix(in srgb, var(--accent-color), transparent 25%);
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--heading-color);
font-family: var(--heading-font);
}
+60
View File
@@ -0,0 +1,60 @@
// main: ../main.scss
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
--background-color: rgba(255, 255, 255, 0);
--default-color: #ffffff;
--heading-color: #ffffff;
color: var(--default-color);
background-color: transparent;
padding: 28px 0;
transition: all 0.5s ease;
z-index: 997;
position: fixed;
top: 0;
left: 0;
right: 0;
.container-xl {
flex-direction: column;
gap: 18px;
transition: all 0.5s ease;
}
.logo {
line-height: 1;
transition: all 0.5s ease;
img {
max-height: 110px;
width: auto;
transition: all 0.5s ease;
}
}
.scrolled & {
background-color: rgba(0, 0, 0, 0.88);
padding: 10px 0;
box-shadow: 0px 0 18px rgba(0, 0, 0, 0.15);
.container-xl {
flex-direction: row;
gap: 0;
}
.logo {
opacity: 0.75;
img {
max-height: 42px;
}
}
}
}
/* Global Header on Scroll
------------------------------*/
.scrolled .header {
--background-color: #1a1715;
}
File diff suppressed because it is too large Load Diff
+55
View File
@@ -0,0 +1,55 @@
// main: ../main.scss
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
color: var(--default-color);
background-color: var(--background-color);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 200px 0 80px 0;
text-align: center;
position: relative;
&:before {
content: '';
background-color: color-mix(in srgb, var(--background-color), transparent 20%);
position: absolute;
inset: 0;
}
h1 {
font-size: 42px;
font-weight: 300;
margin-bottom: 10px;
}
p {
font-weight: 300;
}
.breadcrumbs {
ol {
display: flex;
flex-wrap: wrap;
list-style: none;
justify-content: center;
padding: 0;
margin: 0;
font-size: 16px;
font-weight: 400;
li+li {
padding-left: 10px;
}
li+li::before {
content: "/";
display: inline-block;
padding-right: 10px;
color: color-mix(in srgb, var(--default-color), transparent 50%);
}
}
}
}
+35
View File
@@ -0,0 +1,35 @@
// main: ../main.scss
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
position: fixed;
inset: 0;
z-index: 999999;
overflow: hidden;
background: var(--background-color);
transition: all 0.6s ease-out;
&:before {
content: "";
position: fixed;
top: calc(50% - 30px);
left: calc(50% - 30px);
border: 6px solid #ffffff;
border-color: var(--accent-color) transparent var(--accent-color) transparent;
border-radius: 50%;
width: 60px;
height: 60px;
animation: animate-preloader 1.5s linear infinite;
}
}
@keyframes animate-preloader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
+33
View File
@@ -0,0 +1,33 @@
// main: ../main.scss
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
position: fixed;
visibility: hidden;
opacity: 0;
right: 15px;
bottom: 15px;
z-index: 99999;
background-color: var(--accent-color);
width: 40px;
height: 40px;
border-radius: 4px;
transition: all 0.4s;
i {
font-size: 24px;
color: var(--contrast-color);
line-height: 0;
}
&:hover {
background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
color: var(--contrast-color);
}
&.active {
visibility: visible;
opacity: 1;
}
}