-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
223 lines (183 loc) · 4.88 KB
/
styles.css
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;500&family=Roboto:wght@300;500&display=swap');
/* Base Colors */
:root {
--primary: #82B36F; /* Pastel Green */
--secondary: #9E8EBF; /* Soft Lavender */
--accent: #A5D08A; /* Light Mint Green */
--background-light: #F4F4F6; /* Neutral Off-White */
--background-dark: #2E3B30; /* Muted Green-Gray */
/* Text Colors */
--text-dark: #1E2B1B; /* Deep Green for Contrast */
--text-light: #FFFFFF; /* White for Bright Backgrounds */
--text-muted: #6B8263; /* Muted Pastel Olive for Subtext */
--text-on-primary: #E8EAF6; /* Light Cool Gray for Readability on --primary */
/* Highlights */
--highlight-positive: #82B36F; /* Pastel Green for Success */
--highlight-warning: #F8D49D; /* Soft Warm Amber */
--highlight-error: #DFAAAA; /* Muted Pinkish Red for Errors */
/* Violet Integration */
--violet-accent: #9575CD; /* Subtle Pastel Purple */
--violet-highlight: #5E35B1; /* Deep Tech Violet */
--text-on-violet: #F8F5F9; /* Off-White for Violet Backgrounds */
}
/* General Styles */
body {
background-color: var(--background);
color: var(--text);
font-family: 'Noto Sans','Arial', sans-serif;
margin: 0;
padding: 0;
}
h2, h3 {
color: var(--primary);
font-weight: bold;
text-transform: none;
}
a {
color: var(--primary);
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: var(--accent);
}
/* Main BG */
.bg-primary {
background-color: var(--primary) !important;
color: var(--text-light) !important;
}
/* Section Backgrounds */
section {
padding: 2rem 1rem;
}
section:nth-child(even) {
background-color: var(--secondary);
}
section:nth-child(odd) {
background-color: var(--background);
}
/* Licensing Section Background */
#pricing {
background-color: #f5f5fa; /* Soft Lavender Gray */
}
/* Cards */
.card {
background-color: var(--background); /* White for clean contrast */
border: 1px solid var(--secondary); /* Green border to define boxes */
transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
transform: translateY(-5px);
}
/* Buttons */
.btn-primary {
background-color: var(--primary);
color: var(--text-light); /* White text for better contrast */
border: none;
font-weight: bold;
padding: 0.5rem 1rem;
transition: background-color 0.3s ease, transform 0.2s ease;
text-align: center;
}
.btn-primary:hover {
background-color: var(--accent);
color: var(--text-light); /* Maintain white text for readability */
transform: scale(1.05);
}
/* Alerts and Warnings */
.alert {
padding: 1rem;
margin-bottom: 1rem;
border-radius: 0.25rem;
background-color: var(--error);
color: var(--text);
}
.alert-info {
background-color: var(--primary);
color: var(--text);
}
.alert-success {
background-color: var(--accent);
color: var(--text);
}
/* Navbar */
.navbar {
background-color: var(--background-dark) !important; /* Use custom dark background */
color: var(--text-light); /* Ensure white text */
}
.navbar-brand,
.nav-link {
color: var(--text-light) !important; /* White text for readability */
transition: color 0.3s ease;
}
.nav-link:hover {
color: var(--primary) !important; /* Use pastel green for hover */
}
.navbar-toggler {
border-color: var(--text-light);
}
strong {
font-weight: bold;
}
/* Contact Section */
#contact {
background-color: var(--background-dark);
color: var(--text-light); /* Ensure contrast with white text */
padding: 2rem 1rem;
}
/* Footer (Copyright Section) */
footer {
background-color: var(--); /* Match main background */
color: var(--text); /* Ensure text readability */
padding: 1rem 0; /* Adjust spacing for balance */
}
footer p {
margin: 0;
}
footer a {
color: var(--primary); /* Primary green for links */
text-decoration: none;
}
footer a:hover {
color: var(--accent);
}
/* Remove vertical space between the two columns on mobile */
@media (max-width: 767.98px) {
#why-qlever .row > div {
margin-bottom: 0; /* Remove bottom margin on smaller screens */
}
#why-qlever ul {
margin-bottom: 0; /* Remove extra space below each list */
}
}
.small {
font-size: 0.8rem !important;
}
.profile-img {
max-width: 200px
}
.border-primary {
border-color: var(--primary) !important;
}
.bg-header {
position: relative; /* Positioning context for absolute children */
overflow: hidden; /* Prevents overflow of the blurred background */
box-shadow: inset 0 10px 15px rgba(0, 0, 0, 0.5), inset 0 -10px 15px rgba(0, 0, 0, 0.5); /* Top and bottom inset shadows */
}
.blur-bg {
background-image: url('qlever.jpeg');
background-size: cover;
opacity: 0.2;
filter: blur(2px);
-webkit-filter: blur(2px);
position: absolute; /* Position it absolutely */
top: 0;
left: 0;
right: 0;
bottom: 0; /* Cover the entire header */
/*z-index: 1; /* Behind the text */
}
.text-shadow {
text-shadow: 2px 2px 4px #1E2B1B;
}