Initial commit of darkhorselinux.org static site
This commit is contained in:
7
resources/css/bootstrap.min.css
vendored
Executable file
7
resources/css/bootstrap.min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
5
resources/css/fontawesome-all.css
Executable file
5
resources/css/fontawesome-all.css
Executable file
File diff suppressed because one or more lines are too long
744
resources/css/site.css
Executable file
744
resources/css/site.css
Executable file
@@ -0,0 +1,744 @@
|
||||
:root {
|
||||
--void: #001a2d;
|
||||
--ink: #f7f9fb;
|
||||
--blood: #8b0000;
|
||||
--steel: #5f6e7c;
|
||||
--gold: #c9a634;
|
||||
--slate: #1a1a1a;
|
||||
--glow-blood: rgba(139,0,0,.55);
|
||||
--glow-gold: rgba(201,166,52,.55);
|
||||
--line: rgba(255,255,255,.06);
|
||||
}
|
||||
|
||||
/* Layout */
|
||||
html, body {
|
||||
height: 100%;
|
||||
}
|
||||
.index-container {
|
||||
width: 100%;
|
||||
}
|
||||
.index-container > .tearoff-card {
|
||||
box-shadow: 8px 8px 20px rgba(0,0,0,0.15), -8px 8px 20px rgba(0,0,0,0.15);
|
||||
border-left: none;
|
||||
}
|
||||
.index-container > .tearoff-card:hover {
|
||||
transform: none;
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
.index-container {
|
||||
width: 75%;
|
||||
}
|
||||
}
|
||||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background: #e9ecef;
|
||||
position: relative;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
.parallax-grid {
|
||||
position: fixed;
|
||||
top: -10%;
|
||||
left: -10%;
|
||||
width: 120%;
|
||||
height: 120%;
|
||||
background-image:
|
||||
linear-gradient(to right, rgba(0, 100, 180, 0.08) 1px, transparent 1px),
|
||||
linear-gradient(to bottom, rgba(0, 100, 180, 0.08) 1px, transparent 1px);
|
||||
background-size: 20px 20px;
|
||||
pointer-events: none;
|
||||
z-index: -2;
|
||||
transition: transform 0.2s ease-out;
|
||||
}
|
||||
.parallax-bg {
|
||||
position: fixed;
|
||||
top: -10%;
|
||||
left: -10%;
|
||||
width: 120%;
|
||||
height: 120%;
|
||||
background-image: url('../img/logo.svg');
|
||||
background-size: 80vmax;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
filter: grayscale(100%) opacity(0.1);
|
||||
pointer-events: none;
|
||||
z-index: -1;
|
||||
transition: transform 0.15s ease-out;
|
||||
}
|
||||
.main-content {
|
||||
flex: 1 0 auto;
|
||||
}
|
||||
|
||||
/* Forms */
|
||||
.form-control {
|
||||
background: #fff;
|
||||
border-color: #ced4da;
|
||||
color: #212529;
|
||||
}
|
||||
.form-control:focus {
|
||||
background: #fff;
|
||||
border-color: #6c757d;
|
||||
box-shadow: 0 0 0 0.1rem rgba(108,117,125,0.15);
|
||||
}
|
||||
|
||||
/* Summernote editor */
|
||||
.note-editor.note-frame {
|
||||
border-color: #ced4da;
|
||||
}
|
||||
.note-editor .note-editing-area .note-editable {
|
||||
background: #fff;
|
||||
color: #212529;
|
||||
}
|
||||
.note-editor .note-toolbar {
|
||||
background: #e9ecef;
|
||||
}
|
||||
|
||||
/* Navbar */
|
||||
.navbar {
|
||||
background: linear-gradient(180deg, var(--void) 0%, #002a45 100%) !important;
|
||||
border-bottom: 2px solid var(--slate);
|
||||
}
|
||||
.navbar .nav-link {
|
||||
color: var(--ink) !important;
|
||||
}
|
||||
.navbar .nav-link:hover {
|
||||
color: var(--gold) !important;
|
||||
}
|
||||
.navbar .nav-item.active .nav-link {
|
||||
color: var(--gold) !important;
|
||||
}
|
||||
.navbar-brand {
|
||||
color: var(--ink) !important;
|
||||
}
|
||||
.navbar-brand:hover {
|
||||
color: var(--gold) !important;
|
||||
}
|
||||
.navbar-brand:hover img {
|
||||
filter: brightness(1.2);
|
||||
}
|
||||
.navbar-brand-title {
|
||||
color: var(--ink);
|
||||
letter-spacing: 0.15em;
|
||||
}
|
||||
.navbar-brand-tagline {
|
||||
color: var(--steel);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
}
|
||||
|
||||
/* Dropdown menus */
|
||||
.dropdown-menu {
|
||||
background: var(--void);
|
||||
border: 1px solid var(--line);
|
||||
}
|
||||
|
||||
/* Mega menu sections */
|
||||
.products-chevron,
|
||||
.services-chevron,
|
||||
.inquiries-chevron {
|
||||
transition: transform 0.1s ease;
|
||||
}
|
||||
.products-chevron.rotate,
|
||||
.services-chevron.rotate,
|
||||
.inquiries-chevron.rotate {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
.products-section,
|
||||
.services-section,
|
||||
.inquiries-section {
|
||||
background: transparent;
|
||||
}
|
||||
.products-section .card,
|
||||
.services-section .card {
|
||||
background: var(--void);
|
||||
border: 1px solid var(--gold);
|
||||
border-top: none;
|
||||
border-left: 4px solid var(--gold);
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
.inquiries-section .card {
|
||||
background: var(--blood);
|
||||
border: 1px solid var(--gold);
|
||||
border-top: none;
|
||||
border-left: 4px solid var(--gold);
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
.products-section .mega-product:hover,
|
||||
.services-section .mega-product:hover,
|
||||
.inquiries-section .mega-product:hover {
|
||||
background: #fff;
|
||||
color: var(--void) !important;
|
||||
text-decoration: none;
|
||||
}
|
||||
.products-section .mega-product:hover i,
|
||||
.services-section .mega-product:hover i,
|
||||
.inquiries-section .mega-product:hover i {
|
||||
color: var(--void);
|
||||
}
|
||||
|
||||
/* Mega menu */
|
||||
.dropdown-menu-mega .mega-row {
|
||||
border-bottom: 1px solid var(--line);
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
}
|
||||
.dropdown-menu-mega .mega-row:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
.dropdown-menu-mega a.mega-row:hover {
|
||||
background: var(--steel);
|
||||
text-decoration: none;
|
||||
}
|
||||
.mega-row-header {
|
||||
background: var(--gold);
|
||||
}
|
||||
.mega-row-header.header-blood {
|
||||
background: var(--blood);
|
||||
}
|
||||
.mega-row-header.header-blood .mega-header {
|
||||
color: var(--ink);
|
||||
}
|
||||
.mega-row-header.header-steel {
|
||||
background: var(--steel);
|
||||
}
|
||||
.mega-row-header.header-steel .mega-header {
|
||||
color: var(--ink);
|
||||
}
|
||||
.mega-header {
|
||||
color: var(--void);
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
font-size: 0.75rem;
|
||||
letter-spacing: 0.05em;
|
||||
margin: 0;
|
||||
}
|
||||
.dropdown-menu .dropdown-item {
|
||||
color: var(--ink);
|
||||
}
|
||||
.dropdown-menu .dropdown-item:hover,
|
||||
.dropdown-menu .dropdown-item:focus {
|
||||
background: var(--steel);
|
||||
color: var(--ink);
|
||||
}
|
||||
.dropdown-menu .dropdown-item i {
|
||||
width: 1.25em;
|
||||
text-align: center;
|
||||
}
|
||||
.dropdown-menu .dropdown-divider {
|
||||
border-color: var(--line);
|
||||
}
|
||||
.dropdown-item-text {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Hero section */
|
||||
.hero {
|
||||
background: linear-gradient(180deg, #002a45 0%, var(--void) 30%, var(--void) 70%, #000d16 100%);
|
||||
color: var(--ink);
|
||||
padding: 4rem 0;
|
||||
text-align: center;
|
||||
border-bottom: 2px solid var(--slate);
|
||||
box-shadow: inset 0 10px 30px rgba(0,0,0,0.3), inset 0 -10px 30px rgba(0,0,0,0.4);
|
||||
}
|
||||
.hero h1 {
|
||||
font-size: 3rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 0.25rem;
|
||||
letter-spacing: 0.15em;
|
||||
color: var(--ink);
|
||||
white-space: nowrap;
|
||||
}
|
||||
.hero .slogan {
|
||||
color: var(--steel);
|
||||
font-size: 1.1rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
.hero .slogan-sm {
|
||||
color: var(--steel);
|
||||
font-size: 0.9rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
}
|
||||
.hero-divider {
|
||||
border-color: var(--gold);
|
||||
width: 100px;
|
||||
margin: 0 auto 1.5rem;
|
||||
}
|
||||
.hero .tagline {
|
||||
font-size: 1.35rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.6;
|
||||
max-width: 600px;
|
||||
margin: 0 auto 2rem;
|
||||
color: rgba(247, 249, 251, 0.85);
|
||||
}
|
||||
.hero.hero-sm {
|
||||
padding: 2.5rem 0;
|
||||
}
|
||||
.hero.hero-sm h1 {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* CTA section */
|
||||
.cta-section {
|
||||
background: #f8f9fa;
|
||||
padding: 3rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
.btn-gold {
|
||||
background: var(--gold);
|
||||
color: var(--void);
|
||||
border: none;
|
||||
padding: 0.75rem 2rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
.btn-gold:hover {
|
||||
background: #b8952e;
|
||||
color: var(--void);
|
||||
}
|
||||
.btn-gold.btn-lg {
|
||||
padding: 1rem 2.5rem;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
.btn-void {
|
||||
background: var(--void);
|
||||
color: var(--ink);
|
||||
border: 1px solid var(--gold);
|
||||
padding: 0.75rem 2rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
.btn-void:hover {
|
||||
background: #002a45;
|
||||
color: var(--ink);
|
||||
}
|
||||
.btn-void.btn-lg {
|
||||
padding: 1rem 2.5rem;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
.btn-slate {
|
||||
background: var(--slate);
|
||||
color: var(--ink);
|
||||
border: 1px solid var(--gold);
|
||||
padding: 0.75rem 2rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
.btn-slate:hover {
|
||||
background: #0f0f0f;
|
||||
color: var(--ink);
|
||||
}
|
||||
.btn-slate.btn-lg {
|
||||
padding: 1rem 2.5rem;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
.btn-custom-engagements {
|
||||
color: var(--void);
|
||||
font-weight: 600;
|
||||
}
|
||||
.btn-glow-gold {
|
||||
box-shadow: 0 0 20px var(--glow-gold);
|
||||
}
|
||||
.btn-void-gold {
|
||||
background: var(--void);
|
||||
color: var(--gold);
|
||||
border: 1px solid var(--gold);
|
||||
padding: 0.75rem 2rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
.btn-void-gold:hover {
|
||||
background: #002a45;
|
||||
color: var(--gold);
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
.bg-slate {
|
||||
background: var(--slate);
|
||||
}
|
||||
.footer {
|
||||
background: var(--void);
|
||||
color: var(--ink);
|
||||
border-top: 2px solid var(--slate);
|
||||
}
|
||||
.footer-link {
|
||||
color: var(--ink);
|
||||
transition: color 0.1s ease;
|
||||
}
|
||||
.footer-link:hover {
|
||||
color: var(--gold);
|
||||
text-decoration: none;
|
||||
}
|
||||
.footer li .footer-link {
|
||||
display: block;
|
||||
padding: 0.25rem 0.5rem;
|
||||
margin-left: -0.5rem;
|
||||
transition: color 0.1s ease, background 0.1s ease;
|
||||
}
|
||||
.footer-top li .footer-link:hover {
|
||||
color: var(--ink);
|
||||
background: var(--void);
|
||||
}
|
||||
.footer-muted {
|
||||
color: var(--steel);
|
||||
}
|
||||
.footer-top {
|
||||
background: var(--blood);
|
||||
}
|
||||
.footer-top .bg-white {
|
||||
background: var(--ink) !important;
|
||||
}
|
||||
.footer-top .bg-white span {
|
||||
color: var(--blood) !important;
|
||||
}
|
||||
.footer-top .footer-link {
|
||||
color: var(--ink);
|
||||
}
|
||||
.footer-top li .footer-link:hover {
|
||||
color: var(--blood);
|
||||
background: var(--ink);
|
||||
}
|
||||
|
||||
/* Expertise cards */
|
||||
.tearoff-card {
|
||||
background: rgba(255,255,255,0.7);
|
||||
border: none;
|
||||
border-left: 4px solid var(--gold);
|
||||
transition: border-color 0.1s ease, transform 0.1s ease;
|
||||
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
}
|
||||
.tearoff-card:hover {
|
||||
border-left-color: var(--blood);
|
||||
transform: translateX(4px);
|
||||
}
|
||||
.tearoff-card .card-body {
|
||||
color: var(--void);
|
||||
padding-right: 1rem !important;
|
||||
}
|
||||
.tearoff-card h3 {
|
||||
color: var(--void);
|
||||
}
|
||||
.tearoff-card p {
|
||||
color: var(--void);
|
||||
}
|
||||
.tearoff-card .tearoff-icon {
|
||||
color: var(--gold);
|
||||
font-size: 1.5rem;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
/* Content section cards (left column) */
|
||||
.col-lg-8 .tearoff-card,
|
||||
.tearoff-card.subcard {
|
||||
background: rgba(255,255,255,0.85);
|
||||
box-shadow: 0 2px 8px rgba(0,26,45,0.08);
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
.col-lg-8 .tearoff-card:hover,
|
||||
.tearoff-card.subcard:hover {
|
||||
background: rgba(255,255,255,1);
|
||||
}
|
||||
.col-lg-8 .tearoff-card h2,
|
||||
.tearoff-card.subcard h2 {
|
||||
color: var(--void);
|
||||
border-bottom: 2px solid var(--gold);
|
||||
padding-bottom: 0.5rem;
|
||||
display: inline-block;
|
||||
}
|
||||
.col-lg-8 .tearoff-card p,
|
||||
.tearoff-card.subcard p {
|
||||
color: #2a3a4a;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
/* Right column link cards */
|
||||
.tearoff-card a.d-block {
|
||||
transition: background 0.1s ease, border-color 0.1s ease;
|
||||
}
|
||||
.tearoff-card a.d-block:hover,
|
||||
.tearoff-card a.d-block.active {
|
||||
background: var(--void) !important;
|
||||
border-left-color: var(--gold) !important;
|
||||
}
|
||||
.tearoff-card a.d-block:hover h3,
|
||||
.tearoff-card a.d-block:hover p,
|
||||
.tearoff-card a.d-block.active h3,
|
||||
.tearoff-card a.d-block.active p {
|
||||
color: var(--ink);
|
||||
}
|
||||
.tearoff-card a.d-block:hover .tearoff-icon,
|
||||
.tearoff-card a.d-block.active .tearoff-icon {
|
||||
color: var(--gold);
|
||||
}
|
||||
|
||||
/* Product cards */
|
||||
.product-card {
|
||||
background: var(--void);
|
||||
border: none;
|
||||
display: flex !important;
|
||||
flex-direction: row;
|
||||
align-items: stretch;
|
||||
transition: transform 0.2s ease;
|
||||
text-decoration: none;
|
||||
}
|
||||
.product-card:hover {
|
||||
transform: translateX(4px);
|
||||
text-decoration: none;
|
||||
}
|
||||
.product-card .card-body {
|
||||
color: var(--ink);
|
||||
padding: 1.5rem;
|
||||
flex: 1;
|
||||
}
|
||||
.product-card h3 {
|
||||
color: var(--ink);
|
||||
}
|
||||
.product-card p {
|
||||
color: rgba(247, 249, 251, 0.85);
|
||||
}
|
||||
.product-icon-box {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.product-card .product-icon {
|
||||
color: var(--gold);
|
||||
font-size: 48px;
|
||||
}
|
||||
.product-card .product-icon-img {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
.product-tags {
|
||||
display: flex;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.product-tag {
|
||||
writing-mode: vertical-rl;
|
||||
text-orientation: mixed;
|
||||
transform: rotate(180deg);
|
||||
padding: 0.75rem 0.5rem;
|
||||
font-size: 0.7rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-width: 28px;
|
||||
}
|
||||
.product-tag-opensource {
|
||||
background: var(--gold);
|
||||
color: var(--void);
|
||||
}
|
||||
.product-tag-proprietary {
|
||||
background: var(--blood);
|
||||
color: var(--ink);
|
||||
}
|
||||
.product-tag-selfhosted {
|
||||
background: var(--steel);
|
||||
color: var(--ink);
|
||||
}
|
||||
.product-tag-saas {
|
||||
background: var(--slate);
|
||||
color: var(--ink);
|
||||
}
|
||||
|
||||
/* Subpage hero */
|
||||
.hero-subpage {
|
||||
background: linear-gradient(180deg, var(--void) 0%, #002a45 100%);
|
||||
color: var(--ink);
|
||||
padding: 2.5rem 0;
|
||||
text-align: center;
|
||||
border-bottom: 2px solid var(--slate);
|
||||
}
|
||||
.hero-subpage h1 {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 0.5rem;
|
||||
letter-spacing: 0.15em;
|
||||
}
|
||||
.hero-subpage .tagline {
|
||||
font-size: 1.1rem;
|
||||
color: rgba(247, 249, 251, 0.85);
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* Product detail page */
|
||||
.product-badge-band {
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.product-badge-band.badge-opensource {
|
||||
background: var(--gold);
|
||||
}
|
||||
.product-badge-band.badge-proprietary {
|
||||
background: var(--blood);
|
||||
}
|
||||
.product-badge-band.badge-custom {
|
||||
background: var(--steel);
|
||||
}
|
||||
.product-badge-band.badge-service {
|
||||
background: var(--slate);
|
||||
}
|
||||
.product-badge-band.badge-ink {
|
||||
background: var(--ink);
|
||||
box-shadow: 0 8px 20px rgba(0,0,0,0.4), 0 -8px 20px rgba(0,0,0,0.4);
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
}
|
||||
.product-badge-band .badge-text {
|
||||
text-transform: uppercase;
|
||||
font-weight: 600;
|
||||
color: var(--void);
|
||||
letter-spacing: 0.1em;
|
||||
}
|
||||
.product-badge-band.badge-proprietary .badge-text,
|
||||
.product-badge-band.badge-custom .badge-text,
|
||||
.product-badge-band.badge-service .badge-text {
|
||||
color: var(--ink);
|
||||
}
|
||||
.product-detail-card {
|
||||
background: rgba(255,255,255,0.7);
|
||||
border: none;
|
||||
border-left: 4px solid var(--gold);
|
||||
color: var(--void);
|
||||
}
|
||||
.product-detail-card a.resource-link,
|
||||
.tearoff-card.subcard a.resource-link {
|
||||
display: block;
|
||||
padding: 0.5rem;
|
||||
background: rgba(0,26,45,0.15);
|
||||
color: var(--void);
|
||||
transition: background 0.2s ease;
|
||||
}
|
||||
.product-detail-card a.resource-link:hover,
|
||||
.tearoff-card.subcard a.resource-link:hover {
|
||||
background: rgba(0,26,45,0.25);
|
||||
text-decoration: none;
|
||||
}
|
||||
.product-detail-cta {
|
||||
background: rgba(0,26,45,0.15);
|
||||
border-radius: 4px;
|
||||
}
|
||||
.product-hero-logo {
|
||||
height: 120px;
|
||||
}
|
||||
.product-hero-title {
|
||||
letter-spacing: 0.15em;
|
||||
}
|
||||
|
||||
/* Mobile responsive navbar */
|
||||
.navbar-toggler {
|
||||
border: 2px solid var(--ink);
|
||||
padding: 0.5rem;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.navbar-toggler-icon {
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f7f9fb' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
|
||||
width: 1.5em;
|
||||
height: 1.5em;
|
||||
}
|
||||
|
||||
@media (max-width: 1199.98px) {
|
||||
.navbar {
|
||||
padding-left: 1rem !important;
|
||||
padding-right: 1rem !important;
|
||||
}
|
||||
.navbar-brand {
|
||||
flex: 0 1 auto;
|
||||
min-width: 0;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.navbar-brand > span {
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.navbar-brand img {
|
||||
height: 40px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.navbar-brand-title {
|
||||
font-size: 0.9rem;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.hero h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
.navbar-brand-tagline {
|
||||
font-size: 0.6rem;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.navbar-collapse {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
.navbar-nav .nav-link {
|
||||
padding: 0.75rem 0 !important;
|
||||
}
|
||||
.navbar-nav .nav-item {
|
||||
border-bottom: 1px solid var(--line);
|
||||
}
|
||||
.navbar-nav .nav-item:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
.products-section,
|
||||
.services-section,
|
||||
.inquiries-section {
|
||||
padding-left: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
.products-section .container-fluid,
|
||||
.services-section .container-fluid,
|
||||
.inquiries-section .container-fluid {
|
||||
padding-left: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
.products-section .card,
|
||||
.services-section .card,
|
||||
.inquiries-section .card {
|
||||
border-radius: 0;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 575.98px) {
|
||||
.navbar-brand-tagline {
|
||||
display: none;
|
||||
}
|
||||
.navbar-brand img {
|
||||
height: 35px;
|
||||
}
|
||||
.navbar-brand-title {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
.hero h1 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* Utility classes for inline style consolidation */
|
||||
.logo-invert {
|
||||
filter: invert(1);
|
||||
}
|
||||
|
||||
.card-flat-top {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
|
||||
.sidebar-link {
|
||||
background: rgba(0,26,45,0.1);
|
||||
border-left: 3px solid var(--gold);
|
||||
}
|
||||
BIN
resources/fonts/Inter-Bold.woff2
Executable file
BIN
resources/fonts/Inter-Bold.woff2
Executable file
Binary file not shown.
BIN
resources/fonts/Inter-Medium.woff2
Executable file
BIN
resources/fonts/Inter-Medium.woff2
Executable file
Binary file not shown.
BIN
resources/fonts/Inter-Regular.woff2
Executable file
BIN
resources/fonts/Inter-Regular.woff2
Executable file
Binary file not shown.
BIN
resources/fonts/Inter-SemiBold.woff2
Executable file
BIN
resources/fonts/Inter-SemiBold.woff2
Executable file
Binary file not shown.
92
resources/fonts/LICENSE.txt
Executable file
92
resources/fonts/LICENSE.txt
Executable file
@@ -0,0 +1,92 @@
|
||||
Copyright (c) 2016 The Inter Project Authors (https://github.com/rsms/inter)
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION AND CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||
4
resources/fonts/inter.css
Executable file
4
resources/fonts/inter.css
Executable file
@@ -0,0 +1,4 @@
|
||||
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("Inter-Regular.woff2") format("woff2"); }
|
||||
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("Inter-Medium.woff2") format("woff2"); }
|
||||
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("Inter-SemiBold.woff2") format("woff2"); }
|
||||
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("Inter-Bold.woff2") format("woff2"); }
|
||||
BIN
resources/img/apple-touch-icon.png
Executable file
BIN
resources/img/apple-touch-icon.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 9.5 KiB |
BIN
resources/img/logo-og.png
Executable file
BIN
resources/img/logo-og.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 17 KiB |
16
resources/img/logo.svg
Executable file
16
resources/img/logo.svg
Executable file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 8.4 KiB |
7
resources/js/bootstrap.min.js
vendored
Executable file
7
resources/js/bootstrap.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
2
resources/js/jquery-3.6.0.min.js
vendored
Executable file
2
resources/js/jquery-3.6.0.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
5
resources/js/popper.min.js
vendored
Executable file
5
resources/js/popper.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
BIN
resources/webfonts/fa-brands-400.ttf
Executable file
BIN
resources/webfonts/fa-brands-400.ttf
Executable file
Binary file not shown.
BIN
resources/webfonts/fa-brands-400.woff
Executable file
BIN
resources/webfonts/fa-brands-400.woff
Executable file
Binary file not shown.
BIN
resources/webfonts/fa-brands-400.woff2
Executable file
BIN
resources/webfonts/fa-brands-400.woff2
Executable file
Binary file not shown.
BIN
resources/webfonts/fa-regular-400.ttf
Executable file
BIN
resources/webfonts/fa-regular-400.ttf
Executable file
Binary file not shown.
BIN
resources/webfonts/fa-regular-400.woff
Executable file
BIN
resources/webfonts/fa-regular-400.woff
Executable file
Binary file not shown.
BIN
resources/webfonts/fa-regular-400.woff2
Executable file
BIN
resources/webfonts/fa-regular-400.woff2
Executable file
Binary file not shown.
BIN
resources/webfonts/fa-solid-900.ttf
Executable file
BIN
resources/webfonts/fa-solid-900.ttf
Executable file
Binary file not shown.
BIN
resources/webfonts/fa-solid-900.woff
Executable file
BIN
resources/webfonts/fa-solid-900.woff
Executable file
Binary file not shown.
BIN
resources/webfonts/fa-solid-900.woff2
Executable file
BIN
resources/webfonts/fa-solid-900.woff2
Executable file
Binary file not shown.
Reference in New Issue
Block a user