diff --git a/style.css b/style.css index b4acaf8..c8384bd 100644 --- a/style.css +++ b/style.css @@ -7696,6 +7696,19 @@ q:before, table q:after { content: ' '; } +/* + Profile Page +*/ +.uup-user > span { + display: block; +} +.uup-user .uup-name { + font-weight: bold; +} +.uup-user .uup-name .uup-first:after { + content: ' '; +} + /* - - - - - - - - - - - - - - - - - - - == Calendar - - - - - - - - - - - - - - - - - - - */ @@ -7994,8 +8007,7 @@ body { font-weight: normal; } -#masthead #site-navigation .navbar-collapse .nav > li.active:after, -#masthead #site-navigation .navbar-collapse .nav > li.current-menu-ancestor:after { +#masthead #site-navigation .navbar-collapse .nav > li.active:after, #masthead #site-navigation .navbar-collapse .nav > li.current-menu-ancestor:after { -moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; @@ -8015,8 +8027,7 @@ body { } @media (max-width: 767px) { - #masthead #site-navigation .navbar-collapse .nav > li.active:after, - #masthead #site-navigation .navbar-collapse .nav > li.current-menu-parent:after { + #masthead #site-navigation .navbar-collapse .nav > li.active:after, #masthead #site-navigation .navbar-collapse .nav > li.current-menu-parent:after { display: none; } } @@ -8090,6 +8101,10 @@ body { padding-right: 1em !important; } } +.entry-content .row { + margin: 0; +} + .form-control { border-right: none; box-shadow: none; @@ -8153,3 +8168,15 @@ table .external .glyphicon-new-window { margin-left: 0.4em !important; opacity: 0.7 !important; } + +#vb #vb-timespan a { + margin: 0 0 0 .3em; + line-height: 2em; +} + +#events-grid-wrap th { + width: 14.23%; +} +#events-grid-wrap th:first-child { + width: auto; +} diff --git a/style.scss b/style.scss index 3ad6a93..bb81690 100644 --- a/style.scss +++ b/style.scss @@ -18,7 +18,6 @@ #uc-site-header { padding-left:15px; } - #uc-header { border-bottom-color:$header_border; } @@ -166,8 +165,7 @@ body { } } -#masthead #site-navigation .navbar-collapse .nav > li.active:after, -#masthead #site-navigation .navbar-collapse .nav > li.current-menu-ancestor:after { +#masthead #site-navigation .navbar-collapse .nav > li.active:after, #masthead #site-navigation .navbar-collapse .nav > li.current-menu-ancestor:after { -moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; @@ -187,8 +185,7 @@ body { } @media (max-width: 767px) { - #masthead #site-navigation .navbar-collapse .nav > li.active:after, - #masthead #site-navigation .navbar-collapse .nav > li.current-menu-parent:after { + #masthead #site-navigation .navbar-collapse .nav > li.active:after, #masthead #site-navigation .navbar-collapse .nav > li.current-menu-parent:after { display: none; } } @@ -272,6 +269,11 @@ body { } } +.entry-content { + .row { + margin:0; + } +} .form-control { border-right:none; @@ -342,3 +344,24 @@ table .external .glyphicon-new-window { margin-left: 0.4em !important; opacity: 0.7 !important; } + + + +// Events Calendar Grid + +#vb { + #vb-timespan { + a { + margin:0 0 0 .3em; + line-height:2em; + } + } +} +#events-grid-wrap { + th { + width:14.23%; + } + th:first-child { + width:auto; + } +} \ No newline at end of file