-
Notifications
You must be signed in to change notification settings - Fork 0
/
newtab.html
93 lines (87 loc) · 1.73 KB
/
newtab.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
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>New Tab</title>
<style>
body {
background-color: black;
color: yellowgreen;
}
input {
border: 1px solid yellowgreen;
background-color: black;
font-family: 'Fira Code', monospace;
font-size: large;
width: 40vw;
height: 30px;
color: yellowgreen
}
input:focus{
outline: none;
}
h1{
font-family: 'Fira Code', monospace;
}
pre{
margin-right: 10%;
color: rgb(113, 151, 36);
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%, -50%);
}
.rightdiv{
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
</style>
</head>
<body>
<pre>
.eeeeeeeee
.$$$$$$$$P"
.$$$$$$$$P
z$$$$$$$$P
z$$$$$$$$"
z$$$$$$$$"
d$$$$$$$$"
d$$$$$$$$"
.d$$$$$$$P
.$$$$$$$$P
.$$$$$$$$$.........
.$$$$$$$$$$$$$$$$$$"
z$$$$$$$$$$$$$$$$$P"
-**********$$$$$$$P
d$$$$$$"
.d$$$$$$"
.$$$$$$P"
z$$$$$$P
d$$$$$$"
.d$$$$$$"
.$$$$$$$"
z$$$$$$$beeeeee
d$$$$$$$$$$$$$*
^""""""""$$$$$"
d$$$*
d$$$"
d$$*
d$P"
.$$"
.$P"
.$"
.P"
."
/"
</pre>
<div class="rightdiv">
<h1>Joule Browser</h1>
<input type="text" id="mainSearch"/>
</div>
</body>
</html>