From e40e906587ae1e0e56d8ac65cbba5610553b33fc Mon Sep 17 00:00:00 2001 From: andrewmbacon Date: Tue, 17 Feb 2015 11:10:30 -0500 Subject: [PATCH] Placeholder widgets for theme customizer added styles, changed wording a bit. --- css/admin-style.css | 183 ++++++ css/widgets.css | 14 + page-home.php | 94 +-- sass/admin-style.scss | 3 +- sass/widgets.scss | 18 + style.css | 1294 +++++++++-------------------------------- 6 files changed, 533 insertions(+), 1073 deletions(-) diff --git a/css/admin-style.css b/css/admin-style.css index e69de29..ab8a502 100644 --- a/css/admin-style.css +++ b/css/admin-style.css @@ -0,0 +1,183 @@ +/* - - - - - - - - - - - - - - - - - - - + == Admin Style +- - - - - - - - - - - - - - - - - - - */ +#wpadminbar { + background-color: #000E2F; +} + +#accordion-section-layout_builder { + /* Homepage Layout builder */ +} +#accordion-section-layout_builder .customize-control-hidden * { + display: none; +} +#accordion-section-layout_builder .sliderDeleteRow { + float: right; +} +#accordion-section-layout_builder .sliders { + padding: 2.5em 0; +} +#accordion-section-layout_builder .slider-wrap { + float: left; + width: 100%; + padding: 5px 0; + clear: left; +} +#accordion-section-layout_builder .slider-wrap a:focus { + outline: thin dotted; + outline-color: #2ea2cc; +} +#accordion-section-layout_builder .slider, +#accordion-section-layout_builder .sliderAddColumn { + float: left; +} +#accordion-section-layout_builder .slider { + width: 195px; + margin-right: 15px; +} +#accordion-section-layout_builder .sliderAddColumn { + padding: 0px !important; + height: auto !important; +} +#accordion-section-layout_builder .ui-slider-horizontal { + height: 3.5em !important; + background-color: #eeeeee !important; + background-image: linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.5) 50%) !important; + background-size: 20px 50px !important; +} +#accordion-section-layout_builder .ui-slider .ui-slider-handle { + width: 0.01em !important; + height: 3.9em !important; + padding: 0 !important; +} +#accordion-section-layout_builder .ui-slider .ui-slider-handle:focus { + width: 0.05em !important; + height: 3.7em !important; + border: 1px solid #2ea2cc; +} +#accordion-section-layout_builder .ui-slider .ui-slider-handle:before { + content: ""; + display: block; + position: relative; + top: -24px; + left: -13px; + width: 20px; + height: 20px; + margin-left: 3px; + border-radius: 3px; + background: grey; +} +#accordion-section-layout_builder .ui-slider .ui-slider-handle:focus:before { + position: relative; + top: -24px; + left: -12px; + background: #2ea2cc; +} +#accordion-section-layout_builder .ui-slider .ui-slider-handle:after { + content: ""; + display: block; + position: relative; + top: -24px; + left: -8px; + width: 0; + height: 0; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-top: 8px solid grey; +} +#accordion-section-layout_builder .ui-slider .ui-slider-handle:focus:after { + position: relative; + top: -24px; + left: -7px; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-top: 8px solid #2ea2cc; +} +#accordion-section-layout_builder .ui-slider .ui-slider-handle:hover { + cursor: -webkit-grab; +} +#accordion-section-layout_builder .ui-slider .ui-slider-handle:active { + cursor: -webkit-grabbing; +} +#accordion-section-layout_builder .ui-slider .ui-slider-handle:focus { + background-image: none; + background: #2ea2cc !important; + width: 2px !important; +} +#accordion-section-layout_builder .wp-core-ui .button.sliderDeleteColumn { + background: #2ea2cc; + border-color: #0074a2; + -webkit-box-shadow: inset 0 1px 0 rgba(120, 200, 230, 0.5), 0 1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 1px 0 rgba(120, 200, 230, 0.5), 0 1px 0 rgba(0, 0, 0, 0.15); + color: #fff; +} +#accordion-section-layout_builder .wp-core-ui .button.sliderDeleteColumn .dashicons-minus { + padding: 4px; +} +#accordion-section-layout_builder .wp-core-ui .button.sliderAddColumn .dashicons-plus { + padding: 14px 4px; +} + +#sidebar-manager #home0, +#sidebar-manager #home1, +#sidebar-manager #home2, +#sidebar-manager #home3, +#sidebar-manager #home4, +#sidebar-manager #home5, +#sidebar-manager #home6, +#sidebar-manager #home7, +#sidebar-manager #home8, +#sidebar-manager #home9, +#sidebar-manager #home10, +#sidebar-manager #home11, +#sidebar-manager #home12, +#sidebar-manager #home13, +#sidebar-manager #home14, +#sidebar-manager #home15, +#sidebar-manager #home16, +#sidebar-manager #home17, +#sidebar-manager #home18, +#sidebar-manager #home19, +#sidebar-manager #home20, +#sidebar-manager #home21, +#sidebar-manager #home22, +#sidebar-manager #home23, +#sidebar-manager #home24, +#sidebar-manager #home25, +#sidebar-manager #home26, +#sidebar-manager #home27, +#sidebar-manager #home28, +#sidebar-manager #home29, +#sidebar-manager #home30, +#sidebar-manager #home31, +#sidebar-manager #home32, +#sidebar-manager #home33, +#sidebar-manager #home34, +#sidebar-manager #home35, +#sidebar-manager #home36, +#sidebar-manager #home37, +#sidebar-manager #home38, +#sidebar-manager #home39, +#sidebar-manager #home40, +#sidebar-manager #home41, +#sidebar-manager #home42, +#sidebar-manager #home43, +#sidebar-manager #home44, +#sidebar-manager #home45, +#sidebar-manager #home46, +#sidebar-manager #home47, +#sidebar-manager #home48, +#sidebar-manager #home49, +#sidebar-manager #home50, +#sidebar-manager #home51, +#sidebar-manager #home52, +#sidebar-manager #home53, +#sidebar-manager #home54, +#sidebar-manager #home55, +#sidebar-manager #home56, +#sidebar-manager #home57, +#sidebar-manager #home58, +#sidebar-manager #home59, +#sidebar-manager #home60 { + display: none; +} diff --git a/css/widgets.css b/css/widgets.css index ecc7be8..7ecd0e7 100644 --- a/css/widgets.css +++ b/css/widgets.css @@ -1,3 +1,17 @@ /* - - - - - - - - - - - - - - - - - - - == Widgets - - - - - - - - - - - - - - - - - - - */ +.widget-placeholder { + padding: 2em !important; + border: 4px dashed #ccc !important; + color: #696969 !important; +} +.widget-placeholder * { + color: #696969 !important; + font-size: 1em !important; + margin: auto !important; +} +.widget-placeholder h3 { + margin-bottom: 1em !important; + color: #474747 !important; +} diff --git a/page-home.php b/page-home.php index 5dd72fe..9f8a25d 100644 --- a/page-home.php +++ b/page-home.php @@ -1,47 +1,47 @@ - - -
- - -
- -
-
- -
-

Home

- We're in the customizer, this widget area is empty. -
- -
-
- -
- - - -
- + + +
+ + +
+ +
+
+ +
+

Home

+

This is a placeholder and will not be visible to tbe public. Add content to this section with the "Widgets" tool.

