-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (88 loc) · 1.81 KB
/
Copy pathindex.html
File metadata and controls
103 lines (88 loc) · 1.81 KB
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
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>team.lincolnloop.com</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: #07262C;
color: #D7F2F4;
font-family: monospace;
font-size: 14px;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 40px 20px;
}
.container {
max-width: 560px;
width: 100%;
}
.prompt {
color: #31A0AA;
margin-bottom: 24px;
font-size: 13px;
}
.prompt span {
color: #D16429;
}
h1 {
font-size: 13px;
font-weight: normal;
color: #747474;
margin-bottom: 16px;
}
ul {
list-style: none;
margin-bottom: 40px;
}
li {
padding: 6px 0;
border-bottom: 1px solid #153E42;
}
li:last-child {
border-bottom: none;
}
a {
color: #31A0AA;
text-decoration: none;
}
li a::before {
content: "drwxr-xr-x ";
color: #264B4B;
}
a:hover {
color: #D16429;
}
li a:hover::before {
color: #264B4B;
}
footer {
font-size: 12px;
color: #264B4B;
}
footer a {
color: #264B4B;
}
footer a:hover {
color: #31A0AA;
}
</style>
</head>
<body>
<div class="container">
<p class="prompt">team@lincolnloop <span>~</span> $ ls -la</p>
<h1>team.lincolnloop.com/</h1>
<ul>
<li><a href="/~darwin/">darwin/</a></li>
</ul>
<footer>
add your directory → <a href="https://github.com/lincolnloop/team.lincolnloop.com">lincolnloop/team.lincolnloop.com</a>
</footer>
</div>
</body>
</html>