From 8803ca9efe23caa9c885ef1ebe411188f1e5169a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 21 Mar 2017 19:18:37 +0100 Subject: Improved landing page --- app/assets/images/fluffy-elephant-friend.png | Bin 0 -> 1101408 bytes app/assets/stylesheets/about.scss | 59 +++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 app/assets/images/fluffy-elephant-friend.png (limited to 'app/assets') diff --git a/app/assets/images/fluffy-elephant-friend.png b/app/assets/images/fluffy-elephant-friend.png new file mode 100644 index 000000000..11787e936 Binary files /dev/null and b/app/assets/images/fluffy-elephant-friend.png differ diff --git a/app/assets/stylesheets/about.scss b/app/assets/stylesheets/about.scss index f29090f1a..ce443fab4 100644 --- a/app/assets/stylesheets/about.scss +++ b/app/assets/stylesheets/about.scss @@ -95,6 +95,7 @@ .actions { overflow: hidden; + margin-bottom: 20px; .info { float: right; @@ -273,3 +274,61 @@ } } } + +.features-list { + display: flex; + margin-bottom: 20px; + + .features-list__column { + flex: 1 1 0; + + ul { + list-style: none; + } + + li { + margin: 0; + } + } +} + +.screenshot-with-signup { + display: flex; + margin-bottom: 20px; + + .mascot { + flex: 1 1 auto; + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + + img { + display: block; + margin: 0 auto; + max-width: 100%; + height: auto; + } + } + + .simple_form { + width: 300px; + flex: 0 0 auto; + background: rgba(darken($color1, 7%), 0.5); + padding: 14px; + border-radius: 4px; + box-shadow: 0 0 15px rgba($color8, 0.4); + + .actions { + margin-bottom: 0; + } + + .info { + text-align: center; + + a { + color: $color2; + } + } + } +} -- cgit