Update website
This commit is contained in:
208
styles.css
208
styles.css
@@ -51,7 +51,6 @@ header {
|
||||
}
|
||||
|
||||
.nav-content {
|
||||
max-width: 1200px;
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
}
|
||||
@@ -204,4 +203,211 @@ a:hover {
|
||||
.logo-text {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* Navigation improvements */
|
||||
.nav-content {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: flex;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.nav-links a {
|
||||
color: var(--text-color);
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
|
||||
.nav-links a:hover {
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
/* Pricing preview section */
|
||||
.pricing-preview {
|
||||
background-color: var(--form-background);
|
||||
padding: 3rem 2rem;
|
||||
border-radius: 8px;
|
||||
margin: 2rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.pricing-content {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.pricing-content p {
|
||||
font-size: 1.1rem;
|
||||
line-height: 1.6;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.learn-more-link {
|
||||
display: inline-block;
|
||||
background-color: var(--accent-color);
|
||||
color: var(--button-text) !important;
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 4px;
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
|
||||
.learn-more-link:hover {
|
||||
background-color: var(--primary-color);
|
||||
color: var(--button-text) !important;
|
||||
}
|
||||
|
||||
/* About page specific styles */
|
||||
.content {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.content p {
|
||||
margin-bottom: 1.5rem;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.content h2 {
|
||||
color: var(--heading-color);
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 1.5rem;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.content h3 {
|
||||
color: var(--heading-color);
|
||||
margin-top: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.feature-detail {
|
||||
background-color: var(--form-background);
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.feature-detail h3 {
|
||||
color: var(--accent-color);
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.feature-detail p {
|
||||
color: var(--neutral-light);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.pricing-tier {
|
||||
background-color: var(--form-background);
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.pricing-tier h3 {
|
||||
color: var(--accent-color);
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
border-bottom: 2px solid var(--accent-color);
|
||||
padding-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.pricing-tier ul {
|
||||
list-style-type: none;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.pricing-tier li {
|
||||
padding: 0.5rem 0;
|
||||
border-bottom: 1px solid var(--neutral-dark);
|
||||
}
|
||||
|
||||
.pricing-tier li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.pricing-tier li::before {
|
||||
content: "✓ ";
|
||||
color: var(--accent-color);
|
||||
font-weight: bold;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
.content ul {
|
||||
margin-left: 1.5rem;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.content li {
|
||||
margin-bottom: 0.5rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.cta-section {
|
||||
background-color: var(--primary-color);
|
||||
padding: 3rem 2rem;
|
||||
border-radius: 8px;
|
||||
margin-top: 3rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cta-section h3 {
|
||||
color: var(--text-color);
|
||||
margin-top: 0;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.cta-button {
|
||||
display: inline-block;
|
||||
background-color: var(--accent-color);
|
||||
color: var(--button-text) !important;
|
||||
padding: 1rem 2rem;
|
||||
border-radius: 4px;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
font-size: 1.1rem;
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
|
||||
.cta-button:hover {
|
||||
background-color: var(--secondary-color);
|
||||
color: var(--button-text) !important;
|
||||
}
|
||||
|
||||
.cta-subtitle {
|
||||
color: var(--neutral-light);
|
||||
font-size: 0.9rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
/* Responsive navigation */
|
||||
@media (max-width: 768px) {
|
||||
.nav-content {
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.pricing-preview {
|
||||
padding: 2rem 1rem;
|
||||
}
|
||||
|
||||
.feature-detail, .pricing-tier, .cta-section {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user