-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompiler-log.html
69 lines (63 loc) · 2 KB
/
compiler-log.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ZY's compiler log</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-rendering: optimizeLegibility;
margin: auto;
color: #1d1221;
}
header {
max-width: 100%;
padding: 12vw;
background-color: rgba(29, 18, 33, .03);
font-size: 360%;
line-height: 1.3;
letter-spacing: -.1rem;
display: block;
}
small {
font-size: 1.6rem;
display: block;
padding-left: 2px;
letter-spacing: 0;
}
.container {
padding: 10vw 12vw;
display: flex;
flex-direction: column;
font-weight: 700;
font-size: 200%;
line-height: 1.1;
width: 100%;
flex-basis: 100%;
}
.container section {
line-height: 1.5;
}
a, a:visited, a:hover, a:active {
text-decoration: none;
color: inherit;
}
</style>
</head>
<body>
<main>
<header>
Topos Compiler Development Journal
<small>Hiking Trail Signs & Hitchhiker guide for compiler authors.</small>
</header>
<div class="container">
<section style="color: #264653"><a href="#">There is nothing here... I plan to fill in more content.</a></section>
<!-- <section style="color: #2a9d8f"><a>Elaborator & Expander</a></section>
<section style="color: #e9c46a"><a>Type Inference</a></section>
<section style="color: #f4a261"><a>Graphs</a></section>
<section style="color: #e76f51"><a>Query system</a></section> -->
</div>
</main>
</body>
</html>