diff --git a/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/content.scssc b/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/content.scssc index 9ffa566..63790a2 100644 Binary files a/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/content.scssc and b/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/content.scssc differ diff --git a/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/uup.scssc b/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/uup.scssc index 3e8b314..e09b831 100644 Binary files a/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/uup.scssc and b/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/uup.scssc differ diff --git a/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/variables.scssc b/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/variables.scssc index dfe2ac7..7c4d30a 100644 Binary files a/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/variables.scssc and b/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/variables.scssc differ diff --git a/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/widgets.scssc b/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/widgets.scssc index db0e21a..4e3f7e1 100644 Binary files a/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/widgets.scssc and b/.sass-cache/404108d960398fd8a0a888a545ab2c44cdda9bc8/widgets.scssc differ diff --git a/.sass-cache/d1a548f5ef9f2ce138ebbc3eb924a26f1716968b/style.scssc b/.sass-cache/d1a548f5ef9f2ce138ebbc3eb924a26f1716968b/style.scssc index 7051cc7..6c0f351 100644 Binary files a/.sass-cache/d1a548f5ef9f2ce138ebbc3eb924a26f1716968b/style.scssc and b/.sass-cache/d1a548f5ef9f2ce138ebbc3eb924a26f1716968b/style.scssc differ diff --git a/.sass-cache/d1a548f5ef9f2ce138ebbc3eb924a26f1716968b/variables.scssc b/.sass-cache/d1a548f5ef9f2ce138ebbc3eb924a26f1716968b/variables.scssc new file mode 100644 index 0000000..2c76a6d Binary files /dev/null and b/.sass-cache/d1a548f5ef9f2ce138ebbc3eb924a26f1716968b/variables.scssc differ diff --git a/.sass-cache/f11b1ad230ced2710ab733a38ef6447b0568d470/style.scssc b/.sass-cache/f11b1ad230ced2710ab733a38ef6447b0568d470/style.scssc index 47e038b..697d56e 100644 Binary files a/.sass-cache/f11b1ad230ced2710ab733a38ef6447b0568d470/style.scssc and b/.sass-cache/f11b1ad230ced2710ab733a38ef6447b0568d470/style.scssc differ diff --git a/_notes/dwsync.xml b/_notes/dwsync.xml index 409dee3..f4d9ca0 100644 --- a/_notes/dwsync.xml +++ b/_notes/dwsync.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/blue-var.scss b/blue-var.scss deleted file mode 100644 index 119a4d0..0000000 --- a/blue-var.scss +++ /dev/null @@ -1,12 +0,0 @@ -// Blue - - - -/* -$nav2_txtColor: ; -$nav2_txtHover: ; -$nav2_bg: ; -$nav2_bgHover: ; -$nav2_arrowColor: ; -$nav2_arrowHover: ; -*/ \ No newline at end of file diff --git a/blue.scss b/blue.scss deleted file mode 100644 index 13c0aa8..0000000 --- a/blue.scss +++ /dev/null @@ -1,11 +0,0 @@ -// Blue - -$header_border: #273a60; - -$title_bg: #0b1d42; - -$title_parent: #fff; -$title_parentHover: pink; - -$title_txt: #fff; -$title_txtHover: pink; diff --git a/bootstrap-sass.jpg b/bootstrap-sass.jpg new file mode 100644 index 0000000..7b40835 Binary files /dev/null and b/bootstrap-sass.jpg differ diff --git a/color.scss b/color.scss deleted file mode 100644 index 2ef396d..0000000 --- a/color.scss +++ /dev/null @@ -1,21 +0,0 @@ -#uc-header { - border-bottom-color:$header_border; -} - -#masthead { - background-color:$title_bg; - - #uc-site-parent a { - color:$title_parent; - &:hover { - color:$title_parentHover; - } - } - #uc-site-title a { - color:$title_txt; - - &:hover { - color:$title_txtHover; - } - } -} \ No newline at end of file diff --git a/functions.php b/functions.php index 7a2264d..2686dfc 100644 --- a/functions.php +++ b/functions.php @@ -8,10 +8,10 @@ // any custom js or css function sherman_scripts() { - wp_enqueue_script( 'sherman-js', get_stylesheet_directory_uri() . '/javascripts/min/sherman.min.js', array( 'jquery' )); + wp_enqueue_script( 'sherman-js', get_stylesheet_directory_uri() . '/javascripts/min/sherman.min.js', array( 'jquery' )); } -add_action( 'wp_enqueue_scripts', 'sherman_scripts' ); +add_action( 'wp_enqueue_scripts', 'sherman_scripts'); @@ -23,12 +23,20 @@ function sherman_remove_theme_features() { } add_action( 'init', 'sherman_remove_theme_features' ); +function sherman_customize_register( $wp_customize ) { + $wp_customize->remove_section('colors'); + $wp_customize->remove_section('background_image'); + $wp_customize->remove_section('nav'); +} +add_action( 'customize_register', 'sherman_customize_register' ); -// Add Options for Sherman-specific Color options. + +// Add Options for Sherman-specific Color options. +/* function sherman_titlebar_register( $wp_customize ){ $wp_customize->add_setting( 'titlebarColor', //Give it a SERIALIZED name (so all theme settings can live under one db record) @@ -117,5 +125,5 @@ function sherman_titlebar_register( $wp_customize ){ ); } add_action( 'customize_register', 'sherman_titlebar_register' , 34); - +*/ ?> \ No newline at end of file diff --git a/sass/_notes/dwsync.xml b/sass/_notes/dwsync.xml index e5b9e67..2d19acf 100644 --- a/sass/_notes/dwsync.xml +++ b/sass/_notes/dwsync.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/sass/style.scss b/sass/style.scss index 0772fd8..3ca4f77 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -10,18 +10,6 @@ @import "variables.scss"; -$uc-ecw-month-bg: #f5f5f5; -$uc-ecw-month-color: #2e77b0; -$uc-ecw-day-bg: #f5f5f5; -$uc-ecw-day-color: #454545; - -$footers-border-color: #bd2429; -$footers-border-width: 1px 0 0 0; - -$footers-margin: 0; -$footers-bg: #d5d5d5; -$footers-link-color: #5a595a; -$footers-link-hover: #343434; @import "../../cornerstone/style.scss"; @@ -203,13 +191,24 @@ $footers-link-hover: #343434; margin-top:1em; } + h3 { + margin-top:2em; + font-weight:bold; + color:#4C608A; + } + } } .col-sm-12 .page { padding-left:4em; padding-right:4em; } - +@media (max-width: 767px) { + #content .page { + padding-left:1em!important; + padding-right:1em!important; + } +} #page-home { @@ -222,4 +221,8 @@ $footers-link-hover: #343434; } #mega-footer+#footer { border-top:none; +} + +#content .btn { + border-radius:5px; } \ No newline at end of file diff --git a/sass/variables.scss b/sass/variables.scss index 127f0be..5c71075 100644 --- a/sass/variables.scss +++ b/sass/variables.scss @@ -2,30 +2,30 @@ SHERMAN variables */ -$header_border: #273a60; +$uc-ecw-month-bg: #f5f5f5; +$uc-ecw-month-color: #2e77b0; +$uc-ecw-day-bg: #f5f5f5; +$uc-ecw-day-color: #454545; -//$title_bg: #0b1d42; +$footers-border-color: #bd2429; +$footers-border-width: 1px 0 0 0; -$title_parent: #fff; -$title_parentHover: yellow; +$footers-margin: 0; +$footers-bg: #d5d5d5; +$footers-link-color: #5a595a; +$footers-link-hover: #343434; -$title_txt: #fff; -$title_txtHover: pink; -/* -$navbar_bg: transparent; +$header_border: #273a60; + +$title_parent: #fff; +$title_parentHover: yellow; -$nav1_txt: rgba(255,255,255,.8); -$nav1_txtActive: #fff; -$nav1_txtHover: #fff; -$nav1_bg: yellow; -$nav1_bgActive: blue; -$nav1_bgHover: green; -$nav1_arrow: rgba(255,255,255,.8); -$nav1_arrowHover: #fff; +$title_txt: #fff; +$title_txtHover: pink; -*/ +$contentPadding: 31px 0 4em; $headings-font-weight: bold; @@ -49,12 +49,6 @@ $navbar-default-link-active-bg: transparent; $dropdown-bg: #e9e9e9 ; -/* -$dropdown-border: rgba(0,0,0,.15) ; -$dropdown-fallback-border: #ccc ; -$dropdown-divider-bg: #e5e5e5 ; -*/ - $dropdown-link-color: #444 ; $dropdown-link-hover-color: #fff ; $dropdown-link-hover-bg: #b8000f ; @@ -70,29 +64,35 @@ $widget-head-border-width: 0; $widget-head-size: 150%; $widget-head-color: #4d628c; +$uc-ecw-month-bg: #f5f5f5; +$uc-ecw-month-color: #2e77b0; +$uc-ecw-day-bg: #f5f5f5; +$uc-ecw-day-color: #454545; + + $font-size-base: 14px !default; $font-size-h1: ceil(($font-size-base * 1.7)); -$font-size-h2: floor(($font-size-base * 1.5)) !default; // ~30px -$font-size-h3: ceil(($font-size-base * 1.4)) !default; // ~24px -$font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px +$font-size-h2: floor(($font-size-base * 1.5)) ; +$font-size-h3: ceil(($font-size-base * 1.15)) ; +$font-size-h4: ceil(($font-size-base * 1.15)) ; $font-size-h5: $font-size-base !default; $font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px -/* -$font-size-h2: -$font-size-h3: -$font-size-h4: -$font-size-h5: -$font-size-h6: -/**/ + $headings-font-weight: 500; +$link-color: #388ac3; +$link-hover-color: darken($link-color, 15%) !default; +$footers-border-color: #bd2429; +$footers-border-width: 1px 0 0 0; -$link-color: #388ac3; -$link-hover-color: darken($link-color, 15%) !default; +$footers-margin: 0; +$footers-bg: #d5d5d5; +$footers-link-color: #444; +$footers-link-hover: #000; @mixin searchform(){ @@ -131,4 +131,8 @@ $link-hover-color: darken($link-color, 15%) !default; } } } +.ie7 .searchform .formcontrol, +.ie7 .searchform .btn { + background-color:#3e4a67!important; +} } \ No newline at end of file diff --git a/screenshot.jpg b/screenshot.jpg new file mode 100644 index 0000000..d1ac058 Binary files /dev/null and b/screenshot.jpg differ diff --git a/screenshot.png b/screenshot.png deleted file mode 100644 index 7f559dc..0000000 Binary files a/screenshot.png and /dev/null differ diff --git a/style.css b/style.css index 8ac071f..4c130a5 100644 --- a/style.css +++ b/style.css @@ -9,31 +9,6 @@ SHERMAN variables */ /* -$navbar_bg: transparent; - -$nav1_txt: rgba(255,255,255,.8); -$nav1_txtActive: #fff; -$nav1_txtHover: #fff; -$nav1_bg: yellow; -$nav1_bgActive: blue; -$nav1_bgHover: green; -$nav1_arrow: rgba(255,255,255,.8); -$nav1_arrowHover: #fff; - -*/ -/* -$dropdown-border: rgba(0,0,0,.15) ; -$dropdown-fallback-border: #ccc ; -$dropdown-divider-bg: #e5e5e5 ; -*/ -/* -$font-size-h2: -$font-size-h3: -$font-size-h4: -$font-size-h5: -$font-size-h6: -/**/ -/* Theme Name: Cornerstone Author: UConn Web Development Lab Description: Parent theme for University of Connecticut @@ -1636,12 +1611,12 @@ h2, .h2 { /* line 49, ../../../global/bootstrap-sass-master/assets/stylesheets/bootstrap/_type.scss */ h3, .h3 { - font-size: 20px; + font-size: 17px; } /* line 50, ../../../global/bootstrap-sass-master/assets/stylesheets/bootstrap/_type.scss */ h4, .h4 { - font-size: 18px; + font-size: 17px; } /* line 51, ../../../global/bootstrap-sass-master/assets/stylesheets/bootstrap/_type.scss */ @@ -8520,7 +8495,7 @@ code { /* POSTS --------------------------------------------------------------*/ -/* line 44, ../../cornerstone/sass/content.scss */ +/* line 43, ../../cornerstone/sass/content.scss */ .post { background-color: white; padding: 1em; @@ -8532,45 +8507,56 @@ code { /*-------------------------------------------------------------- 10.1 Posts and pages --------------------------------------------------------------*/ -/* line 57, ../../cornerstone/sass/content.scss */ +/* line 56, ../../cornerstone/sass/content.scss */ .hentry { margin: 0 0 1.5em; } -/* line 61, ../../cornerstone/sass/content.scss */ +/* line 60, ../../cornerstone/sass/content.scss */ .byline, .updated { display: none; } -/* line 65, ../../cornerstone/sass/content.scss */ +/* line 64, ../../cornerstone/sass/content.scss */ .single .byline, .group-blog .byline { display: inline; } -/* line 70, ../../cornerstone/sass/content.scss */ +/* line 69, ../../cornerstone/sass/content.scss */ .page-content, .entry-content, .entry-summary { margin: 1.5em 0 0; } -/* line 73, ../../cornerstone/sass/content.scss */ +/* line 72, ../../cornerstone/sass/content.scss */ .page-links { clear: both; margin: 0 0 1.5em; } -/* line 78, ../../cornerstone/sass/content.scss */ +/* line 77, ../../cornerstone/sass/content.scss */ .nav-next { text-align: right; } +/* line 84, ../../cornerstone/sass/content.scss */ +.entry-content a, +.entry-footer a { + text-decoration: underline; +} + +/* line 87, ../../cornerstone/sass/content.scss */ +.nav a { + text-decoration: none !important; +} + /*-------------------------------------------------------------- 10.2 Asides --------------------------------------------------------------*/ -/* line 87, ../../cornerstone/sass/content.scss */ +/* line 97, ../../cornerstone/sass/content.scss */ .blog .format-aside .entry-title, .archive .format-aside .entry-title { display: none; @@ -8579,47 +8565,46 @@ code { /*-------------------------------------------------------------- 10.3 Comments --------------------------------------------------------------*/ -/* line 100, ../../cornerstone/sass/content.scss */ +/* line 110, ../../cornerstone/sass/content.scss */ .comment-list { padding: 0; list-style-type: none; } -/* line 104, ../../cornerstone/sass/content.scss */ +/* line 114, ../../cornerstone/sass/content.scss */ .comment-list ol { list-style-type: none; } -/* line 108, ../../cornerstone/sass/content.scss */ +/* line 118, ../../cornerstone/sass/content.scss */ .comment { padding: 1em; border-top: 1px solid #ccc; } -/* line 112, ../../cornerstone/sass/content.scss */ +/* line 122, ../../cornerstone/sass/content.scss */ .comment.thread-odd { background-color: #f5f5f5; } -/* line 116, ../../cornerstone/sass/content.scss */ +/* line 126, ../../cornerstone/sass/content.scss */ .comment-content a { word-wrap: break-word; } /* comments form */ -/* line 121, ../../cornerstone/sass/content.scss */ +/* line 131, ../../cornerstone/sass/content.scss */ .form-submit { display: none; } -/* line 126, ../../cornerstone/sass/content.scss */ +/* line 136, ../../cornerstone/sass/content.scss */ .comment-form-author, .comment-form-email, .comment-form-url { width: 50%; } -/* In Page Calendars */ /* - - - - - - - - - - - - - - - - - - - == Captions - - - - - - - - - - - - - - - - - - - */ @@ -8782,65 +8767,78 @@ object { .widget a:hover { color: #276088; } -/* line 29, ../../cornerstone/sass/widgets.scss */ +/* line 37, ../../cornerstone/sass/widgets.scss */ +.widget .btn-primary, +.widget .btn-success, +.widget .btn-info, +.widget .btn-warning, +.widget .btn-danger, +.widget .btn-primary:hover, +.widget .btn-success:hover, +.widget .btn-info:hover, +.widget .btn-warning:hover, +.widget .btn-danger:hover { + color: white; +} +/* line 43, ../../cornerstone/sass/widgets.scss */ .widget .widget-head { padding: 0.5em 0.5em 0.5em 1em; border: 1px solid transparent; border-width: 0; border-color: #eaeaea; } -/* line 36, ../../cornerstone/sass/widgets.scss */ +/* line 50, ../../cornerstone/sass/widgets.scss */ .widget .widget-head h2 { font-size: 150%; margin: 0; color: #4d628c; } -/* line 44, ../../cornerstone/sass/widgets.scss */ +/* line 58, ../../cornerstone/sass/widgets.scss */ .widget form { margin: 1em; } -/* line 48, ../../cornerstone/sass/widgets.scss */ +/* line 62, ../../cornerstone/sass/widgets.scss */ .widget ul, .widget ol { list-style-type: none; padding: 0; margin: 1em; } -/* line 53, ../../cornerstone/sass/widgets.scss */ +/* line 67, ../../cornerstone/sass/widgets.scss */ .widget ul li, .widget ol li { margin-bottom: .75em; } -/* line 56, ../../cornerstone/sass/widgets.scss */ +/* line 70, ../../cornerstone/sass/widgets.scss */ .widget ul li ul, .widget ol li ul { padding: 0; margin: .5em 0 .5em 2em; list-style-type: disc; } -/* line 61, ../../cornerstone/sass/widgets.scss */ +/* line 75, ../../cornerstone/sass/widgets.scss */ .widget ul li ul li, .widget ol li ul li { margin-bottom: .5em; } -/* line 63, ../../cornerstone/sass/widgets.scss */ +/* line 77, ../../cornerstone/sass/widgets.scss */ .widget ul li ul li ul, .widget ol li ul li ul { list-style-type: circle; } -/* line 68, ../../cornerstone/sass/widgets.scss */ +/* line 82, ../../cornerstone/sass/widgets.scss */ .widget ul li ol, .widget ol li ol { padding: 0; margin: .5em 0 .5em 2em; list-style-type: decimal; } -/* line 72, ../../cornerstone/sass/widgets.scss */ +/* line 86, ../../cornerstone/sass/widgets.scss */ .widget ul li ol li, .widget ol li ol li { margin-bottom: .5em; } /* Make sure select elements fit in widgets */ -/* line 84, ../../cornerstone/sass/widgets.scss */ +/* line 98, ../../cornerstone/sass/widgets.scss */ .widget select { max-width: 100%; } -/* line 88, ../../cornerstone/sass/widgets.scss */ +/* line 102, ../../cornerstone/sass/widgets.scss */ .widget { /* === CORE WP Widgets */ @@ -8849,58 +8847,64 @@ object { /* === UCONN Widgets */ } -/* line 99, ../../cornerstone/sass/widgets.scss */ +/* line 113, ../../cornerstone/sass/widgets.scss */ .widget.widget_text .textwidget { margin: 1em; } -/* line 104, ../../cornerstone/sass/widgets.scss */ +/* line 118, ../../cornerstone/sass/widgets.scss */ .widget.widget_tag_cloud .tagcloud { margin: 1em; } -/* line 114, ../../cornerstone/sass/widgets.scss */ +/* line 127, ../../cornerstone/sass/widgets.scss */ +.widget.widget_black_studio_tinymce .textwidget { + margin: 1em; +} +/* line 132, ../../cornerstone/sass/widgets.scss */ .widget.simple-social-icons ul { margin: 0.5em !important; } -/* line 116, ../../cornerstone/sass/widgets.scss */ +/* line 134, ../../cornerstone/sass/widgets.scss */ .widget.simple-social-icons ul li { margin: 0.5em !important; } -/* line 122, ../../cornerstone/sass/widgets.scss */ +/* line 140, ../../cornerstone/sass/widgets.scss */ .widget.widget_rcpt ul { margin: 0; } -/* line 125, ../../cornerstone/sass/widgets.scss */ +/* line 143, ../../cornerstone/sass/widgets.scss */ .widget.widget_rcpt ul .rcpt_item_title { padding: .5em 5% 0; font-weight: bold; } -/* line 128, ../../cornerstone/sass/widgets.scss */ +/* line 146, ../../cornerstone/sass/widgets.scss */ .widget.widget_rcpt ul .rcpt_item_title .rcpt_item_image { margin-left: -9%; margin-bottom: 1em; width: 117%; } -/* line 132, ../../cornerstone/sass/widgets.scss */ +/* line 150, ../../cornerstone/sass/widgets.scss */ .widget.widget_rcpt ul .rcpt_item_title .rcpt_item_image img { width: 100%; } -/* line 137, ../../cornerstone/sass/widgets.scss */ +/* line 155, ../../cornerstone/sass/widgets.scss */ .widget.widget_rcpt ul .rcpt_item_excerpt { margin: .5em 5% 1em; } -/* line 140, ../../cornerstone/sass/widgets.scss */ +/* line 158, ../../cornerstone/sass/widgets.scss */ .widget.widget_rcpt ul .rcpt_item_date { margin: .5em 5% 1em; } -/* line 146, ../../cornerstone/sass/widgets.scss */ -.widget.widget_sp_image img { - max-height: 200px; +/* line 164, ../../cornerstone/sass/widgets.scss */ +.widget.widget_metaslider_widget { + padding: 0; + background-color: transparent; + border: none; } -/* line 155, ../../cornerstone/sass/widgets.scss */ +/* line 175, ../../cornerstone/sass/widgets.scss */ .widget.uc-contact-widget th { white-space: nowrap; } -/* line 159, ../../cornerstone/sass/widgets.scss */ +/* line 179, ../../cornerstone/sass/widgets.scss */ .widget.uc-ecw { padding-bottom: 1em; } @@ -8999,11 +9003,11 @@ object { .widget.uc-ecw .uc-cal.uc-listcal .uc-cal-list a.uc-cal-event:hover .uc-cal-event-time { color: #4a96cb; } -/* line 162, ../../cornerstone/sass/widgets.scss */ +/* line 182, ../../cornerstone/sass/widgets.scss */ .widget.uc-ecw .uc-cal-link { margin: 1em; } -/* line 168, ../../cornerstone/sass/widgets.scss */ +/* line 188, ../../cornerstone/sass/widgets.scss */ .widget.uc-hours-widget caption { padding: .5em; } @@ -9147,59 +9151,60 @@ q:before, table q:after { .uup-list .has-image .uup-thumbnail { display: block; width: 150px; + height: 150px; float: left; position: relative; left: -170px; margin-right: -150px; } -/* line 24, ../../cornerstone/sass/uup.scss */ +/* line 25, ../../cornerstone/sass/uup.scss */ .uup-list a.uup-user { float: left; } -/* line 27, ../../cornerstone/sass/uup.scss */ +/* line 28, ../../cornerstone/sass/uup.scss */ .uup-list .uup-item { margin-bottom: 1em; *zoom: 1; } -/* line 32, ../../cornerstone/sass/uup.scss */ +/* line 33, ../../cornerstone/sass/uup.scss */ .uup-list .uup-item:after, .uup-list .uup-item:before { content: ''; display: table; } -/* line 36, ../../cornerstone/sass/uup.scss */ +/* line 37, ../../cornerstone/sass/uup.scss */ .uup-list .uup-item:after { clear: both; } -/* line 40, ../../cornerstone/sass/uup.scss */ +/* line 41, ../../cornerstone/sass/uup.scss */ .uup-list .uup-item .uup-text { display: block; } -/* line 43, ../../cornerstone/sass/uup.scss */ +/* line 44, ../../cornerstone/sass/uup.scss */ .uup-list .uup-item .uup-text > span { display: block; } -/* line 47, ../../cornerstone/sass/uup.scss */ +/* line 48, ../../cornerstone/sass/uup.scss */ .uup-list .uup-item .uup-text .uup-name { font-weight: bold; } -/* line 53, ../../cornerstone/sass/uup.scss */ +/* line 54, ../../cornerstone/sass/uup.scss */ .uup-list .uup-item .uup-text .uup-name .uup-last:before { content: ' '; } -/* line 85, ../../cornerstone/sass/uup.scss */ +/* line 86, ../../cornerstone/sass/uup.scss */ .uup-index-table .uup-table-name.table-has-image .uup-table-thumbnail { display: block; width: 75px; float: left; margin: 0 1em 1em 0 !important; } -/* line 92, ../../cornerstone/sass/uup.scss */ +/* line 93, ../../cornerstone/sass/uup.scss */ .uup-index-table .uup-table-name.table-has-image .uup-name { float: left; display: block; } -/* line 100, ../../cornerstone/sass/uup.scss */ +/* line 101, ../../cornerstone/sass/uup.scss */ .uup-index-table .uup-table-name .uup-last:before { content: ' '; } @@ -9306,11 +9311,11 @@ body.sticky #footers { } /* line 29, ../../cornerstone/sass/footer.scss */ #mega-footer .widget a { - color: #5a595a; + color: #444444; } /* line 31, ../../cornerstone/sass/footer.scss */ #mega-footer .widget a:hover { - color: #343434; + color: black; } /* line 35, ../../cornerstone/sass/footer.scss */ #mega-footer .widget .widget-head { @@ -9322,15 +9327,15 @@ body.sticky #footers { /* line 43, ../../cornerstone/sass/footer.scss */ #footer { padding: 1.5em 0; - color: #5a595a; + color: #444444; } /* line 46, ../../cornerstone/sass/footer.scss */ #footer a { - color: #5a595a; + color: #444444; } /* line 48, ../../cornerstone/sass/footer.scss */ #footer a:hover { - color: #343434; + color: black; } /* line 53, ../../cornerstone/sass/footer.scss */ @@ -9354,17 +9359,17 @@ body.sticky #footers { display: none; } -/* line 31, ../sass/style.scss */ +/* line 19, ../sass/style.scss */ #uc-header { border-bottom-color: #273a60; } -/* line 35, ../sass/style.scss */ +/* line 23, ../sass/style.scss */ #content { background-color: #fafafa; } -/* line 39, ../sass/style.scss */ +/* line 27, ../sass/style.scss */ #masthead { background: #142548; background: -moz-linear-gradient(top, #142548 0%, #071839 100%); @@ -9375,19 +9380,19 @@ body.sticky #footers { background: linear-gradient(to bottom, #142548 0%, #071839 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#142548', endColorstr='#071839',GradientType=0 ); } -/* line 50, ../sass/style.scss */ +/* line 38, ../sass/style.scss */ #masthead #uc-site-parent a { color: white; } -/* line 52, ../sass/style.scss */ +/* line 40, ../sass/style.scss */ #masthead #uc-site-parent a:hover { color: yellow; } -/* line 56, ../sass/style.scss */ +/* line 44, ../sass/style.scss */ #masthead #uc-site-title a { color: white; } -/* line 59, ../sass/style.scss */ +/* line 47, ../sass/style.scss */ #masthead #uc-site-title a:hover { color: pink; } @@ -9426,34 +9431,39 @@ body.sticky #footers { color: #fff; background-color: rgba(153, 153, 153, 0.2); } -/* line 66, ../sass/style.scss */ +/* line 135, ../sass/variables.scss */ +#masthead .ie7 .searchform .formcontrol, +#masthead .ie7 .searchform .btn { + background-color: #3e4a67 !important; +} +/* line 54, ../sass/style.scss */ #masthead #site-navigation { border-bottom: none; border-width: 0px; } -/* line 73, ../sass/style.scss */ +/* line 61, ../sass/style.scss */ #masthead #site-navigation .navbar-header .navbar-toggle { color: rgba(255, 255, 255, 0.7); border-color: rgba(255, 255, 255, 0.1); background-color: rgba(0, 0, 0, 0.15); } -/* line 79, ../sass/style.scss */ +/* line 67, ../sass/style.scss */ #masthead #site-navigation .navbar-header .navbar-toggle .menu-icon .icon-bar { background-color: rgba(255, 255, 255, 0.5); } -/* line 84, ../sass/style.scss */ +/* line 72, ../sass/style.scss */ #masthead #site-navigation .navbar-header .navbar-toggle:hover { background-color: rgba(0, 0, 0, 0.3); } -/* line 88, ../sass/style.scss */ +/* line 76, ../sass/style.scss */ #masthead #site-navigation .navbar-header .navbar-toggle:active { background-color: rgba(0, 0, 0, 0.6); } -/* line 93, ../sass/style.scss */ +/* line 81, ../sass/style.scss */ #masthead #site-navigation .navbar-header .navbar-brand { color: white; } -/* line 98, ../sass/style.scss */ +/* line 86, ../sass/style.scss */ #masthead #site-navigation .navbar-collapse { padding: 0; } @@ -9492,7 +9502,12 @@ body.sticky #footers { color: #fff; background-color: rgba(153, 153, 153, 0.2); } -/* line 105, ../sass/style.scss */ +/* line 135, ../sass/variables.scss */ +#masthead #site-navigation .navbar-collapse .nav .ie7 .searchform .formcontrol, +#masthead #site-navigation .navbar-collapse .nav .ie7 .searchform .btn { + background-color: #3e4a67 !important; +} +/* line 93, ../sass/style.scss */ #masthead #site-navigation .navbar-collapse .nav > li.open:after { content: ''; display: block; @@ -9505,7 +9520,7 @@ body.sticky #footers { border: 6px solid transparent; border-bottom-color: #e9e9e9; } -/* line 120, ../sass/style.scss */ +/* line 108, ../sass/style.scss */ #masthead #site-navigation .navbar-collapse .nav .dropdown-menu { padding: 0; margin: 0; @@ -9513,56 +9528,56 @@ body.sticky #footers { -webkit-box-shadow: none; box-shadow: none; } -/* line 126, ../sass/style.scss */ +/* line 114, ../sass/style.scss */ #masthead #site-navigation .navbar-collapse .nav .dropdown-menu a { padding-top: 10px; padding-bottom: 10px; } @media (min-width: 768px) { - /* line 141, ../sass/style.scss */ + /* line 129, ../sass/style.scss */ #masthead #site-navigation .navbar-collapse .nav > li:first-child > a { padding-left: 0; } } @media (max-width: 767px) { - /* line 149, ../sass/style.scss */ + /* line 137, ../sass/style.scss */ #masthead #site-navigation .navbar-collapse { padding-left: 15px; padding-right: 15px; } - /* line 153, ../sass/style.scss */ + /* line 141, ../sass/style.scss */ #masthead #site-navigation .navbar-collapse .nav > li.open:after { display: none; } } -/* line 163, ../sass/style.scss */ +/* line 151, ../sass/style.scss */ .widget .widget-head .widget-title { font-weight: normal; } -/* line 169, ../sass/style.scss */ +/* line 157, ../sass/style.scss */ .uc-cal-event-month { padding-bottom: 0 !important; padding-top: 0.6em !important; } -/* line 173, ../sass/style.scss */ +/* line 161, ../sass/style.scss */ .uc-cal-event-day { padding-top: 0.3em !important; } -/* line 179, ../sass/style.scss */ +/* line 167, ../sass/style.scss */ #main { border: 1px solid #eee; } -/* line 184, ../sass/style.scss */ +/* line 172, ../sass/style.scss */ #content .page { padding-top: 30px; padding-bottom: 4em; } -/* line 188, ../sass/style.scss */ +/* line 176, ../sass/style.scss */ #content .page h1 { color: #ac0000; border-bottom: 1px solid #ddd; @@ -9570,37 +9585,55 @@ body.sticky #footers { font-weight: normal; margin-top: 2.5em; } -/* line 195, ../sass/style.scss */ +/* line 183, ../sass/style.scss */ #content .page .entry-header h1 { margin-top: 20px; } -/* line 198, ../sass/style.scss */ +/* line 186, ../sass/style.scss */ #content .page h2 { margin-top: 2.5em; margin-bottom: 1em; } -/* line 202, ../sass/style.scss */ +/* line 190, ../sass/style.scss */ #content .page h1 + h2 { margin-top: 1em; } +/* line 194, ../sass/style.scss */ +#content .page h3 { + margin-top: 2em; + font-weight: bold; + color: #4C608A; +} -/* line 208, ../sass/style.scss */ +/* line 202, ../sass/style.scss */ .col-sm-12 .page { padding-left: 4em; padding-right: 4em; } -/* line 215, ../sass/style.scss */ +@media (max-width: 767px) { + /* line 207, ../sass/style.scss */ + #content .page { + padding-left: 1em !important; + padding-right: 1em !important; + } +} +/* line 214, ../sass/style.scss */ #page-home { padding-top: 30px; } -/* line 220, ../sass/style.scss */ +/* line 219, ../sass/style.scss */ #mega-footer, #footer { border-top: 1px solid #c8c8c8; } -/* line 223, ../sass/style.scss */ +/* line 222, ../sass/style.scss */ #mega-footer + #footer { border-top: none; } + +/* line 226, ../sass/style.scss */ +#content .btn { + border-radius: 5px; +} diff --git a/stylesheets/_notes/dwsync.xml b/stylesheets/_notes/dwsync.xml index 276c840..c5b9633 100644 --- a/stylesheets/_notes/dwsync.xml +++ b/stylesheets/_notes/dwsync.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/stylesheets/variables.css b/stylesheets/variables.css index 23aa09c..692f7da 100644 --- a/stylesheets/variables.css +++ b/stylesheets/variables.css @@ -1,28 +1,3 @@ /* SHERMAN variables */ -/* -$navbar_bg: transparent; - -$nav1_txt: rgba(255,255,255,.8); -$nav1_txtActive: #fff; -$nav1_txtHover: #fff; -$nav1_bg: yellow; -$nav1_bgActive: blue; -$nav1_bgHover: green; -$nav1_arrow: rgba(255,255,255,.8); -$nav1_arrowHover: #fff; - -*/ -/* -$dropdown-border: rgba(0,0,0,.15) ; -$dropdown-fallback-border: #ccc ; -$dropdown-divider-bg: #e5e5e5 ; -*/ -/* -$font-size-h2: -$font-size-h3: -$font-size-h4: -$font-size-h5: -$font-size-h6: -/**/