From 3c2d664444bed313899fb1789bf40f55f72d7c38 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Wed, 10 Jun 2015 22:55:21 +0300 Subject: Home screen base design --- client/colors.less | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 client/colors.less (limited to 'client/colors.less') diff --git a/client/colors.less b/client/colors.less new file mode 100644 index 0000000..87fe959 --- /dev/null +++ b/client/colors.less @@ -0,0 +1,37 @@ +body { + .page { + div.login-wrapper { + display: flex; + align-items: center; + justify-content: center; + height: auto; + min-height: 1000px; + div.login { + text-align: center; + flex: 0 0 auto; + h1 { + color: #67C288; + font-size: 6em; + font-weight: bold; + } + h2 { + margin-top: 80px; + font-size: 3.3em; + font-weight: bold; + } + button.login { + margin-top: 100px; + color: #fff; + font-size: 2.8em; + background-color: #67C288; + padding: 7px 35px; + border: 0px; + line-height: 72px; + &:hover, &:active { + background-color: #5DA577; + } + } + } + } + } +} -- cgit v1.3.1