-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (141 loc) · 3.59 KB
/
Copy pathindex.html
File metadata and controls
165 lines (141 loc) · 3.59 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>rum</title>
<link rel="stylesheet" href="pages/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Leckerli+One&family=Open+Sans&family=Prata&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap"
rel="stylesheet"
/>
</head>
<style>
.center {
margin: auto;
width: 45%;
font-family: "Open Sans", serif;
font-optical-sizing: auto;
color: #171717;
}
body {
background-color: #f8f5ed;
}
a {
color: black;
text-decoration: none;
}
.nav {
display: flex;
align-items: self-start;
justify-content: end;
gap: 1.5em;
border-bottom: 1px solid #dddddd;
padding: 1.5em;
}
.title {
font-family: "Leckerli One";
font-size: 4em;
font-optical-sizing: auto;
line-height: 0;
}
.text-center {
text-align: center;
}
.image {
width: 100%;
}
.line {
border-bottom: 1px solid #dddddd;
margin-top: 2em;
margin-bottom: 2em;
}
.flex-center {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: rebeccapurple;
}
.download {
padding-right: 1em;
padding-left: 1em;
border-radius: 0.5em;
text-decoration: none;
font-weight: bold;
color: white;
cursor: pointer;
user-select: none;
background-color: rgb(245, 165, 60);
display: flex;
justify-content: center;
align-items: center;
width: fit-content;
margin: auto;
}
.gap {
margin: 5em;
}
p {
line-height: 150%;
}
.features {
display: grid;
grid-template-columns: 33% 33% 33%;
margin: auto;
font-style: italic;
}
.features * {
margin: 0.5em;
}
h2 {
margin: auto;
margin-bottom: 0.8em;
}
</style>
<body>
<div class="center">
<div class="nav">
<a style="flex-grow: 1" href="https://github.com/jesperkha/rum">
<img style="width: 5em" alt="GitHub Repo stars" src="https://img.shields.io/github/stars/jesperkha/rum" />
</a>
<a href="https://github.com/jesperkha/rum/releases">Releases</a>
<a href="https://github.com/jesperkha/rum">GitHub</a>
</div>
<div class="gap"></div>
<p class="title text-center">Rum</p>
<p class="text-center">A minimal editor for the Windows console</p>
<a class="download" href="https://github.com/jesperkha/rum/releases/download/v1.1.0/RumInstaller.zip">
<p>Download v1.1.0</p>
</a>
<div class="gap"></div>
<div class="flex-center">
<img src="assets/screenshot.png" alt="" class="image" />
</div>
<div class="gap"></div>
<h2>About</h2>
<p>
Rum is a fast and minimal editor that supports syntax highlighting, search, split buffers, tabs and much more!
It is specifically made for the windows terminal using the win32 console API. It has no other dependencies than
libc and win32, making it very lightweight (~70kb) and easy to build!
</p>
<div class="gap"></div>
<h2>Features</h2>
<div class="features">
<p>✔ Easy to use and install</p>
<p>✔ Super lightweight</p>
<p>✔ No dependencies</p>
<p>✔ Vim keybindings</p>
<p>✔ Sane defaults</p>
<p>✔ Split buffers and tabs</p>
<p>✔ Syntax highlighting and themes</p>
<p>✔ File explorer</p>
<p>✔ 100% Windows native</p>
</div>
<div class="gap"></div>
<div class="line"></div>
</div>
</body>
</html>