Commit e1fae8e8 by Brian Talbot Committed by John Jarvis

drupal integration - color syncing with marketing site standards

parent bb66f896
...@@ -28,7 +28,8 @@ $outer-border-color: rgb(170, 170, 170); ...@@ -28,7 +28,8 @@ $outer-border-color: rgb(170, 170, 170);
// edx.org-related // edx.org-related
$m-gray-l: rgb(247, 247, 247); $m-gray-l: rgb(247, 247, 247);
$m-gray: rgb(67,67,67); $m-gray: rgb(67,67,67);
$m-blue: rgb(2,159,211); $m-blue: rgb(23,135,183);
$m-blue-s: rgb(2,159,211);
$m-base-font-size: em(16); $m-base-font-size: em(16);
......
...@@ -49,8 +49,8 @@ ...@@ -49,8 +49,8 @@
} }
&:hover, &:active { &:hover, &:active {
border-bottom: 1px dotted shade($m-blue, 20%); border-bottom: 1px dotted $m-blue-s;
color: shade($m-blue, 20%); color: $m-blue-s;
} }
} }
...@@ -285,11 +285,11 @@ ...@@ -285,11 +285,11 @@
&.is-focused { &.is-focused {
label { label {
color: $m-blue; color: $m-blue-s;
} }
.tip { .tip {
color: tint($m-blue, 30%); color: $m-blue-s;
} }
} }
...@@ -335,7 +335,7 @@ ...@@ -335,7 +335,7 @@
@include clearfix(); @include clearfix();
button[type="submit"] { button[type="submit"] {
@include button(simple, $blue); @include button(simple, $m-blue-s);
@include box-sizing(border-box); @include box-sizing(border-box);
@include border-radius(3px); @include border-radius(3px);
padding: ($baseline*0.75) $baseline; padding: ($baseline*0.75) $baseline;
......
...@@ -25,8 +25,8 @@ ...@@ -25,8 +25,8 @@
} }
&:hover, &:active { &:hover, &:active {
border-bottom: 1px dotted shade($m-blue, 20%); border-bottom: 1px dotted $m-blue-s;
color: shade($m-blue, 20%); color: $m-blue-s;
} }
} }
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
color: tint($black, 20%); color: tint($black, 20%);
&:hover, &:active { &:hover, &:active {
color: shade($m-blue, 20%); color: $m-blue-s;
} }
} }
......
...@@ -275,7 +275,7 @@ header.global { ...@@ -275,7 +275,7 @@ header.global {
&:hover, &:active { &:hover, &:active {
text-decoration: none; text-decoration: none;
color: $m-blue; color: $m-blue-s;
} }
} }
} }
...@@ -295,7 +295,7 @@ header.global { ...@@ -295,7 +295,7 @@ header.global {
display: inline-block; display: inline-block;
a { a {
@include button(simple, $blue); @include button(simple, $m-blue);
@include box-sizing(border-box); @include box-sizing(border-box);
@include border-radius(3px); @include border-radius(3px);
padding: ($baseline/4) ($baseline/2); padding: ($baseline/4) ($baseline/2);
......
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