Merge branch 'rolling' into master
This commit is contained in:
commit
93f81633fc
39 changed files with 707 additions and 403 deletions
BIN
public/images/websurfx_logo.png
Normal file
BIN
public/images/websurfx_logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.1 KiB |
11
public/static/colorschemes/dark-chocolate.css
Normal file
11
public/static/colorschemes/dark-chocolate.css
Normal file
|
@ -0,0 +1,11 @@
|
|||
:root {
|
||||
--bg: #000000;
|
||||
--fg: #ffffff;
|
||||
--1: #121212;
|
||||
--2: #808080;
|
||||
--3: #999999;
|
||||
--4: #666666;
|
||||
--5: #bfbfbf;
|
||||
--6: #e0e0e0;
|
||||
--7: #555555;
|
||||
}
|
11
public/static/colorschemes/one-dark.css
Normal file
11
public/static/colorschemes/one-dark.css
Normal file
|
@ -0,0 +1,11 @@
|
|||
:root {
|
||||
--bg: #282c34;
|
||||
--fg: #abb2bf;
|
||||
--1: #3b4048;
|
||||
--2: #a3be8c;
|
||||
--3: #b48ead;
|
||||
--4: #c8ccd4;
|
||||
--5: #e06c75;
|
||||
--6: #61afef;
|
||||
--7: #be5046;
|
||||
}
|
11
public/static/colorschemes/tokyo-night.css
Normal file
11
public/static/colorschemes/tokyo-night.css
Normal file
|
@ -0,0 +1,11 @@
|
|||
:root {
|
||||
--bg: #1a1b26;
|
||||
--fg: #c0caf5;
|
||||
--1: #32364a;
|
||||
--2: #a9b1d6;
|
||||
--3: #5a5bb8;
|
||||
--4: #6b7089;
|
||||
--5: #e2afff;
|
||||
--6: #a9a1e1;
|
||||
--7: #988bc7;
|
||||
}
|
|
@ -260,3 +260,44 @@ footer {
|
|||
.page_navigation button:active {
|
||||
filter: brightness(1.2);
|
||||
}
|
||||
|
||||
/* Styles for the about page */
|
||||
|
||||
.about-container article{
|
||||
font-size: 1.5rem;
|
||||
color:var(--fg);
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.about-container article h1{
|
||||
color: var(--2);
|
||||
font-size: 2.8rem;
|
||||
}
|
||||
|
||||
.about-container article div{
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
|
||||
.about-container a{
|
||||
color:var(--3);
|
||||
}
|
||||
|
||||
.about-container article h2{
|
||||
color: var(--3);
|
||||
font-size: 1.8rem;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.about-container p{
|
||||
color:var(--fg);
|
||||
font-size: 1.6rem;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.about-container h3{
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.about-container {
|
||||
width: 80%;
|
||||
}
|
||||
|
|
|
@ -1,20 +1,29 @@
|
|||
{{>header this}}
|
||||
<main class="about-container">
|
||||
<h1>Websurfx</h1>
|
||||
<small
|
||||
>a lightening fast, privacy respecting, secure meta search engine</small
|
||||
>
|
||||
<article>
|
||||
Lorem ipsum dolor sit amet, officia excepteur ex fugiat reprehenderit enim
|
||||
labore culpa sint ad nisi Lorem pariatur mollit ex esse exercitation amet.
|
||||
Nisi anim cupidatat excepteur officia. Reprehenderit nostrud nostrud ipsum
|
||||
Lorem est aliquip amet voluptate voluptate dolor minim nulla est proident.
|
||||
Nostrud officia pariatur ut officia. Sit irure elit esse ea nulla sunt ex
|
||||
occaecat reprehenderit commodo officia dolor Lorem duis laboris cupidatat
|
||||
officia voluptate. Culpa proident adipisicing id nulla nisi laboris ex in
|
||||
Lorem sunt duis officia eiusmod. Aliqua reprehenderit commodo ex non
|
||||
excepteur duis sunt velit enim. Voluptate laboris sint cupidatat ullamco ut
|
||||
ea consectetur et est culpa et culpa duis.
|
||||
<article >
|
||||
<div>
|
||||
<h1 >Websurfx</h1>
|
||||
<hr size="4" width="100%" color="#a6e3a1">
|
||||
</div>
|
||||
<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.
|
||||
</p>
|
||||
|
||||
<h2>Some of the Top Features:</h2>
|
||||
|
||||
<ul><strong>Lightning fast </strong>- Results load within milliseconds for an instant search experience.</ul>
|
||||
|
||||
<ul><strong>Secure search</strong> - All searches are performed over an encrypted connection to prevent snooping.</ul>
|
||||
|
||||
<ul><strong>Ad free results</strong> - All search results are ad free and clutter free for a clean search experience.</ul>
|
||||
|
||||
<ul><strong>Privacy focused</strong> - Websurface does not track, store or sell your search data. Your privacy is our priority.</ul>
|
||||
|
||||
<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>
|
||||
|
||||
<ul><strong>Highly customizable</strong> - Websurface comes with 9 built-in color themes and supports creating custom themes effortlessly.</ul>
|
||||
</article>
|
||||
|
||||
<h3>Devoloped by: <a href="https://github.com/neon-mmd/websurfx">Websurfx team</a></h3>
|
||||
</main>
|
||||
{{>footer}}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{{>header this}}
|
||||
<main class="search-container">
|
||||
<img src="images/fps_logo.png" alt="Websurfx meta-search engine logo" />
|
||||
<img src="../images/websurfx_logo.png" alt="Websurfx meta-search engine logo" />
|
||||
{{>search_bar}}
|
||||
</main>
|
||||
<script src="static/index.js"></script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue