diff options
| author | Yuval Adam <yuval@y3xz.com> | 2015-07-12 14:25:02 +0300 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2015-07-12 14:25:02 +0300 |
| commit | b9ce8af9a2bfe3ca8094024d187e0b61ee5e815c (patch) | |
| tree | a305b07fa7452dd9f2974422a2f24776495c821e /client/colors.less | |
| parent | 4d89c3c640218f032b749dbf7ae0d36ba3588de4 (diff) | |
About screen
Diffstat (limited to 'client/colors.less')
| -rw-r--r-- | client/colors.less | 76 |
1 files changed, 44 insertions, 32 deletions
diff --git a/client/colors.less b/client/colors.less index 6f7cb4a..d1c87d7 100644 --- a/client/colors.less +++ b/client/colors.less @@ -22,6 +22,21 @@ body { } } .page { + a.start-over { + position: fixed; + left: 0; + top: 50%; + -webkit-transform: rotate(-90deg); + -moz-transform: rotate(-90deg); + transform: rotate(-90deg); + font-family: 'Cutive Mono', serif; + color: black; + border-bottom: 1px black solid; + &:hover, &:active { + color: white; + background-color: black; + } + } div.login-wrapper { display: flex; align-items: center; @@ -149,21 +164,6 @@ body { } } div.photos-wrapper { - a.start-over { - position: fixed; - left: 0; - top: 50%; - -webkit-transform: rotate(-90deg); - -moz-transform: rotate(-90deg); - transform: rotate(-90deg); - font-family: 'Cutive Mono', serif; - color: black; - border-bottom: 1px black solid; - &:hover, &:active { - color: white; - background-color: black; - } - } ol.steps { display: block; text-align: center; @@ -316,41 +316,53 @@ body { align-items: center; justify-content: center; height: auto; - max-width: 600px; + max-width: 800px; margin: 0 auto; - margin-top: 85px; + margin-top: 35px; div.about { text-align: center; h1 { - color: #2636F9; - font-size: 3.5em; + color: black; + font-size: 2.5em; font-weight: bold; + text-transform: uppercase; + letter-spacing: 0.1em; } h2 { - margin: 30px 10px 0px 10px; - font-size: 2em; + margin-top: 50px; + font-size: 4em; + width: 600px; + text-align: left; font-weight: bold; color: #333; } + hr { + margin-top: 110px; + height: 3px; + color: black; + background-color: black; + } div.items { - display: -webkit-flex; - display: flex; - align-items: center; - -webkit-justify-content: center; - justify-content: center; - margin-top: 50px; + margin-top: 20px; + div.left { + float: left; + div.item { + margin-right: 30px; + } + } + div.right { + float: right; + } div.item { - flex: 0 0 auto; - margin-left: 20px; - margin-right: 20px; + display: inline-block; text-align: left; - font-weight: bold; div.title { color: #333; font-size: 1em; + font-weight: bold; } div.content a { - color: #2636F9; + color: #999; } } } |
