diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-01 16:58:13 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-01 16:58:13 +0100 |
commit | 57304ac375e905fb0efa1b98a6100828bdbef2e1 (patch) | |
tree | 820e85a777938b618cc18fe3d45c0fcc9aaf7179 /app/assets | |
parent | bab4904492dff61f20f44e6e0daf040173990214 (diff) |
Catch 404 errors when downloading remote media, add screenshot to landing page
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/images/screenshot.png | bin | 0 -> 354585 bytes | |||
-rw-r--r-- | app/assets/stylesheets/about.scss | 29 |
2 files changed, 28 insertions, 1 deletions
diff --git a/app/assets/images/screenshot.png b/app/assets/images/screenshot.png new file mode 100644 index 000000000..6404cc214 --- /dev/null +++ b/app/assets/images/screenshot.png Binary files differdiff --git a/app/assets/stylesheets/about.scss b/app/assets/stylesheets/about.scss index 84627383a..5ebe2576f 100644 --- a/app/assets/stylesheets/about.scss +++ b/app/assets/stylesheets/about.scss @@ -6,7 +6,8 @@ max-width: 600px; margin: 0 auto; color: #9baec8; - padding-top: 200px; + padding-top: 50px; + padding-bottom: 50px; } h1 { @@ -39,6 +40,32 @@ font-weight: 300; } + .screenshot { + box-shadow: 0 0 15px rgba(0, 0, 0, 0.4); + margin-bottom: 26px; + + img { + max-width: 100%; + height: auto; + display: block; + } + } + + .actions { + overflow: hidden; + + .info { + float: right; + text-align: right; + line-height: 36px; + + a { + color: #9baec8; + text-decoration: underline; + } + } + } + @media screen and (max-width: 360px) { .wrapper { padding: 20px; |