-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
110 lines (95 loc) · 1.78 KB
/
styles.css
File metadata and controls
110 lines (95 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
:root {
--primary: #ffd700; /* JavaScript yellow */
--secondary: #2d2d2d;
--accent: #6e57e0; /* AI purple */
--background: #fafafa;
--text: #333333;
}
body {
font-family: "Inter", system-ui, sans-serif;
margin: 0;
padding: 0;
background: var(--background);
color: var(--text);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
/* Navbar Styles */
.navbar {
background: white;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.nav-links a {
color: var(--text);
text-decoration: none;
margin-left: 2rem;
}
.cta-button {
background: var(--primary);
color: var(--secondary);
padding: 0.75rem 1.5rem;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
color: white;
padding: 8rem 0;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
}
/* Feature Cards */
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.feature-card {
background: white;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
}
/* Stats Section */
.stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
text-align: center;
margin: 4rem 0;
}
.stat-item h3 {
color: var(--accent);
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hero h1 {
font-size: 2.5rem;
}
.stats {
grid-template-columns: 1fr;
}
}