back to basics
This commit is contained in:
parent
0554d3c077
commit
0cd50d1909
6 changed files with 15 additions and 18 deletions
|
@ -5,7 +5,6 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<link rel="icon" href="/static/favicons/favicon.ico">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicons/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicons/favicon-16x16.png">
|
||||
|
||||
<link rel="stylesheet" href="{{style.css}}">
|
||||
|
@ -74,5 +73,6 @@
|
|||
</dd>
|
||||
</dl>
|
||||
</main>
|
||||
<footer>❦</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -6,42 +6,39 @@
|
|||
}
|
||||
|
||||
html {
|
||||
min-height: 100%;
|
||||
background: linear-gradient(110deg, rgba(86,67,244,1) 0%, rgba(217,71,218,1) 50%, rgba(245,232,119,1) 100%);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Fira Sans", sans;
|
||||
font-family: serif;
|
||||
text-decoration-skip: ink;
|
||||
padding: 1rem;
|
||||
padding: 1rem 1rem 2rem 1rem;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 1.3;
|
||||
h1, h2, h3 {
|
||||
font-family: sans;
|
||||
}
|
||||
|
||||
main {
|
||||
padding: 1.2rem 1rem;
|
||||
max-width: 40rem;
|
||||
max-width: 36rem;
|
||||
margin: 0 auto;
|
||||
border: 1px solid rgba(255, 255, 255, 0.35);
|
||||
border-radius: 7px;
|
||||
background-color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
main > :first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
main > :last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-top: .2rem;
|
||||
margin-bottom: .7rem;
|
||||
}
|
||||
|
||||
code, .email {
|
||||
font-family: "Fira Mono", monospace;
|
||||
font-family: monospace, sans;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
footer {
|
||||
margin-top: 2rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 577 B After Width: | Height: | Size: 976 B |
Binary file not shown.
Before Width: | Height: | Size: 802 B |
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 1.1 KiB |
2
utils
2
utils
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
BUILDDIR="build"
|
||||
CSS=('static/css/lib/normalize.css' 'static/css/fonts.css' 'static/css/style.css')
|
||||
CSS=('static/css/lib/normalize.css' 'static/css/style.css')
|
||||
|
||||
function clean {
|
||||
rm -r "$BUILDDIR"
|
||||
|
|
Reference in a new issue