From 987451aba9608d262542219babd9991fb888fa8b Mon Sep 17 00:00:00 2001 From: Jessica Lawshe Date: Thu, 20 Sep 2018 17:30:50 -0500 Subject: [PATCH] Content pages link color --- services/web/public/stylesheets/app/content_page.less | 9 +++++++++ services/web/public/stylesheets/core/ol-variables.less | 1 + services/web/public/stylesheets/ol-style.less | 1 + 3 files changed, 11 insertions(+) create mode 100644 services/web/public/stylesheets/app/content_page.less diff --git a/services/web/public/stylesheets/app/content_page.less b/services/web/public/stylesheets/app/content_page.less new file mode 100644 index 0000000000..6e6374d944 --- /dev/null +++ b/services/web/public/stylesheets/app/content_page.less @@ -0,0 +1,9 @@ +/* + Styling for content pages + Including: about, home, blog, /for/__, legal, contact, portals +*/ +.content-page { + a:not(.btn) { + color: @link-color-alt; + } +} \ No newline at end of file diff --git a/services/web/public/stylesheets/core/ol-variables.less b/services/web/public/stylesheets/core/ol-variables.less index 15aebd40eb..2890c55976 100644 --- a/services/web/public/stylesheets/core/ol-variables.less +++ b/services/web/public/stylesheets/core/ol-variables.less @@ -49,6 +49,7 @@ @text-small-color : @ol-type-color; @text-color : @ol-type-color; @link-color : @ol-blue; +@link-color-alt : @ol-green; @link-active-color : @ol-dark-green; @link-hover-color : @ol-dark-blue; diff --git a/services/web/public/stylesheets/ol-style.less b/services/web/public/stylesheets/ol-style.less index 4c98846743..455d63016c 100644 --- a/services/web/public/stylesheets/ol-style.less +++ b/services/web/public/stylesheets/ol-style.less @@ -17,5 +17,6 @@ @import "app/about.less"; @import "app/blog-posts.less"; @import "app/cms-page.less"; +@import "app/content_page.less"; @import "app/plans-ol.less"; @import "app/portals.less"; \ No newline at end of file