diff --git a/css/executive.css b/css/executive.css index d659363..6983ff1 100644 --- a/css/executive.css +++ b/css/executive.css @@ -10701,14 +10701,15 @@ h2 { #content #page-press .entry-content #presstop .post .col-sm-6:nth-child(2) .moretag:hover { background-color: #39AAD3; } +#content #page-press .entry-content #presstop .entry-header h4.entry-title a { + color: #3d3d3d !important; +} #content #page-press .entry-content #presstop .entry-header a { text-decoration: none; } #content #page-press .entry-content #presstop .entry-header a:hover { - color: rgba(38, 173, 228, 0.9); -} -#content #page-press .entry-content #presstop .entry-header a:hover h4 { - color: rgba(38, 173, 228, 0.9) !important; + color: #3d3d3d; + text-decoration: underline; } #content #page-press h4.entry-title { line-height: 1.4em; @@ -11726,7 +11727,7 @@ h1.entry-title { margin-top: 2px; } .panel-grid .uc-cal.uc-listcal .uc-cal-event { - padding-left: 1em; + padding-left: 2em; } .panel-grid .uc-cal.uc-listcal .uc-cal-event-title { margin-top: 0px !important; @@ -11770,17 +11771,24 @@ h1.entry-title { font-family: helvetica, arial, sans-serif; } -#page-page-builder #main, #page-page-builder-cards #main { +.subpage .widget .uc-cal.uc-listcal { + padding-left: 2.7em !important; +} +.subpage .widget .uc-cal.uc-listcal .uc-cal-event-date { + left: -2.7em !important; +} + +#page-page-builder #main, #page-page-builder-cards #main, #error404 #main { padding: 15px 50px; border: 1px solid #ededed; } -#page-page-builder #main .uc-cal-event-month, #page-page-builder-cards #main .uc-cal-event-month { +#page-page-builder #main .uc-cal-event-month, #page-page-builder-cards #main .uc-cal-event-month, #error404 #main .uc-cal-event-month { border: none !important; } -#page-page-builder #main .uc-cal-event-day, #page-page-builder-cards #main .uc-cal-event-day { +#page-page-builder #main .uc-cal-event-day, #page-page-builder-cards #main .uc-cal-event-day, #error404 #main .uc-cal-event-day { border: none !important; } -#page-page-builder #main h3.widget-title, #page-page-builder-cards #main h3.widget-title { +#page-page-builder #main h3.widget-title, #page-page-builder-cards #main h3.widget-title, #error404 #main h3.widget-title { font-size: 24px; margin-bottom: 25px; } @@ -11932,3 +11940,8 @@ body.home #content .panel-grid .widget.widget_metaslider_widget ul li { margin-top: -1px; width: 20px; } + +#error404 .page-content .col-sm-6, #error403 .page-content .col-sm-6 { + padding: 0px; + width: 60%; +} diff --git a/functions.php b/functions.php index d292878..40e3819 100644 --- a/functions.php +++ b/functions.php @@ -29,13 +29,13 @@ add_action( 'wp_enqueue_scripts', 'starterkit_scripts', 99); // Replaces the excerpt "more" text by a link function new_excerpt_more($more) { global $post; - return '...  Continue Reading (Excerpt Filter)'; + return '...  Continue Reading'; } add_filter('excerpt_more', 'new_excerpt_more'); add_filter( 'the_content_more_link', 'modify_read_more_link' ); function modify_read_more_link() { -return 'Continue Reading (Content Filter)'; +return 'Continue Reading'; } diff --git a/sass/executive.scss b/sass/executive.scss index 03c64a8..8907fe9 100644 --- a/sass/executive.scss +++ b/sass/executive.scss @@ -614,15 +614,20 @@ $lightgrey: rgba($lightgrey_hex, $transparency); } .entry-header { + h4.entry-title { + a { + color: #3d3d3d !important; + } + } + a { text-decoration:none; &:hover { - color:rgba(38, 173, 228, 0.9); + color:#3d3d3d; + text-decoration: underline; + - h4 { - color: rgba(38, 173, 228, 0.9) !important; - } } } } @@ -1405,7 +1410,7 @@ padding:8px 12px 4px &.uc-listcal { .uc-cal-event { - padding-left:1em; + padding-left:2em; } .uc-cal-event-title { margin-top:0px !important; @@ -1463,7 +1468,16 @@ padding:8px 12px 4px } } -#page-page-builder, #page-page-builder-cards { +.subpage .widget { + .uc-cal.uc-listcal { + padding-left:2.7em !important; + .uc-cal-event-date { + left:-2.7em !important; + } + } +} + +#page-page-builder, #page-page-builder-cards, #error404 { #main { padding:15px 50px; border:1px solid #ededed; @@ -1682,6 +1696,15 @@ body.home { } } +#error404, #error403 { + .page-content { + .col-sm-6 { + padding:0px; + width:60%; + } + } +} +