-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile.html
64 lines (64 loc) · 1.4 KB
/
mobile.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
<!DOCTYPE html>
<html>
<head>
<title>Browse in darkness</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'/>
<style>
body {
background: #282828;
}
#search {
text-align: left;
height: 60px;
border: 2px solid #f3e3c2;
color: #f3e3c2;
background: transparent;
position: absolute;
top: 20px;
left: 5%;
width: 90%;
opacity: 0.7;
font-size: 23px;
user-select: none;
font-family: 'New Tegomin', serif;
}
#search:focus {
opacity: 1;
outline-width: 0;
}
#search::placeholder {
color: #f3e3c2;
}
#img {
width: 300px;
position: absolute;
top: 20%;
left: 50%;
margin-left: -150px;
}
#text {
position: absolute;
bottom: 20px;
left: 0px;
width: 100%;
text-align: center;
font-size: 28px;
user-select: none;
font-family: 'New Tegomin', serif;
color: #f3e3c2;
}
</style>
</head>
<body>
<a href="https://lb123658.github.io/cebolla/about?device=mobile">
<img src="https://lb123658.github.io/cebolla/favicon.png" id="img"></a>
<form id="form" action="https://lb123658.github.io/cebolla/search">
<input type="text" id="search" name="s" autocomplete="off" placeholder="Search in complete privacy">
</form>
<p id="text">Browse in Darkness.</p>
</body>
</html>