6 changed files with 61 additions and 64 deletions
Split View
Diff Options
-
12src/collections/grid.less
-
2src/elements/divider.less
-
8src/elements/header.less
-
8src/modules/popup.less
-
47src/views/sitemap.less
-
48src/views/video.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; |
|||
} |
|||
|
|||
|
@ -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; |
|||
} |
Write
Preview
Loading…
Cancel
Save