-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
168 lines (157 loc) · 3.79 KB
/
Copy pathstyle.css
File metadata and controls
168 lines (157 loc) · 3.79 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
/* ===== Global Styles ===== */
body {
font-family: 'Poppins', sans-serif;
background-color: #f8f9fa; /* light neutral background */
color: #1c1c1c; /* charcoal text */
}
/* ===== Navbar ===== */
.navbar {
background-color: #1c1c1c; /* charcoal black */
position: sticky;
top: 0;
z-index: 1020; /* ensures it stays above other elements */
}
.navbar-brand {
font-weight: 700;
letter-spacing: 1px;
color: #00d4ff !important; /* aqua cyan brand */
}
.nav-link {
color: #f8f9fa !important; /* light text */
transition: color 0.3s ease;
}
.nav-link:hover {
color: #00d4ff !important; /* aqua hover */
}
/* ===== Hero Section ===== */
.bg-dark.text-secondary {
background: linear-gradient(135deg, #1c1c1c, #6c757d); /* charcoal to cool gray */
color: #f8f9fa;
}
.bg-dark.text-secondary h1 {
font-size: 3rem;
font-weight: 700;
}
.bg-dark.text-secondary p {
font-size: 1.25rem;
margin-bottom: 20px;
}
.bg-dark.text-secondary .btn {
font-size: 1.2rem;
padding: 10px 30px;
border-radius: 30px;
background-color: #00d4ff;
color: #1c1c1c;
border: none;
transition: transform 0.3s ease, background-color 0.3s ease;
}
.bg-dark.text-secondary .btn:hover {
transform: scale(1.05);
background-color: #6c757d;
color: #f8f9fa;
}
/* ===== Features Section ===== */
#features .card {
border: none;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#features .card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* ===== Pricing Section ===== */
#pricing .card {
border-radius: 10px;
transition: transform 0.3s ease;
}
#pricing .card:hover {
transform: scale(1.05);
}
#pricing .btn {
background-color: #00d4ff;
border: none;
color: #1c1c1c;
}
#pricing .btn:hover {
background-color: #6c757d;
color: #f8f9fa;
}
/* ===== Testimonials ===== */
#testimonials blockquote {
font-style: italic;
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
#testimonials blockquote:hover{
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/*===== Call-to-Action Banner =====*/
#cta {
background: linear-gradient(135deg, #1c1c1c, #6c757d); /* charcoal to cool gray */
}
#cta .btn {
font-size: 1.2rem;
padding: 10px 30px;
border-radius: 30px;
background-color: #00d4ff;
color: #1c1c1c;
border: none;
transition: transform 0.3s ease, background-color 0.3s ease;
}
#cta .btn:hover {
transform: scale(1.05);
background-color: #6c757d;
color: #f8f9fa;
}
/* ===== Footer ===== */
footer {
background-color: #1c1c1c; /* ensure dark background */
color: #f8f9fa; /* light text */
text-align: center;
padding: 20px 0;
margin-top: 40px; /* space above footer */
}
footer a {
color: #00d4ff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
.social-icon i {
transition: transform 0.3s ease, color 0.3s ease;
}
.social-icon:hover i {
transform: scale(1.3) rotate(5deg); /* pop + slight tilt */
color: #0dcaf0; /* Bootstrap cyan accent */
}
/* ===== Login/Sign Up Page ===== */
#login-page {
background: linear-gradient(135deg, #1c1c1c, #6c757d); /* charcoal to cool gray */
}
.card {
background-color: #1c1c1c;
color: #f8f9fa;
border-radius: 12px;
box-shadow: 0 0 25px rgba(13, 202, 240, 0.4); /* cyan glow */
transition: box-shadow 0.3s ease;
}
.card:hover {
box-shadow: 0 0 35px rgba(13, 202, 240, 0.7); /* intensified glow on hover */
}
.btn-primary {
background: #00d4ff;
border: none;
color: #1c1c1c;
}
.btn-primary:hover {
background: #6c757d;
color: #f8f9fa;
}
.text-center a {
color: #00d4ff;
text-decoration: none;
}