Skip to content
Snippets Groups Projects
Commit 4c47418d authored by Claas Kazzer's avatar Claas Kazzer :speech_balloon: Committed by Robert Lange
Browse files

refs #20244 [fid_adlr] Visited Links revision

* reinstates visited links color on header and home
* fixes dropdown menu color
* rewrites visited links colors
* streamlines SCSS (a little)
parent 5946b5ec
No related merge requests found
......@@ -187,7 +187,7 @@
font-weight: 700;
letter-spacing: 2px;
line-height: 1.5rem;
padding: 0.75em 1em;
padding: .75em 1em;
text-transform: uppercase;
&:active,
......@@ -279,7 +279,7 @@
&:focus,
&:hover {
color: $azure;
color: $azure !important;
}
@media screen and (min-width: $screen-sm-min) and (max-width: $screen-md-max) {
......@@ -290,7 +290,7 @@
}
@media screen and (min-width: $mobile-navigation-menu-breakpoint + 1px) {
color: $black;
color: $black !important;
font-size: $font-size-menu-lg;
left: 0;
letter-spacing: 2.87px;
......
......@@ -141,7 +141,7 @@ $icon-arrow-font-size: 30px;
// IcoMoon Custom Icons Font - END
// category icons
@import "iconcategory";
@import 'iconcategory';
// category icons - END
//// Base font size
......@@ -153,7 +153,7 @@ $font-size-menu-sm: 40px !default;
$font-size-menu-lg: 25px !default;
$font-size-title: 24px !default;
$font-size-title-lg: 30px !default;
$font-size-title-sub: calc(#{$font-size-title} * 0.85);
$font-size-title-sub: calc(#{$font-size-title} * .85);
$letter-spacing-title: 2.87px;
$line-height-title: 20px;
$line-height-title-sm: 25px;
......@@ -178,7 +178,7 @@ $line-height-submenu: 60px;
// COLORS
$amber: #f7c525; // rgb(247, 197, 37)
$black: #000000; // rgb(0, 0, 0)
$black: #000; // rgb(0, 0, 0)
$azure: #004fe7; // rgb(0, 79, 231) // 'Azure'
$asphalt: #707071; // rgb(112, 112, 113)
$asphalt-dark: #d9d9d9; // rgb(112, 112, 113)
......@@ -201,7 +201,7 @@ $state-success-bg:$brand-info !default;
$state-info-bg: $brand-info !default;
$state-info-text: $asphalt !default;
$state-info-border: $asphalt !default;
$database-link-hover-color: #00359b;
$header-bg-color: $midnight;
//// ALERTS (see states, above, and compiled.scss - Code needs to go there to overwrite defaults)
......@@ -363,7 +363,7 @@ $get-it-link-offset-left: 10px;
//$sidebar-item-hover-bg: transparentize($brand-secondary, .9) !default;
//$sidebar-item-active-hover-bg: transparentize($brand-primary, .1) !default;
$a-visited-color: initial !default;
$a-visited-color: $black !default;
//// ELEMENT COLORS - END
// COLORS - END
......@@ -481,4 +481,4 @@ $screen-xl-min: $screen-xl !default;
$screen-lg-max: $screen-xl - 1 !default;
@import '../../bootstrap3/scss/vendor/bootstrap/variables';
$mobile-navigation-menu-breakpoint: $screen-md-max !default; // use mobile navigation until this width
\ No newline at end of file
$mobile-navigation-menu-breakpoint: $screen-md-max !default; // use mobile navigation until this width
This diff is collapsed.
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