-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
168 lines (142 loc) · 3.15 KB
/
style.css
File metadata and controls
168 lines (142 loc) · 3.15 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/* Base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Courier New', monospace; /* Monospace font for hacker feel */
background-color: #0d0d0d; /* Darker background for depth */
color: #e6edf3; /* Light text color */
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
/* Header */
header {
background-color: #1c1c1c; /* Darker header */
padding: 1rem 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
header h1 {
color: #ff007f; /* Bright pink for hacker vibe */
font-size: 2.5rem; /* Increased size */
}
nav ul {
list-style: none;
display: flex;
gap: 2rem;
}
nav a {
color: #e6edf3; /* Light text color */
text-decoration: none;
transition: color 0.2s ease;
}
nav a:hover {
color: #ff007f; /* Pink hover effect */
}
/* Hero */
.hero {
text-align: center;
padding: 4rem 0;
background-color: #0d0d0d; /* Dark background */
}
.hero h2 {
font-size: 3rem; /* Increased size */
color: #ff007f; /* Bright pink */
margin-bottom: 1rem;
letter-spacing: 1px; /* Add spacing for style */
}
.hero p {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 2rem;
}
.btn {
background-color: #ff007f; /* Bright pink button */
color: #0d0d0d; /* Dark button text */
padding: 0.75rem 1.5rem;
border: none;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #cc0054; /* Darker pink on hover */
}
/* Features */
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
padding: 4rem 0;
}
.feature {
background-color: #1c1c1c; /* Feature background */
padding: 2rem;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.feature h3 {
color: #ff007f; /* Bright pink */
margin-bottom: 0.5rem;
}
/* Testimonials */
.testimonials {
background-color: #0d0d0d; /* Dark background */
padding: 4rem 0;
text-align: center;
}
.testimonials h2 {
font-size: 2.5rem; /* Increased size */
margin-bottom: 2rem;
color: #ff007f; /* Bright pink */
}
.testimonial {
background-color: #1c1c1c; /* Testimonial background */
padding: 1.5rem;
border-radius: 8px;
margin-bottom: 1.5rem;
}
.testimonial blockquote {
font-style: italic;
margin-bottom: 1rem;
}
.testimonial cite {
font-size: 0.9rem;
color: #8b949e; /* Grey text for citation */
}
/* CTA Section */
.cta {
background-color: #1c1c1c; /* Dark CTA section */
padding: 3rem 0;
text-align: center;
}
.cta h2 {
font-size: 2.5rem; /* Increased size */
margin-bottom: 1rem;
color: #ff007f; /* Bright pink */
}
.cta p {
margin-bottom: 1.5rem;
}
/* Footer */
footer {
background-color: #1c1c1c; /* Dark footer */
text-align: center;
padding: 1.5rem 0;
color: #8b949e; /* Grey footer text */
font-size: 0.9rem;
}
footer a {
color: #8b949e; /* Grey link color */
text-decoration: none;
margin: 0 0.5rem;
}
footer a:hover {
color: #ff007f; /* Pink on hover */
}