Compare commits
No commits in common. "f72dac2732136af582fcc6b1839517b883b83f9a" and "71de77da58fa2c28f2b63305ec592a1d4fd89532" have entirely different histories.
f72dac2732
...
71de77da58
1 changed files with 52 additions and 67 deletions
119
style.css
119
style.css
|
@ -1,12 +1,12 @@
|
|||
:root {
|
||||
--dark-bg: #000000;
|
||||
--dark-surface: #000000;
|
||||
--dark-border: #1a1a1a;
|
||||
--dark-accent: #1a1a1a;
|
||||
--dark-bg: #121212;
|
||||
--dark-surface: #1e1e1e;
|
||||
--dark-border: #2a2a2a;
|
||||
--dark-accent: #3a3a3a;
|
||||
--text-primary: #ffffff;
|
||||
--text-secondary: #808080;
|
||||
--accent-color: #ffffff;
|
||||
--accent-light: #ffffff;
|
||||
--text-secondary: #b3b3b3;
|
||||
--accent-color: #6d5acd;
|
||||
--accent-light: #8b7ce0;
|
||||
}
|
||||
|
||||
* {
|
||||
|
@ -31,11 +31,11 @@ body {
|
|||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-image:
|
||||
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;
|
||||
opacity: 0.2;
|
||||
z-index: -1;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
@ -66,7 +66,7 @@ nav {
|
|||
}
|
||||
|
||||
.logo span {
|
||||
color: var(--text-primary);
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
|
@ -78,9 +78,7 @@ nav {
|
|||
color: var(--text-secondary);
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
transition: all 0.3s ease;
|
||||
transform: translateY(0);
|
||||
display: inline-block;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
|
||||
.nav-links a:hover {
|
||||
|
@ -98,10 +96,10 @@ nav {
|
|||
font-weight: 800;
|
||||
letter-spacing: -1.5px;
|
||||
margin-bottom: 1.5rem;
|
||||
color: var(--text-primary);
|
||||
background: none;
|
||||
-webkit-background-clip: unset;
|
||||
background-clip: unset;
|
||||
background: linear-gradient(90deg, var(--text-primary), var(--accent-light));
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
|
@ -125,41 +123,31 @@ nav {
|
|||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
border-radius: 0;
|
||||
transition: background-color 0.3s ease;
|
||||
position: relative;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.button-primary {
|
||||
background-color: var(--text-primary);
|
||||
color: var(--dark-bg);
|
||||
box-shadow: 0 4px 0 rgba(128, 128, 128, 1);
|
||||
background-color: var(--accent-color);
|
||||
color: white;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.button-primary:hover {
|
||||
background-color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.button-primary:active {
|
||||
background-color: var(--text-secondary);
|
||||
background-color: var(--accent-light);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 15px rgba(109, 90, 205, 0.2);
|
||||
}
|
||||
|
||||
.button-secondary {
|
||||
background-color: #333333;
|
||||
background-color: transparent;
|
||||
color: var(--text-primary);
|
||||
border: none;
|
||||
box-shadow: 0 4px 0 rgba(128, 128, 128, 0.5);
|
||||
border: 1px solid var(--dark-border);
|
||||
}
|
||||
|
||||
.button-secondary:hover {
|
||||
background-color: #1a1a1a;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.button-secondary:active {
|
||||
background-color: #1a1a1a;
|
||||
color: var(--text-primary);
|
||||
border-color: var(--text-secondary);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.features {
|
||||
|
@ -184,12 +172,13 @@ nav {
|
|||
.feature-card {
|
||||
background-color: var(--dark-surface);
|
||||
border: 1px solid var(--dark-border);
|
||||
border-radius: 12px;
|
||||
padding: 2rem;
|
||||
transition: transform 0.3s ease, border-color 0.3s ease;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.feature-card:hover {
|
||||
transform: translateY(-5px);
|
||||
border-color: var(--dark-accent);
|
||||
}
|
||||
|
||||
|
@ -228,28 +217,29 @@ nav {
|
|||
gap: 2.5rem;
|
||||
}
|
||||
|
||||
.pricing-grid > div:nth-child(4) {
|
||||
.pricing-grid>div:nth-child(4) {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
.pricing-card {
|
||||
background-color: var(--dark-surface);
|
||||
border: 1px solid var(--dark-border);
|
||||
border-radius: 12px;
|
||||
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 {
|
||||
transform: translateY(-5px);
|
||||
border-color: var(--dark-accent);
|
||||
}
|
||||
|
||||
.pricing-card.featured {
|
||||
border-color: var(--text-primary);
|
||||
border-color: var(--accent-color);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
@ -259,8 +249,8 @@ nav {
|
|||
position: absolute;
|
||||
top: 1rem;
|
||||
right: -2rem;
|
||||
background-color: var(--text-primary);
|
||||
color: var(--dark-bg);
|
||||
background-color: var(--accent-color);
|
||||
color: white;
|
||||
padding: 0.25rem 2rem;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
|
@ -310,12 +300,12 @@ nav {
|
|||
|
||||
.pricing-features li::before {
|
||||
content: "✓";
|
||||
color: var(--text-primary);
|
||||
color: var(--accent-color);
|
||||
margin-right: 0.5rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.pricing-grid > div:last-child {
|
||||
.pricing-grid>div:last-child {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
|
@ -325,7 +315,7 @@ nav {
|
|||
position: relative;
|
||||
}
|
||||
|
||||
.pricing-grid > div:last-child h3 {
|
||||
.pricing-grid>div:last-child h3 {
|
||||
position: absolute;
|
||||
top: 2rem;
|
||||
left: 2rem;
|
||||
|
@ -334,14 +324,14 @@ nav {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
.pricing-grid > div:last-child .price {
|
||||
.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 {
|
||||
.pricing-grid>div:last-child .pricing-features {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 0.75rem;
|
||||
|
@ -350,7 +340,7 @@ nav {
|
|||
margin-top: 4rem;
|
||||
}
|
||||
|
||||
.pricing-grid > div:last-child .button {
|
||||
.pricing-grid>div:last-child .button {
|
||||
flex: 0 0 auto;
|
||||
margin: 0;
|
||||
margin-top: 4rem;
|
||||
|
@ -418,20 +408,15 @@ footer {
|
|||
.stat-item {
|
||||
background-color: var(--dark-surface);
|
||||
border: 1px solid var(--dark-border);
|
||||
border-radius: 12px;
|
||||
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);
|
||||
color: var(--accent-color);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
|
@ -444,19 +429,19 @@ footer {
|
|||
.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;
|
||||
}
|
||||
|
@ -470,23 +455,23 @@ footer {
|
|||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.pricing-grid > div:last-child {
|
||||
.pricing-grid>div:last-child {
|
||||
flex-direction: column;
|
||||
min-height: 600px;
|
||||
}
|
||||
|
||||
.pricing-grid > div:last-child h3 {
|
||||
.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 {
|
||||
.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 {
|
||||
.pricing-grid>div:last-child .pricing-features {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue