Compare commits
No commits in common. "ai-dev" and "master" have entirely different histories.
Binary file not shown.
Binary file not shown.
@ -1,99 +0,0 @@
|
|||||||
{% load static %}
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="ComplianceShield Pro Features - Complete construction compliance management, OSHA tracking, document management, and contractor oversight.">
|
|
||||||
<title>Features - ComplianceShield Pro</title>
|
|
||||||
<!-- Favicon -->
|
|
||||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🛡️</text></svg>">
|
|
||||||
<link rel="stylesheet" href="{% static 'css/custom.css' %}">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<nav>
|
|
||||||
<a href="/" class="logo">
|
|
||||||
<span class="logo-icon">🛡️</span>
|
|
||||||
ComplianceShield
|
|
||||||
</a>
|
|
||||||
<ul class="nav-links">
|
|
||||||
<li><a href="/">Home</a></li>
|
|
||||||
<li><a href="/features" class="active">Features</a></li>
|
|
||||||
<li><a href="#">Pricing</a></li>
|
|
||||||
<li><a href="#">Integrations</a></li>
|
|
||||||
<li><a href="#">About</a></li>
|
|
||||||
</ul>
|
|
||||||
<div class="nav-actions">
|
|
||||||
<a href="https://your-app.appwizzy.com" class="nav-cta">Sign In</a>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<main class="page-header">
|
|
||||||
<div class="header-content">
|
|
||||||
<h1>All-in-One Compliance Platform</h1>
|
|
||||||
<p class="subtitle">A complete suite of tools to manage construction compliance, from team hours to OSHA standards, all in one place.</p>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<section class="features-grid">
|
|
||||||
<div class="feature-card">
|
|
||||||
<div class="feature-icon" style="background-color: var(--blue);">⏱️</div>
|
|
||||||
<h3>Time Tracking & Scheduling</h3>
|
|
||||||
<p>Monitor team hours, schedule shifts, and manage payroll with an integrated time management system.</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<div class="feature-icon" style="background-color: var(--green);">📋</div>
|
|
||||||
<h3>OSHA Compliance</h3>
|
|
||||||
<p>Automated checks and reporting to ensure your job sites meet the latest OSHA safety standards.</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<div class="feature-icon" style="background-color: var(--orange);">📂</div>
|
|
||||||
<h3>Document Management</h3>
|
|
||||||
<p>Securely store, access, and manage all your compliance documents, certifications, and reports.</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<div class="feature-icon" style="background-color: var(--red);">🤝</div>
|
|
||||||
<h3>Subcontractor Oversight</h3>
|
|
||||||
<p>Onboard and manage subcontractors, track their compliance status, and mitigate project risks.</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<div class="feature-icon" style="background-color: var(--gold-dark);">📊</div>
|
|
||||||
<h3>Real-Time Analytics</h3>
|
|
||||||
<p>Access intuitive dashboards to visualize compliance metrics and make data-driven decisions.</p>
|
|
||||||
</div>
|
|
||||||
<div class="feature-card">
|
|
||||||
<div class="feature-icon" style="background-color: var(--text-muted);">🔔</div>
|
|
||||||
<h3>Automated Alerts</h3>
|
|
||||||
<p>Receive instant notifications for expiring certifications, non-compliance events, and critical deadlines.</p>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<footer class="footer">
|
|
||||||
<div class="footer-container">
|
|
||||||
<div class="footer-about">
|
|
||||||
<h3>ComplianceShield Pro</h3>
|
|
||||||
<p>Construction compliance management, simplified.</p>
|
|
||||||
</div>
|
|
||||||
<div class="footer-links">
|
|
||||||
<h4>Company</h4>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#">About Us</a></li>
|
|
||||||
<li><a href="#">Blog</a></li>
|
|
||||||
<li><a href="#">Contact</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="footer-links">
|
|
||||||
<h4>Legal</h4>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#">Privacy Policy</a></li>
|
|
||||||
<li><a href="#">Terms of Service</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="footer-bottom">
|
|
||||||
<p>© 2025 ComplianceShield Pro. All rights reserved.</p>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -1,68 +1,145 @@
|
|||||||
{% load static %}
|
{% extends "base.html" %}
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="ComplianceShield Pro - Construction compliance management platform for contractors. Track time, manage documents, ensure OSHA compliance.">
|
|
||||||
<meta name="keywords" content="construction compliance, OSHA compliance, contractor management, construction software">
|
|
||||||
<title>ComplianceShield Pro - Construction Compliance Made Simple</title>
|
|
||||||
|
|
||||||
<!-- Favicon -->
|
|
||||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🛡️</text></svg>">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="{% static 'css/custom.css' %}">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav>
|
{% block title %}{{ project_name }}{% endblock %}
|
||||||
<a href="/" class="logo">
|
|
||||||
<span class="logo-icon">🛡️</span>
|
|
||||||
ComplianceShield
|
|
||||||
</a>
|
|
||||||
<ul class="nav-links">
|
|
||||||
<li><a href="/">Home</a></li>
|
|
||||||
<li><a href="/features">Features</a></li>
|
|
||||||
<li><a href="#">Pricing</a></li>
|
|
||||||
<li><a href="#">Integrations</a></li>
|
|
||||||
<li><a href="#">About</a></li>
|
|
||||||
</ul>
|
|
||||||
<div class="nav-actions">
|
|
||||||
<a href="https://your-app.appwizzy.com" class="nav-cta">Sign In</a>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<main>
|
{% block head %}
|
||||||
<section class="hero">
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
<div class="hero-badge">
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
<span class="hero-badge-icon">✓</span>
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
|
||||||
Trusted by 500+ Contractors
|
<style>
|
||||||
</div>
|
:root {
|
||||||
<h1>Construction Compliance,<br>Made Simple.</h1>
|
--bg-color-start: #6a11cb;
|
||||||
<p class="hero-description">
|
--bg-color-end: #2575fc;
|
||||||
The all-in-one platform for construction compliance. Track time, manage documents, and ensure OSHA compliance with ease.
|
--text-color: #ffffff;
|
||||||
</p>
|
--card-bg-color: rgba(255, 255, 255, 0.01);
|
||||||
<div class="hero-ctas">
|
--card-border-color: rgba(255, 255, 255, 0.1);
|
||||||
<a href="https://your-app.appwizzy.com/signup" class="btn-primary">Get Started</a>
|
}
|
||||||
</div>
|
|
||||||
<p class="hero-note">No credit card required. Cancel anytime.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="product-preview">
|
* {
|
||||||
<!-- The rest of the page content would go here -->
|
box-sizing: border-box;
|
||||||
</section>
|
}
|
||||||
</main>
|
|
||||||
|
|
||||||
<script>
|
body {
|
||||||
const nav = document.querySelector('nav');
|
margin: 0;
|
||||||
window.addEventListener('scroll', () => {
|
font-family: 'Inter', sans-serif;
|
||||||
if (window.scrollY > 20) {
|
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
|
||||||
nav.classList.add('scrolled');
|
color: var(--text-color);
|
||||||
} else {
|
display: flex;
|
||||||
nav.classList.remove('scrolled');
|
justify-content: center;
|
||||||
}
|
align-items: center;
|
||||||
});
|
min-height: 100vh;
|
||||||
</script>
|
text-align: center;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
</body>
|
body::before {
|
||||||
</html>
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><path d='M-10 10L110 10M10 -10L10 110' stroke-width='1' stroke='rgba(255,255,255,0.05)'/></svg>");
|
||||||
|
animation: bg-pan 20s linear infinite;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes bg-pan {
|
||||||
|
0% {
|
||||||
|
background-position: 0% 0%;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
background-position: 100% 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
padding: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card {
|
||||||
|
background: var(--card-bg-color);
|
||||||
|
border: 1px solid var(--card-border-color);
|
||||||
|
border-radius: 16px;
|
||||||
|
padding: 2.5rem 2rem;
|
||||||
|
backdrop-filter: blur(20px);
|
||||||
|
-webkit-backdrop-filter: blur(20px);
|
||||||
|
box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: clamp(2.2rem, 3vw + 1.2rem, 3.2rem);
|
||||||
|
font-weight: 700;
|
||||||
|
margin: 0 0 1.2rem;
|
||||||
|
letter-spacing: -0.02em;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 0.5rem 0;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
opacity: 0.92;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loader {
|
||||||
|
margin: 1.5rem auto;
|
||||||
|
width: 56px;
|
||||||
|
height: 56px;
|
||||||
|
border: 4px solid rgba(255, 255, 255, 0.25);
|
||||||
|
border-top-color: #fff;
|
||||||
|
border-radius: 50%;
|
||||||
|
animation: spin 1s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes spin {
|
||||||
|
to {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.runtime code {
|
||||||
|
background: rgba(0, 0, 0, 0.25);
|
||||||
|
padding: 0.15rem 0.45rem;
|
||||||
|
border-radius: 4px;
|
||||||
|
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sr-only {
|
||||||
|
position: absolute;
|
||||||
|
width: 1px;
|
||||||
|
height: 1px;
|
||||||
|
padding: 0;
|
||||||
|
margin: -1px;
|
||||||
|
overflow: hidden;
|
||||||
|
clip: rect(0, 0, 0, 0);
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 1rem;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
opacity: 0.75;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<main>
|
||||||
|
<div class="card">
|
||||||
|
<h1>Analyzing your requirements and generating your app…</h1>
|
||||||
|
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
||||||
|
<span class="sr-only">Loading…</span>
|
||||||
|
</div>
|
||||||
|
<p class="hint">AppWizzy AI is collecting your requirements and applying the first changes.</p>
|
||||||
|
<p class="hint">This page will refresh automatically as the plan is implemented.</p>
|
||||||
|
<p class="runtime">
|
||||||
|
Runtime: Django <code>{{ django_version }}</code> · Python <code>{{ python_version }}</code>
|
||||||
|
— UTC <code>{{ current_time|date:"Y-m-d H:i:s" }}</code>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer>
|
||||||
|
Page updated: {{ current_time|date:"Y-m-d H:i:s" }} (UTC)
|
||||||
|
</footer>
|
||||||
|
{% endblock %}
|
||||||
@ -1,8 +1,7 @@
|
|||||||
from django.urls import path
|
from django.urls import path
|
||||||
|
|
||||||
from .views import index, features
|
from .views import home
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path("", index, name="index"),
|
path("", home, name="home"),
|
||||||
path("features/", features, name="features"),
|
|
||||||
]
|
]
|
||||||
|
|||||||
@ -6,10 +6,20 @@ from django.shortcuts import render
|
|||||||
from django.utils import timezone
|
from django.utils import timezone
|
||||||
|
|
||||||
|
|
||||||
def index(request):
|
def home(request):
|
||||||
context = {}
|
"""Render the landing screen with loader and environment details."""
|
||||||
return render(request, "core/index.html", context)
|
host_name = request.get_host().lower()
|
||||||
|
agent_brand = "AppWizzy" if host_name == "appwizzy.com" else "Flatlogic"
|
||||||
|
now = timezone.now()
|
||||||
|
|
||||||
def features(request):
|
context = {
|
||||||
context = {}
|
"project_name": "New Style",
|
||||||
return render(request, "core/features.html", context)
|
"agent_brand": agent_brand,
|
||||||
|
"django_version": django_version(),
|
||||||
|
"python_version": platform.python_version(),
|
||||||
|
"current_time": now,
|
||||||
|
"host_name": host_name,
|
||||||
|
"project_description": os.getenv("PROJECT_DESCRIPTION", ""),
|
||||||
|
"project_image_url": os.getenv("PROJECT_IMAGE_URL", ""),
|
||||||
|
}
|
||||||
|
return render(request, "core/index.html", context)
|
||||||
|
|||||||
@ -1,213 +1,4 @@
|
|||||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
/* Custom styles for the application */
|
||||||
|
|
||||||
:root {
|
|
||||||
--gold-light: #f0d68c;
|
|
||||||
--gold-dark: #c9a55a;
|
|
||||||
--bg-dark: #0a0a0a;
|
|
||||||
--bg-card: #141414;
|
|
||||||
--text-primary: #ffffff;
|
|
||||||
--text-secondary: #a0a0a0;
|
|
||||||
--text-muted: #606060;
|
|
||||||
--border-light: rgba(255, 255, 255, 0.1);
|
|
||||||
--border-lighter: rgba(255, 255, 255, 0.05);
|
|
||||||
--green: #4caf50;
|
|
||||||
--orange: #ff9800;
|
|
||||||
--red: #ef4444;
|
|
||||||
--blue: #3b82f6;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
font-family: system-ui, -apple-system, sans-serif;
|
||||||
background: var(--bg-dark);
|
|
||||||
color: var(--text-primary);
|
|
||||||
overflow-x: hidden;
|
|
||||||
line-height: 1.6;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Navigation */
|
|
||||||
nav {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
padding: 20px 60px;
|
|
||||||
background: rgba(10, 10, 10, 0.95);
|
|
||||||
backdrop-filter: blur(10px);
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
z-index: 1000;
|
|
||||||
border-bottom: 1px solid var(--border-light);
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 12px;
|
|
||||||
font-size: 22px;
|
|
||||||
font-weight: 600;
|
|
||||||
color: var(--text-primary);
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo-icon {
|
|
||||||
width: 32px;
|
|
||||||
height: 32px;
|
|
||||||
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
|
||||||
border-radius: 8px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links {
|
|
||||||
display: flex;
|
|
||||||
gap: 40px;
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links a {
|
|
||||||
color: var(--text-secondary);
|
|
||||||
text-decoration: none;
|
|
||||||
font-size: 15px;
|
|
||||||
font-weight: 500;
|
|
||||||
transition: color 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links a:hover, .nav-links a.active {
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-cta {
|
|
||||||
background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
|
|
||||||
color: #0a0a0a;
|
|
||||||
padding: 10px 20px;
|
|
||||||
border-radius: 8px;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: 600;
|
|
||||||
transition: all 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-cta:hover {
|
|
||||||
box-shadow: 0 4px 15px rgba(240, 214, 140, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-actions {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Feature Page Specific Styles */
|
|
||||||
.page-header {
|
|
||||||
padding: 160px 60px 80px;
|
|
||||||
text-align: center;
|
|
||||||
border-bottom: 1px solid var(--border-lighter);
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-content .subtitle {
|
|
||||||
font-size: 20px;
|
|
||||||
color: var(--text-secondary);
|
|
||||||
max-width: 700px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.features-grid {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
||||||
gap: 30px;
|
|
||||||
padding: 80px 60px;
|
|
||||||
max-width: 1200px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-card {
|
|
||||||
background: var(--bg-card);
|
|
||||||
border: 1px solid var(--border-lighter);
|
|
||||||
border-radius: 12px;
|
|
||||||
padding: 40px;
|
|
||||||
text-align: center;
|
|
||||||
transition: all 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-card:hover {
|
|
||||||
transform: translateY(-5px);
|
|
||||||
border-color: var(--border-light);
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-icon {
|
|
||||||
width: 60px;
|
|
||||||
height: 60px;
|
|
||||||
border-radius: 50%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: 24px;
|
|
||||||
margin: 0 auto 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-card h3 {
|
|
||||||
font-size: 22px;
|
|
||||||
margin-bottom: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-card p {
|
|
||||||
color: var(--text-secondary);
|
|
||||||
line-height: 1.7;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Footer */
|
|
||||||
.footer {
|
|
||||||
background: var(--bg-card);
|
|
||||||
padding: 60px 60px 30px;
|
|
||||||
border-top: 1px solid var(--border-lighter);
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-container {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
||||||
gap: 40px;
|
|
||||||
max-width: 1200px;
|
|
||||||
margin: 0 auto 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-about h3 {
|
|
||||||
font-size: 20px;
|
|
||||||
margin-bottom: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-about p {
|
|
||||||
color: var(--text-secondary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-links h4 {
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 600;
|
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-links ul {
|
|
||||||
list-style: none;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-links a {
|
|
||||||
color: var(--text-secondary);
|
|
||||||
text-decoration: none;
|
|
||||||
transition: color 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-links a:hover {
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-bottom {
|
|
||||||
text-align: center;
|
|
||||||
padding-top: 30px;
|
|
||||||
border-top: 1px solid var(--border-lighter);
|
|
||||||
color: var(--text-muted);
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
@ -1,112 +1,21 @@
|
|||||||
/* Feature Page Specific Styles */
|
|
||||||
.page-header {
|
|
||||||
padding: 160px 60px 80px;
|
|
||||||
text-align: center;
|
|
||||||
border-bottom: 1px solid var(--border-lighter);
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-content .subtitle {
|
:root {
|
||||||
font-size: 20px;
|
--bg-color-start: #6a11cb;
|
||||||
color: var(--text-secondary);
|
--bg-color-end: #2575fc;
|
||||||
max-width: 700px;
|
--text-color: #ffffff;
|
||||||
margin: 0 auto;
|
--card-bg-color: rgba(255, 255, 255, 0.01);
|
||||||
|
--card-border-color: rgba(255, 255, 255, 0.1);
|
||||||
}
|
}
|
||||||
|
body {
|
||||||
.features-grid {
|
margin: 0;
|
||||||
display: grid;
|
font-family: 'Inter', sans-serif;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
|
||||||
gap: 30px;
|
color: var(--text-color);
|
||||||
padding: 80px 60px;
|
|
||||||
max-width: 1200px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-card {
|
|
||||||
background: var(--bg-card);
|
|
||||||
border: 1px solid var(--border-lighter);
|
|
||||||
border-radius: 12px;
|
|
||||||
padding: 40px;
|
|
||||||
text-align: center;
|
|
||||||
transition: all 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-card:hover {
|
|
||||||
transform: translateY(-5px);
|
|
||||||
border-color: var(--border-light);
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-icon {
|
|
||||||
width: 60px;
|
|
||||||
height: 60px;
|
|
||||||
border-radius: 50%;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
font-size: 24px;
|
align-items: center;
|
||||||
margin: 0 auto 24px;
|
min-height: 100vh;
|
||||||
}
|
|
||||||
|
|
||||||
.feature-card h3 {
|
|
||||||
font-size: 22px;
|
|
||||||
margin-bottom: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-card p {
|
|
||||||
color: var(--text-secondary);
|
|
||||||
line-height: 1.7;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Footer */
|
|
||||||
.footer {
|
|
||||||
background: var(--bg-card);
|
|
||||||
padding: 60px 60px 30px;
|
|
||||||
border-top: 1px solid var(--border-lighter);
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-container {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
||||||
gap: 40px;
|
|
||||||
max-width: 1200px;
|
|
||||||
margin: 0 auto 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-about h3 {
|
|
||||||
font-size: 20px;
|
|
||||||
margin-bottom: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-about p {
|
|
||||||
color: var(--text-secondary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-links h4 {
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 600;
|
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-links ul {
|
|
||||||
list-style: none;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-links a {
|
|
||||||
color: var(--text-secondary);
|
|
||||||
text-decoration: none;
|
|
||||||
transition: color 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-links a:hover {
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-bottom {
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding-top: 30px;
|
overflow: hidden;
|
||||||
border-top: 1px solid var(--border-lighter);
|
position: relative;
|
||||||
color: var(--text-muted);
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user