Browse Source

Adds sitemap, updates from today

pull/13/head
Jack Lukic 12 years ago
parent
commit
59de2ba9f3
6 changed files with 61 additions and 64 deletions
  1. 12
      src/collections/grid.less
  2. 2
      src/elements/divider.less
  3. 8
      src/elements/header.less
  4. 8
      src/modules/popup.less
  5. 47
      src/views/sitemap.less
  6. 48
      src/views/video.less

12
src/collections/grid.less

@ -64,12 +64,10 @@
.ui.grid > .row { .ui.grid > .row {
display: block; display: block;
width: 100%;
}
.ui.grid > .row {
width: 100% !important;
margin-top: 1.5%; margin-top: 1.5%;
padding-top: 1.5%;
padding: 1.5% 0% 0%;
font-size: 0rem;
} }
.ui.grid > .row:first-child { .ui.grid > .row:first-child {
padding-top: 0rem; padding-top: 0rem;
@ -158,7 +156,7 @@
} }
@media only screen and (min-width : 2000px) { @media only screen and (min-width : 2000px) {
.ui.responsive.grid { .ui.responsive.grid {
padding: 0% 25%;
padding: 0% 23%;
} }
.ui.responsive.grid > .column, .ui.responsive.grid > .column,
.ui.responsive.grid > .row > .column { .ui.responsive.grid > .row > .column {
@ -534,7 +532,7 @@
/*------------------- /*-------------------
Folding
Stackable
--------------------*/ --------------------*/
@media only screen and (max-width : 960px) { @media only screen and (max-width : 960px) {

2
src/elements/divider.less

@ -16,7 +16,7 @@
*******************************/ *******************************/
.ui.divider { .ui.divider {
margin: 1em 0em;
margin: 1rem 0rem;
border-top: 1px solid rgba(0, 0, 0, 0.1); border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.8); border-bottom: 1px solid rgba(255, 255, 255, 0.8);

8
src/elements/header.less

@ -16,7 +16,6 @@
/* Standard */ /* Standard */
.ui.header { .ui.header {
border: none; border: none;
margin: 1em 0em 1rem; margin: 1em 0em 1rem;
padding: 0em; padding: 0em;
@ -25,13 +24,6 @@
font-weight: bold; font-weight: bold;
line-height: 1.33; line-height: 1.33;
} }
.ui.header:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.ui.header .ui.sub.header, .ui.header .ui.sub.header,

8
src/modules/popup.less

@ -205,6 +205,10 @@
background-color: #333333; background-color: #333333;
border: none; border: none;
color: #FFFFFF; color: #FFFFFF;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
} }
.ui.inverted.popup .header { .ui.inverted.popup .header {
background-color: rgba(0, 0, 0, 0.2); background-color: rgba(0, 0, 0, 0.2);
@ -212,4 +216,8 @@
} }
.ui.inverted.popup:before { .ui.inverted.popup:before {
background-color: #333333; background-color: #333333;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
} }

47
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;
}

48
src/views/video.less

@ -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;
}
Loading…
Cancel
Save