+
+ +
+
+ +
+ + + +
+ diff --git a/sass/admin-style.scss b/sass/admin-style.scss index 7a65aa1..5eea86e 100644 --- a/sass/admin-style.scss +++ b/sass/admin-style.scss @@ -189,4 +189,5 @@ #home60 { display:none; } -} \ No newline at end of file +} + diff --git a/sass/widgets.scss b/sass/widgets.scss index d38e704..4f109ef 100644 --- a/sass/widgets.scss +++ b/sass/widgets.scss @@ -2,6 +2,24 @@ == Widgets - - - - - - - - - - - - - - - - - - - */ +// Preview widgets for the homepage layout builder. Only visible in Customize view, but needs to be in main SCSS. +.widget-placeholder { + padding:2em !important; + border:4px dashed #ccc !important; + color:#696969 !important; + + * { + color:#696969 !important; + font-size:1em !important; + margin:auto !important; + } + + h3 { + margin-bottom: 1em !important; + color: #474747 !important; + } +} + // Create a mixin with parent as optional argument. // based on the argument, different variables are referenced. diff --git a/style.css b/style.css index 3837da6..e59bc5a 100644 --- a/style.css +++ b/style.css @@ -1,4 +1,3 @@ -@charset "UTF-8"; /* Theme Name: Cornerstone Author: UConn Web Development Lab @@ -319,6 +318,7 @@ th { src: url("../../global/bootstrap-sass-master/assets/fonts/bootstrap/glyphicons-halflings-regular.eot"); src: url("../../global/bootstrap-sass-master/assets/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../../global/bootstrap-sass-master/assets/fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("../../global/bootstrap-sass-master/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("../../global/bootstrap-sass-master/assets/fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); } + .glyphicon { position: relative; top: 1px; @@ -1146,7 +1146,7 @@ th { html { font-size: 10px; - -webkit-tap-highlight-color: transparent; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { @@ -1154,7 +1154,7 @@ body { font-size: 14px; line-height: 1.42857; color: #333333; - background-color: #fff; + background-color: white; } input, @@ -1202,8 +1202,8 @@ img { .img-thumbnail { padding: 4px; line-height: 1.42857; - background-color: #fff; - border: 1px solid #ddd; + background-color: white; + border: 1px solid #dddddd; border-radius: 4px; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; @@ -1644,8 +1644,8 @@ code { kbd { padding: 2px 4px; font-size: 90%; - color: #fff; - background-color: #333; + color: white; + background-color: #333333; border-radius: 3px; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); } @@ -1664,8 +1664,8 @@ pre { word-break: break-all; word-wrap: break-word; color: #333333; - background-color: #f5f5f5; - border: 1px solid #ccc; + background-color: whitesmoke; + border: 1px solid #cccccc; border-radius: 4px; } pre code { @@ -2601,11 +2601,11 @@ th { padding: 8px; line-height: 1.42857; vertical-align: top; - border-top: 1px solid #ddd; + border-top: 1px solid #dddddd; } .table > thead > tr > th { vertical-align: bottom; - border-bottom: 2px solid #ddd; + border-bottom: 2px solid #dddddd; } .table > caption + thead > tr:first-child > th, .table > caption + thead > tr:first-child > td, @@ -2616,10 +2616,10 @@ th { border-top: 0; } .table > tbody + tbody { - border-top: 2px solid #ddd; + border-top: 2px solid #dddddd; } .table .table { - background-color: #fff; + background-color: white; } .table-condensed > thead > tr > th, @@ -2632,7 +2632,7 @@ th { } .table-bordered { - border: 1px solid #ddd; + border: 1px solid #dddddd; } .table-bordered > thead > tr > th, .table-bordered > thead > tr > td, @@ -2640,7 +2640,7 @@ th { .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > tfoot > tr > td { - border: 1px solid #ddd; + border: 1px solid #dddddd; } .table-bordered > thead > tr > th, .table-bordered > thead > tr > td { @@ -2654,7 +2654,7 @@ th { .table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th { - background-color: #f5f5f5; + background-color: whitesmoke; } table col[class*="col-"] { @@ -2680,7 +2680,7 @@ table th[class*="col-"] { .table > tfoot > tr > th.active, .table > tfoot > tr.active > td, .table > tfoot > tr.active > th { - background-color: #f5f5f5; + background-color: whitesmoke; } .table-hover > tbody > tr > td.active:hover, @@ -2767,7 +2767,7 @@ table th[class*="col-"] { overflow-y: hidden; overflow-x: auto; -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ddd; + border: 1px solid #dddddd; -webkit-overflow-scrolling: touch; } .table-responsive > .table { @@ -2885,9 +2885,9 @@ output { font-size: 14px; line-height: 1.42857; color: #555555; - background-color: #fff; + background-color: white; background-image: none; - border: 1px solid #ccc; + border: 1px solid #cccccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); @@ -3362,7 +3362,7 @@ select[multiple].input-lg, outline-offset: -2px; } .btn:hover, .btn:focus { - color: #333; + color: #333333; text-decoration: none; } .btn:active, .btn.active { @@ -3381,12 +3381,12 @@ select[multiple].input-lg, } .btn-default { - color: #333; - background-color: #fff; - border-color: #ccc; + color: #333333; + background-color: white; + border-color: #cccccc; } .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { - color: #333; + color: #333333; background-color: #e6e6e6; border-color: #adadad; } @@ -3394,21 +3394,21 @@ select[multiple].input-lg, background-image: none; } .btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active { - background-color: #fff; - border-color: #ccc; + background-color: white; + border-color: #cccccc; } .btn-default .badge { - color: #fff; - background-color: #333; + color: white; + background-color: #333333; } .btn-primary { - color: #fff; + color: white; background-color: #428bca; border-color: #357ebd; } .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { - color: #fff; + color: white; background-color: #3071a9; border-color: #285e8e; } @@ -3421,16 +3421,16 @@ select[multiple].input-lg, } .btn-primary .badge { color: #428bca; - background-color: #fff; + background-color: white; } .btn-success { - color: #fff; + color: white; background-color: #5cb85c; border-color: #4cae4c; } .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { - color: #fff; + color: white; background-color: #449d44; border-color: #398439; } @@ -3443,16 +3443,16 @@ select[multiple].input-lg, } .btn-success .badge { color: #5cb85c; - background-color: #fff; + background-color: white; } .btn-info { - color: #fff; + color: white; background-color: #5bc0de; border-color: #46b8da; } .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { - color: #fff; + color: white; background-color: #31b0d5; border-color: #269abc; } @@ -3465,16 +3465,16 @@ select[multiple].input-lg, } .btn-info .badge { color: #5bc0de; - background-color: #fff; + background-color: white; } .btn-warning { - color: #fff; + color: white; background-color: #f0ad4e; border-color: #eea236; } .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { - color: #fff; + color: white; background-color: #ec971f; border-color: #d58512; } @@ -3487,16 +3487,16 @@ select[multiple].input-lg, } .btn-warning .badge { color: #f0ad4e; - background-color: #fff; + background-color: white; } .btn-danger { - color: #fff; + color: white; background-color: #d9534f; border-color: #d43f3a; } .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { - color: #fff; + color: white; background-color: #c9302c; border-color: #ac2925; } @@ -3509,7 +3509,7 @@ select[multiple].input-lg, } .btn-danger .badge { color: #d9534f; - background-color: #fff; + background-color: white; } .btn-link { @@ -3638,8 +3638,8 @@ tbody.collapse.in { list-style: none; font-size: 14px; text-align: left; - background-color: #fff; - border: 1px solid #ccc; + background-color: white; + border: 1px solid #cccccc; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 4px; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); @@ -3669,11 +3669,11 @@ tbody.collapse.in { .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { text-decoration: none; color: #262626; - background-color: #f5f5f5; + background-color: whitesmoke; } .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { - color: #fff; + color: white; text-decoration: none; outline: 0; background-color: #428bca; @@ -4004,7 +4004,7 @@ tbody.collapse.in { color: #555555; text-align: center; background-color: #eeeeee; - border: 1px solid #ccc; + border: 1px solid #cccccc; border-radius: 4px; } .input-group-addon.input-sm, .form-horizontal .form-group-sm .input-group-addon.form-control, @@ -4128,7 +4128,7 @@ tbody.collapse.in { } .nav-tabs { - border-bottom: 1px solid #ddd; + border-bottom: 1px solid #dddddd; } .nav-tabs > li { float: left; @@ -4141,12 +4141,12 @@ tbody.collapse.in { border-radius: 4px 4px 0 0; } .nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #ddd; + border-color: #eeeeee #eeeeee #dddddd; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { color: #555555; - background-color: #fff; - border: 1px solid #ddd; + background-color: white; + border: 1px solid #dddddd; border-bottom-color: transparent; cursor: default; } @@ -4161,7 +4161,7 @@ tbody.collapse.in { margin-left: 2px; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { - color: #fff; + color: white; background-color: #428bca; } @@ -4209,11 +4209,11 @@ tbody.collapse.in { .nav-tabs.nav-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus { - border: 1px solid #ddd; + border: 1px solid #dddddd; } @media (min-width: 768px) { .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #ddd; + border-bottom: 1px solid #dddddd; border-radius: 4px 4px 0 0; } .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, @@ -4221,7 +4221,7 @@ tbody.collapse.in { .nav-tabs.nav-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus { - border-bottom-color: #fff; + border-bottom-color: white; } } @@ -4551,38 +4551,38 @@ tbody.collapse.in { border-color: #e7e7e7; } .navbar-default .navbar-brand { - color: #777; + color: #777777; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #5e5e5e; background-color: transparent; } .navbar-default .navbar-text { - color: #777; + color: #777777; } .navbar-default .navbar-nav > li > a { - color: #777; + color: #777777; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { - color: #333; + color: #333333; background-color: transparent; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { - color: #555; + color: #555555; background-color: #e7e7e7; } .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { - color: #ccc; + color: #cccccc; background-color: transparent; } .navbar-default .navbar-toggle { - border-color: #ddd; + border-color: #dddddd; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { - background-color: #ddd; + background-color: #dddddd; } .navbar-default .navbar-toggle .icon-bar { - background-color: #888; + background-color: #888888; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { @@ -4590,50 +4590,50 @@ tbody.collapse.in { } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { background-color: #e7e7e7; - color: #555; + color: #555555; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777; + color: #777777; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333; + color: #333333; background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555; + color: #555555; background-color: #e7e7e7; } .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #ccc; + color: #cccccc; background-color: transparent; } } .navbar-default .navbar-link { - color: #777; + color: #777777; } .navbar-default .navbar-link:hover { - color: #333; + color: #333333; } .navbar-default .btn-link { - color: #777; + color: #777777; } .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { - color: #333; + color: #333333; } .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus { - color: #ccc; + color: #cccccc; } .navbar-inverse { - background-color: #222; + background-color: #222222; border-color: #090909; } .navbar-inverse .navbar-brand { color: #777777; } .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { - color: #fff; + color: white; background-color: transparent; } .navbar-inverse .navbar-text { @@ -4643,25 +4643,25 @@ tbody.collapse.in { color: #777777; } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { - color: #fff; + color: white; background-color: transparent; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { - color: #fff; + color: white; background-color: #090909; } .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444; + color: #444444; background-color: transparent; } .navbar-inverse .navbar-toggle { - border-color: #333; + border-color: #333333; } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - background-color: #333; + background-color: #333333; } .navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff; + background-color: white; } .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { @@ -4669,7 +4669,7 @@ tbody.collapse.in { } .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { background-color: #090909; - color: #fff; + color: white; } @media (max-width: 767px) { .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { @@ -4682,15 +4682,15 @@ tbody.collapse.in { color: #777777; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #fff; + color: white; background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; + color: white; background-color: #090909; } .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444; + color: #444444; background-color: transparent; } } @@ -4698,32 +4698,32 @@ tbody.collapse.in { color: #777777; } .navbar-inverse .navbar-link:hover { - color: #fff; + color: white; } .navbar-inverse .btn-link { color: #777777; } .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { - color: #fff; + color: white; } .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444; + color: #444444; } .breadcrumb { padding: 8px 15px; margin-bottom: 20px; list-style: none; - background-color: #f5f5f5; + background-color: whitesmoke; border-radius: 4px; } .breadcrumb > li { display: inline-block; } .breadcrumb > li + li:before { - content: "/ "; + content: "/\00a0"; padding: 0 5px; - color: #ccc; + color: #cccccc; } .breadcrumb > .active { color: #777777; @@ -4746,8 +4746,8 @@ tbody.collapse.in { line-height: 1.42857; text-decoration: none; color: #428bca; - background-color: #fff; - border: 1px solid #ddd; + background-color: white; + border: 1px solid #dddddd; margin-left: -1px; } .pagination > li:first-child > a, @@ -4766,14 +4766,14 @@ tbody.collapse.in { .pagination > li > span:focus { color: #2a6496; background-color: #eeeeee; - border-color: #ddd; + border-color: #dddddd; } .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, .pagination > .active > span, .pagination > .active > span:hover, .pagination > .active > span:focus { z-index: 2; - color: #fff; + color: white; background-color: #428bca; border-color: #428bca; cursor: default; @@ -4785,8 +4785,8 @@ tbody.collapse.in { .pagination > .disabled > a:hover, .pagination > .disabled > a:focus { color: #777777; - background-color: #fff; - border-color: #ddd; + background-color: white; + border-color: #dddddd; cursor: not-allowed; } @@ -4842,8 +4842,8 @@ tbody.collapse.in { .pager li > span { display: inline-block; padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; + background-color: white; + border: 1px solid #dddddd; border-radius: 15px; } .pager li > a:hover, @@ -4864,7 +4864,7 @@ tbody.collapse.in { .pager .disabled > a:focus, .pager .disabled > span { color: #777777; - background-color: #fff; + background-color: white; cursor: not-allowed; } @@ -4874,7 +4874,7 @@ tbody.collapse.in { font-size: 75%; font-weight: bold; line-height: 1; - color: #fff; + color: white; text-align: center; white-space: nowrap; vertical-align: baseline; @@ -4889,7 +4889,7 @@ tbody.collapse.in { } a.label:hover, a.label:focus { - color: #fff; + color: white; text-decoration: none; cursor: pointer; } @@ -4942,7 +4942,7 @@ a.label:hover, a.label:focus { padding: 3px 7px; font-size: 12px; font-weight: bold; - color: #fff; + color: white; line-height: 1; vertical-align: baseline; white-space: nowrap; @@ -4963,14 +4963,14 @@ a.label:hover, a.label:focus { } a.list-group-item.active > .badge, .nav-pills > .active > a > .badge { color: #428bca; - background-color: #fff; + background-color: white; } .nav-pills > li > a > .badge { margin-left: 3px; } a.badge:hover, a.badge:focus { - color: #fff; + color: white; text-decoration: none; cursor: pointer; } @@ -5019,8 +5019,8 @@ a.badge:hover, a.badge:focus { padding: 4px; margin-bottom: 20px; line-height: 1.42857; - background-color: #fff; - border: 1px solid #ddd; + background-color: white; + border: 1px solid #dddddd; border-radius: 4px; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; @@ -5131,23 +5131,27 @@ a.thumbnail.active { from { background-position: 40px 0; } + to { background-position: 0 0; } } + @keyframes progress-bar-stripes { from { background-position: 40px 0; } + to { background-position: 0 0; } } + .progress { overflow: hidden; height: 20px; margin-bottom: 20px; - background-color: #f5f5f5; + background-color: whitesmoke; border-radius: 4px; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); @@ -5159,7 +5163,7 @@ a.thumbnail.active { height: 100%; font-size: 12px; line-height: 20px; - color: #fff; + color: white; text-align: center; background-color: #428bca; -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); @@ -5276,8 +5280,8 @@ a.thumbnail.active { display: block; padding: 10px 15px; margin-bottom: -1px; - background-color: #fff; - border: 1px solid #ddd; + background-color: white; + border: 1px solid #dddddd; } .list-group-item:first-child { border-top-right-radius: 4px; @@ -5296,15 +5300,15 @@ a.thumbnail.active { } a.list-group-item { - color: #555; + color: #555555; } a.list-group-item .list-group-item-heading { - color: #333; + color: #333333; } a.list-group-item:hover, a.list-group-item:focus { text-decoration: none; - color: #555; - background-color: #f5f5f5; + color: #555555; + background-color: whitesmoke; } .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { @@ -5320,7 +5324,7 @@ a.list-group-item:hover, a.list-group-item:focus { } .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { z-index: 2; - color: #fff; + color: white; background-color: #428bca; border-color: #428bca; } @@ -5433,7 +5437,7 @@ a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-g .panel { margin-bottom: 20px; - background-color: #fff; + background-color: white; border: 1px solid transparent; border-radius: 4px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); @@ -5473,8 +5477,8 @@ a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-g .panel-footer { padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #ddd; + background-color: whitesmoke; + border-top: 1px solid #dddddd; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } @@ -5562,7 +5566,7 @@ a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-g } .panel > .panel-body + .table, .panel > .panel-body + .table-responsive { - border-top: 1px solid #ddd; + border-top: 1px solid #dddddd; } .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td { @@ -5639,39 +5643,39 @@ a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-g border-bottom: 0; } .panel-group .panel-heading + .panel-collapse > .panel-body { - border-top: 1px solid #ddd; + border-top: 1px solid #dddddd; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #ddd; + border-bottom: 1px solid #dddddd; } .panel-default { - border-color: #ddd; + border-color: #dddddd; } .panel-default > .panel-heading { color: #333333; - background-color: #f5f5f5; - border-color: #ddd; + background-color: whitesmoke; + border-color: #dddddd; } .panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ddd; + border-top-color: #dddddd; } .panel-default > .panel-heading .badge { - color: #f5f5f5; + color: whitesmoke; background-color: #333333; } .panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ddd; + border-bottom-color: #dddddd; } .panel-primary { border-color: #428bca; } .panel-primary > .panel-heading { - color: #fff; + color: white; background-color: #428bca; border-color: #428bca; } @@ -5680,7 +5684,7 @@ a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-g } .panel-primary > .panel-heading .badge { color: #428bca; - background-color: #fff; + background-color: white; } .panel-primary > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #428bca; @@ -5792,7 +5796,7 @@ a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-g min-height: 20px; padding: 19px; margin-bottom: 20px; - background-color: #f5f5f5; + background-color: whitesmoke; border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); @@ -5818,13 +5822,13 @@ a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-g font-size: 21px; font-weight: bold; line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; + color: black; + text-shadow: 0 1px 0 white; opacity: 0.2; filter: alpha(opacity=20); } .close:hover, .close:focus { - color: #000; + color: black; text-decoration: none; cursor: pointer; opacity: 0.5; @@ -5881,8 +5885,8 @@ button.close { .modal-content { position: relative; - background-color: #fff; - border: 1px solid #999; + background-color: white; + border: 1px solid #999999; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 6px; -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); @@ -5898,7 +5902,7 @@ button.close { bottom: 0; left: 0; z-index: 1040; - background-color: #000; + background-color: black; } .modal-backdrop.fade { opacity: 0; @@ -6014,10 +6018,10 @@ button.close { .tooltip-inner { max-width: 200px; padding: 3px 8px; - color: #fff; + color: white; text-align: center; text-decoration: none; - background-color: #000; + background-color: black; border-radius: 4px; } @@ -6034,52 +6038,52 @@ button.close { left: 50%; margin-left: -5px; border-width: 5px 5px 0; - border-top-color: #000; + border-top-color: black; } .tooltip.top-left .tooltip-arrow { bottom: 0; left: 5px; border-width: 5px 5px 0; - border-top-color: #000; + border-top-color: black; } .tooltip.top-right .tooltip-arrow { bottom: 0; right: 5px; border-width: 5px 5px 0; - border-top-color: #000; + border-top-color: black; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; - border-right-color: #000; + border-right-color: black; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; - border-left-color: #000; + border-left-color: black; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; - border-bottom-color: #000; + border-bottom-color: black; } .tooltip.bottom-left .tooltip-arrow { top: 0; left: 5px; border-width: 0 5px 5px; - border-bottom-color: #000; + border-bottom-color: black; } .tooltip.bottom-right .tooltip-arrow { top: 0; right: 5px; border-width: 0 5px 5px; - border-bottom-color: #000; + border-bottom-color: black; } .popover { @@ -6091,9 +6095,9 @@ button.close { max-width: 276px; padding: 1px; text-align: left; - background-color: #fff; + background-color: white; background-clip: padding-box; - border: 1px solid #ccc; + border: 1px solid #cccccc; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 6px; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); @@ -6159,7 +6163,7 @@ button.close { bottom: 1px; margin-left: -10px; border-bottom-width: 0; - border-top-color: #fff; + border-top-color: white; } .popover.right > .arrow { top: 50%; @@ -6174,7 +6178,7 @@ button.close { left: 1px; bottom: -10px; border-left-width: 0; - border-right-color: #fff; + border-right-color: white; } .popover.bottom > .arrow { left: 50%; @@ -6189,7 +6193,7 @@ button.close { top: 1px; margin-left: -10px; border-top-width: 0; - border-bottom-color: #fff; + border-bottom-color: white; } .popover.left > .arrow { top: 50%; @@ -6203,7 +6207,7 @@ button.close { content: " "; right: 1px; border-right-width: 0; - border-left-color: #fff; + border-left-color: white; bottom: -10px; } @@ -6271,7 +6275,7 @@ button.close { opacity: 0.5; filter: alpha(opacity=50); font-size: 20px; - color: #fff; + color: white; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } @@ -6293,7 +6297,7 @@ button.close { } .carousel-control:hover, .carousel-control:focus { outline: 0; - color: #fff; + color: white; text-decoration: none; opacity: 0.9; filter: alpha(opacity=90); @@ -6348,17 +6352,17 @@ button.close { height: 10px; margin: 1px; text-indent: -999px; - border: 1px solid #fff; + border: 1px solid white; border-radius: 10px; cursor: pointer; background-color: #000 \9; - background-color: transparent; + background-color: rgba(0, 0, 0, 0); } .carousel-indicators .active { margin: 0; width: 12px; height: 12px; - background-color: #fff; + background-color: white; } .carousel-caption { @@ -6369,7 +6373,7 @@ button.close { z-index: 10; padding-top: 20px; padding-bottom: 20px; - color: #fff; + color: white; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } @@ -6462,6 +6466,7 @@ button.close { @-ms-viewport { width: device-width; } + .visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !important; } @@ -6722,6 +6727,7 @@ button.close { font-weight: normal; font-style: normal; } + @font-face { font-family: 'Proxima Nova'; src: url("../../global/fonts/proximanova_semibold/ProximaNova-Sbold-webfont.eot"); @@ -6729,12 +6735,13 @@ button.close { font-weight: 500; font-style: normal; } + /* - - - - - - - - - - - - - - - - - - - == Titlebar - - - - - - - - - - - - - - - - - - - */ #uc-header { border-bottom: 1px solid transparent; - border-bottom-color: #fff; + border-bottom-color: white; } #uc-site-header { @@ -6803,9 +6810,9 @@ button.close { #nav-secondary { padding: 5px; border: 1px solid transparent; - border-color: #ccc; + border-color: #cccccc; border-radius: 4px; - background-color: #fff; + background-color: white; font-size: 0.9em; } #nav-secondary .nav.nav-pills.nav-stacked a { @@ -6825,11 +6832,11 @@ button.close { color: inherit; } #nav-secondary .nav.nav-pills.nav-stacked a:hover { - background-color: #eee; + background-color: #eeeeee; } #nav-secondary .nav.nav-pills.nav-stacked .active a { background-color: #428bca; - color: #fff; + color: white; } #nav-secondary .nav.nav-pills.nav-stacked .sub-menu { margin: 2px 0 2px 1.5em; @@ -6944,13 +6951,26 @@ button.close { /* - - - - - - - - - - - - - - - - - - - == Widgets - - - - - - - - - - - - - - - - - - - */ +.widget-placeholder { + padding: 2em !important; + border: 4px dashed #ccc !important; + color: #696969 !important; +} +.widget-placeholder * { + color: #696969 !important; + font-size: 1em !important; + margin: auto !important; +} +.widget-placeholder h3 { + margin-bottom: 1em !important; + color: #474747 !important; +} + /* - - - - - - - - - - - - - - - - - - - == Content - - - - - - - - - - - - - - - - - - - */ #content { /* Make sure select elements fit in widgets */ -<<<<<<< HEAD -======= } #content .widget { overflow: hidden; @@ -7282,508 +7302,94 @@ button.close { img { height: auto; max-width: 100%; ->>>>>>> 0b9a65cdbe3d11820b7f365de9f4b26ae22ed70d } -#content .widget { - overflow: hidden; - border: 1px solid transparent; - border-width: 1px; - border-color: #cccccc; + +code { + white-space: normal; +} + +.table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-x: auto; + overflow-y: hidden; + webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; +} + +.az-letter-list li { + list-style-type: none; +} + +/* PAGE +--------------------------------------------------------------*/ +#main { border-radius: 4px; - margin: 0 0 1.5em 0; - padding: 0; background-color: white; - color: black; + padding: 1em; + overflow: hidden; + /* + -ms-word-break: break-all; + word-break: break-all; + + // Non standard for webkit + word-break: break-word; + + -webkit-hyphens: auto; + -moz-hyphens: auto; + hyphens: auto; + */ } -#content .widget a { - color: #428bca; + +/* POSTS +--------------------------------------------------------------*/ +.post { + background-color: white; + padding: 1em; } -#content .widget a:hover { - color: #2a6496; + +/*-------------------------------------------------------------- +10.0 Content +--------------------------------------------------------------*/ +/*-------------------------------------------------------------- +10.1 Posts and pages +--------------------------------------------------------------*/ +.hentry { + margin: 0 0 1.5em; } -#content .widget .widget-head { - border: 1px solid transparent; - padding: 0.5em 0.5em 0.5em 1em; - border-width: 0 0 1px 0; - border-color: #cccccc; + +.byline, +.updated { + display: none; } -<<<<<<< HEAD -#content .widget .widget-head h2 { - margin: 0; - font-size: 1em; - color: black; + +.single .byline, +.group-blog .byline { + display: inline; } -#content .widget form { - margin: 1em; + +.page-content, +.entry-content, +.entry-summary { + margin: 1.5em 0 0; } -#content .widget ul, -#content .widget ol { - list-style-type: none; - padding: 0; - margin: 1em; + +.page-links { + clear: both; + margin: 0 0 1.5em; } -#content .widget ul li, -#content .widget ol li { - margin-bottom: .75em; + +.nav-next { + text-align: right; } -#content .widget ul li ul, -#content .widget ol li ul { - padding: 0; - margin: .5em 0 .5em 2em; - list-style-type: disc; + +.entry-content a, +.entry-footer a { + text-decoration: underline; } -#content .widget ul li ul li, -#content .widget ol li ul li { - margin-bottom: .5em; -} -#content .widget ul li ul li ul, -#content .widget ol li ul li ul { - list-style-type: circle; -} -#content .widget ul li ol, -#content .widget ol li ol { - padding: 0; - margin: .5em 0 .5em 2em; - list-style-type: decimal; -} -#content .widget ul li ol li, -#content .widget ol li ol li { - margin-bottom: .5em; -} -#content * html .widget.widget_dpe_fp_widget .dpe-flexible-posts li a { - height: 1%; -} -#content .widget select { - max-width: 100%; -} -#content .widget { - /* === CORE WP Widgets - */ - /* === 3rd Party Widgets - */ - /* === UCONN Widgets - */ -} -#content .widget.widget_text .textwidget { - margin: 1em; -} -#content .widget.widget_tag_cloud .tagcloud { - margin: 1em; -} -#content .widget.widget_black_studio_tinymce .textwidget { - margin: 1em; -} -#content .widget.widget_black_studio_tinymce ul li { - list-style-type: disc; -} -#content .widget.widget_black_studio_tinymce ol li { - list-style-type: decimal; -} -#content .widget.simple-social-icons ul { - margin: 0.5em !important; -} -#content .widget.simple-social-icons ul li { - margin: 0.5em !important; -} -#content .widget.simple-social-icons .social-bloglovin:before, #content .widget.simple-social-icons .social-dribbble:before, #content .widget.simple-social-icons .social-email:before, #content .widget.simple-social-icons .social-facebook:before, #content .widget.simple-social-icons .social-flickr:before, #content .widget.simple-social-icons .social-github:before, #content .widget.simple-social-icons .social-gplus:before, #content .widget.simple-social-icons .social-instagram:before, #content .widget.simple-social-icons .social-linkedin:before, #content .widget.simple-social-icons .social-pinterest:before, #content .widget.simple-social-icons .social-rss:before, #content .widget.simple-social-icons .social-stumbleupon:before, #content .widget.simple-social-icons .social-tumblr:before, #content .widget.simple-social-icons .social-twitter:before, #content .widget.simple-social-icons .social-vimeo:before, #content .widget.simple-social-icons .social-youtube:before { - display: none; - content: none; -} -#content .widget.widget_rcpt ul { - margin: 0; -} -#content .widget.widget_rcpt ul .rcpt_item_title { - padding: .5em 5% 0; - font-weight: bold; -} -#content .widget.widget_rcpt ul .rcpt_item_title .rcpt_item_image { - margin-left: -9%; - margin-bottom: 1em; - width: 117%; -} -#content .widget.widget_rcpt ul .rcpt_item_title .rcpt_item_image img { - width: 100%; -} -#content .widget.widget_rcpt ul .rcpt_item_excerpt { - margin: .5em 5% 1em; -} -#content .widget.widget_rcpt ul .rcpt_item_date { - margin: .5em 5% 1em; -} -#content .widget.widget_sp_image { - padding: 0; - border: none; - background-color: transparent; -} -#content .widget.widget_metaslider_widget { - padding: 0; - background-color: transparent; - border: none; -} -#content .widget.widget_dpe_fp_widget { - padding: 0; - background-color: transparent; -} -#content .widget.widget_dpe_fp_widget .dpe-flexible-posts li { - padding: 0.1em 0px 0.1em 0px; - display: block; - background-color: transparent; -} -#content .widget.widget_dpe_fp_widget .dpe-flexible-posts li a { - margin: 0; - position: relative; - display: inline-block; -} -#content .widget.widget_dpe_fp_widget .dpe-flexible-posts li a .attachment-thumbnail { - height: 60px; - width: 60px; - margin-right: 10px; - margin-bottom: 10px; - float: left; -} -#content .widget.widget_dpe_fp_widget .dpe-flexible-posts li a .attachment-medium { - width: 48%; - margin-right: 10px; - margin-bottom: 10px; - float: left; -} -#content .widget.widget_dpe_fp_widget .dpe-flexible-posts li a .attachment-large { - max-width: 100%; - margin-right: 10px; - margin-bottom: 10px; - float: left; - clear: right; -} -#content .widget.widget_dpe_fp_widget .dpe-flexible-posts li a .title { - display: block; - position: relative; - font-size: 1em; - font-weight: normal; -} -#content .widget.widget_dpe_fp_widget .dpe-flexible-posts li a:after { - visibility: hidden; - display: block; - font-size: 0; - content: " "; - clear: both; - height: 0; -} -#content .widget.uc-contact-widget th { - white-space: nowrap; -} -#content .widget.uc-contact-widget td.uc-output-email { - word-break: break-all; -} -#content .widget.uc-contact-widget td.uc-output-more { - word-break: break-all; -} -#content .widget.uc-ecw { - /*- - - - - */ - /**/ - /**/ - /**/ -} -#content .widget.uc-ecw .uc-cal { - margin: 1em !important; - padding: 0 !important; -} -#content .widget.uc-ecw .uc-cal * { - margin: 0 !important; - padding: 0 !important; - border: 0 !important; - font-size: 100% !important; - font: inherit !important; - vertical-align: baseline !important; - background: none !important; - position: inherit !important; - width: auto !important; - height: auto !important; - color: inherit !important; - display: block !important; - box-shadow: none !important; - text-transform: none !important; - min-height: inherit !important; - border-radius: 0 !important; -} -#content .widget.uc-ecw .uc-cal-item { - margin: 1em 0 !important; -} -#content .widget.uc-ecw .uc-cal-item .uc-cal-event { - position: relative !important; - color: #428bca !important; - /* - - inherits color from the .uc-cal-event , so the hovers text decorations work. - - .uc-cal-event-title { - @if $parent == "#mega-footer" { - color:$megafooter-ecw-title-color !important; - } @else { - color:$ecw-title-color !important; - } - } - - */ -} -#content .widget.uc-ecw .uc-cal-item .uc-cal-event .uc-cal-event-date { - float: left !important; - position: relative !important; - top: 0; - color: inherit !important; -} -#content .widget.uc-ecw .uc-cal-item .uc-cal-event:hover { - color: inherit !important; -} -#content .widget.uc-ecw .uc-cal-item .uc-cal-event:hover .uc-cal-event-date { - color: inherit !important; -} -#content .widget.uc-ecw .uc-cal-item .uc-cal-event:after { - visibility: hidden !important; - display: block !important; - font-size: 0 !important; - content: " " !important; - clear: both !important; - height: 0 !important; -} -#content .widget.uc-ecw .uc-iconcal .uc-cal-list .uc-cal-item .uc-cal-event { - padding-left: 70px !important; -} -#content .widget.uc-ecw .uc-iconcal .uc-cal-list .uc-cal-item .uc-cal-event .uc-cal-event-date { - left: -70px; - margin-right: -55px !important; - width: 55px !important; -} -#content .widget.uc-ecw .uc-iconcal .uc-cal-list .uc-cal-item .uc-cal-event .uc-cal-event-date .uc-cal-event-month { - padding: 0.7em 0 0 !important; - border-width: 1px 1px 0 !important; - border-style: solid !important; - text-align: center !important; - font-size: 70% !important; - text-transform: uppercase !important; - letter-spacing: 1px !important; - border-color: #cccccc !important; - background-color: white !important; - color: inherit !important; -} -#content .widget.uc-ecw .uc-iconcal .uc-cal-list .uc-cal-item .uc-cal-event .uc-cal-event-date .uc-cal-event-day { - padding: 0 0 0.2em 0 !important; - border-width: 0 1px 1px !important; - border-style: solid !important; - text-align: center !important; - font-size: 130% !important; - border-color: #cccccc !important; - background-color: white !important; - color: inherit !important; -} -#content .widget.uc-ecw .uc-iconcal .uc-cal-list .uc-cal-item .uc-cal-event .uc-cal-event-time { - color: inherit !important; -} -#content .widget.uc-ecw .uc-iconcal .uc-cal-list .uc-cal-item .uc-cal-event:hover .uc-cal-event-month { - border-color: #cccccc !important; - background-color: white !important; - color: inherit !important; -} -#content .widget.uc-ecw .uc-iconcal .uc-cal-list .uc-cal-item .uc-cal-event:hover .uc-cal-event-day { - background-color: white !important; - color: inherit !important; -} -#content .widget.uc-ecw .uc-iconcal .uc-cal-list .uc-cal-item .uc-cal-event:hover .uc-cal-event-time { - color: #2a6496 !important; -} -#content .widget.uc-ecw .uc-listcal { - padding-left: 3.7em !important; -} -#content .widget.uc-ecw .uc-listcal .uc-cal-event-date { - width: 3.7em !important; - left: -3.7em !important; - margin-right: -3.7em !important; -} -#content .widget.uc-hours-widget caption { - padding: .5em; -} - -img { - height: auto; - max-width: 100%; -} - -code { - white-space: normal; -} - -.table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-x: auto; - overflow-y: hidden; - webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; -} - -.az-letter-list li { - list-style-type: none; -} - -/* PAGE ---------------------------------------------------------------*/ -#main { - border-radius: 4px; - background-color: #fff; - padding: 1em; - overflow: hidden; - /* - -ms-word-break: break-all; - word-break: break-all; - - // Non standard for webkit - word-break: break-word; - - -webkit-hyphens: auto; - -moz-hyphens: auto; - hyphens: auto; - */ -} - -<<<<<<< HEAD -.page .uc-cal { - padding: 0; -} -.page .uc-cal.uc-iconcal .uc-cal-list { - margin: 1em; -} -.page .uc-cal.uc-iconcal .uc-cal-list a.uc-cal-event { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - padding-left: 65px; - min-height: 65px; -} -.page .uc-cal.uc-iconcal .uc-cal-list a.uc-cal-event .uc-cal-event-date { - border: none; - width: 50px; - left: 0; - box-shadow: none; - background-color: #eee; -} -.page .uc-cal.uc-iconcal .uc-cal-list a.uc-cal-event .uc-cal-event-date .uc-cal-event-month { - height: auto; - padding: .4em .2em .3em .2em; - font-size: .8em; - background-color: #ccc; - color: #333; - font-weight: normal; - letter-spacing: 0; - text-transform: capitalize; -} -.page .uc-cal.uc-iconcal .uc-cal-list a.uc-cal-event .uc-cal-event-date .uc-cal-event-day { - padding: .5em .1em .6em; - height: auto; - background-color: #eee; - color: #333; - font-size: 1.2em; -} -.page .uc-cal.uc-iconcal .uc-cal-list a.uc-cal-event .uc-cal-event-title { - color: #428bca; - font-size: 1em; - line-height: 1.42857; - margin-bottom: .3em; - margin-top: .2em; -} -.page .uc-cal.uc-iconcal .uc-cal-list a.uc-cal-event .uc-cal-event-time { - color: #92bce0; - font-size: 1em; -} -.page .uc-cal.uc-iconcal .uc-cal-list a.uc-cal-event:hover .uc-cal-event-title { - color: #2a6496; -} -.page .uc-cal.uc-iconcal .uc-cal-list a.uc-cal-event:hover .uc-cal-event-time { - color: #5697d0; -} -.page .uc-cal.uc-listcal .uc-cal-list { - margin: 1em; -} -.page .uc-cal.uc-listcal .uc-cal-list a.uc-cal-event { - display: block; - position: relative; - padding-left: 3em; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; -} -.page .uc-cal.uc-listcal .uc-cal-list a.uc-cal-event .uc-cal-event-date { - position: absolute; - left: 0; - top: 0; - display: block; - font-weight: normal; - color: #aaa; - line-height: 1.42857; -} -.page .uc-cal.uc-listcal .uc-cal-list a.uc-cal-event .uc-cal-event-title { - display: block; - color: #428bca; - line-height: 1.42857; -} -.page .uc-cal.uc-listcal .uc-cal-list a.uc-cal-event .uc-cal-event-time { - color: #92bce0; -} -.page .uc-cal.uc-listcal .uc-cal-list a.uc-cal-event:hover .uc-cal-event-title { - color: #2a6496; -} -.page .uc-cal.uc-listcal .uc-cal-list a.uc-cal-event:hover .uc-cal-event-time { - color: #5697d0; -} - -======= ->>>>>>> 0b9a65cdbe3d11820b7f365de9f4b26ae22ed70d -======= - ->>>>>>> 0b9a65cdbe3d11820b7f365de9f4b26ae22ed70d -/* POSTS ---------------------------------------------------------------*/ -.post { - background-color: #fff; - padding: 1em; -} - -/*-------------------------------------------------------------- -10.0 Content ---------------------------------------------------------------*/ -/*-------------------------------------------------------------- -10.1 Posts and pages ---------------------------------------------------------------*/ -.hentry { - margin: 0 0 1.5em; -} - -.byline, -.updated { - display: none; -} - -.single .byline, -.group-blog .byline { - display: inline; -} - -.page-content, -.entry-content, -.entry-summary { - margin: 1.5em 0 0; -} - -.page-links { - clear: both; - margin: 0 0 1.5em; -} - -.nav-next { - text-align: right; -} - -.entry-content a, -.entry-footer a { - text-decoration: underline; -} - -.nav a { - text-decoration: none !important; + +.nav a { + text-decoration: none !important; } /*-------------------------------------------------------------- @@ -7809,11 +7415,11 @@ code { .comment { padding: 1em; border-top: 1px solid transparent; - border-top-color: #ccc; + border-top-color: #cccccc; } .comment.thread-odd { - background-color: #f5f5f5; + background-color: whitesmoke; } .comment-content a { @@ -7881,332 +7487,6 @@ code { clear: both; display: block; margin: 1em auto; -<<<<<<< HEAD -<<<<<<< HEAD -} - -/* - - - - - - - - - - - - - - - - - - - - == Galleries -- - - - - - - - - - - - - - - - - - - */ -.gallery { - margin-bottom: 1.5em; -} - -.gallery-item { - display: inline-block; - text-align: center; - vertical-align: top; - width: 100%; -} - -.gallery-columns-2 .gallery-item { - max-width: 50%; -} - -.gallery-columns-3 .gallery-item { - max-width: 33.33%; -} - -.gallery-columns-4 .gallery-item { - max-width: 25%; -} - -.gallery-columns-5 .gallery-item { - max-width: 20%; -} - -.gallery-columns-6 .gallery-item { - max-width: 16.66%; -} - -.gallery-columns-7 .gallery-item { - max-width: 14.28%; -} - -.gallery-columns-8 .gallery-item { - max-width: 12.5%; -} - -.gallery-columns-9 .gallery-item { - max-width: 11.11%; -} - -/* - - - - - - - - - - - - - - - - - - - - == Media -- - - - - - - - - - - - - - - - - - - */ -.page-content img.wp-smiley, -.entry-content img.wp-smiley, -.comment-content img.wp-smiley { - border: none; - margin-bottom: 0; - margin-top: 0; - padding: 0; -} - -/* Make sure embeds and iframes fit their containers */ -embed, -iframe, -object { - max-width: 100%; -} - -/* - - - - - - - - - - - - - - - - - - - - == Widgets -- - - - - - - - - - - - - - - - - - - */ -.widget { - /* - -ms-word-break: break-all; - word-break: break-all; - - // Non standard for webkit - word-break: break-word; - - -webkit-hyphens: auto; - -moz-hyphens: auto; - hyphens: auto; - */ - overflow: hidden; - border: 1px solid transparent; - border-width: 1px; - border-color: #ccc; - border-radius: 4px; - margin: 0 0 1.5em 0; - padding: 0; - background-color: #fff; - color: #000; -} -.widget a { - color: #428bca; -} -.widget a:hover { - color: #2a6496; -} -.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; -} -.widget .widget-head { - padding: 0.5em 0.5em 0.5em 1em; - border: 1px solid transparent; - border-width: 0 0 1px 0; - border-color: #ccc; -} -.widget .widget-head h2 { - font-size: 1em; - margin: 0; - color: #000; -} -.widget form { - margin: 1em; -} -.widget ul, .widget ol { - list-style-type: none; - padding: 0; - margin: 1em; -} -.widget ul li, .widget ol li { - margin-bottom: .75em; -} -.widget ul li ul, .widget ol li ul { - padding: 0; - margin: .5em 0 .5em 2em; - list-style-type: disc; -} -.widget ul li ul li, .widget ol li ul li { - margin-bottom: .5em; -} -.widget ul li ul li ul, .widget ol li ul li ul { - list-style-type: circle; -} -.widget ul li ol, .widget ol li ol { - padding: 0; - margin: .5em 0 .5em 2em; - list-style-type: decimal; -} -.widget ul li ol li, .widget ol li ol li { - margin-bottom: .5em; -} - -* html .widget.widget_dpe_fp_widget .dpe-flexible-posts li a { - height: 1%; -} - -/* Make sure select elements fit in widgets */ -.widget select { - max-width: 100%; -} - -.widget { - /* === CORE WP Widgets - */ - /* === 3rd Party Widgets - */ - /* === UCONN Widgets - */ -} -.widget.widget_text .textwidget { - margin: 1em; -} -.widget.widget_tag_cloud .tagcloud { - margin: 1em; -} -.widget.widget_black_studio_tinymce .textwidget { - margin: 1em; -} -.widget.simple-social-icons ul { - margin: 0.5em !important; -} -.widget.simple-social-icons ul li { - margin: 0.5em !important; -} -.widget.widget_rcpt ul { - margin: 0; -} -.widget.widget_rcpt ul .rcpt_item_title { - padding: .5em 5% 0; - font-weight: bold; -} -.widget.widget_rcpt ul .rcpt_item_title .rcpt_item_image { - margin-left: -9%; - margin-bottom: 1em; - width: 117%; -} -.widget.widget_rcpt ul .rcpt_item_title .rcpt_item_image img { - width: 100%; -} -.widget.widget_rcpt ul .rcpt_item_excerpt { - margin: .5em 5% 1em; -} -.widget.widget_rcpt ul .rcpt_item_date { - margin: .5em 5% 1em; -} -.widget.widget_sp_image { - padding: 0; - border: none; - background-color: transparent; -} -.widget.widget_metaslider_widget { - padding: 0; - background-color: transparent; - border: none; -} -.widget.widget_dpe_fp_widget { - padding: 0; - background-color: transparent; -} -.widget.widget_dpe_fp_widget .dpe-flexible-posts li { - padding: 0.1em 0px 0.1em 0px; - display: block; - background-color: transparent; -} -.widget.widget_dpe_fp_widget .dpe-flexible-posts li a { - margin: 0; - position: relative; - display: inline-block; -} -.widget.widget_dpe_fp_widget .dpe-flexible-posts li a .attachment-thumbnail { - height: 60px; - width: 60px; - margin-right: 10px; - margin-bottom: 10px; - float: left; -} -.widget.widget_dpe_fp_widget .dpe-flexible-posts li a .attachment-medium { - width: 48%; - margin-right: 10px; - margin-bottom: 10px; - float: left; -} -.widget.widget_dpe_fp_widget .dpe-flexible-posts li a .attachment-large { - max-width: 100%; - margin-right: 10px; - margin-bottom: 10px; - float: left; - clear: right; -} -.widget.widget_dpe_fp_widget .dpe-flexible-posts li a .title { - display: block; - position: relative; - font-size: 1em; - font-weight: normal; -} -.widget.widget_dpe_fp_widget .dpe-flexible-posts li a:after { - visibility: hidden; - display: block; - font-size: 0; - content: " "; - clear: both; - height: 0; -} -.widget.uc-contact-widget th { - white-space: nowrap; -} -.widget.uc-contact-widget td.uc-output-email { - word-break: break-all; -} -.widget.uc-contact-widget td.uc-output-more { - word-break: break-all; -} -.widget.uc-ecw { - padding-bottom: 1em; -} -.widget.uc-ecw .uc-cal { - padding: 0; -} -.widget.uc-ecw .uc-cal.uc-iconcal .uc-cal-list { - margin: 1em; -} -.widget.uc-ecw .uc-cal.uc-iconcal .uc-cal-list a.uc-cal-event { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - padding-left: 65px; - min-height: 65px; -} -.widget.uc-ecw .uc-cal.uc-iconcal .uc-cal-list a.uc-cal-event .uc-cal-event-date { - border: none; - width: 50px; - left: 0; - box-shadow: none; - background-color: #eee; -} -.widget.uc-ecw .uc-cal.uc-iconcal .uc-cal-list a.uc-cal-event .uc-cal-event-date .uc-cal-event-month { - height: auto; - padding: .4em .2em .3em .2em; - font-size: .8em; - background-color: #ccc; - color: #333; - font-weight: normal; - letter-spacing: 0; - text-transform: capitalize; -} -.widget.uc-ecw .uc-cal.uc-iconcal .uc-cal-list a.uc-cal-event .uc-cal-event-date .uc-cal-event-day { - padding: .5em .1em .6em; - height: auto; - background-color: #eee; - color: #333; - font-size: 1.2em; -} -.widget.uc-ecw .uc-cal.uc-iconcal .uc-cal-list a.uc-cal-event .uc-cal-event-title { - color: #428bca; - font-size: 1em; - line-height: 1.42857; - margin-bottom: .3em; - margin-top: .2em; -} -.widget.uc-ecw .uc-cal.uc-iconcal .uc-cal-list a.uc-cal-event .uc-cal-event-time { - color: #92bce0; - font-size: 1em; -======= ->>>>>>> 0b9a65cdbe3d11820b7f365de9f4b26ae22ed70d -======= ->>>>>>> 0b9a65cdbe3d11820b7f365de9f4b26ae22ed70d } /* - - - - - - - - - - - - - - - - - - - @@ -8525,18 +7805,8 @@ q:before, table q:after { opacity: .7; } #events-table table tbody th.today { -<<<<<<< HEAD -<<<<<<< HEAD - background: #ccc; - color: #333; -======= background: #cccccc; color: black; ->>>>>>> 0b9a65cdbe3d11820b7f365de9f4b26ae22ed70d -======= - background: #cccccc; - color: black; ->>>>>>> 0b9a65cdbe3d11820b7f365de9f4b26ae22ed70d } #events-table table tbody td { border-top-width: 0; @@ -8585,10 +7855,10 @@ q:before, table q:after { == Footers - - - - - - - - - - - - - - - - - - - */ #footers { - background-color: #eee; + background-color: #eeeeee; margin: 1.5em 0 0 0; border: 0px solid transparent; - border-color: #ccc; + border-color: #cccccc; border-width: 2px 0 0 0; } @@ -8610,14 +7880,6 @@ body.sticky .ie8 #footers { /* Make sure select elements fit in widgets */ } #mega-footer .widget { -<<<<<<< HEAD -<<<<<<< HEAD - color: #333; - background-color: transparent; - border: none; -======= -======= ->>>>>>> 0b9a65cdbe3d11820b7f365de9f4b26ae22ed70d overflow: hidden; border: 1px solid transparent; border-width: 1px; @@ -8627,10 +7889,6 @@ body.sticky .ie8 #footers { padding: 0; background-color: white; color: black; -<<<<<<< HEAD ->>>>>>> 0b9a65cdbe3d11820b7f365de9f4b26ae22ed70d -======= ->>>>>>> 0b9a65cdbe3d11820b7f365de9f4b26ae22ed70d } #mega-footer .widget a { color: #428bca; @@ -8749,23 +8007,11 @@ body.sticky .ie8 #footers { #mega-footer .widget.widget_sp_image { padding: 0; border: none; -<<<<<<< HEAD - background-color: transparent; -} -#mega-footer .widget.widget_metaslider_widget { - padding: 0; - background-color: transparent; -<<<<<<< HEAD - color: #333; -======= ->>>>>>> 0b9a65cdbe3d11820b7f365de9f4b26ae22ed70d -======= background-color: transparent; } #mega-footer .widget.widget_metaslider_widget { padding: 0; background-color: transparent; ->>>>>>> 0b9a65cdbe3d11820b7f365de9f4b26ae22ed70d border: none; } #mega-footer .widget.widget_dpe_fp_widget .dpe-flexible-posts li { @@ -8998,5 +8244,3 @@ body.sticky .ie8 #footers { - Andrew */ - -/*# sourceMappingURL=style.css.map */