Compare commits
4 Commits
e8fac6be10
...
0bf0e02f40
Author | SHA1 | Date | |
---|---|---|---|
|
0bf0e02f40 | ||
|
57cd3fe19b | ||
|
e7d02211a3 | ||
|
0060c18793 |
@@ -23,7 +23,7 @@ To contribute to this project, use the contact form at E2C.how to request edit a
|
||||
- **Custom CSS styling** with E2C yellow branding (#F4D03F)
|
||||
|
||||
### Content Types
|
||||
- **Case Studies** (`/content/case-studies/`) - 24 case studies with logos and descriptions
|
||||
- **Case Studies** (`/content/case-studies/`) - Case studies with logos and descriptions
|
||||
- **Legal Snippets** (`/content/legal-snippets/`) - Legal documents and frameworks
|
||||
- **Resources** (`/content/resources/`) - Media, education, and primer content
|
||||
- **Main Pages** - Homepage, contact, add-your-story with integrated forms
|
||||
|
@@ -11,7 +11,7 @@ Help us share it with people who can benefit from its lessons.
|
||||
<!-- Action Network Form Embed -->
|
||||
<link href='https://actionnetwork.org/css/style-embed-v3.css' rel='stylesheet' type='text/css' />
|
||||
<script src='https://actionnetwork.org/widgets/v3/form/e2c-website-story-form?format=js&source=widget&clear_id=true'></script>
|
||||
<div id='can-form-area-e2c-website-story-form' style='width: 100%; margin-bottom: 24px;'></div>
|
||||
<div id='can-form-area-e2c-website-story-form' style='width: 100%'></div>
|
||||
|
||||
<!-- Fallback form for cases where JS is disabled -->
|
||||
<noscript>
|
||||
|
@@ -17,7 +17,7 @@ Want to plan your community exit strategy? Got experience or legal snippets you'
|
||||
<!-- Action Network Form Embed -->
|
||||
<link href='https://actionnetwork.org/css/style-embed-v3.css' rel='stylesheet' type='text/css' />
|
||||
<script src='https://actionnetwork.org/widgets/v3/form/e2c-website-join-form?format=js&source=widget&clear_id=true'></script>
|
||||
<div id='can-form-area-e2c-website-join-form' style='width: 100%; margin-bottom: 24px;'></div>
|
||||
<div id='can-form-area-e2c-website-join-form' style='width: 100%'></div>
|
||||
|
||||
<!-- Fallback form for cases where JS is disabled -->
|
||||
<noscript>
|
||||
|
@@ -8,777 +8,7 @@
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
|
||||
|
||||
<style>
|
||||
@import url('/fonts/space-grotesk-local.css');
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
:root {
|
||||
--e2c-yellow: #F4D03F;
|
||||
--e2c-dark-yellow: #E8C547;
|
||||
--text-primary: #2C3E50;
|
||||
--text-secondary: #7F8C8D;
|
||||
--background: #FEFEFE;
|
||||
--card-background: #FFFFFF;
|
||||
--border: #E5E8E8;
|
||||
--shadow: rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: var(--text-primary);
|
||||
background: var(--background);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 24px;
|
||||
}
|
||||
|
||||
.site-header {
|
||||
background-image: url('/img/notion_bg-1.png');
|
||||
background-size: cover;
|
||||
background-position: center top;
|
||||
background-repeat: no-repeat;
|
||||
border-bottom: 1px solid var(--border);
|
||||
padding: 16px 0;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
min-height: 80px;
|
||||
}
|
||||
|
||||
nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
color: var(--text-primary);
|
||||
font-weight: 600;
|
||||
font-size: 1.2rem;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
padding: 8px 16px;
|
||||
border-radius: 24px;
|
||||
backdrop-filter: blur(8px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||
}
|
||||
|
||||
.logo img {
|
||||
height: 48px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
gap: 16px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.nav-links a {
|
||||
text-decoration: none;
|
||||
color: var(--text-primary);
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
padding: 8px 16px;
|
||||
border-radius: 20px;
|
||||
transition: all 0.2s ease;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
backdrop-filter: blur(8px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.nav-links a:hover {
|
||||
background: var(--e2c-yellow);
|
||||
border-color: var(--e2c-yellow);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
main {
|
||||
padding: 48px 0;
|
||||
min-height: calc(100vh - 200px);
|
||||
}
|
||||
|
||||
footer {
|
||||
background: var(--card-background);
|
||||
border-top: 1px solid var(--border);
|
||||
padding: 48px 0 32px 0;
|
||||
color: var(--text-secondary);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 48px;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.footer-section h3 {
|
||||
color: var(--text-primary);
|
||||
font-size: 1.25rem;
|
||||
margin-bottom: 16px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.footer-section p {
|
||||
margin-bottom: 16px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.newsletter-signup {
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
||||
.custom-newsletter-form .form-group {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.email-input {
|
||||
flex: 1;
|
||||
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
padding: 10px 16px;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 24px;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
color: var(--text-primary);
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.email-input:focus {
|
||||
outline: none;
|
||||
border-color: var(--e2c-yellow);
|
||||
box-shadow: 0 0 0 2px rgba(244, 208, 63, 0.2);
|
||||
}
|
||||
|
||||
.email-input::placeholder {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.subscribe-btn {
|
||||
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
padding: 10px 20px;
|
||||
background: var(--e2c-yellow);
|
||||
color: var(--text-primary);
|
||||
border: 2px solid var(--e2c-yellow);
|
||||
border-radius: 24px;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.subscribe-btn:hover {
|
||||
background: var(--e2c-dark-yellow);
|
||||
border-color: var(--e2c-dark-yellow);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.form-note {
|
||||
font-size: 12px;
|
||||
color: var(--text-secondary);
|
||||
margin: 0;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.footer-links {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.footer-links p {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-bottom: 16px;
|
||||
color: var(--text-primary);
|
||||
font-weight: 600;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 16px;
|
||||
color: var(--text-secondary);
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--text-primary);
|
||||
text-decoration: underline;
|
||||
text-decoration-color: var(--e2c-yellow);
|
||||
text-underline-offset: 3px;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: var(--text-primary);
|
||||
text-decoration-color: var(--e2c-dark-yellow);
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: 12px 24px;
|
||||
background: var(--e2c-yellow);
|
||||
color: var(--text-primary);
|
||||
text-decoration: none;
|
||||
border-radius: 24px;
|
||||
margin: 8px 0;
|
||||
font-weight: 500;
|
||||
font-size: 15px;
|
||||
transition: all 0.2s ease;
|
||||
border: 2px solid var(--e2c-yellow);
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
background: var(--e2c-dark-yellow);
|
||||
border-color: var(--e2c-dark-yellow);
|
||||
color: var(--text-primary);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.card {
|
||||
background: var(--card-background);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 16px;
|
||||
padding: 24px;
|
||||
margin-bottom: 24px;
|
||||
box-shadow: 0 4px 12px var(--shadow);
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 24px var(--shadow);
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
gap: 24px;
|
||||
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
||||
}
|
||||
|
||||
.hero {
|
||||
text-align: center;
|
||||
padding: 64px 0;
|
||||
background: linear-gradient(135deg, var(--background) 0%, #F8F9FA 100%);
|
||||
border-radius: 24px;
|
||||
margin-bottom: 48px;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 3.5rem;
|
||||
margin-bottom: 24px;
|
||||
background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.25rem;
|
||||
max-width: 600px;
|
||||
margin: 0 auto 32px;
|
||||
}
|
||||
|
||||
.hero-section {
|
||||
background: var(--e2c-yellow);
|
||||
padding: 4rem 2rem;
|
||||
margin: 0 0 3rem 0;
|
||||
border-radius: 24px;
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 3rem;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.hero-image {
|
||||
width: 300px;
|
||||
height: auto;
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
.hero-text h1 {
|
||||
font-size: 3rem;
|
||||
margin: 0 0 1rem 0;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.hero-text p {
|
||||
font-size: 1.25rem;
|
||||
margin: 0;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.intro-section {
|
||||
margin: 3rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.intro-section h2 {
|
||||
color: var(--text-primary);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.intro-section ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 2rem 0;
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
max-width: 800px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.intro-section ul li {
|
||||
background: var(--e2c-yellow);
|
||||
color: var(--text-primary);
|
||||
padding: 16px 20px;
|
||||
border-radius: 12px;
|
||||
font-weight: 500;
|
||||
text-align: center;
|
||||
line-height: 1.4;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.intro-section ul li:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.cards-grid {
|
||||
display: grid;
|
||||
gap: 24px;
|
||||
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
||||
margin: 3rem 0;
|
||||
}
|
||||
|
||||
.card .button {
|
||||
display: inline-block;
|
||||
padding: 12px 24px;
|
||||
background: var(--e2c-yellow);
|
||||
color: var(--text-primary);
|
||||
text-decoration: none;
|
||||
border-radius: 24px;
|
||||
margin-top: 16px;
|
||||
font-weight: 500;
|
||||
font-size: 15px;
|
||||
transition: all 0.2s ease;
|
||||
border: 2px solid var(--e2c-yellow);
|
||||
}
|
||||
|
||||
.card .button:hover {
|
||||
background: var(--e2c-dark-yellow);
|
||||
border-color: var(--e2c-dark-yellow);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.partnership-section {
|
||||
text-align: center;
|
||||
margin: 4rem 0;
|
||||
padding: 2rem;
|
||||
background: #F8F9FA;
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
.partnership-image {
|
||||
width: 200px;
|
||||
height: auto;
|
||||
border-radius: 16px;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.main-sections {
|
||||
margin: 4rem 0;
|
||||
}
|
||||
|
||||
.main-sections h2 {
|
||||
text-align: center;
|
||||
color: var(--text-primary);
|
||||
margin-bottom: 2rem;
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
.primary-cards {
|
||||
display: grid;
|
||||
gap: 32px;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.primary-card {
|
||||
background: var(--card-background);
|
||||
border: 2px solid var(--e2c-yellow);
|
||||
border-radius: 20px;
|
||||
padding: 32px;
|
||||
text-align: center;
|
||||
box-shadow: 0 8px 24px var(--shadow);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.primary-card:hover {
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 16px 40px var(--shadow);
|
||||
border-color: var(--e2c-dark-yellow);
|
||||
}
|
||||
|
||||
.primary-card h3 {
|
||||
font-size: 1.5rem;
|
||||
color: var(--text-primary);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.primary-card p {
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.secondary-actions {
|
||||
margin: 3rem 0;
|
||||
padding: 2rem;
|
||||
background: #F8F9FA;
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
.secondary-actions h3 {
|
||||
text-align: center;
|
||||
color: var(--text-primary);
|
||||
margin-bottom: 1.5rem;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.secondary-cards {
|
||||
display: grid;
|
||||
gap: 24px;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
}
|
||||
|
||||
.secondary-card {
|
||||
background: var(--card-background);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 12px;
|
||||
padding: 24px;
|
||||
text-align: center;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.secondary-card:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px var(--shadow);
|
||||
}
|
||||
|
||||
.secondary-card h4 {
|
||||
font-size: 1.1rem;
|
||||
color: var(--text-primary);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.secondary-card p {
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 1rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.secondary-button {
|
||||
display: inline-block;
|
||||
padding: 8px 16px;
|
||||
background: transparent;
|
||||
color: var(--text-primary);
|
||||
text-decoration: none;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 16px;
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.secondary-button:hover {
|
||||
background: var(--e2c-yellow);
|
||||
border-color: var(--e2c-yellow);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
/* Hide auto-generated cards on homepage only */
|
||||
.home .grid {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* Case study logo styling */
|
||||
.case-logo {
|
||||
width: 72px;
|
||||
height: 72px;
|
||||
object-fit: contain;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 16px;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
padding: 8px;
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
/* Case study detail page logo */
|
||||
.case-detail-logo {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
object-fit: contain;
|
||||
border-radius: 16px;
|
||||
margin-bottom: 24px;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
padding: 16px;
|
||||
border: 1px solid var(--border);
|
||||
box-shadow: 0 4px 12px var(--shadow);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.nav-links {
|
||||
gap: 6px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.nav-links a {
|
||||
padding: 6px 10px;
|
||||
font-size: 12px;
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-size: 0.9rem;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
height: 32px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.site-header {
|
||||
padding: 8px 0;
|
||||
min-height: 48px;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.container {
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hero-image {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.hero-text h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.hero-section {
|
||||
margin: 0 0.5rem 2rem 0.5rem;
|
||||
padding: 2rem 1rem;
|
||||
}
|
||||
|
||||
.primary-cards {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 32px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer-links {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.custom-newsletter-form .form-group {
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.subscribe-btn {
|
||||
align-self: center;
|
||||
min-width: 120px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 769px) and (max-width: 1024px) {
|
||||
.primary-cards {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
/* Contact Form Styling */
|
||||
.contact-form-container {
|
||||
max-width: 700px;
|
||||
margin: 2rem auto;
|
||||
padding: 2rem;
|
||||
background: var(--card-background);
|
||||
border-radius: 16px;
|
||||
box-shadow: 0 4px 12px var(--shadow);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.e2c-contact-form .form-group {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.e2c-contact-form label {
|
||||
display: block;
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.e2c-contact-form input[type="text"],
|
||||
.e2c-contact-form input[type="email"],
|
||||
.e2c-contact-form input[type="url"],
|
||||
.e2c-contact-form select,
|
||||
.e2c-contact-form textarea {
|
||||
width: 100%;
|
||||
padding: 12px 16px;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 8px;
|
||||
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
font-size: 14px;
|
||||
background: var(--background);
|
||||
color: var(--text-primary);
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.e2c-contact-form input:focus,
|
||||
.e2c-contact-form select:focus,
|
||||
.e2c-contact-form textarea:focus {
|
||||
outline: none;
|
||||
border-color: var(--e2c-yellow);
|
||||
box-shadow: 0 0 0 2px rgba(244, 208, 63, 0.2);
|
||||
}
|
||||
|
||||
.e2c-contact-form textarea {
|
||||
resize: vertical;
|
||||
min-height: 100px;
|
||||
}
|
||||
|
||||
.checkbox-group {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.checkbox-label {
|
||||
display: flex !important;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
font-weight: 400 !important;
|
||||
margin-bottom: 0 !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.e2c-contact-form input[type="checkbox"],
|
||||
.e2c-contact-form input[type="radio"] {
|
||||
width: auto;
|
||||
margin: 0;
|
||||
accent-color: var(--e2c-yellow);
|
||||
}
|
||||
|
||||
.submit-btn {
|
||||
width: 100%;
|
||||
padding: 14px 24px;
|
||||
background: var(--e2c-yellow);
|
||||
color: var(--text-primary);
|
||||
border: 2px solid var(--e2c-yellow);
|
||||
border-radius: 24px;
|
||||
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.submit-btn:hover {
|
||||
background: var(--e2c-dark-yellow);
|
||||
border-color: var(--e2c-dark-yellow);
|
||||
transform: translateY(-1px);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.contact-form-container {
|
||||
margin: 1rem;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* Protect h2 elements from external script interference */
|
||||
h2 {
|
||||
display: block !important;
|
||||
visibility: visible !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
.intro-section h2,
|
||||
.main-sections h2,
|
||||
.featured-cases-section h2 {
|
||||
display: block !important;
|
||||
visibility: visible !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
/* Hide Action Network form titles */
|
||||
#can-form-area-e2c-website-newsletter-form h2,
|
||||
#can-form-area-e2c-website-join-form h2,
|
||||
#can-form-area-e2c-website-story-form h2,
|
||||
[id*="can-form-area"] h2 {
|
||||
display: none !important;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header class="site-header">
|
||||
@@ -787,6 +17,11 @@
|
||||
<a href="/" class="logo">
|
||||
<img src="/img/yellow_e2c.png" alt="Exit to Community" />
|
||||
</a>
|
||||
<button class="mobile-menu-toggle" aria-label="Toggle mobile menu">
|
||||
<span class="hamburger-line"></span>
|
||||
<span class="hamburger-line"></span>
|
||||
<span class="hamburger-line"></span>
|
||||
</button>
|
||||
<ul class="nav-links">
|
||||
<li><a href="/case-studies/">Case Studies</a></li>
|
||||
<li><a href="/legal-snippets/">Legal Snippets</a></li>
|
||||
@@ -797,6 +32,8 @@
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="mobile-menu-overlay"></div>
|
||||
|
||||
<main>
|
||||
<div class="container">
|
||||
{{ block "main" . }}{{ end }}
|
||||
@@ -837,5 +74,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="/js/mobile-menu.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
@@ -185,18 +185,6 @@
|
||||
display: block;
|
||||
}
|
||||
|
||||
.case-logo-overlay {
|
||||
position: absolute;
|
||||
bottom: 16px;
|
||||
right: 16px;
|
||||
width: 72px;
|
||||
height: 72px;
|
||||
object-fit: contain;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 12px;
|
||||
padding: 8px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.card-banner-link, .card-logo-link {
|
||||
display: block;
|
||||
|
@@ -21,120 +21,27 @@
|
||||
{{ if .Date }}
|
||||
<p><small>Last updated: {{ .Date.Format "January 2, 2006" }}</small></p>
|
||||
{{ end }}
|
||||
{{ if .Params.tags }}
|
||||
<div class="tags">
|
||||
{{ range .Params.tags }}
|
||||
<a href="/{{ $.Section }}/?tag={{ . | urlize }}" class="tag">{{ . }}</a>
|
||||
<div class="tags-and-button">
|
||||
{{ if .Params.tags }}
|
||||
<div class="tags">
|
||||
{{ range .Params.tags }}
|
||||
<a href="/{{ $.Section }}/?tag={{ . | urlize }}" class="tag">{{ . }}</a>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ if .Params.external_url }}
|
||||
<div class="article-external-button"><a href="{{ .Params.external_url }}" target="_blank" class="btn">Project Website</a></div>
|
||||
{{ else if .Params.url_external }}
|
||||
<div class="article-external-button"><a href="{{ .Params.url_external }}" target="_blank" class="btn">Project Website</a></div>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</header>
|
||||
|
||||
<div class="article-content">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
|
||||
{{ if .Params.external_url }}
|
||||
<p><a href="{{ .Params.external_url }}" target="_blank" class="btn">Visit External Site</a></p>
|
||||
{{ end }}
|
||||
{{ if .Params.url_external }}
|
||||
<p><a href="{{ .Params.url_external }}" target="_blank" class="btn">Visit External Site</a></p>
|
||||
{{ end }}
|
||||
</article>
|
||||
|
||||
{{ partial "explore-e2c.html" . }}
|
||||
|
||||
<style>
|
||||
.lead {
|
||||
font-size: 1.125rem;
|
||||
color: #666;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.article-header {
|
||||
margin-bottom: 2rem;
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: 1px solid #e9ecef;
|
||||
}
|
||||
|
||||
.article-content {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.article-content h2,
|
||||
.article-content h3,
|
||||
.article-content h4 {
|
||||
margin-top: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.article-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 2rem;
|
||||
padding-top: 1rem;
|
||||
border-top: 1px solid #e9ecef;
|
||||
}
|
||||
|
||||
.article-nav a {
|
||||
text-decoration: none;
|
||||
color: #007bff;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
|
||||
.article-nav a:hover {
|
||||
color: #0056b3;
|
||||
}
|
||||
|
||||
|
||||
.tags {
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
|
||||
.tag {
|
||||
display: inline-block;
|
||||
background: #e9ecef;
|
||||
color: #495057;
|
||||
padding: 0.25rem 0.5rem;
|
||||
margin: 0.25rem 0.25rem 0 0;
|
||||
border-radius: 0.25rem;
|
||||
font-size: 0.875rem;
|
||||
text-decoration: none;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.tag:hover {
|
||||
background: var(--e2c-yellow);
|
||||
color: var(--text-primary);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.article-banner {
|
||||
position: relative;
|
||||
margin-bottom: 2rem;
|
||||
border-radius: 16px;
|
||||
overflow: hidden;
|
||||
aspect-ratio: 16/9;
|
||||
max-height: 300px;
|
||||
}
|
||||
|
||||
.case-detail-banner {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.case-detail-logo-overlay {
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
object-fit: contain;
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
border-radius: 16px;
|
||||
padding: 12px;
|
||||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
</style>
|
||||
{{ end }}
|
||||
|
@@ -72,18 +72,6 @@
|
||||
background: #f8f9fa;
|
||||
}
|
||||
|
||||
.featured-case-logo-overlay {
|
||||
position: absolute;
|
||||
bottom: 16px;
|
||||
right: 16px;
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
object-fit: contain;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 10px;
|
||||
padding: 6px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.featured-case-content {
|
||||
padding: 0 1.5rem 1.5rem 1.5rem;
|
||||
@@ -152,69 +140,5 @@
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
// Case studies data - this will be populated by Hugo
|
||||
const caseStudies = [
|
||||
{{ range where .Site.Pages "Section" "case-studies" }}
|
||||
{{ if and .Params.image .Title (ne .Title "Case Studies") }}
|
||||
{
|
||||
title: "{{ .Title | replaceRE `"` `\"` }}",
|
||||
description: "{{ if .Description }}{{ .Description | replaceRE `"` `\"` }}{{ else }}{{ .Summary | plainify | truncate 150 | replaceRE `"` `\"` }}{{ end }}",
|
||||
url: "{{ .RelPermalink }}",
|
||||
image: "{{ .Params.image }}",
|
||||
banner: {{ if .Params.banner }}"{{ .Params.banner }}"{{ else }}null{{ end }}
|
||||
},
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
].filter(study => study.title); // Remove any empty entries
|
||||
|
||||
// Function to shuffle array and get random selection
|
||||
function getRandomCases(cases, count = 3) {
|
||||
const shuffled = [...cases].sort(() => 0.5 - Math.random());
|
||||
return shuffled.slice(0, count);
|
||||
}
|
||||
|
||||
// Function to create case card HTML
|
||||
function createCaseCard(caseStudy) {
|
||||
const hasImage = caseStudy.image && caseStudy.image !== 'null' && caseStudy.image !== null;
|
||||
const hasBanner = caseStudy.banner && caseStudy.banner !== 'null' && caseStudy.banner !== null;
|
||||
|
||||
let imageHTML = '';
|
||||
if (hasBanner) {
|
||||
imageHTML = `
|
||||
<a href="${caseStudy.url}" class="featured-banner-link">
|
||||
<div class="featured-card-banner">
|
||||
<img src="${caseStudy.banner}" alt="${caseStudy.title} banner" class="featured-case-banner" />
|
||||
${hasImage ? `<img src="${caseStudy.image}" alt="${caseStudy.title} logo" class="featured-case-logo-overlay" />` : ''}
|
||||
</div>
|
||||
</a>
|
||||
`;
|
||||
} else if (hasImage) {
|
||||
imageHTML = `
|
||||
<a href="${caseStudy.url}" class="featured-banner-link">
|
||||
<img src="${caseStudy.image}" alt="${caseStudy.title} logo" class="featured-case-logo" />
|
||||
</a>
|
||||
`;
|
||||
}
|
||||
|
||||
return `
|
||||
<div class="featured-case-card">
|
||||
${imageHTML}
|
||||
<div class="featured-case-content">
|
||||
<h3><a href="${caseStudy.url}" class="featured-case-title">${caseStudy.title}</a></h3>
|
||||
<p class="featured-case-description">${caseStudy.description}</p>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
|
||||
// Populate featured cases
|
||||
const featuredCasesGrid = document.getElementById('featuredCasesGrid');
|
||||
if (featuredCasesGrid && caseStudies.length > 0) {
|
||||
const randomCases = getRandomCases(caseStudies, 3);
|
||||
featuredCasesGrid.innerHTML = randomCases.map(createCaseCard).join('');
|
||||
}
|
||||
});
|
||||
</script>
|
||||
{{ partial "homepage-scripts.html" . }}
|
||||
{{ end }}
|
20
layouts/partials/explore-e2c.html
Normal file
20
layouts/partials/explore-e2c.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<div class="main-sections">
|
||||
<h2>Explore E2C</h2>
|
||||
<div class="primary-cards">
|
||||
<div class="primary-card">
|
||||
<h3>Case Studies</h3>
|
||||
<p>Real examples of companies that have attempted or achieved community ownership transitions</p>
|
||||
<a href="/case-studies/" class="btn">Explore Cases</a>
|
||||
</div>
|
||||
<div class="primary-card">
|
||||
<h3>Legal Snippets</h3>
|
||||
<p>Legal documents and frameworks for implementing community ownership structures</p>
|
||||
<a href="/legal-snippets/" class="btn">View Legal Resources</a>
|
||||
</div>
|
||||
<div class="primary-card">
|
||||
<h3>Resources</h3>
|
||||
<p>Educational materials, primers, and guides for Exit to Community transitions</p>
|
||||
<a href="/resources/" class="btn">Access Resources</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
65
layouts/partials/homepage-scripts.html
Normal file
65
layouts/partials/homepage-scripts.html
Normal file
@@ -0,0 +1,65 @@
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
// Case studies data - this will be populated by Hugo
|
||||
const caseStudies = [
|
||||
{{ range where .Site.Pages "Section" "case-studies" }}
|
||||
{{ if and .Params.image .Title (ne .Title "Case Studies") }}
|
||||
{
|
||||
title: "{{ .Title | replaceRE `"` `\"` }}",
|
||||
description: "{{ if .Description }}{{ .Description | replaceRE `"` `\"` }}{{ else }}{{ .Summary | plainify | truncate 150 | replaceRE `"` `\"` }}{{ end }}",
|
||||
url: "{{ .RelPermalink }}",
|
||||
image: "{{ .Params.image }}",
|
||||
banner: {{ if .Params.banner }}"{{ .Params.banner }}"{{ else }}null{{ end }}
|
||||
},
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
].filter(study => study.title); // Remove any empty entries
|
||||
|
||||
// Function to shuffle array and get random selection
|
||||
function getRandomCases(cases, count = 3) {
|
||||
const shuffled = [...cases].sort(() => 0.5 - Math.random());
|
||||
return shuffled.slice(0, count);
|
||||
}
|
||||
|
||||
// Function to create case card HTML
|
||||
function createCaseCard(caseStudy) {
|
||||
const hasImage = caseStudy.image && caseStudy.image !== 'null' && caseStudy.image !== null;
|
||||
const hasBanner = caseStudy.banner && caseStudy.banner !== 'null' && caseStudy.banner !== null;
|
||||
|
||||
let imageHTML = '';
|
||||
if (hasBanner) {
|
||||
imageHTML = `
|
||||
<a href="${caseStudy.url}" class="featured-banner-link">
|
||||
<div class="featured-card-banner">
|
||||
<img src="${caseStudy.banner}" alt="${caseStudy.title} banner" class="featured-case-banner" />
|
||||
${hasImage ? `<img src="${caseStudy.image}" alt="${caseStudy.title} logo" class="case-logo-overlay" />` : ''}
|
||||
</div>
|
||||
</a>
|
||||
`;
|
||||
} else if (hasImage) {
|
||||
imageHTML = `
|
||||
<a href="${caseStudy.url}" class="featured-banner-link">
|
||||
<img src="${caseStudy.image}" alt="${caseStudy.title} logo" class="featured-case-logo" />
|
||||
</a>
|
||||
`;
|
||||
}
|
||||
|
||||
return `
|
||||
<div class="featured-case-card">
|
||||
${imageHTML}
|
||||
<div class="featured-case-content">
|
||||
<h3><a href="${caseStudy.url}" class="featured-case-title">${caseStudy.title}</a></h3>
|
||||
<p class="featured-case-description">${caseStudy.description}</p>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
|
||||
// Populate featured cases
|
||||
const featuredCasesGrid = document.getElementById('featuredCasesGrid');
|
||||
if (featuredCasesGrid && caseStudies.length > 0) {
|
||||
const randomCases = getRandomCases(caseStudies, 3);
|
||||
featuredCasesGrid.innerHTML = randomCases.map(createCaseCard).join('');
|
||||
}
|
||||
});
|
||||
</script>
|
1046
static/css/main.css
Normal file
1046
static/css/main.css
Normal file
File diff suppressed because it is too large
Load Diff
50
static/js/mobile-menu.js
Normal file
50
static/js/mobile-menu.js
Normal file
@@ -0,0 +1,50 @@
|
||||
// Mobile Menu Functionality
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const mobileMenuToggle = document.querySelector('.mobile-menu-toggle');
|
||||
const navLinks = document.querySelector('.nav-links');
|
||||
const overlay = document.querySelector('.mobile-menu-overlay');
|
||||
const body = document.body;
|
||||
|
||||
function toggleMenu() {
|
||||
const isActive = mobileMenuToggle.classList.contains('active');
|
||||
|
||||
if (isActive) {
|
||||
mobileMenuToggle.classList.remove('active');
|
||||
navLinks.classList.remove('active');
|
||||
overlay.classList.remove('active');
|
||||
body.classList.remove('menu-open');
|
||||
} else {
|
||||
mobileMenuToggle.classList.add('active');
|
||||
navLinks.classList.add('active');
|
||||
overlay.classList.add('active');
|
||||
body.classList.add('menu-open');
|
||||
}
|
||||
}
|
||||
|
||||
function closeMenu() {
|
||||
mobileMenuToggle.classList.remove('active');
|
||||
navLinks.classList.remove('active');
|
||||
overlay.classList.remove('active');
|
||||
body.classList.remove('menu-open');
|
||||
}
|
||||
|
||||
if (mobileMenuToggle && navLinks && overlay) {
|
||||
mobileMenuToggle.addEventListener('click', toggleMenu);
|
||||
|
||||
// Close menu when clicking on overlay
|
||||
overlay.addEventListener('click', closeMenu);
|
||||
|
||||
// Close menu when clicking on a link
|
||||
const navLinksItems = navLinks.querySelectorAll('a');
|
||||
navLinksItems.forEach(link => {
|
||||
link.addEventListener('click', closeMenu);
|
||||
});
|
||||
|
||||
// Close menu on escape key
|
||||
document.addEventListener('keydown', function(event) {
|
||||
if (event.key === 'Escape') {
|
||||
closeMenu();
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user