Commit f53c4b44 by Giulio Gratta

style signup and register pages

parent 6cc084f2
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
// page-level // page-level
.view-register, .view-login, .view-passwordreset { .view-register, .view-login, .view-passwordreset {
background: $white; background: $body-bg;
...@@ -20,16 +20,16 @@ ...@@ -20,16 +20,16 @@
.heading-2 { .heading-2 {
font-size: 25px; font-size: 25px;
margin: 0 0 $baseline 0; margin: 0 0 $baseline 0;
font-weight: 300; font-weight: bold;
text-transform: uppercase; text-transform: uppercase;
color: $m-blue; color: $link-color;
} }
.heading-3 { .heading-3 {
font-size: 21px; font-size: 21px;
margin: 0 0 $baseline 0; margin: 0 0 $baseline 0;
font-weight: 300; font-weight: 300;
color: $m-gray-d2; color: $base-font-color;
} }
.heading-4 { .heading-4 {
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
font-weight: 600; font-weight: 600;
text-transform: uppercase; text-transform: uppercase;
letter-spacing: 0 !important; letter-spacing: 0 !important;
color: $m-blue-s1; color: saturate($link-color,15%);
} }
.heading-5 { .heading-5 {
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
font-size: 18px; font-size: 18px;
margin: 0 0 $baseline 0; margin: 0 0 $baseline 0;
font-weight: 300; font-weight: 300;
color: $m-gray-a1; color: $base-font-color;
font-family: 'Open Sans', sans-serif; font-family: 'Open Sans', sans-serif;
line-height: lh(1.1); line-height: lh(1.1);
} }
...@@ -56,18 +56,18 @@ ...@@ -56,18 +56,18 @@
.body-text { .body-text {
font-size: 15px; font-size: 15px;
margin: 0 0 $baseline 0; margin: 0 0 $baseline 0;
color: $m-gray-a1; color: $base-font-color;
line-height: lh(1); line-height: lh(1);
} }
// specific examples - buttons // specific examples - buttons
.button-primary { .button-primary {
@include border-radius(0); @include border-radius(0);
@include linear-gradient($m-blue-s1 5%, $m-blue-d1 95%); @include linear-gradient(saturate($link-color,15%) 5%, shade($link-color,15%) 95%);
display: inline-block; display: inline-block;
padding: $baseline/2 $baseline*2.5; padding: $baseline/2 $baseline*2.5;
text-transform: lowercase; text-transform: lowercase;
color: $white; color: $very-light-text;
letter-spacing: 0.1rem; letter-spacing: 0.1rem;
font-weight: 500; font-weight: 500;
cursor: pointer; cursor: pointer;
...@@ -80,11 +80,11 @@ ...@@ -80,11 +80,11 @@
} }
.button-secondary { .button-secondary {
@include linear-gradient($m-gray 5%, $m-gray-d1 95%); @include linear-gradient($outer-border-color 5%, $lighter-base-font-color 95%);
display: inline-block; display: inline-block;
padding: $baseline/2 $baseline*2.5; padding: $baseline/2 $baseline*2.5;
text-transform: lowercase; text-transform: lowercase;
color: $white; color: $very-light-text;
letter-spacing: 0.1rem; letter-spacing: 0.1rem;
font-weight: 600; font-weight: 600;
cursor: pointer; cursor: pointer;
...@@ -98,7 +98,7 @@ ...@@ -98,7 +98,7 @@
// layout // layout
.content-wrapper { .content-wrapper {
background: $m-gray-l2; background: $content-wrapper-bg;
padding-bottom: 0; padding-bottom: 0;
} }
...@@ -107,7 +107,7 @@ ...@@ -107,7 +107,7 @@
@include clearfix; @include clearfix;
margin: 0 auto; margin: 0 auto;
width: 960px; width: 960px;
background: $white; background: $body-bg;
} }
.container { .container {
...@@ -139,17 +139,18 @@ ...@@ -139,17 +139,18 @@
} }
a { a {
@include transition(color 0.15s ease-in-out, border 0.15s ease-in-out); @include transition($link-color 0.15s ease-in-out, border 0.15s ease-in-out);
&:link, &:visited, &:hover, &:active { &:link, &:visited, &:hover, &:active {
color: $m-blue; color: $link-color;
font-weight: bold;
text-decoration: none !important; text-decoration: none !important;
font-family: $sans-serif; font-family: $sans-serif;
} }
&:hover, &:active { &:hover, &:active {
border-bottom: 1px dotted $m-blue-s1; border-bottom: 1px solid saturate($link-color,15%);
color: $m-blue-s1; color: saturate($link-color,15%);
} }
} }
...@@ -254,17 +255,17 @@ ...@@ -254,17 +255,17 @@
font-family: $sans-serif; font-family: $sans-serif;
font-style: normal; font-style: normal;
font-weight: 500; font-weight: 500;
color: $m-gray-d2; color: $base-font-color;
} }
label { label {
@include transition(color 0.15s ease-in-out); @include transition($link-color 0.15s ease-in-out);
margin: 0 0 ($baseline/4) 0; margin: 0 0 ($baseline/4) 0;
color: tint($black, 20%); color: tint($black, 20%);
} }
.tip { .tip {
@include transition(color 0.15s ease-in-out); @include transition($link-color 0.15s ease-in-out);
display: block; display: block;
margin-top: ($baseline/4); margin-top: ($baseline/4);
color: tint($m-gray, 50%); color: tint($m-gray, 50%);
...@@ -330,7 +331,7 @@ ...@@ -330,7 +331,7 @@
} }
textarea, input { textarea, input {
background: $white; background: $body-bg;
color: rgba(0,0,0,.25); color: rgba(0,0,0,.25);
} }
} }
...@@ -339,11 +340,11 @@ ...@@ -339,11 +340,11 @@
&.is-focused { &.is-focused {
label { label {
color: $m-blue-s1; color: saturate($link-color,15%);
} }
.tip { .tip {
color: $m-blue-s1; color: saturate($link-color,15%);
} }
} }
...@@ -461,7 +462,7 @@ ...@@ -461,7 +462,7 @@
// misc // misc
.orn-plus { .orn-plus {
color: $white; color: $very-light-text;
padding: 0 $baseline/4; padding: 0 $baseline/4;
} }
...@@ -491,8 +492,15 @@ ...@@ -491,8 +492,15 @@
header { header {
height: 120px; height: 120px;
border-bottom: 1px solid $m-gray; border-bottom: 1px solid $outer-border-color;
background: transparent url("../images/bg-banner-login.png") 0 0 no-repeat; //background: transparent url("../images/bg-banner-login.png") 0 0 no-repeat;
h1 {
clip: auto !important;
height: 50px;
width: 500px;
margin-top: 50px;
}
} }
} }
} }
...@@ -505,15 +513,22 @@ ...@@ -505,15 +513,22 @@
header { header {
height: 120px; height: 120px;
border-bottom: 1px solid $m-gray; border-bottom: 1px solid $outer-border-color;
background: transparent url("../images/bg-banner-register.png") 0 0 no-repeat; //background: transparent url("../images/bg-banner-register.png") 0 0 no-repeat;
h1 {
clip: auto !important;
height: 50px;
width: 500px;
margin-top: 50px;
}
} }
} }
} }
// password reset // password reset
.view-passwordreset { .view-passwordreset {
background: $m-gray-l2; background: $sidebar-color;
header.global { header.global {
...@@ -543,7 +558,7 @@ ...@@ -543,7 +558,7 @@
.inner-wrapper { .inner-wrapper {
@include border-radius(2px); @include border-radius(2px);
background: $white; background: $body-bg;
padding-bottom: 0 !important; padding-bottom: 0 !important;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment