-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
64 lines (59 loc) · 1.36 KB
/
index.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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sebbie.Me</title>
<style>
body{
background-color: #262626;
color: #fff;
font-family: Consolas, monaco, monospace;
font-size:18px;
cursor: text;
}
::-moz-selection { color: #fff; background-color: #ccc;}
::selection { color: #fff; background-color: #ccc;}
.command-form{
padding-bottom: 10%;
}
.command-line{
width: 70%;
background: #262626;
color: #fff;
border: 0;
outline: none;
font-size:18px;
font-family: Consolas, monaco, monospace;
}
a:link, a:hover, a:visited, a:active, a:focus{
text-decoration:underline;
color: #fff;
}
font[color=red]{
color: #ef5350;
}
font[color=green]{
color: #43a047;
}
table{
padding:2%;
width:100%;
}
table td{
text-align: left;
width:50%;
}
</style>
</head>
<body>
<div class="screen"></div>
<div class="command-box">
<form method="POST" class="command-form">
<font color="green">guest</font>@<font color="red">sebbie.me</font>:~$ <input type="text" class="command-line" data-always-focus="1">
</form>
</div>
</body>
<script src="lib/jquery-3.4.1.min.js"></script>
<script src="lib/main.js"></script>
</html>