diff --git a/src/collections/grid.less b/src/collections/grid.less index 55799b345..aa70a58d4 100755 --- a/src/collections/grid.less +++ b/src/collections/grid.less @@ -64,12 +64,10 @@ .ui.grid > .row { display: block; - width: 100%; -} - -.ui.grid > .row { + width: 100% !important; margin-top: 1.5%; - padding-top: 1.5%; + padding: 1.5% 0% 0%; + font-size: 0rem; } .ui.grid > .row:first-child { padding-top: 0rem; @@ -158,7 +156,7 @@ } @media only screen and (min-width : 2000px) { .ui.responsive.grid { - padding: 0% 25%; + padding: 0% 23%; } .ui.responsive.grid > .column, .ui.responsive.grid > .row > .column { @@ -534,7 +532,7 @@ /*------------------- - Folding + Stackable --------------------*/ @media only screen and (max-width : 960px) { diff --git a/src/elements/divider.less b/src/elements/divider.less index 907006b07..1e4cf2d7a 100755 --- a/src/elements/divider.less +++ b/src/elements/divider.less @@ -16,7 +16,7 @@ *******************************/ .ui.divider { - margin: 1em 0em; + margin: 1rem 0rem; border-top: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.8); diff --git a/src/elements/header.less b/src/elements/header.less index a5e66c568..6a2ff6ef5 100755 --- a/src/elements/header.less +++ b/src/elements/header.less @@ -16,7 +16,6 @@ /* Standard */ .ui.header { - border: none; margin: 1em 0em 1rem; padding: 0em; @@ -25,13 +24,6 @@ font-weight: bold; line-height: 1.33; } -.ui.header:after { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; -} .ui.header .ui.sub.header, diff --git a/src/modules/popup.less b/src/modules/popup.less index 3f8e98f48..dcfde155c 100755 --- a/src/modules/popup.less +++ b/src/modules/popup.less @@ -205,6 +205,10 @@ background-color: #333333; border: none; color: #FFFFFF; + + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; } .ui.inverted.popup .header { background-color: rgba(0, 0, 0, 0.2); @@ -212,4 +216,8 @@ } .ui.inverted.popup:before { background-color: #333333; + + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; } diff --git a/src/views/sitemap.less b/src/views/sitemap.less new file mode 100755 index 000000000..e4669ef5e --- /dev/null +++ b/src/views/sitemap.less @@ -0,0 +1,47 @@ +/* + * # Sitemap + * + * + * Copyright 2013 Contributors + * Released under the MIT license + * http://opensource.org/licenses/MIT + * + * Released: April 17 2013 + */ + +/******************************* + Sitemap +*******************************/ + +.ui.sitemap { + margin: 0 -3rem; + font-size: 0rem; + text-align: left; +} + + +/*-------------- + Elements +---------------*/ + +.ui.sitemap > .section { + display: inline-block; + vertical-align: top; + + margin: 0em 3rem; + + font-size: 1rem; +} + +.ui.sitemap > .section > .header { + font-size: 1.125em; + color: rgba(0, 0, 0, 0.8); + padding-bottom: 0.5em; +} + +.ui.sitemap > .section > a { + display: block; + padding: 0.25em 0em; +} + + diff --git a/src/views/video.less b/src/views/video.less deleted file mode 100755 index 4c40d230b..000000000 --- a/src/views/video.less +++ /dev/null @@ -1,48 +0,0 @@ - -/*--------------- - Video Module -----------------*/ - -.video.module { - position: relative; - background: #333333 url(/images/icon-placeholder-logo.png) no-repeat center center; -} - -.video.module .play { - cursor: pointer; - position: absolute; - top: 0px; - left: 0px; - z-index: 100; - -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; - filter: alpha(opacity=60); - opacity: 0.6; - width: 100%; - height: 100%; - background: url(/images/icon-play.png) no-repeat center center; - - -webkit-transition: opacity 0.3s; - -moz-transition: opacity 0.3s; - -o-transition: opacity 0.3s; - -ms-transition: opacity 0.3s; - transition: opacity 0.3s; -} -.video.module .play:hover { - opacity: 1; -} -.video.module .placeholder { - width: 100%; - height: 100%; -} -.video.module .embed { - display: none; -} - -/* Video Active */ -.video.module.active .play, -.video.module.active .placeholder { - display: none; -} -.video.module.active .embed { - display: block; -}