Merge pull request #28 from bcsamrudh/rolling
Browse files- public/static/themes/simple.css +37 -0
- public/templates/about.html +24 -15
public/static/themes/simple.css
CHANGED
@@ -260,3 +260,40 @@ footer {
|
|
260 |
.page_navigation button:active {
|
261 |
filter: brightness(1.2);
|
262 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
.page_navigation button:active {
|
261 |
filter: brightness(1.2);
|
262 |
}
|
263 |
+
|
264 |
+
/* Styles for the about page */
|
265 |
+
|
266 |
+
.about-container article{
|
267 |
+
font-size: 1.5rem;
|
268 |
+
color:var(--fg);
|
269 |
+
padding-bottom: 10px;
|
270 |
+
}
|
271 |
+
|
272 |
+
.about-container article h1{
|
273 |
+
color: var(--2);
|
274 |
+
font-size: 2.8rem;
|
275 |
+
}
|
276 |
+
|
277 |
+
.about-container article div{
|
278 |
+
padding-bottom: 15px;
|
279 |
+
}
|
280 |
+
|
281 |
+
.about-container a{
|
282 |
+
color:var(--3);
|
283 |
+
}
|
284 |
+
|
285 |
+
.about-container article h2{
|
286 |
+
color: var(--3);
|
287 |
+
font-size: 1.8rem;
|
288 |
+
padding-bottom: 10px;
|
289 |
+
}
|
290 |
+
|
291 |
+
.about-container p{
|
292 |
+
color:var(--fg);
|
293 |
+
font-size: 1.6rem;
|
294 |
+
padding-bottom: 10px;
|
295 |
+
}
|
296 |
+
|
297 |
+
.about-container h3{
|
298 |
+
font-size: 1.5rem;
|
299 |
+
}
|
public/templates/about.html
CHANGED
@@ -1,20 +1,29 @@
|
|
1 |
{{>header this}}
|
2 |
<main class="about-container">
|
3 |
-
<
|
4 |
-
|
5 |
-
>
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
</article>
|
|
|
|
|
19 |
</main>
|
20 |
{{>footer}}
|
|
|
|
1 |
{{>header this}}
|
2 |
<main class="about-container">
|
3 |
+
<article >
|
4 |
+
<div>
|
5 |
+
<h1 >Websurfx</h1>
|
6 |
+
<hr size="4" width="100%" color="#a6e3a1">
|
7 |
+
</div>
|
8 |
+
<p>A modern-looking, lightning-fast, privacy-respecting, secure meta search engine written in Rust. It provides a fast and secure search experience while respecting user privacy.<br> It aggregates results from multiple search engines and presents them in an unbiased manner, filtering out trackers and ads.
|
9 |
+
</p>
|
10 |
+
|
11 |
+
<h2>Some of the Top Features:</h2>
|
12 |
+
|
13 |
+
<ul><strong>Lightning fast </strong>- Results load within milliseconds for an instant search experience.</ul>
|
14 |
+
|
15 |
+
<ul><strong>Secure search</strong> - All searches are performed over an encrypted connection to prevent snooping.</ul>
|
16 |
+
|
17 |
+
<ul><strong>Ad free results</strong> - All search results are ad free and clutter free for a clean search experience.</ul>
|
18 |
+
|
19 |
+
<ul><strong>Privacy focused</strong> - Websurface does not track, store or sell your search data. Your privacy is our priority.</ul>
|
20 |
+
|
21 |
+
<ul><strong>Free and Open source</strong> - The entire project's code is open source and available for free on <a href="https://github.com/neon-mmd/websurfx">GitHub</a> under an GNU Affero General Public License.</ul>
|
22 |
+
|
23 |
+
<ul><strong>Highly customizable</strong> - Websurface comes with 9 built-in color themes and supports creating custom themes effortlessly.</ul>
|
24 |
</article>
|
25 |
+
|
26 |
+
<h3>Devoloped by: <a href="https://github.com/neon-mmd/websurfx">Websurfx team</a></h3>
|
27 |
</main>
|
28 |
{{>footer}}
|
29 |
+
|