README: update

This commit is contained in:
0x1eef 2023-12-23 13:34:50 -03:00
parent 9dfd8ea722
commit b12f5b4fb4
3 changed files with 11 additions and 5 deletions

View file

@ -7,7 +7,7 @@ rather than in the cloud.
* Provides a web application that helps you manage projects.
* Provides a command-line utility to start / stop a web server, connect / disconnect a project.
* Works online, or offline. Binds to `http//:localhost:2020` by default.
* Works offline. Binds to `http//:localhost:2020` by default.
* Lightweight: Ruby, and SQLite3 are the primary runtime dependencies.
* Database: `~/.local/share/twenty/twenty.sqlite`.
* Easy to install: `gem install twenty`.

View file

@ -24,10 +24,14 @@ body header {
border-bottom: 1px solid $gray3;
}
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-50 { margin-bottom: 50px; }
.max-width {
width: 75%;
max-width: 1024px;
padding: 20px 0 20px 0;
}
.align-center {

View file

@ -2,14 +2,16 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>twenty</title>
<title>20</title>
<link rel="stylesheet" href="/css/main.css"/>
<link rel="icon" href="/favicon.svg"/>
</head>
<body>
<header>
<header class="mb-50">
<div class="align-center max-width">
<strong>twenty</strong>
<a href="/">
<img width=48 height=48 src="/favicon.svg"/>
</a>
</div>
</header>
<%= yield %>