_includes/
index.css
1.2 KiB
_layouts/
_pages/
_posts/
assets/
css/
fonts/
images/
js/
.gitignore
62 B
Gemfile
68 B
Gemfile.lock
1.7 KiB
Makefile
198 B
README
192 B
_config.yml
278 B
avatar.png
44.3 KiB
cloudhead.gpg
892 B
favicon.png
179 B
index.md
79 B
publish
1.6 KiB
robots.txt
33 B
_includes/index.css
raw
| 1 | html { |
| 2 | height: 100%; |
| 3 | } |
| 4 | |
| 5 | body { |
| 6 | background: url(/images/bg.png) no-repeat fixed bottom center; |
| 7 | background-size: contain; |
| 8 | height: 100%; |
| 9 | |
| 10 | image-rendering: optimizeSpeed; /* STOP SMOOTHING, GIVE ME SPEED */ |
| 11 | image-rendering: -moz-crisp-edges; /* Firefox */ |
| 12 | image-rendering: -o-crisp-edges; /* Opera */ |
| 13 | image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */ |
| 14 | image-rendering: pixelated; /* Chrome */ |
| 15 | image-rendering: optimize-contrast; /* CSS3 Proposed */ |
| 16 | -ms-interpolation-mode: nearest-neighbor; /* IE8+ */ |
| 17 | } |
| 18 | |
| 19 | h1 { |
| 20 | font-size: 20px; |
| 21 | text-shadow: -2px -2px white; |
| 22 | } |
| 23 | |
| 24 | body > header { |
| 25 | text-align: right; |
| 26 | float: right; |
| 27 | } |
| 28 | |
| 29 | ul, li { |
| 30 | display: inline-block; |
| 31 | list-style-type: none; |
| 32 | } |
| 33 | |
| 34 | li { |
| 35 | margin: 5px 0; |
| 36 | display: block; |
| 37 | } |
| 38 | |
| 39 | nav a { |
| 40 | color: black; |
| 41 | } |
| 42 | |
| 43 | nav footer, .subtle, .date { |
| 44 | color: #bbb; |
| 45 | } |
| 46 | |
| 47 | @media /* Smaller desktop */ |
| 48 | only screen and (max-device-width: 960px), |
| 49 | only screen and (max-width: 960px) { |
| 50 | nav ul { |
| 51 | column-count: 1 !important; |
| 52 | } |
| 53 | } |