3 Commits

3 changed files with 18 additions and 3 deletions

View File

@@ -28,3 +28,12 @@ By default, Dokku will proxy HTTP on port 5000.
dokku apps:create teafolio dokku apps:create teafolio
dokku storage:mount teafolio /srv/teafolio-dokku/config.toml:/app/config.toml dokku storage:mount teafolio /srv/teafolio-dokku/config.toml:/app/config.toml
``` ```
## CHANGELOG
2020-05-24 v1.0.1
- Remove image dependency from static files
- Fix a cosmetic issue with `h2`/`h3` margins
2020-05-05 v1.0.0
- Initial release

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

View File

@@ -25,7 +25,7 @@ h1 a {
h1 a:hover { h1 a:hover {
color:black; color:black;
} }
h1,h2,h3 { h1 {
margin-top:0; margin-top:0;
} }
.code { .code {
@@ -48,7 +48,6 @@ h1,h2,h3 {
html, body { html, body {
/* structural */ /* structural */
height:100%;
min-height:100%; min-height:100%;
margin:0; margin:0;
border:0; border:0;
@@ -58,10 +57,17 @@ html, body {
font-family:"Helvetica Neue","Segoe UI",Arial,sans-serif; font-family:"Helvetica Neue","Segoe UI",Arial,sans-serif;
font-size:13px; font-size:13px;
line-height:1.4; line-height:1.4;
background:#DDD url('greyzz.png'); /* thanks subtlepatterns.com ! */
color:#333; color:#333;
} }
/* Create background pattern by layering two gradients */
html {
background: repeating-linear-gradient(45deg, #FFF, #f8f8f8 5px, #fff 10px);
}
body {
background: repeating-linear-gradient(135deg, rgba(255,255,255,0), rgba(255,255,255,255) 5px, rgba(255,255,255,0) 10px);
}
#container { #container {
margin:0 auto; margin:0 auto;
width:960px; width:960px;