-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeories.html
More file actions
53 lines (53 loc) · 1.28 KB
/
theories.html
File metadata and controls
53 lines (53 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Random Theories • Diego Rodríguez Atencia</title>
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Source+Code+Pro:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Source Code Pro', 'Courier New', monospace;
background: #000000;
color: #00ff00;
line-height: 1.6;
padding: 40px 20px;
max-width: 800px;
margin: 0 auto;
}
h1 {
color: #00ff00;
border-bottom: 2px solid #00ff00;
padding-bottom: 10px;
}
p {
color: #00aa00;
font-size: 1.1rem;
}
ul {
list-style: none;
padding-left: 0;
}
li {
margin: 15px 0;
padding-left: 20px;
position: relative;
}
li:before {
content: ">";
position: absolute;
left: 0;
color: #00ff00;
}
</style>
</head>
<body>
<h1>Random Theories</h1>
<p>Stuff that doesn't let me sleep at night</p>
<ul>
<li>¿What is true? ¿What do they want to tell you and whats happening?</li>
<li>¿Is a decentralized civilization feasible?</li>
</ul>
</body>
</html>