diff --git a/_notes/dwsync.xml b/_notes/dwsync.xml index abc4fc1..a7e9078 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/css/header-image.css b/css/header-image.css index bbf349e..e43cc59 100644 --- a/css/header-image.css +++ b/css/header-image.css @@ -1,15 +1,6 @@ /* - - - - - - - - - - - - - - - - - - - == Header Image - - - - - - - - - - - - - - - - - - - */ -#masthead { - -ms-word-break: break-all; - word-break: break-all; - word-break: break-word; - -webkit-hyphens: auto; - -moz-hyphens: auto; - hyphens: auto; -} - #masthead.header-image .container { position: relative; } diff --git a/css/variables.css b/css/variables.css new file mode 100644 index 0000000..e352e4d --- /dev/null +++ b/css/variables.css @@ -0,0 +1,179 @@ +/* - - - - - - - - - - - - - - - - - - - + == Variables +- - - - - - - - - - - - - - - - - - - */ +/* +$contentBg: #fff; +$contentPadding: 1em; +*/ +/* == Nav */ +/* + +$nav-secondary-border-color: #ccc !default; +$nav-secondary-border-radius: $border-radius-base !default; +$nav-secondary-padding: 5px !default; +$nav-secondary-bg-color: #fff !default; +$nav-secondary-font-size: .9em !default; + + +$nav-secondary-link-padding: $nav-link-padding !default; +$nav-secondary-link-border-radius: $border-radius-base !default; +$nav-secondary-link-bg: transparent !default; +$nav-secondary-link-hover-bg: $nav-link-hover-bg !default; +$nav-secondary-link-color: #428bca !default; + +$nav-secondary-open-link-hover-color: $nav-open-link-hover-color !default; + +$nav-secondary-active-link-hover-bg: $component-active-bg !default; +$nav-secondary-active-link-hover-color: $component-active-color !default; + + + + +/* == Widgets */ +/* + +$widget-border-color: #ccc !default; +$widget-border-radius: $border-radius-base !default; +$widget-border-width: 1px !default; +$widget-margin: 0 0 1.5em 0 !default; +$widget-padding: 0 !default; +$widget-bg: #fff !default; +$widget-content-margin: 1em; +$widget-color: #000 !default; +$widget-size: 1em !default; +$widget-link-color: $link-color !default; +$widget-link-hover: $link-hover-color !default; + +$widget-head-bg: $widget-bg !default; +$widget-head-color: $widget-color !default; +$widget-head-border-width: 0 0 1px 0 !default; +$widget-head-border-color: $widget-border-color !default; +$widget-head-padding: .5em .5em .5em 1em !default; +$widget-head-size: $widget-size !default; + +/* Sepcific Widgets */ +/* + +$footers-margin: 1.5em 0 0 0 !default; +$footers-bg: #eee !default; +$footers-color: #333 !default; +$footers-link-color: $link-color !default; +$footers-link-hover: $link-hover-color !default; + +$footers-border-color: #ccc !default; +$footers-border-width: 2px 0 0 0 !default; + +$megafooter-bg: transparent !default; +$megafooter-widget-bg: transparent !default; +$megafooter-widget-color: $footers-color !default; +$megafooter-widget-link-color: $footers-link-color !default; +$megafooter-widget-link-hover: $footers-link-hover !default; +$megafooter-widget-head-bg: transparent !default; +$megafooter-widget-head-color: $footers-color !default; + + +$uc-footer-link-color: $footers-link-color !default; +$uc-footer-link-hover: $footers-link-hover !default; +$uc-footer-link-spacing: 1em !default;; + + +@mixin uc-cal() { + .uc-cal { + padding:0; + + &.uc-iconcal { + + .uc-cal-list { + margin:$widget-content-margin; + a.uc-cal-event { + font-family:$font-family-base; + padding-left:65px; + min-height:65px; + + .uc-cal-event-date { + border:none; + width:50px; + left:0; + box-shadow:none; + background-color:#eee; + + .uc-cal-event-month { + height:auto; + padding:.4em .2em .3em .2em; + font-size:.8em; + background-color:$uc-ecw-month-bg; + color:$uc-ecw-month-color; + font-weight:normal; + letter-spacing:0; + text-transform:capitalize; + } + + .uc-cal-event-day { + padding:.5em .1em .6em; + height:auto; + background-color:$uc-ecw-day-bg; + color:$uc-ecw-day-color; + font-size:1.2em; + } + } + .uc-cal-event-title { + color:$uc-ecw-title-color ; + font-size:1em; + line-height:$line-height-base; + margin-bottom:.3em; + margin-top:.2em; + } + .uc-cal-event-time { + color: $uc-ecw-time-color; + font-size:1em; + } + &:hover { + .uc-cal-event-title { + color: $uc-ecw-title-hover; + } + .uc-cal-event-time { + color: $uc-ecw-time-hover; + } + + + } + } + } + } + &.uc-listcal { + .uc-cal-list { + margin:$widget-content-margin; + a.uc-cal-event { + font-family:$font-family-base; + + .uc-cal-event-date { + display:block; + font-weight:normal; + color:#aaa; + line-height:$line-height-base; + } + + .uc-cal-event-title { + display:block; + color: $uc-ecw-title-color; + line-height:$line-height-base; + } + .uc-cal-event-time { + color: $uc-ecw-time-color; + } + &:hover { + .uc-cal-event-title { + color: $uc-ecw-title-hover; + } + .uc-cal-event-time { + color: $uc-ecw-time-hover; + } + } + } + } + } + } +} + + +/**/ diff --git a/sass/header-image.scss b/sass/header-image.scss index 5d5ad30..d703dc5 100644 --- a/sass/header-image.scss +++ b/sass/header-image.scss @@ -2,12 +2,6 @@ == Header Image - - - - - - - - - - - - - - - - - - - */ #masthead { - -ms-word-break: break-all; - word-break: break-all; - word-break: break-word; - -webkit-hyphens: auto; - -moz-hyphens: auto; - hyphens: auto; } #masthead.header-image .container { position:relative; diff --git a/style.css b/style.css index 32b3267..37c9b5f 100644 --- a/style.css +++ b/style.css @@ -6898,15 +6898,6 @@ button.close { /* - - - - - - - - - - - - - - - - - - - == Header Image - - - - - - - - - - - - - - - - - - - */ -#masthead { - -ms-word-break: break-all; - word-break: break-all; - word-break: break-word; - -webkit-hyphens: auto; - -moz-hyphens: auto; - hyphens: auto; -} - #masthead.header-image .container { position: relative; } diff --git a/style.scss b/style.scss index 76d1477..4674216 100644 --- a/style.scss +++ b/style.scss @@ -11,6 +11,7 @@ $icon-font-path: "../../global/bootstrap-sass-master/assets/fonts/bootstrap/" !d @import "../../global/bootstrap-sass-master/assets/stylesheets/bootstrap.scss"; + @import "sass/variables.scss"; @import "sass/utilities.scss"; @import "sass/fonts.scss"; @@ -18,6 +19,7 @@ $icon-font-path: "../../global/bootstrap-sass-master/assets/fonts/bootstrap/" !d @import "sass/nav.scss"; @import "sass/header-image.scss"; + @import "sass/content.scss"; @import "sass/captions.scss"; @import "sass/alignments.scss";