Skip to content
Snippets Groups Projects
Commit 9e7f617e authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2125621 by davidhernandez, mgifford, jessebeach, mparker17, anandps:...

Issue #2125621 by davidhernandez, mgifford, jessebeach, mparker17, anandps: Fixed Contrast between title/slogan and header is too low.
parent 6c574a11
No related branches found
Tags 9.3.0-alpha1
No related merge requests found
......@@ -28,8 +28,8 @@
'default' => array(
'title' => t('Blue Lagoon (default)'),
'colors' => array(
'top' => '#0779bf',
'bottom' => '#48a9e4',
'top' => '#055a8e',
'bottom' => '#1d84c3',
'bg' => '#ffffff',
'sidebar' => '#f6f6f2',
'sidebarborders' => '#f9f9f9',
......
......@@ -20,13 +20,13 @@ body {
border-bottom: 1px solid #ffffff;
}
#header {
background-color: #48a9e4;
background-image: -moz-linear-gradient(top, #0779bf 0%, #48a9e4 100%);
background-image: -ms-linear-gradient(top, #0779bf 0%, #48a9e4 100%);
background-image: -o-linear-gradient(top, #0779bf 0%, #48a9e4 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #0779bf), color-stop(1, #48a9e4));
background-image: -webkit-linear-gradient(top, #0779bf 0%, #48a9e4 100%);
background-image: linear-gradient(top, #0779bf 0%, #48a9e4 100%);
background-color: #1d84c3;
background-image: -moz-linear-gradient(to bottom, #055a8e 0%, #1d84c3 100%);
background-image: -ms-linear-gradient(to bottom, #055a8e 0%, #1d84c3 100%);
background-image: -o-linear-gradient(to bottom, #055a8e 0%, #1d84c3 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.7, #055a8e), color-stop(1, #1d84c3));
background-image: -webkit-linear-gradient(to bottom, #055a8e 0%, #1d84c3 100%);
background-image: linear-gradient(to bottom, #055a8e 0%, #1d84c3 100%);
}
a,
.link {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment