Add build artifacts and generated assets for bnkops deployment
- MkDocs built site output (mkdocs/site/) - Auto-generated repo widget data (repo-data/*.json) - Environment config JS (env-config.js) - Python bytecode cache (hooks/__pycache__/) - Remove deleted test pages Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
92
landing-site/404.html
Normal file
@ -0,0 +1,92 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>The Bunker Operations - Page Not Found</title>
|
||||
<link rel="stylesheet" href="css/styles.css">
|
||||
<link rel="stylesheet" href="css/responsive.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
||||
<link rel="icon" type="image/svg+xml" href="img/bunker-logo.svg">
|
||||
</head>
|
||||
<body class="error-page">
|
||||
<header>
|
||||
<nav class="navbar">
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="index.html">BNKOps</a>
|
||||
</div>
|
||||
<div class="menu-toggle" id="mobile-menu">
|
||||
<span class="bar"></span>
|
||||
<span class="bar"></span>
|
||||
<span class="bar"></span>
|
||||
</div>
|
||||
<ul class="nav-menu">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="index.html#services">Services</a></li>
|
||||
<li><a href="index.html#about">About</a></li>
|
||||
<li><a href="index.html#contact">Contact</a></li>
|
||||
<li><a href="sitemap.html">Sitemap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<section class="error-container">
|
||||
<div class="container">
|
||||
<div class="error-content">
|
||||
<div class="error-code">404</div>
|
||||
<h1>Page Not Found</h1>
|
||||
<p>We're sorry, but the page you are looking for doesn't exist or has been moved.</p>
|
||||
<div class="error-actions">
|
||||
<a href="index.html" class="btn btn-primary"><i class="fas fa-home"></i> Back to Home</a>
|
||||
<a href="sitemap.html" class="btn btn-secondary"><i class="fas fa-sitemap"></i> View Sitemap</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="error-illustration">
|
||||
<i class="fas fa-search"></i>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Emoji stickers -->
|
||||
<div class="emoji-sticker" style="top: 20%; right: 5%; z-index: -1;">🔍</div>
|
||||
<div class="emoji-sticker" style="bottom: 25%; left: 7%; z-index: -1;">🏳️⚧️</div>
|
||||
<div class="emoji-sticker" style="top: 65%; left: 85%; z-index: -1;">💻</div>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<div class="footer-content">
|
||||
<div class="footer-logo">
|
||||
<h2>BNKOps</h2>
|
||||
<p>Community Strategy, Tactics, and Technology</p>
|
||||
</div>
|
||||
<div class="footer-links">
|
||||
<h3>Quick Links</h3>
|
||||
<ul>
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="index.html#services">Services</a></li>
|
||||
<li><a href="index.html#about">About</a></li>
|
||||
<li><a href="index.html#contact">Contact</a></li>
|
||||
<li><a href="sitemap.html">Sitemap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-social">
|
||||
<h3>Connect With Us</h3>
|
||||
<div class="social-icons">
|
||||
<a href="#"><i class="fab fa-mastodon"></i></a>
|
||||
<a href="#"><i class="fab fa-github"></i></a>
|
||||
<a href="#"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="#"><i class="fab fa-discord"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<p>© 2025 The Bunker Operations. All Rights Reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
264
landing-site/css/responsive.css
Normal file
@ -0,0 +1,264 @@
|
||||
/*
|
||||
* Responsive Stylesheet for BNKOps Website
|
||||
* Version: 2.0.0
|
||||
* Date: May 2025
|
||||
* Theme: Dark Purple with Trans Pride Colors
|
||||
*/
|
||||
|
||||
/* ====================
|
||||
Responsive Design
|
||||
==================== */
|
||||
|
||||
/* Extra large devices (large desktops, 1200px and up) */
|
||||
@media (max-width: 1200px) {
|
||||
.container {
|
||||
max-width: 960px;
|
||||
}
|
||||
|
||||
.emoji-sticker {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* Large devices (desktops, 992px and up) */
|
||||
@media (max-width: 992px) {
|
||||
.container {
|
||||
max-width: 720px;
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 60px 0;
|
||||
}
|
||||
|
||||
.section-header h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.about-content,
|
||||
.contact-content,
|
||||
.error-container .container {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 30px;
|
||||
}
|
||||
|
||||
.about-stats {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.error-illustration {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.post-it {
|
||||
transform: rotate(0deg) !important;
|
||||
}
|
||||
|
||||
.post-it:hover {
|
||||
transform: scale(1.03) !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* Medium devices (tablets, 768px and up) */
|
||||
@media (max-width: 768px) {
|
||||
.container {
|
||||
max-width: 540px;
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
top: 70px;
|
||||
left: -100%;
|
||||
background-color: rgba(16, 0, 43, 0.95);
|
||||
backdrop-filter: blur(10px);
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
width: 100%;
|
||||
height: calc(100vh - 70px);
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
padding-top: 50px;
|
||||
transition: var(--transition);
|
||||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.nav-menu li {
|
||||
margin: 0 0 20px 0;
|
||||
}
|
||||
|
||||
.nav-menu a {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
.services-grid {
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.about-stats {
|
||||
grid-template-columns: 1fr; /* Change to single column for vertical stacking */
|
||||
gap: 25px; /* Increase gap for better separation */
|
||||
}
|
||||
|
||||
/* Fix the stat items to remove any rotation and ensure consistency */
|
||||
.about-stats .stat-item {
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
transform: rotate(0deg) !important; /* Remove any rotation */
|
||||
}
|
||||
|
||||
.about-stats .stat-item:hover {
|
||||
transform: scale(1.03) !important; /* Only scale on hover, no rotation */
|
||||
}
|
||||
|
||||
.emoji-sticker {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
grid-template-columns: 1fr;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer-links h3::after,
|
||||
.footer-social h3::after {
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.social-icons {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.error-actions {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.polaroid {
|
||||
max-width: 220px;
|
||||
padding: 10px 10px 40px 10px;
|
||||
margin: 0 auto 20px;
|
||||
}
|
||||
|
||||
/* Make hero elements stack vertically instead of horizontal scrolling */
|
||||
.hero .flex-container {
|
||||
flex-direction: column;
|
||||
flex-wrap: wrap;
|
||||
overflow-x: visible;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 25px;
|
||||
}
|
||||
|
||||
.hero .flex-container > div {
|
||||
width: 100%;
|
||||
max-width: 300px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* Remove the horizontal scrollbar styling as it's no longer needed */
|
||||
.hero .flex-container::-webkit-scrollbar {
|
||||
display: initial;
|
||||
}
|
||||
|
||||
.hero .flex-container {
|
||||
-ms-overflow-style: initial;
|
||||
scrollbar-width: initial;
|
||||
}
|
||||
|
||||
/* Ensure post-its have consistent styling */
|
||||
.hero .post-it {
|
||||
width: 100% !important;
|
||||
max-width: 100% !important;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
/* Small devices (landscape phones, 576px and up) */
|
||||
@media (max-width: 576px) {
|
||||
.container {
|
||||
width: 95%;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 50px 0;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.section-header h2 {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
.section-header p {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.btn {
|
||||
padding: 10px 20px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.service-card {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.error-code {
|
||||
font-size: 6rem;
|
||||
}
|
||||
|
||||
.error-content h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.sitemap-content {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.emoji-sticker {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.polaroid {
|
||||
max-width: 220px;
|
||||
}
|
||||
|
||||
/* Adjust about stats spacing for smaller screens */
|
||||
.about-stats {
|
||||
gap: 20px; /* Slightly reduce gap on very small screens */
|
||||
}
|
||||
|
||||
.about-stats .stat-item {
|
||||
padding: 15px; /* Reduce padding on very small screens */
|
||||
}
|
||||
|
||||
/* Further adjust sizes for smaller screens */
|
||||
.hero .flex-container > div {
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
975
landing-site/css/styles.css
Normal file
@ -0,0 +1,975 @@
|
||||
/*
|
||||
* Main Stylesheet for BNKOps Website
|
||||
* Version: 2.0.0
|
||||
* Date: May 2025
|
||||
*/
|
||||
|
||||
/* ====================
|
||||
Base Styling
|
||||
==================== */
|
||||
:root {
|
||||
/* Trans Pride Theme Colors */
|
||||
--trans-blue: #5BCEFA;
|
||||
--trans-pink: #F5A9B8;
|
||||
--trans-white: #FFFFFF;
|
||||
|
||||
/* Primary dark purple theme */
|
||||
--primary-color: #7B2CBF;
|
||||
--secondary-color: #9D4EDD;
|
||||
--accent-color: #C77DFF;
|
||||
|
||||
/* Additional theme colors */
|
||||
--dark-purple: #3C096C;
|
||||
--light-purple: #E0AAFF;
|
||||
|
||||
/* UI Colors */
|
||||
--light-color: #F8F9FA;
|
||||
--dark-color: #240046;
|
||||
--text-color: #F8F9FA;
|
||||
--body-bg: #10002B;
|
||||
--footer-bg: #240046;
|
||||
--card-bg: #3C096C;
|
||||
|
||||
/* Utility */
|
||||
--border-radius: 8px;
|
||||
--box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
|
||||
--transition: all 0.3s ease;
|
||||
|
||||
/* Post-it note colors */
|
||||
--postit-blue: var(--trans-blue);
|
||||
--postit-pink: var(--trans-pink);
|
||||
--postit-white: var(--trans-white);
|
||||
--postit-purple: var(--primary-color);
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: var(--text-color);
|
||||
background-color: var(--body-bg);
|
||||
background-image: linear-gradient(to bottom, var(--dark-purple), var(--body-bg));
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 600;
|
||||
line-height: 1.3;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--trans-blue);
|
||||
text-decoration: none;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: var(--trans-pink);
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 90%;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 80px 0;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
text-align: center;
|
||||
margin-bottom: 50px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.section-header h2 {
|
||||
font-size: 2.5rem;
|
||||
color: var(--trans-pink);
|
||||
margin-bottom: 0.5rem;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.section-header h2::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 80px;
|
||||
height: 4px;
|
||||
background: linear-gradient(to right, var(--trans-blue), var(--trans-pink), var(--trans-white), var(--trans-pink), var(--trans-blue));
|
||||
bottom: -10px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.section-header p {
|
||||
color: var(--light-purple);
|
||||
font-size: 1.1rem;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
/* ====================
|
||||
Post-it Notes Styling
|
||||
==================== */
|
||||
.post-it {
|
||||
background-color: var(--card-bg);
|
||||
border-radius: var(--border-radius);
|
||||
padding: 30px;
|
||||
box-shadow: var(--box-shadow);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
z-index: 2; /* Add z-index to ensure post-its stay above emoji stickers */
|
||||
margin-bottom: 20px;
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
.post-it-blue {
|
||||
background-color: var(--postit-blue);
|
||||
border-top: 8px solid #4AADDF;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.post-it-pink {
|
||||
background-color: var(--postit-pink);
|
||||
border-top: 8px solid #E797A7;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.post-it-white {
|
||||
background-color: var(--postit-white);
|
||||
border-top: 8px solid #E7E7E7;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
/* Add text shadow to post-its for better readability */
|
||||
.hero .post-it p {
|
||||
text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.post-it-purple {
|
||||
background-color: var(--primary-color);
|
||||
border-top: 8px solid var(--accent-color);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.tilt-left-sm {
|
||||
transform: rotate(-2deg);
|
||||
}
|
||||
|
||||
.tilt-right-sm {
|
||||
transform: rotate(2deg);
|
||||
}
|
||||
|
||||
.tilt-left-md {
|
||||
transform: rotate(-4deg);
|
||||
}
|
||||
|
||||
.tilt-right-md {
|
||||
transform: rotate(4deg);
|
||||
}
|
||||
|
||||
.post-it:hover {
|
||||
transform: scale(1.03) rotate(0deg);
|
||||
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
/* ====================
|
||||
Buttons
|
||||
==================== */
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: 12px 28px;
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
border-radius: var(--border-radius);
|
||||
transition: all 0.3s ease;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.btn::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, var(--trans-blue), var(--trans-pink), var(--trans-white), var(--trans-pink), var(--trans-blue));
|
||||
z-index: -1;
|
||||
transition: transform 0.5s;
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
|
||||
.btn:hover::before {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
color: var(--dark-purple);
|
||||
text-shadow: 0 0 3px rgba(255, 255, 255, 0.7);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background-color: var(--primary-color);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background-color: var(--secondary-color);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.btn-primary:hover, .btn-secondary:hover {
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
|
||||
transform: translateY(-3px);
|
||||
}
|
||||
|
||||
/* ====================
|
||||
Navigation
|
||||
==================== */
|
||||
.navbar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
background-color: rgba(16, 0, 43, 0.9);
|
||||
backdrop-filter: blur(10px);
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
z-index: 1000;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
|
||||
padding: 15px 0;
|
||||
border-bottom: 1px solid rgba(123, 44, 191, 0.3);
|
||||
}
|
||||
|
||||
.navbar .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.logo a {
|
||||
font-size: 1.8rem;
|
||||
font-weight: 700;
|
||||
color: var(--trans-white);
|
||||
text-shadow: 0 0 10px rgba(91, 206, 250, 0.5), 0 0 20px rgba(245, 169, 184, 0.3);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.logo a::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 3px;
|
||||
bottom: -5px;
|
||||
left: 0;
|
||||
background: linear-gradient(to right, var(--trans-blue), var(--trans-pink), var(--trans-white));
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-menu li {
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.nav-menu a {
|
||||
color: var(--light-color);
|
||||
font-weight: 500;
|
||||
position: relative;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.nav-menu a:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: linear-gradient(to right, var(--trans-blue), var(--trans-pink));
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav-menu a:hover:after,
|
||||
.nav-menu a.active:after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav-menu a.active {
|
||||
color: var(--trans-pink);
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.menu-toggle .bar {
|
||||
width: 25px;
|
||||
height: 3px;
|
||||
background-color: var(--light-color);
|
||||
margin: 5px 0;
|
||||
transition: var(--transition);
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* ====================
|
||||
Hero Section
|
||||
==================== */
|
||||
.hero {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
background: linear-gradient(rgba(16, 0, 43, 0.8), rgba(36, 0, 70, 0.9)), url('../img/hero-bg.jpg') center/cover no-repeat;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding-top: 80px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
z-index: 1; /* Add z-index to ensure content stays above emoji stickers */
|
||||
}
|
||||
|
||||
.hero::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 10px;
|
||||
background: linear-gradient(90deg, var(--trans-blue) 0%, var(--trans-pink) 50%, var(--trans-white) 100%);
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 3.5rem;
|
||||
margin-bottom: 20px;
|
||||
color: var(--trans-white);
|
||||
text-shadow: 0 0 15px rgba(123, 44, 191, 0.8);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.hero h1::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 120px;
|
||||
height: 4px;
|
||||
background: linear-gradient(to right, var(--trans-blue), var(--trans-pink), var(--trans-white));
|
||||
bottom: -10px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
/* Add base styles for the flex container */
|
||||
.hero .flex-container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
margin-top: 40px;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 30px;
|
||||
max-width: 700px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
color: var(--trans-white);
|
||||
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.emoji-sticker {
|
||||
position: absolute;
|
||||
font-size: 3rem;
|
||||
z-index: -1; /* Changed from 0 to -1 to ensure it's behind other elements */
|
||||
animation: float 5s ease-in-out infinite;
|
||||
filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
|
||||
pointer-events: none; /* So they don't interfere with clicks */
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
@keyframes float {
|
||||
0% {
|
||||
transform: translateY(0px);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-15px);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(0px);
|
||||
}
|
||||
}
|
||||
|
||||
/* Polaroid styling */
|
||||
.polaroid {
|
||||
background-color: white;
|
||||
padding: 15px 15px 45px 15px;
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
|
||||
max-width: 300px;
|
||||
margin: 20px auto;
|
||||
transform: rotate(-3deg);
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
z-index: 5;
|
||||
flex-shrink: 0; /* Prevent shrinking in flexbox */
|
||||
}
|
||||
|
||||
.polaroid:hover {
|
||||
transform: rotate(0deg) scale(1.05);
|
||||
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
|
||||
.polaroid-inner {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.polaroid-img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
transition: transform 0.5s ease;
|
||||
}
|
||||
|
||||
.polaroid:hover .polaroid-img {
|
||||
transform: scale(1.03);
|
||||
}
|
||||
|
||||
.polaroid-caption {
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
bottom: 15px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.polaroid-caption p {
|
||||
font-family: 'Segoe UI', Tahoma, sans-serif;
|
||||
color: #333;
|
||||
font-size: 0.9rem;
|
||||
margin: 0;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
|
||||
/* ====================
|
||||
Services Section
|
||||
==================== */
|
||||
.services {
|
||||
background-color: var(--body-bg);
|
||||
position: relative;
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
.services::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: radial-gradient(circle at 10% 20%, rgba(123, 44, 191, 0.1) 0%, transparent 60%),
|
||||
radial-gradient(circle at 80% 70%, rgba(245, 169, 184, 0.1) 0%, transparent 60%);
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.services-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||||
gap: 30px;
|
||||
}
|
||||
|
||||
.service-card {
|
||||
background-color: var(--card-bg);
|
||||
padding: 30px;
|
||||
border-radius: var(--border-radius);
|
||||
box-shadow: var(--box-shadow);
|
||||
text-align: center;
|
||||
transition: var(--transition);
|
||||
color: var(--text-color);
|
||||
position: relative;
|
||||
z-index: 2; /* Add z-index to ensure cards stay above emoji stickers */
|
||||
overflow: hidden;
|
||||
border-top: 4px solid transparent;
|
||||
}
|
||||
|
||||
.service-card:nth-child(3n+1) {
|
||||
border-color: var(--trans-blue);
|
||||
}
|
||||
|
||||
.service-card:nth-child(3n+2) {
|
||||
border-color: var(--trans-pink);
|
||||
}
|
||||
|
||||
.service-card:nth-child(3n+3) {
|
||||
border-color: var(--trans-white);
|
||||
}
|
||||
|
||||
.service-card:hover {
|
||||
transform: translateY(-10px);
|
||||
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
|
||||
.service-card::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 5px;
|
||||
background: linear-gradient(90deg, var(--trans-blue), var(--trans-pink), var(--trans-white));
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
}
|
||||
|
||||
.service-card:hover::after {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.service-card i {
|
||||
font-size: 2.5rem;
|
||||
color: var(--accent-color);
|
||||
margin-bottom: 20px;
|
||||
display: inline-block;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.service-card:hover i {
|
||||
transform: scale(1.2);
|
||||
}
|
||||
|
||||
.service-card h3 {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 15px;
|
||||
color: var (--trans-white);
|
||||
}
|
||||
|
||||
/* ====================
|
||||
About Section
|
||||
==================== */
|
||||
.about {
|
||||
background-color: var(--dark-purple);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.about-content {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 50px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.about-text {
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
/* Add specific styling for the about text card */
|
||||
.about-text .post-it {
|
||||
border-left: 4px solid var(--trans-pink);
|
||||
padding: 25px 30px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.about-text .post-it p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.about-text p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.about-stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
background-color: var(--card-bg);
|
||||
padding: 20px;
|
||||
border-radius: var(--border-radius);
|
||||
box-shadow: var(--box-shadow);
|
||||
text-align: center;
|
||||
color: var(--text-color);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.stat-item:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.stat-item h3 {
|
||||
font-size: 2.5rem;
|
||||
background: linear-gradient(90deg, var(--trans-blue), var(--trans-pink));
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
/* ====================
|
||||
Contact Section
|
||||
==================== */
|
||||
.contact {
|
||||
background-color: var(--body-bg);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.contact::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: radial-gradient(circle at 90% 10%, rgba(123, 44, 191, 0.2) 0%, transparent 60%),
|
||||
radial-gradient(circle at 20% 90%, rgba(245, 169, 184, 0.2) 0%, transparent 60%);
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.contact-content {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 50px;
|
||||
position: relative;
|
||||
z-index: 2; /* Change from 1 to 2 for consistency with other elements */
|
||||
}
|
||||
|
||||
.contact-item {
|
||||
display: flex;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.contact-item i {
|
||||
font-size: 1.5rem;
|
||||
color: var(--trans-pink);
|
||||
margin-right: 20px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background-color: rgba(123, 44, 191, 0.2);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.contact-item:hover i {
|
||||
background-color: var(--primary-color);
|
||||
color: var(--trans-white);
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.contact-item h3 {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 5px;
|
||||
color: var(--trans-blue);
|
||||
}
|
||||
|
||||
.contact-item p {
|
||||
color: var (--text-color);
|
||||
}
|
||||
|
||||
.form-group {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.form-group input,
|
||||
.form-group textarea {
|
||||
width: 100%;
|
||||
padding: 12px 15px;
|
||||
background-color: rgba(60, 9, 108, 0.5);
|
||||
border: 1px solid var(--primary-color);
|
||||
border-radius: var(--border-radius);
|
||||
font-size: 1rem;
|
||||
transition: var(--transition);
|
||||
color: var(--text-color);
|
||||
box-shadow: 0 0 10px rgba(123, 44, 191, 0.1) inset;
|
||||
}
|
||||
|
||||
.form-group input::placeholder,
|
||||
.form-group textarea::placeholder {
|
||||
color: rgba(248, 249, 250, 0.5);
|
||||
}
|
||||
|
||||
.form-group input:focus,
|
||||
.form-group textarea:focus {
|
||||
border-color: var(--trans-pink);
|
||||
outline: none;
|
||||
box-shadow: 0 0 15px rgba(245, 169, 184, 0.3);
|
||||
}
|
||||
|
||||
.form-group textarea {
|
||||
height: 150px;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
/* ====================
|
||||
Footer
|
||||
==================== */
|
||||
footer {
|
||||
background-color: var(--footer-bg);
|
||||
color: var(--text-color);
|
||||
padding: 70px 0 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
footer::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 5px;
|
||||
background: linear-gradient(90deg, var(--trans-blue), var(--trans-pink), var(--trans-white), var(--trans-pink), var(--trans-blue));
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: 30px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.footer-logo h2 {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 10px;
|
||||
background: linear-gradient(90deg, var(--trans-blue), var(--trans-pink));
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
|
||||
.footer-links h3,
|
||||
.footer-social h3 {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 20px;
|
||||
position: relative;
|
||||
padding-bottom: 10px;
|
||||
color: var(--trans-white);
|
||||
}
|
||||
|
||||
.footer-links h3::after,
|
||||
.footer-social h3::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 50px;
|
||||
height: 2px;
|
||||
background: linear-gradient(to right, var(--trans-blue), var(--trans-pink));
|
||||
}
|
||||
|
||||
.footer-links ul li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.footer-links ul li a {
|
||||
color: var(--light-purple);
|
||||
transition: var(--transition);
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.footer-links ul li a:hover {
|
||||
color: var(--trans-pink);
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.social-icons {
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.social-icons a {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background-color: rgba(60, 9, 108, 0.6);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--text-color);
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.social-icons a::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(45deg, var(--trans-blue), var(--trans-pink));
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.social-icons a:hover::before {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.social-icons a:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.footer-bottom {
|
||||
text-align: center;
|
||||
padding-top: 20px;
|
||||
border-top: 1px solid rgba(245, 169, 184, 0.2);
|
||||
color: var (--light-purple);
|
||||
}
|
||||
|
||||
/* ====================
|
||||
Sitemap Page
|
||||
==================== */
|
||||
.sitemap-section {
|
||||
padding-top: 150px;
|
||||
min-height: calc(100vh - 300px);
|
||||
}
|
||||
|
||||
.sitemap-content {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 30px;
|
||||
}
|
||||
|
||||
.sitemap-group {
|
||||
background-color: var(--card-bg);
|
||||
padding: 30px;
|
||||
border-radius: var(--border-radius);
|
||||
box-shadow: var(--box-shadow);
|
||||
}
|
||||
|
||||
.sitemap-group h2 {
|
||||
color: var(--trans-pink);
|
||||
margin-bottom: 20px;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 2px solid var(--primary-color);
|
||||
}
|
||||
|
||||
.sitemap-list li {
|
||||
margin-bottom: 10px;
|
||||
padding-left: 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.sitemap-list li::before {
|
||||
content: '→';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: var(--trans-blue);
|
||||
}
|
||||
|
||||
.sitemap-list li a {
|
||||
color: var(--text-color);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.sitemap-list li a:hover {
|
||||
color: var(--trans-pink);
|
||||
}
|
||||
|
||||
.sitemap-list ul {
|
||||
margin-top: 10px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
/* ====================
|
||||
Error Page (404)
|
||||
==================== */
|
||||
.error-page {
|
||||
background-color: var(--body-bg);
|
||||
}
|
||||
|
||||
.error-container {
|
||||
padding-top: 150px;
|
||||
min-height: calc(100vh - 300px);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.error-container .container {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 50px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.error-code {
|
||||
font-size: 8rem;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(90deg, var(--trans-blue), var(--trans-pink));
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
line-height: 1;
|
||||
margin-bottom: 20px;
|
||||
text-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.error-content h1 {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 20px;
|
||||
color: var(--trans-white);
|
||||
}
|
||||
|
||||
.error-content p {
|
||||
color: var(--light-purple);
|
||||
}
|
||||
|
||||
.error-actions {
|
||||
margin-top: 30px;
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.error-illustration {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.error-illustration i {
|
||||
font-size: 15rem;
|
||||
color: var(--primary-color);
|
||||
opacity: 0.3;
|
||||
}
|
||||
BIN
landing-site/img/bnkops-logo-purple.png
Normal file
|
After Width: | Height: | Size: 1.6 MiB |
1
landing-site/img/bunker-logo.svg
Normal file
|
After Width: | Height: | Size: 23 KiB |
252
landing-site/index.html
Normal file
@ -0,0 +1,252 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>The Bunker Operations</title>
|
||||
<link rel="stylesheet" href="css/styles.css">
|
||||
<link rel="stylesheet" href="css/responsive.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
||||
<link rel="icon" type="image/svg+xml" href="img/bunker-logo.svg">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav class="navbar">
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="index.html">BNKops</a>
|
||||
</div>
|
||||
<div class="menu-toggle" id="mobile-menu">
|
||||
<span class="bar"></span>
|
||||
<span class="bar"></span>
|
||||
<span class="bar"></span>
|
||||
</div>
|
||||
<ul class="nav-menu">
|
||||
<li><a href="index.html" class="active">Home</a></li>
|
||||
<li><a href="#services">Services</a></li>
|
||||
<li><a href="#about">About</a></li>
|
||||
<li><a href="#contact">Contact</a></li>
|
||||
<li><a href="sitemap.html">Sitemap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<h1>The Bunker Operations</h1>
|
||||
<p>Community Strategy, Tactics, and Technology</p>
|
||||
|
||||
<div class="mt-12 flex-container flex flex-wrap justify-center gap-6" style="display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 40px;">
|
||||
<!-- Polaroid-style logo moved to be in the same row -->
|
||||
<div class="polaroid" style="margin: 0; max-width: 250px;">
|
||||
<div class="polaroid-inner">
|
||||
<img src="img/bnkops-logo-purple.png" alt="BNKops Logo" class="polaroid-img">
|
||||
</div>
|
||||
<div class="polaroid-caption">
|
||||
<p>Building community power</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="post-it post-it-pink tilt-left-sm" style="width: 300px; padding: 20px; max-width: 90%;">
|
||||
<span style="font-size: 2rem; margin-bottom: 10px; display: block;">🌱 💪</span>
|
||||
<p style="color: #333; font-weight: 500;">A co-operative network full of care, knowledge, and skill on how to build local community capacity in current times.</p>
|
||||
</div>
|
||||
<div class="post-it post-it-blue tilt-right-sm" style="width: 300px; padding: 20px; max-width: 90%;">
|
||||
<span style="font-size: 2rem; margin-bottom: 10px; display: block;">🔓 ⚡</span>
|
||||
<p style="color: #333; font-weight: 500;">Open-source, self-hosted, low-cost, and corporation-free technology for community focused organizations.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div style="margin-top: 40px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;">
|
||||
<a href="#contact" class="btn btn-primary">Work with us</a>
|
||||
<a href="#services" class="btn btn-secondary">Learn more</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Emoji stickers will be added by JavaScript -->
|
||||
</section>
|
||||
|
||||
<section id="services" class="services">
|
||||
<div class="container">
|
||||
<div class="section-header">
|
||||
<h2>Our Solutions</h2>
|
||||
<p>Tools and infrastructure built for community organizations</p>
|
||||
</div>
|
||||
<div class="services-grid">
|
||||
<div class="service-card post-it post-it-blue">
|
||||
<i class="fas fa-book"></i>
|
||||
<h3>Strategy & Tactics</h3>
|
||||
<p>We provide consulting with a focus on community building, ethical technology, scalable campaigns, and grassroots fundraising.</p>
|
||||
<ul style="margin-top: 15px; text-align: left;">
|
||||
<li style="margin-bottom: 8px;"><span style="color: var(--trans-pink); margin-right: 8px;">→</span>Community organizing strategy</li>
|
||||
<li style="margin-bottom: 8px;"><span style="color: var(--trans-pink); margin-right: 8px;">→</span>Tech infrastructure planning</li>
|
||||
<li style="margin-bottom: 8px;"><span style="color: var(--trans-pink); margin-right: 8px;">→</span>Campaign development</li>
|
||||
<li style="margin-bottom: 8px;"><span style="color: var(--trans-pink); margin-right: 8px;">→</span>Ethics-first approach</li>
|
||||
</ul>
|
||||
<div style="margin-top: 20px; text-align: left;">
|
||||
<a href="#contact" style="display: inline-block;">Work with us →</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="service-card post-it post-it-pink">
|
||||
<i class="fas fa-database"></i>
|
||||
<h3>BNKops Repository</h3>
|
||||
<p>A peer-to-peer generated knowledge base. Like MySpace meets social work, our repository grows organically through community contributions.</p>
|
||||
<ul style="margin-top: 15px; text-align: left;">
|
||||
<li style="margin-bottom: 8px;"><span style="color: var(--primary-color); margin-right: 8px;">→</span>Open-source documentation</li>
|
||||
<li style="margin-bottom: 8px;"><span style="color: var(--primary-color); margin-right: 8px;">→</span>Community-driven content</li>
|
||||
<li style="margin-bottom: 8px;"><span style="color: var(--primary-color); margin-right: 8px;">→</span>Experience-based knowledge</li>
|
||||
<li style="margin-bottom: 8px;"><span style="color: var(--primary-color); margin-right: 8px;">→</span>Corporation-free infrastructure</li>
|
||||
</ul>
|
||||
<div style="margin-top: 20px; text-align: left;">
|
||||
<a href="https://archive.bnkops.com" style="display: inline-block;">View Project →</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="service-card post-it post-it-white">
|
||||
<i class="fas fa-globe"></i>
|
||||
<h3>Change Maker</h3>
|
||||
<p>Professional-grade documentation tools with revolutionary simplicity. Build and manage your digital political campaign or community website.</p>
|
||||
<ul style="margin-top: 15px; text-align: left;">
|
||||
<li style="margin-bottom: 8px;"><span style="color: var(--primary-color); margin-right: 8px;">→</span>Local build control</li>
|
||||
<li style="margin-bottom: 8px;"><span style="color: var(--primary-color); margin-right: 8px;">→</span>Remote accessibility</li>
|
||||
<li style="margin-bottom: 8px;"><span style="color: var(--primary-color); margin-right: 8px;">→</span>Built-in security</li>
|
||||
<li style="margin-bottom: 8px;"><span style="color: var(--primary-color); margin-right: 8px;">→</span>Save thousands in yearly bills</li>
|
||||
</ul>
|
||||
<div style="margin-top: 20px; text-align: left;">
|
||||
<a href="https://cmlite.org" style="display: inline-block;">View Project →</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="position: relative; margin-top: 40px; text-align: center;">
|
||||
<div class="post-it post-it-purple" style="display: inline-block; padding: 15px 20px; transform: rotate(-3deg); max-width: 300px; margin: 0 auto;">
|
||||
<p style="font-weight: bold;">Build your power, don't pay for it ✊</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="about" class="about">
|
||||
<div class="container">
|
||||
<div class="section-header">
|
||||
<h2>Who We Are</h2>
|
||||
<p>The Bunker Operations</p>
|
||||
</div>
|
||||
<div class="about-content">
|
||||
<div class="about-text">
|
||||
<!-- Replace the direct paragraphs with a card structure -->
|
||||
<div class="post-it post-it-purple">
|
||||
<p>BNKops is a collective with a central administrative team. We operate as a co-operative of skilled individuals passionate about building community capacity through ethical technology and organizing strategies.</p>
|
||||
<p>Our group comprises trusted collaborators, comrades, and co-conspirators sharing goals in community growth. Based in amiskwaciy-waskahikan (Edmonton), we are grateful for the land's provisions and strive to honor it through our work.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="about-stats">
|
||||
<div class="stat-item post-it post-it-blue tilt-right-sm">
|
||||
<i class="fas fa-globe"></i>
|
||||
<h3>Co-operative Based</h3>
|
||||
<p>Creating resources that are open-source, low-cost, easy to operate, and corporation-free.</p>
|
||||
</div>
|
||||
<div class="stat-item post-it post-it-pink tilt-left-sm">
|
||||
<i class="fas fa-users"></i>
|
||||
<h3>Community Focused</h3>
|
||||
<p>Our group comprises trusted collaborators, comrades, and co-conspirators sharing goals in community growth.</p>
|
||||
</div>
|
||||
<div class="stat-item post-it post-it-white tilt-right-sm">
|
||||
<i class="fas fa-code-branch"></i>
|
||||
<h3>Open Source</h3>
|
||||
<p>All our tools and resources are open-source, ensuring accessibility and transparency.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="margin-top: 40px; text-align: center;">
|
||||
<a href="https://archive.bnkops.com" class="btn btn-primary">Visit our repository</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="contact" class="contact">
|
||||
<div class="container">
|
||||
<div class="section-header">
|
||||
<h2>Work With Us</h2>
|
||||
<p>Looking to collaborate? Reach out, let's chat.</p>
|
||||
</div>
|
||||
<div class="contact-content">
|
||||
<div class="post-it post-it-purple tilt-left-sm" style="padding: 30px;">
|
||||
<h3 style="font-size: 1.5rem; margin-bottom: 20px;">Contact Us</h3>
|
||||
<div style="display: flex; flex-direction: column; gap: 15px;">
|
||||
<a href="mailto:admin@bnkops.ca" style="display: flex; align-items: center; gap: 10px;">
|
||||
<i class="fas fa-envelope"></i>
|
||||
admin@bnkops.ca
|
||||
</a>
|
||||
<a href="https://cmlite.org" style="display: flex; align-items: center; gap: 10px;">
|
||||
<i class="fas fa-globe"></i>
|
||||
cmlite.org
|
||||
</a>
|
||||
<a href="https://archive.bnkops.com" style="display: flex; align-items: center; gap: 10px;">
|
||||
<i class="fas fa-book"></i>
|
||||
archive.bnkops.com
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div style="margin-top: 30px;">
|
||||
<h3 style="font-size: 1.2rem; margin-bottom: 15px;">Administration</h3>
|
||||
<div style="margin-bottom: 15px;">
|
||||
<h4 style="font-weight: bold;">Reed Larsen 💅</h4>
|
||||
<p style="font-size: 0.9rem; margin: 5px 0;">The Bunker Admin</p>
|
||||
<a href="mailto:reed@bnkops.ca">reed@bnkops.ca</a>
|
||||
</div>
|
||||
<div>
|
||||
<h4 style="font-weight: bold;">Shayla Breen 🤔</h4>
|
||||
<p style="font-size: 0.9rem; margin: 5px 0;">The Bunker Strategist</p>
|
||||
<a href="mailto:shayla@bnkops.ca">shayla@bnkops.ca</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="post-it post-it-pink tilt-right-sm" style="padding: 20px; margin-top: 30px;">
|
||||
<h3 style="margin-bottom: 15px;">Stay Updated</h3>
|
||||
<p style="margin-bottom: 20px;">Subscribe to our newsletter to get weekly updates on our latest projects and community initiatives.</p>
|
||||
<a href="https://listmonk.bnkops.com/subscription/form" class="btn btn-secondary" target="_blank">
|
||||
<i class="fas fa-envelope-open-text" style="margin-right: 8px;"></i>Subscribe to Newsletter
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<div class="footer-content">
|
||||
<div class="footer-logo">
|
||||
<h2>BNKops</h2>
|
||||
<p>Community Strategy, Tactics, and Technology</p>
|
||||
</div>
|
||||
<div class="footer-links">
|
||||
<h3>Quick Links</h3>
|
||||
<ul>
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="#services">Services</a></li>
|
||||
<li><a href="#about">About</a></li>
|
||||
<li><a href="#contact">Contact</a></li>
|
||||
<li><a href="sitemap.html">Sitemap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-social">
|
||||
<h3>Connect With Us</h3>
|
||||
<div class="social-icons">
|
||||
<a href="#"><i class="fab fa-mastodon"></i></a>
|
||||
<a href="#"><i class="fab fa-github"></i></a>
|
||||
<a href="#"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="#"><i class="fab fa-discord"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<p>© 2025 The Bunker Operations. All Rights Reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
189
landing-site/js/main.js
Normal file
@ -0,0 +1,189 @@
|
||||
/*
|
||||
* Main JavaScript for BNKOps Website
|
||||
* Version: 2.0.0
|
||||
* Date: May 2025
|
||||
* Theme: Dark Purple with Trans Pride Colors
|
||||
*/
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
// Mobile menu toggle
|
||||
const mobileMenu = document.getElementById('mobile-menu');
|
||||
const navMenu = document.querySelector('.nav-menu');
|
||||
|
||||
if (mobileMenu) {
|
||||
mobileMenu.addEventListener('click', () => {
|
||||
mobileMenu.classList.toggle('active');
|
||||
navMenu.classList.toggle('active');
|
||||
});
|
||||
}
|
||||
|
||||
// Close mobile menu when clicking on a nav link
|
||||
const navLinks = document.querySelectorAll('.nav-menu a');
|
||||
|
||||
navLinks.forEach(link => {
|
||||
link.addEventListener('click', () => {
|
||||
mobileMenu.classList.remove('active');
|
||||
navMenu.classList.remove('active');
|
||||
});
|
||||
});
|
||||
|
||||
// Smooth scrolling for anchor links
|
||||
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||
anchor.addEventListener('click', function(e) {
|
||||
if (this.getAttribute('href') !== '#') {
|
||||
e.preventDefault();
|
||||
|
||||
const targetId = this.getAttribute('href');
|
||||
const targetElement = document.querySelector(targetId);
|
||||
|
||||
if (targetElement) {
|
||||
window.scrollTo({
|
||||
top: targetElement.offsetTop - 70,
|
||||
behavior: 'smooth'
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
// Sticky navigation on scroll with color change
|
||||
const navbar = document.querySelector('.navbar');
|
||||
const navbarHeight = navbar.getBoundingClientRect().height;
|
||||
|
||||
window.addEventListener('scroll', () => {
|
||||
if (window.scrollY > navbarHeight) {
|
||||
navbar.classList.add('sticky');
|
||||
navbar.style.backgroundColor = 'rgba(60, 9, 108, 0.95)';
|
||||
} else {
|
||||
navbar.classList.remove('sticky');
|
||||
navbar.style.backgroundColor = 'rgba(16, 0, 43, 0.9)';
|
||||
}
|
||||
});
|
||||
|
||||
// Form submission (prevent default for demo)
|
||||
const contactForm = document.querySelector('.contact-form');
|
||||
|
||||
if (contactForm) {
|
||||
contactForm.addEventListener('submit', (e) => {
|
||||
e.preventDefault();
|
||||
alert('Form submission successful! This is a demo message.');
|
||||
contactForm.reset();
|
||||
});
|
||||
}
|
||||
|
||||
// Create emoji stickers dynamically
|
||||
const createEmojiStickers = () => {
|
||||
const heroSection = document.querySelector('.hero');
|
||||
const servicesSection = document.querySelector('.services');
|
||||
const aboutSection = document.querySelector('.about');
|
||||
const contactSection = document.querySelector('.contact');
|
||||
|
||||
const emojis = ['💻', '📚', '🌱', '⚡', '🔓', '💪', '✨', '🌈', '🏳️⚧️', '🏳️🌈'];
|
||||
|
||||
const sections = [heroSection, servicesSection, aboutSection, contactSection];
|
||||
|
||||
// Safe zones for emoji placement (percentage from edges)
|
||||
const safeZones = {
|
||||
hero: { top: 35, bottom: 25, left: 10, right: 10 },
|
||||
services: { top: 15, bottom: 15, left: 5, right: 5 },
|
||||
about: { top: 20, bottom: 20, left: 5, right: 5 },
|
||||
contact: { top: 20, bottom: 15, left: 5, right: 5 }
|
||||
};
|
||||
|
||||
// Get section name from class
|
||||
const getSectionName = (section) => {
|
||||
if (section.classList.contains('hero')) return 'hero';
|
||||
if (section.classList.contains('services')) return 'services';
|
||||
if (section.classList.contains('about')) return 'about';
|
||||
if (section.classList.contains('contact')) return 'contact';
|
||||
return 'default';
|
||||
};
|
||||
|
||||
sections.forEach((section) => {
|
||||
if (section) {
|
||||
const sectionName = getSectionName(section);
|
||||
const zone = safeZones[sectionName] || { top: 20, bottom: 20, left: 5, right: 5 };
|
||||
|
||||
// Add 3-4 emoji stickers per section
|
||||
const emojiCount = Math.floor(Math.random() * 2) + 2; // 2-3 emojis per section
|
||||
const placedPositions = [];
|
||||
|
||||
for (let i = 0; i < emojiCount; i++) {
|
||||
const emoji = document.createElement('div');
|
||||
emoji.className = 'emoji-sticker';
|
||||
emoji.textContent = emojis[Math.floor(Math.random() * emojis.length)];
|
||||
|
||||
// Calculate safe position that doesn't overlap with content
|
||||
let attempts = 0;
|
||||
let position;
|
||||
|
||||
// Try to find a non-overlapping position
|
||||
do {
|
||||
position = {
|
||||
top: Math.random() * (100 - zone.top - zone.bottom) + zone.top,
|
||||
left: Math.random() * (100 - zone.left - zone.right) + zone.left
|
||||
};
|
||||
|
||||
// Check if this position is far enough from other emojis
|
||||
const isFarEnough = placedPositions.every(pos => {
|
||||
const distance = Math.sqrt(
|
||||
Math.pow(position.top - pos.top, 2) +
|
||||
Math.pow(position.left - pos.left, 2)
|
||||
);
|
||||
return distance > 20; // Minimum distance between emojis
|
||||
});
|
||||
|
||||
attempts++;
|
||||
if (isFarEnough || attempts > 10) break;
|
||||
} while (attempts < 10);
|
||||
|
||||
// Apply position
|
||||
emoji.style.top = `${position.top}%`;
|
||||
emoji.style.left = `${position.left}%`;
|
||||
placedPositions.push(position);
|
||||
|
||||
// Set z-index to be below content
|
||||
emoji.style.zIndex = "-1";
|
||||
|
||||
// Random animation delay
|
||||
emoji.style.animationDelay = `${Math.random() * 2}s`;
|
||||
|
||||
section.appendChild(emoji);
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
// Create post-it notes effect
|
||||
const createPostItEffect = () => {
|
||||
const postIts = document.querySelectorAll('.post-it, .service-card');
|
||||
|
||||
postIts.forEach((postIt, index) => {
|
||||
// Add subtle rotation to every other card
|
||||
if (index % 2 === 0) {
|
||||
postIt.classList.add('tilt-left-sm');
|
||||
} else {
|
||||
postIt.classList.add('tilt-right-sm');
|
||||
}
|
||||
|
||||
// Create shadow effect on hover
|
||||
postIt.addEventListener('mouseover', () => {
|
||||
postIt.style.transform = 'scale(1.03) rotate(0deg)';
|
||||
postIt.style.boxShadow = '0 15px 30px rgba(0, 0, 0, 0.3)';
|
||||
postIt.style.zIndex = '10';
|
||||
});
|
||||
|
||||
postIt.addEventListener('mouseout', () => {
|
||||
postIt.style.transform = '';
|
||||
postIt.style.boxShadow = '';
|
||||
postIt.style.zIndex = '2';
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
// Initialize effects
|
||||
setTimeout(() => {
|
||||
createEmojiStickers();
|
||||
createPostItEffect();
|
||||
}, 100);
|
||||
});
|
||||
25
landing-site/nginx.conf
Normal file
@ -0,0 +1,25 @@
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
|
||||
root /config/www;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
|
||||
# Custom error pages
|
||||
error_page 404 /404.html;
|
||||
|
||||
# Enable gzip compression
|
||||
gzip on;
|
||||
gzip_types text/plain text/css application/javascript application/json image/svg+xml;
|
||||
gzip_min_length 1000;
|
||||
|
||||
# Set cache headers for static assets
|
||||
location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ {
|
||||
expires 30d;
|
||||
add_header Cache-Control "public, no-transform";
|
||||
}
|
||||
}
|
||||
4
landing-site/robots.txt
Normal file
@ -0,0 +1,4 @@
|
||||
User-agent: *
|
||||
Allow: /
|
||||
|
||||
Sitemap: https://bnkops.com/sitemap.xml
|
||||
123
landing-site/sitemap.html
Normal file
@ -0,0 +1,123 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>The Bunker Operations - Sitemap</title>
|
||||
<link rel="stylesheet" href="css/styles.css">
|
||||
<link rel="stylesheet" href="css/responsive.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
||||
<link rel="icon" type="image/svg+xml" href="img/bunker-logo.svg">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav class="navbar">
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="index.html">BNKOps</a>
|
||||
</div>
|
||||
<div class="menu-toggle" id="mobile-menu">
|
||||
<span class="bar"></span>
|
||||
<span class="bar"></span>
|
||||
<span class="bar"></span>
|
||||
</div>
|
||||
<ul class="nav-menu">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="index.html#services">Services</a></li>
|
||||
<li><a href="index.html#about">About</a></li>
|
||||
<li><a href="index.html#contact">Contact</a></li>
|
||||
<li><a href="sitemap.html" class="active">Sitemap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<section class="sitemap-section">
|
||||
<div class="container">
|
||||
<div class="section-header">
|
||||
<h1>Sitemap</h1>
|
||||
<p>Find your way around our website</p>
|
||||
</div>
|
||||
|
||||
<div class="sitemap-content">
|
||||
<div class="sitemap-group post-it post-it-blue tilt-left-sm">
|
||||
<h2>Main Pages</h2>
|
||||
<ul class="sitemap-list">
|
||||
<li>
|
||||
<a href="index.html">Home</a>
|
||||
<ul>
|
||||
<li><a href="index.html#services">Our Solutions</a></li>
|
||||
<li><a href="index.html#about">About Us</a></li>
|
||||
<li><a href="index.html#contact">Contact</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="sitemap.html">Sitemap</a></li>
|
||||
<li><a href="404.html">404 Page</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="sitemap-group post-it post-it-pink tilt-right-sm">
|
||||
<h2>Services</h2>
|
||||
<ul class="sitemap-list">
|
||||
<li><a href="index.html#services">Strategy & Tactics</a></li>
|
||||
<li><a href="index.html#services">BnkOps Repository</a></li>
|
||||
<li><a href="index.html#services">Change Maker</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="sitemap-group post-it post-it-white tilt-left-sm">
|
||||
<h2>External Resources</h2>
|
||||
<ul class="sitemap-list">
|
||||
<li><a href="https://repo.bnkops.com/" target="_blank">BnkOps Repository</a></li>
|
||||
<li><a href="https://changemaker.bnkops.com/" target="_blank">Change Maker</a></li>
|
||||
<li><a href="mailto:admin@bnkops.ca">Contact Email</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="margin-top: 50px; text-align: center;">
|
||||
<a href="index.html" class="btn btn-primary">Back to Home</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Emoji stickers will be added by JavaScript -->
|
||||
<div class="emoji-sticker" style="top: 20%; right: 5%; z-index: -1;">🏳️⚧️</div>
|
||||
<div class="emoji-sticker" style="bottom: 20%; left: 8%; z-index: -1;">🌈</div>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<div class="footer-content">
|
||||
<div class="footer-logo">
|
||||
<h2>BNKOps</h2>
|
||||
<p>Community Strategy, Tactics, and Technology</p>
|
||||
</div>
|
||||
<div class="footer-links">
|
||||
<h3>Quick Links</h3>
|
||||
<ul>
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="index.html#services">Services</a></li>
|
||||
<li><a href="index.html#about">About</a></li>
|
||||
<li><a href="index.html#contact">Contact</a></li>
|
||||
<li><a href="sitemap.html">Sitemap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-social">
|
||||
<h3>Connect With Us</h3>
|
||||
<div class="social-icons">
|
||||
<a href="#"><i class="fab fa-mastodon"></i></a>
|
||||
<a href="#"><i class="fab fa-github"></i></a>
|
||||
<a href="#"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href="#"><i class="fab fa-discord"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<p>© 2025 The Bunker Operations. All Rights Reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
BIN
mkdocs/.cache/plugin/social/00240b2e07fa743c08d4cb33bd23b645.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
mkdocs/.cache/plugin/social/0625d8ac12e18b7e3b9e2ab0249a0ce7.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
mkdocs/.cache/plugin/social/0ad501c83cd5b57e0ecc4345fb61ff04.png
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
mkdocs/.cache/plugin/social/0b1f252ee3df9eb4382f8292bce167a2.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
mkdocs/.cache/plugin/social/0c6adb50f3935ed509bb2f3ab390ff15.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
mkdocs/.cache/plugin/social/0e9ed0bbb517df6de1f704bf060ceb82.png
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
mkdocs/.cache/plugin/social/11134faa59bbc48b2b757b7bdc35216c.png
Normal file
|
After Width: | Height: | Size: 67 KiB |
BIN
mkdocs/.cache/plugin/social/112a6f786e01b32bd137b2af37ddc80f.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
mkdocs/.cache/plugin/social/11ba0a4e49656c7a92124710508d32e1.png
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
mkdocs/.cache/plugin/social/14739684e0f7df69851d0510ab39206c.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
mkdocs/.cache/plugin/social/14dd8eb2b9c6e9f2fc1505c7642d1d6f.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
mkdocs/.cache/plugin/social/1535a5c5e7807e67a97031129afc962b.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
mkdocs/.cache/plugin/social/15b279bfbee535a8d9be62f2f6565209.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
mkdocs/.cache/plugin/social/1c5f2fe98335ea67e11d0aaf773c82b0.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
mkdocs/.cache/plugin/social/1de8ee2970dd36550192f84a26f2fe64.png
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
mkdocs/.cache/plugin/social/1f7fb1bc75a625222ee2c11e552572ed.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
mkdocs/.cache/plugin/social/20255ea987773c5fbd46b83358516119.png
Normal file
|
After Width: | Height: | Size: 66 KiB |
BIN
mkdocs/.cache/plugin/social/20bba12a70815254257c84dc5cb8f3e6.png
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
mkdocs/.cache/plugin/social/21dbcdd0e6ead2c062d29485664c5b71.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
mkdocs/.cache/plugin/social/23846815fd37d2e322243d0668d77d4d.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
mkdocs/.cache/plugin/social/2646a713cd81fbd17b45276b2fb6f5cc.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
mkdocs/.cache/plugin/social/27d8d7927f411e9056ecd7f8c035d3e7.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
mkdocs/.cache/plugin/social/2866b29f09d85206696a2ce14cbaf86b.png
Normal file
|
After Width: | Height: | Size: 81 KiB |
BIN
mkdocs/.cache/plugin/social/28785e17cd490ba08230a77a64a9049f.png
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
mkdocs/.cache/plugin/social/289ccb409b4d9403fc0aa3ddaff4e1ea.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
mkdocs/.cache/plugin/social/28d16120bb3044b8ba877e17d305f8f5.png
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
mkdocs/.cache/plugin/social/28d27d43a484a29aacdde0410938cb31.png
Normal file
|
After Width: | Height: | Size: 88 KiB |
BIN
mkdocs/.cache/plugin/social/298e7db9cba0032710225f55dd0cb7ef.png
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
mkdocs/.cache/plugin/social/2a17b67637dfad7a5131110d55bbaf06.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
mkdocs/.cache/plugin/social/2df18967446179d1b85e05227b8a60e3.png
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
mkdocs/.cache/plugin/social/2e85cf0294e3c4fff5e7d5dace14028c.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
mkdocs/.cache/plugin/social/30fa3a0cba56f6d543c78cf324a47fe7.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
mkdocs/.cache/plugin/social/3441b99ffe16c0aff670e092e6be277d.png
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
mkdocs/.cache/plugin/social/34bb27aebb1bfe67269003fa58bec74a.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
mkdocs/.cache/plugin/social/35b62f5f23cfd8c862299195ee4e6be9.png
Normal file
|
After Width: | Height: | Size: 89 KiB |
BIN
mkdocs/.cache/plugin/social/39bb96813a1103747f6186201331c043.png
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
mkdocs/.cache/plugin/social/3b4f67dc37feacb9124f2e06c0dde2d9.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
mkdocs/.cache/plugin/social/3c6144c6d51fcdcc581e11c05a782598.png
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
mkdocs/.cache/plugin/social/3dc09d4af67e8d1fe7380ad09a876865.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
mkdocs/.cache/plugin/social/4080df5819d4266f18824c774e8e3e2e.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
mkdocs/.cache/plugin/social/417819e2b13b52f4d1121e38ed8656ad.png
Normal file
|
After Width: | Height: | Size: 83 KiB |
BIN
mkdocs/.cache/plugin/social/4449ef930db18a9ddc5ee39621a40353.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
mkdocs/.cache/plugin/social/44f51cf14a43481299f0c46a6b9badec.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
mkdocs/.cache/plugin/social/4718e758feb4820797cec6bfd9eda2a6.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
mkdocs/.cache/plugin/social/49e7a574b48222f1c4bdf024c0582f58.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
mkdocs/.cache/plugin/social/4a1273436db0c3fe7442a91be715c53b.png
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
mkdocs/.cache/plugin/social/4b3c6969ac382039cd3f037caddf6f4f.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
mkdocs/.cache/plugin/social/4c706e2be9df3954eec91dbb0f7a9282.png
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
mkdocs/.cache/plugin/social/50061de6c88f084877ddebe95922f500.png
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
mkdocs/.cache/plugin/social/50fe797795e731f834ca0a5d51c545f8.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
mkdocs/.cache/plugin/social/529e94ef435d84755a62c5edc7280c10.png
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
mkdocs/.cache/plugin/social/597fe91110101b7beea57c0c93c3c382.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
mkdocs/.cache/plugin/social/59d78f52ca72349861ff952c405ff89b.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
mkdocs/.cache/plugin/social/59e5fc0f6595ae4dfed97d6b4391b4d9.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
mkdocs/.cache/plugin/social/5a053298333b3c4098927c230f3c142b.png
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
mkdocs/.cache/plugin/social/5c233fa783ae837599bf1c09dca5a457.png
Normal file
|
After Width: | Height: | Size: 81 KiB |
BIN
mkdocs/.cache/plugin/social/5dc36df5ef1f4abc8052f786973ae060.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
mkdocs/.cache/plugin/social/5e481faa88d55cb76fc47ed0ba2229b5.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
mkdocs/.cache/plugin/social/5ebc5c3abda93466867f4ffd8722fe37.png
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
mkdocs/.cache/plugin/social/603dfce6660503e5757a23849b2ba550.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
mkdocs/.cache/plugin/social/6096f7ddd8b92dd34b5bcb33bb3cf798.png
Normal file
|
After Width: | Height: | Size: 83 KiB |
BIN
mkdocs/.cache/plugin/social/628ad215be6232e8b1c7060491ebfc33.png
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
mkdocs/.cache/plugin/social/629ae8483a9b7026bf3909c6c167df10.png
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
mkdocs/.cache/plugin/social/6710e7ccf0fb02b2e3479388cc9a12c6.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
mkdocs/.cache/plugin/social/68fe8df7a3e31d6e26a8cb11cbf17286.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
mkdocs/.cache/plugin/social/6b5c77674193bb4733017a9009e68e2e.png
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
mkdocs/.cache/plugin/social/6baeef6a8ff54306f8d1b1e0af84bbd5.png
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
mkdocs/.cache/plugin/social/701b992a95dacd0218d831826c270f6d.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
mkdocs/.cache/plugin/social/704c9c81b656e2c177383fb44b19b2c7.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
mkdocs/.cache/plugin/social/709721e44c3de7f8f3135dfc4e0bd506.png
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
mkdocs/.cache/plugin/social/711190547457906944f8f13234bcd85a.png
Normal file
|
After Width: | Height: | Size: 80 KiB |
BIN
mkdocs/.cache/plugin/social/717081daf4f26ccb6cee02b45b167fd0.png
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
mkdocs/.cache/plugin/social/734541a0e82736c2bf8df6ad50804016.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
mkdocs/.cache/plugin/social/73e9517cb09716c094d76133b47034c7.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
mkdocs/.cache/plugin/social/75cdb9f5710f931e206c395c9b490937.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
mkdocs/.cache/plugin/social/76236eb76fb9e03636572b7d288f93c7.png
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
mkdocs/.cache/plugin/social/78d1fcba3324e421bc7f74b908a73906.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
mkdocs/.cache/plugin/social/7aa9233fc8a4c97579a0273ac8d97c50.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
mkdocs/.cache/plugin/social/7d0b43e361e100528e040ec86cc18230.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
mkdocs/.cache/plugin/social/7d8f46d0fad775e0b479283fa5f224f4.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
mkdocs/.cache/plugin/social/7ed3e716393d603919944ff7689f4435.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
mkdocs/.cache/plugin/social/8099c8a7e59e63cb0390b4e26250ef21.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
mkdocs/.cache/plugin/social/812cf2992065c0625e338c9e28f9e65a.png
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
mkdocs/.cache/plugin/social/827b680dad08c2abddcd3b6dcab538ad.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
mkdocs/.cache/plugin/social/82dd9e692ee3151f647a5f79922e3b33.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
mkdocs/.cache/plugin/social/88d5ef5aaa7df7e523d60bfe1bbe2041.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
mkdocs/.cache/plugin/social/8c7eb01d38e6ac709661027bac80f9af.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
mkdocs/.cache/plugin/social/8e3a06879c9b4d8e8cc359681865ebee.png
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
mkdocs/.cache/plugin/social/8ec31df248b662a6446521283a0c6d06.png
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
mkdocs/.cache/plugin/social/97a2a82cbaab6897fcc46eefccec036e.png
Normal file
|
After Width: | Height: | Size: 75 KiB |