diff options
Diffstat (limited to 'src/static')
| -rw-r--r-- | src/static/avatar-512x512.png | bin | 0 -> 244569 bytes | |||
| -rw-r--r-- | src/static/avatar-64x64.png | bin | 0 -> 16769 bytes | |||
| -rw-r--r-- | src/static/style.css | 116 |
3 files changed, 116 insertions, 0 deletions
diff --git a/src/static/avatar-512x512.png b/src/static/avatar-512x512.png new file mode 100644 index 0000000..fc34eee --- /dev/null +++ b/src/static/avatar-512x512.png | |||
| Binary files differ | |||
diff --git a/src/static/avatar-64x64.png b/src/static/avatar-64x64.png new file mode 100644 index 0000000..1406f46 --- /dev/null +++ b/src/static/avatar-64x64.png | |||
| Binary files differ | |||
diff --git a/src/static/style.css b/src/static/style.css new file mode 100644 index 0000000..efb65c0 --- /dev/null +++ b/src/static/style.css | |||
| @@ -0,0 +1,116 @@ | |||
| 1 | body { | ||
| 2 | line-height: 150%; | ||
| 3 | margin-bottom: 100px; | ||
| 4 | } | ||
| 5 | |||
| 6 | main { | ||
| 7 | max-width: 680px; | ||
| 8 | padding: 20px 30px; | ||
| 9 | } | ||
| 10 | |||
| 11 | nav { | ||
| 12 | margin-bottom: 50px; | ||
| 13 | } | ||
| 14 | |||
| 15 | nav a { | ||
| 16 | display: inline-block; | ||
| 17 | margin-right: 20px; | ||
| 18 | } | ||
| 19 | |||
| 20 | h1 { | ||
| 21 | font-size: 280%; | ||
| 22 | line-height: initial; | ||
| 23 | } | ||
| 24 | |||
| 25 | h2 { | ||
| 26 | font-size: 200%; | ||
| 27 | line-height: initial; | ||
| 28 | } | ||
| 29 | |||
| 30 | h3 { | ||
| 31 | font-size: 160%; | ||
| 32 | line-height: initial; | ||
| 33 | } | ||
| 34 | |||
| 35 | img { | ||
| 36 | max-width: 100%; | ||
| 37 | margin: 30px auto; | ||
| 38 | display: block; | ||
| 39 | } | ||
| 40 | |||
| 41 | ul.article-list li { | ||
| 42 | margin-bottom: 10px; | ||
| 43 | } | ||
| 44 | |||
| 45 | ul.article-list time { | ||
| 46 | display: inline-block; | ||
| 47 | min-width: 120px; | ||
| 48 | } | ||
| 49 | |||
| 50 | article .info { | ||
| 51 | font-style: oblique; | ||
| 52 | } | ||
| 53 | |||
| 54 | pre { | ||
| 55 | overflow: auto; | ||
| 56 | } | ||
| 57 | |||
| 58 | table { | ||
| 59 | width: 100%; | ||
| 60 | } | ||
| 61 | |||
| 62 | table, th, td { | ||
| 63 | border: 1px solid black; | ||
| 64 | text-align: left; | ||
| 65 | } | ||
| 66 | |||
| 67 | th, td { | ||
| 68 | padding: 5px 10px; | ||
| 69 | } | ||
| 70 | |||
| 71 | ::selection { | ||
| 72 | background: #ff0; | ||
| 73 | color: #000; | ||
| 74 | } | ||
| 75 | |||
| 76 | ::-moz-selection { | ||
| 77 | background: #ff0; | ||
| 78 | color: #000; | ||
| 79 | } | ||
| 80 | |||
| 81 | @media only screen and (max-width:480px) { | ||
| 82 | nav { | ||
| 83 | text-align: center; | ||
| 84 | margin-bottom: initial; | ||
| 85 | } | ||
| 86 | |||
| 87 | nav a { | ||
| 88 | margin-bottom: 10px; | ||
| 89 | } | ||
| 90 | |||
| 91 | ul.article-list { | ||
| 92 | padding-left: 20px; | ||
| 93 | |||
| 94 | } | ||
| 95 | |||
| 96 | ul.article-list li { | ||
| 97 | margin-bottom: 20px; | ||
| 98 | |||
| 99 | } | ||
| 100 | |||
| 101 | ul.article-list a { | ||
| 102 | display: block; | ||
| 103 | } | ||
| 104 | |||
| 105 | h1 { | ||
| 106 | font-size: 220%; | ||
| 107 | } | ||
| 108 | |||
| 109 | h2 { | ||
| 110 | font-size: 180%; | ||
| 111 | } | ||
| 112 | |||
| 113 | h3 { | ||
| 114 | font-size: 160%; | ||
| 115 | } | ||
| 116 | } | ||
