temu aah design
This commit is contained in:
parent
caa7d972d0
commit
f72dac2732
2 changed files with 70 additions and 552 deletions
499
index.html
499
index.html
|
@ -4,504 +4,7 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>eplg.cloud | Modern Cloud Hosting</title>
|
<title>eplg.cloud | Modern Cloud Hosting</title>
|
||||||
<style>
|
<link rel="stylesheet" href="style.css">
|
||||||
:root {
|
|
||||||
--dark-bg: #000000;
|
|
||||||
--dark-surface: #000000;
|
|
||||||
--dark-border: #1a1a1a;
|
|
||||||
--dark-accent: #1a1a1a;
|
|
||||||
--text-primary: #ffffff;
|
|
||||||
--text-secondary: #808080;
|
|
||||||
--accent-color: #ffffff;
|
|
||||||
--accent-light: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
box-sizing: border-box;
|
|
||||||
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
||||||
scroll-behavior: smooth;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
background-color: var(--dark-bg);
|
|
||||||
color: var(--text-primary);
|
|
||||||
min-height: 100vh;
|
|
||||||
overflow-x: hidden;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grid-background {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
background-image:
|
|
||||||
linear-gradient(to right, var(--dark-border) 1px, transparent 1px),
|
|
||||||
linear-gradient(to bottom, var(--dark-border) 1px, transparent 1px);
|
|
||||||
background-size: 30px 30px;
|
|
||||||
opacity: 0.1;
|
|
||||||
z-index: -1;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.container {
|
|
||||||
max-width: 1200px;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 0 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
header {
|
|
||||||
padding: 1.5rem 0;
|
|
||||||
border-bottom: 1px solid var(--dark-border);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
font-size: 1.8rem;
|
|
||||||
font-weight: 700;
|
|
||||||
color: var(--text-primary);
|
|
||||||
text-decoration: none;
|
|
||||||
letter-spacing: -0.5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo span {
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links {
|
|
||||||
display: flex;
|
|
||||||
gap: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links a {
|
|
||||||
color: var(--text-secondary);
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: 500;
|
|
||||||
transition: all 0.3s ease;
|
|
||||||
transform: translateY(0);
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links a:hover {
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero {
|
|
||||||
padding: 8rem 0 6rem;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero h1 {
|
|
||||||
font-size: 4.5rem;
|
|
||||||
line-height: 1.1;
|
|
||||||
font-weight: 800;
|
|
||||||
letter-spacing: -1.5px;
|
|
||||||
margin-bottom: 1.5rem;
|
|
||||||
color: var(--text-primary);
|
|
||||||
background: none;
|
|
||||||
-webkit-background-clip: unset;
|
|
||||||
background-clip: unset;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero p {
|
|
||||||
font-size: 1.25rem;
|
|
||||||
line-height: 1.6;
|
|
||||||
color: var(--text-secondary);
|
|
||||||
max-width: 700px;
|
|
||||||
margin: 0 auto 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cta-buttons {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 1.5rem;
|
|
||||||
margin-bottom: 4rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 0.875rem 2rem;
|
|
||||||
font-size: 1rem;
|
|
||||||
font-weight: 600;
|
|
||||||
text-decoration: none;
|
|
||||||
border-radius: 0;
|
|
||||||
transition: background-color 0.3s ease;
|
|
||||||
position: relative;
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button-primary {
|
|
||||||
background-color: var(--text-primary);
|
|
||||||
color: var(--dark-bg);
|
|
||||||
box-shadow: 0 4px 0 rgba(128, 128, 128, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.button-primary:hover {
|
|
||||||
background-color: var(--text-secondary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.button-primary:active {
|
|
||||||
background-color: var(--text-secondary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.button-secondary {
|
|
||||||
background-color: #333333;
|
|
||||||
color: var(--text-primary);
|
|
||||||
border: none;
|
|
||||||
box-shadow: 0 4px 0 rgba(128, 128, 128, 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.button-secondary:hover {
|
|
||||||
background-color: #1a1a1a;
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.button-secondary:active {
|
|
||||||
background-color: #1a1a1a;
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.features {
|
|
||||||
padding: 6rem 0;
|
|
||||||
border-top: 1px solid var(--dark-border);
|
|
||||||
}
|
|
||||||
|
|
||||||
.section-title {
|
|
||||||
text-align: center;
|
|
||||||
font-size: 2.5rem;
|
|
||||||
font-weight: 700;
|
|
||||||
margin-bottom: 4rem;
|
|
||||||
letter-spacing: -0.5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.features-grid {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
||||||
gap: 2.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-card {
|
|
||||||
background-color: var(--dark-surface);
|
|
||||||
border: 1px solid var(--dark-border);
|
|
||||||
padding: 2rem;
|
|
||||||
transition: transform 0.3s ease, border-color 0.3s ease;
|
|
||||||
transform: translateY(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-card:hover {
|
|
||||||
border-color: var(--dark-accent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-icon {
|
|
||||||
background-color: rgba(109, 90, 205, 0.1);
|
|
||||||
color: var(--accent-color);
|
|
||||||
width: 56px;
|
|
||||||
height: 56px;
|
|
||||||
border-radius: 12px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
margin-bottom: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-card h3 {
|
|
||||||
font-size: 1.25rem;
|
|
||||||
font-weight: 600;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-card p {
|
|
||||||
color: var(--text-secondary);
|
|
||||||
line-height: 1.6;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing {
|
|
||||||
padding: 6rem 0;
|
|
||||||
border-top: 1px solid var(--dark-border);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-grid {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(3, 1fr);
|
|
||||||
gap: 2.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-grid > div:nth-child(4) {
|
|
||||||
grid-column: 1 / -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-card {
|
|
||||||
background-color: var(--dark-surface);
|
|
||||||
border: 1px solid var(--dark-border);
|
|
||||||
padding: 2.5rem;
|
|
||||||
text-align: center;
|
|
||||||
transition: transform 0.3s ease, border-color 0.3s ease;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
min-height: 600px;
|
|
||||||
transform: translateY(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-card:hover {
|
|
||||||
border-color: var(--dark-accent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-card.featured {
|
|
||||||
border-color: var(--text-primary);
|
|
||||||
position: relative;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-card.featured::before {
|
|
||||||
content: "Popular";
|
|
||||||
position: absolute;
|
|
||||||
top: 1rem;
|
|
||||||
right: -2rem;
|
|
||||||
background-color: var(--text-primary);
|
|
||||||
color: var(--dark-bg);
|
|
||||||
padding: 0.25rem 2rem;
|
|
||||||
font-size: 0.75rem;
|
|
||||||
font-weight: 600;
|
|
||||||
transform: rotate(45deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-card h3 {
|
|
||||||
font-size: 1.5rem;
|
|
||||||
font-weight: 600;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
min-height: 4rem;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.price {
|
|
||||||
font-size: 3rem;
|
|
||||||
font-weight: 700;
|
|
||||||
margin-bottom: 1.5rem;
|
|
||||||
min-height: 120px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.price span {
|
|
||||||
font-size: 1rem;
|
|
||||||
color: var(--text-secondary);
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-features {
|
|
||||||
margin: 2rem 0;
|
|
||||||
text-align: left;
|
|
||||||
flex-grow: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-features li {
|
|
||||||
list-style: none;
|
|
||||||
margin-bottom: 0.75rem;
|
|
||||||
color: var(--text-secondary);
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-features li::before {
|
|
||||||
content: "✓";
|
|
||||||
color: var(--text-primary);
|
|
||||||
margin-right: 0.5rem;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-grid > div:last-child {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: center;
|
|
||||||
gap: 2rem;
|
|
||||||
min-height: auto;
|
|
||||||
padding: 2rem;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-grid > div:last-child h3 {
|
|
||||||
position: absolute;
|
|
||||||
top: 2rem;
|
|
||||||
left: 2rem;
|
|
||||||
width: 200px;
|
|
||||||
margin: 0;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-grid > div:last-child .price {
|
|
||||||
min-height: auto;
|
|
||||||
margin: 0;
|
|
||||||
flex: 0 0 200px;
|
|
||||||
margin-top: 4rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-grid > div:last-child .pricing-features {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(2, 1fr);
|
|
||||||
gap: 0.75rem;
|
|
||||||
margin: 0;
|
|
||||||
flex: 1;
|
|
||||||
margin-top: 4rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-grid > div:last-child .button {
|
|
||||||
flex: 0 0 auto;
|
|
||||||
margin: 0;
|
|
||||||
margin-top: 4rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer {
|
|
||||||
padding: 4rem 0;
|
|
||||||
border-top: 1px solid var(--dark-border);
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-links {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 2rem;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-links a {
|
|
||||||
color: var(--text-secondary);
|
|
||||||
text-decoration: none;
|
|
||||||
transition: color 0.2s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-links a:hover {
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.copyright {
|
|
||||||
color: var(--text-secondary);
|
|
||||||
font-size: 0.875rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about {
|
|
||||||
padding: 6rem 0;
|
|
||||||
border-top: 1px solid var(--dark-border);
|
|
||||||
}
|
|
||||||
|
|
||||||
.about-content {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: 1fr 1fr;
|
|
||||||
gap: 4rem;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about-text h2 {
|
|
||||||
font-size: 2.5rem;
|
|
||||||
font-weight: 700;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
letter-spacing: -0.5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about-text p {
|
|
||||||
color: var(--text-secondary);
|
|
||||||
line-height: 1.8;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about-stats {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(2, 1fr);
|
|
||||||
gap: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stat-item {
|
|
||||||
background-color: var(--dark-surface);
|
|
||||||
border: 1px solid var(--dark-border);
|
|
||||||
padding: 1.5rem;
|
|
||||||
text-align: center;
|
|
||||||
transition: transform 0.3s ease, border-color 0.3s ease;
|
|
||||||
transform: translateY(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
.stat-item:hover {
|
|
||||||
border-color: var(--dark-accent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.stat-number {
|
|
||||||
font-size: 2.5rem;
|
|
||||||
font-weight: 700;
|
|
||||||
color: var(--text-primary);
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stat-label {
|
|
||||||
color: var(--text-secondary);
|
|
||||||
font-size: 0.875rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.hero h1 {
|
|
||||||
font-size: 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cta-buttons {
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
gap: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 300px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-links {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about-content {
|
|
||||||
grid-template-columns: 1fr;
|
|
||||||
gap: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-grid {
|
|
||||||
grid-template-columns: 1fr;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-grid > div:last-child {
|
|
||||||
flex-direction: column;
|
|
||||||
min-height: 600px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-grid > div:last-child h3 {
|
|
||||||
position: static;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-grid > div:last-child .price,
|
|
||||||
.pricing-grid > div:last-child .pricing-features,
|
|
||||||
.pricing-grid > div:last-child .button {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pricing-grid > div:last-child .pricing-features {
|
|
||||||
grid-template-columns: 1fr;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about-stats {
|
|
||||||
grid-template-columns: 1fr;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="grid-background"></div>
|
<div class="grid-background"></div>
|
||||||
|
|
115
style.css
115
style.css
|
@ -1,12 +1,12 @@
|
||||||
:root {
|
:root {
|
||||||
--dark-bg: #121212;
|
--dark-bg: #000000;
|
||||||
--dark-surface: #1e1e1e;
|
--dark-surface: #000000;
|
||||||
--dark-border: #2a2a2a;
|
--dark-border: #1a1a1a;
|
||||||
--dark-accent: #3a3a3a;
|
--dark-accent: #1a1a1a;
|
||||||
--text-primary: #ffffff;
|
--text-primary: #ffffff;
|
||||||
--text-secondary: #b3b3b3;
|
--text-secondary: #808080;
|
||||||
--accent-color: #6d5acd;
|
--accent-color: #ffffff;
|
||||||
--accent-light: #8b7ce0;
|
--accent-light: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
|
@ -35,7 +35,7 @@ body {
|
||||||
linear-gradient(to right, var(--dark-border) 1px, transparent 1px),
|
linear-gradient(to right, var(--dark-border) 1px, transparent 1px),
|
||||||
linear-gradient(to bottom, var(--dark-border) 1px, transparent 1px);
|
linear-gradient(to bottom, var(--dark-border) 1px, transparent 1px);
|
||||||
background-size: 30px 30px;
|
background-size: 30px 30px;
|
||||||
opacity: 0.2;
|
opacity: 0.1;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
@ -66,7 +66,7 @@ nav {
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo span {
|
.logo span {
|
||||||
color: var(--accent-color);
|
color: var(--text-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-links {
|
.nav-links {
|
||||||
|
@ -78,7 +78,9 @@ nav {
|
||||||
color: var(--text-secondary);
|
color: var(--text-secondary);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
transition: color 0.2s ease;
|
transition: all 0.3s ease;
|
||||||
|
transform: translateY(0);
|
||||||
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-links a:hover {
|
.nav-links a:hover {
|
||||||
|
@ -96,10 +98,10 @@ nav {
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
letter-spacing: -1.5px;
|
letter-spacing: -1.5px;
|
||||||
margin-bottom: 1.5rem;
|
margin-bottom: 1.5rem;
|
||||||
background: linear-gradient(90deg, var(--text-primary), var(--accent-light));
|
color: var(--text-primary);
|
||||||
-webkit-background-clip: text;
|
background: none;
|
||||||
background-clip: text;
|
-webkit-background-clip: unset;
|
||||||
color: transparent;
|
background-clip: unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero p {
|
.hero p {
|
||||||
|
@ -123,31 +125,41 @@ nav {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border-radius: 8px;
|
border-radius: 0;
|
||||||
transition: all 0.2s ease;
|
transition: background-color 0.3s ease;
|
||||||
}
|
position: relative;
|
||||||
|
|
||||||
.button-primary {
|
|
||||||
background-color: var(--accent-color);
|
|
||||||
color: white;
|
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.button-primary {
|
||||||
|
background-color: var(--text-primary);
|
||||||
|
color: var(--dark-bg);
|
||||||
|
box-shadow: 0 4px 0 rgba(128, 128, 128, 1);
|
||||||
|
}
|
||||||
|
|
||||||
.button-primary:hover {
|
.button-primary:hover {
|
||||||
background-color: var(--accent-light);
|
background-color: var(--text-secondary);
|
||||||
transform: translateY(-2px);
|
}
|
||||||
box-shadow: 0 8px 15px rgba(109, 90, 205, 0.2);
|
|
||||||
|
.button-primary:active {
|
||||||
|
background-color: var(--text-secondary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.button-secondary {
|
.button-secondary {
|
||||||
background-color: transparent;
|
background-color: #333333;
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
border: 1px solid var(--dark-border);
|
border: none;
|
||||||
|
box-shadow: 0 4px 0 rgba(128, 128, 128, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
.button-secondary:hover {
|
.button-secondary:hover {
|
||||||
border-color: var(--text-secondary);
|
background-color: #1a1a1a;
|
||||||
transform: translateY(-2px);
|
color: var(--text-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-secondary:active {
|
||||||
|
background-color: #1a1a1a;
|
||||||
|
color: var(--text-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.features {
|
.features {
|
||||||
|
@ -172,13 +184,12 @@ nav {
|
||||||
.feature-card {
|
.feature-card {
|
||||||
background-color: var(--dark-surface);
|
background-color: var(--dark-surface);
|
||||||
border: 1px solid var(--dark-border);
|
border: 1px solid var(--dark-border);
|
||||||
border-radius: 12px;
|
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
transition: transform 0.3s ease, border-color 0.3s ease;
|
transition: transform 0.3s ease, border-color 0.3s ease;
|
||||||
|
transform: translateY(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.feature-card:hover {
|
.feature-card:hover {
|
||||||
transform: translateY(-5px);
|
|
||||||
border-color: var(--dark-accent);
|
border-color: var(--dark-accent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -217,29 +228,28 @@ nav {
|
||||||
gap: 2.5rem;
|
gap: 2.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-grid>div:nth-child(4) {
|
.pricing-grid > div:nth-child(4) {
|
||||||
grid-column: 1 / -1;
|
grid-column: 1 / -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-card {
|
.pricing-card {
|
||||||
background-color: var(--dark-surface);
|
background-color: var(--dark-surface);
|
||||||
border: 1px solid var(--dark-border);
|
border: 1px solid var(--dark-border);
|
||||||
border-radius: 12px;
|
|
||||||
padding: 2.5rem;
|
padding: 2.5rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
transition: transform 0.3s ease, border-color 0.3s ease;
|
transition: transform 0.3s ease, border-color 0.3s ease;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
min-height: 600px;
|
min-height: 600px;
|
||||||
|
transform: translateY(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-card:hover {
|
.pricing-card:hover {
|
||||||
transform: translateY(-5px);
|
|
||||||
border-color: var(--dark-accent);
|
border-color: var(--dark-accent);
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-card.featured {
|
.pricing-card.featured {
|
||||||
border-color: var(--accent-color);
|
border-color: var(--text-primary);
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
@ -249,8 +259,8 @@ nav {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 1rem;
|
top: 1rem;
|
||||||
right: -2rem;
|
right: -2rem;
|
||||||
background-color: var(--accent-color);
|
background-color: var(--text-primary);
|
||||||
color: white;
|
color: var(--dark-bg);
|
||||||
padding: 0.25rem 2rem;
|
padding: 0.25rem 2rem;
|
||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
@ -300,12 +310,12 @@ nav {
|
||||||
|
|
||||||
.pricing-features li::before {
|
.pricing-features li::before {
|
||||||
content: "✓";
|
content: "✓";
|
||||||
color: var(--accent-color);
|
color: var(--text-primary);
|
||||||
margin-right: 0.5rem;
|
margin-right: 0.5rem;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-grid>div:last-child {
|
.pricing-grid > div:last-child {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -315,7 +325,7 @@ nav {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-grid>div:last-child h3 {
|
.pricing-grid > div:last-child h3 {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 2rem;
|
top: 2rem;
|
||||||
left: 2rem;
|
left: 2rem;
|
||||||
|
@ -324,14 +334,14 @@ nav {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-grid>div:last-child .price {
|
.pricing-grid > div:last-child .price {
|
||||||
min-height: auto;
|
min-height: auto;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
flex: 0 0 200px;
|
flex: 0 0 200px;
|
||||||
margin-top: 4rem;
|
margin-top: 4rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-grid>div:last-child .pricing-features {
|
.pricing-grid > div:last-child .pricing-features {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
gap: 0.75rem;
|
gap: 0.75rem;
|
||||||
|
@ -340,7 +350,7 @@ nav {
|
||||||
margin-top: 4rem;
|
margin-top: 4rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-grid>div:last-child .button {
|
.pricing-grid > div:last-child .button {
|
||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-top: 4rem;
|
margin-top: 4rem;
|
||||||
|
@ -408,15 +418,20 @@ footer {
|
||||||
.stat-item {
|
.stat-item {
|
||||||
background-color: var(--dark-surface);
|
background-color: var(--dark-surface);
|
||||||
border: 1px solid var(--dark-border);
|
border: 1px solid var(--dark-border);
|
||||||
border-radius: 12px;
|
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
transition: transform 0.3s ease, border-color 0.3s ease;
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.stat-item:hover {
|
||||||
|
border-color: var(--dark-accent);
|
||||||
}
|
}
|
||||||
|
|
||||||
.stat-number {
|
.stat-number {
|
||||||
font-size: 2.5rem;
|
font-size: 2.5rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
color: var(--accent-color);
|
color: var(--text-primary);
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -455,23 +470,23 @@ footer {
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-grid>div:last-child {
|
.pricing-grid > div:last-child {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
min-height: 600px;
|
min-height: 600px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-grid>div:last-child h3 {
|
.pricing-grid > div:last-child h3 {
|
||||||
position: static;
|
position: static;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-grid>div:last-child .price,
|
.pricing-grid > div:last-child .price,
|
||||||
.pricing-grid>div:last-child .pricing-features,
|
.pricing-grid > div:last-child .pricing-features,
|
||||||
.pricing-grid>div:last-child .button {
|
.pricing-grid > div:last-child .button {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pricing-grid>div:last-child .pricing-features {
|
.pricing-grid > div:last-child .pricing-features {
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue