-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
92 lines (92 loc) · 2.73 KB
/
about.html
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
<!DOCTYPE html>
<html>
<head>
<title id="t">About</title>
<link href="https://fonts.googleapis.com/css2?family=Material+Icons" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=New+Tegomin&display=swap" rel="stylesheet">
<link rel='icon' href='https://lb123658.github.io/cebolla/favicon.png' type='image/png'/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background: #282828;
}
#logo {
position: absolute;
width: 200px;
top: 100px;
left: 50%;
margin-left: -100px;
animation-name: animate;
animation-duration: 1.2s;
animation-iteration-count: 1;
}
@keyframes animate {
0% {transform: translate(0px, 80px); opacity: 0.0;}
100% {transform: translate(0px, 0px); opacity: 1;}
}
#title {
color: #f3e3c2;
font-family: 'New Tegomin', serif;
font-size: 30px;
user-select: none;
position: absolute;
top: 260px;
left: 0%;
width: 100%;
text-align: center;
animation-name: animate;
animation-duration: 1.2s;
animation-iteration-count: 1;
}
#s {
background: transparent;
border: 2px solid #282828;
border-radius: 20px;
color: #f3e3c2;
position: absolute;
top: 15px;
left: 10px;
font-size: 20px;
font-family: 'New Tegomin', serif;
height: 40px;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 7px;
}
#s:hover {
cursor: pointer;
background: #595858;
}
#s:focus {
border: 2px solid #f3e3c2;
}
#text {
color: #f3e3c2;
font-family: 'New Tegomin', serif;
font-size: 20px;
user-select: none;
position: absolute;
top: 360px;
left: 0%;
text-align: justify;
animation-name: animate;
animation-duration: 1.2s;
animation-iteration-count: 1;
margin-left: 50px;
margin-right: 50px;
}
</style>
<body>
<a href="https://lb123658.github.io/cebolla/?page=new" id="a">
<button id="s">Back to Search</button></a>
<img id="logo" src="https://lb123658.github.io/cebolla/favicon.png">
<p id="title">Browse in Darkess</p>
<p id="text"><b>Search in complete privacy. No tracking, no search history. This search engine's first results are from other websites that value privacy and if a dangerous website comes up it is marked with a red or yellow lock icon. Results are also marked if they have good or bad privacy practices, have a good impact on the environment, or if they are potentially unsafe. There are only a few results, but they try to give you access to the most visited websites all in one place.<br><br>NEW: Browse in Darkness is being updated to feature relevant results with a variety of useful answers. To try it out, just search for "news" or "browser download" to see the range of new results.</b> </p>
<script>
if (window.location.search == "?device=mobile") {
document.getElementById("a").href = "https://lb123658.github.io/cebolla/?device=mobile";
}
</script>
</body>
</html>