Unify all pages with homepage light theme: support, legal, and 9 blog posts (purple primary, light bg)
This commit is contained in:
@@ -31,17 +31,19 @@
|
||||
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Inter+Tight:wght@500;600;700;800&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
|
||||
/>
|
||||
<link rel="stylesheet" href="../../style.css" />
|
||||
<style>
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Inter, sans-serif;
|
||||
font-size: 1rem;
|
||||
line-height: 1.7;
|
||||
background: #08080c;
|
||||
color: #e8e8f0;
|
||||
:root {
|
||||
--primary: #714b67;
|
||||
--secondary: #f0cda8;
|
||||
--dark: #1b1319;
|
||||
--light: #f6f5f4;
|
||||
--border: #e5e3e0;
|
||||
--radius: 0.6rem;
|
||||
}
|
||||
.container {
|
||||
width: 80%;
|
||||
@@ -56,10 +58,10 @@
|
||||
}
|
||||
.blog-header {
|
||||
padding: 2rem 0;
|
||||
border-bottom: 1px solid #1a1a2e;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
.blog-header a {
|
||||
color: #00f5ff;
|
||||
color: var(--primary);
|
||||
text-decoration: none;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
@@ -71,10 +73,10 @@
|
||||
font-size: clamp(1.5rem, 3vw, 2.2rem);
|
||||
font-weight: 700;
|
||||
margin: 1.5rem 0 0.5rem;
|
||||
color: #e8e8f0;
|
||||
color: var(--dark);
|
||||
}
|
||||
.post-meta {
|
||||
color: rgba(232, 232, 240, 0.5);
|
||||
color: rgba(33, 37, 41, 0.5);
|
||||
font-size: 0.85rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
@@ -82,10 +84,12 @@
|
||||
font-family: "Inter Tight", sans-serif;
|
||||
font-size: 1.3rem;
|
||||
margin-top: 2rem;
|
||||
color: #e8e8f0;
|
||||
color: var(--dark);
|
||||
}
|
||||
.post-content p {
|
||||
margin: 1rem 0;
|
||||
color: rgba(33, 37, 41, 0.7);
|
||||
line-height: 1.7;
|
||||
}
|
||||
.post-content ul,
|
||||
.post-content ol {
|
||||
@@ -94,54 +98,57 @@
|
||||
.post-content li {
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
.post-content a {
|
||||
color: var(--primary);
|
||||
}
|
||||
.post-content code {
|
||||
background: #12121c;
|
||||
color: #00f5ff;
|
||||
background: var(--light);
|
||||
color: var(--dark);
|
||||
padding: 0.2rem 0.4rem;
|
||||
border-radius: 4px;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
.post-content pre {
|
||||
background: #12121c;
|
||||
color: #00f5ff;
|
||||
background: var(--light);
|
||||
color: var(--dark);
|
||||
padding: 1rem;
|
||||
border-radius: 0.6rem;
|
||||
border-radius: var(--radius);
|
||||
overflow-x: auto;
|
||||
border: 1px solid #1a1a2e;
|
||||
border: 1px solid var(--border);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.pro-tip {
|
||||
border-left: 3px solid #00f5ff;
|
||||
background: #010f20;
|
||||
border-left: 3px solid var(--primary);
|
||||
background: rgba(113, 75, 103, 0.04);
|
||||
padding: 1rem 1.25rem;
|
||||
margin: 1.5rem 0;
|
||||
border-radius: 0 0.6rem 0.6rem 0;
|
||||
}
|
||||
.pro-tip strong {
|
||||
color: #00f5ff;
|
||||
color: var(--primary);
|
||||
}
|
||||
.cta-box {
|
||||
border: 1px solid rgba(0, 245, 255, 0.2);
|
||||
background: #12121c;
|
||||
border: 1px solid var(--border);
|
||||
background: #fff;
|
||||
padding: 1.5rem;
|
||||
margin: 2rem 0;
|
||||
border-radius: 0.6rem;
|
||||
border-radius: var(--radius);
|
||||
text-align: center;
|
||||
}
|
||||
.cta-box h3 {
|
||||
margin: 0 0 0.5rem;
|
||||
color: #e8e8f0;
|
||||
color: var(--dark);
|
||||
}
|
||||
.cta-box p {
|
||||
margin: 0 0 1rem;
|
||||
color: rgba(232, 232, 240, 0.7);
|
||||
color: rgba(33, 37, 41, 0.7);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.cta-box .btn {
|
||||
display: inline-block;
|
||||
padding: 0.6rem 1.5rem;
|
||||
background: #00f5ff;
|
||||
color: #08080c;
|
||||
background: var(--primary);
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
border-radius: 0.5rem;
|
||||
font-weight: 600;
|
||||
@@ -153,11 +160,11 @@
|
||||
}
|
||||
.post-footer {
|
||||
padding: 2rem 0;
|
||||
border-top: 1px solid #1a1a2e;
|
||||
border-top: 1px solid var(--border);
|
||||
margin-top: 2rem;
|
||||
}
|
||||
.post-footer a {
|
||||
color: #00f5ff;
|
||||
color: var(--primary);
|
||||
text-decoration: none;
|
||||
}
|
||||
.post-footer a:hover {
|
||||
@@ -184,11 +191,7 @@
|
||||
<h2>Step 1: Choose a Plan</h2>
|
||||
<p>
|
||||
Visit our
|
||||
<a
|
||||
href="../../index.html#pricing"
|
||||
style="color: #00f5ff"
|
||||
>pricing page</a
|
||||
>
|
||||
<a href="../../index.html#pricing">pricing page</a>
|
||||
and select the plan that fits your needs. For testing,
|
||||
Side Hustle is perfect. For production, go with On the
|
||||
Rise or Powerhouse.
|
||||
@@ -223,7 +226,7 @@ Password: (check your email)</code></pre>
|
||||
From zero to live in under 5 minutes — no
|
||||
credit card required to start.
|
||||
</p>
|
||||
<a href="../../index.html#pricing" class="btn"
|
||||
<a href="../../index.html#pricing" class="btn btn-primary"
|
||||
>Choose Your Plan</a
|
||||
>
|
||||
</div>
|
||||
@@ -233,5 +236,6 @@ Password: (check your email)</code></pre>
|
||||
<a href="../../index.html#blog">← Back to all posts</a>
|
||||
</div>
|
||||
</div>
|
||||
<script defer src="https://static.odoo4projects.com/agent-odoo4projects/agent.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
Reference in New Issue
Block a user