diff --git a/bl-kernel/admin/views/manage-pages.php b/bl-kernel/admin/views/manage-pages.php index 0d3f809b..06e52956 100644 --- a/bl-kernel/admin/views/manage-pages.php +++ b/bl-kernel/admin/views/manage-pages.php @@ -14,12 +14,10 @@ echo ' '; - unset($pagesParents[NO_PARENT_CHAR]); - - foreach($pagesParents as $parentKey=>$pageList) + foreach($pagesParents[NO_PARENT_CHAR] as $key=>$db) { // Parent page - $Page = $pages[$parentKey]; + $Page = $pages[$key]; $friendlyURL = Text::isEmpty($Url->filters('page')) ? '/'.$Page->key() : '/'.$Url->filters('page').'/'.$Page->key(); @@ -31,18 +29,27 @@ echo ' echo ''.$friendlyURL.''; echo ''; - // Children - foreach($pageList as $Page) + // If the page has children + if(isset($pagesParents[$Page->key()])) { - $friendlyURL = Text::isEmpty($Url->filters('page')) ? '/'.$Page->key() : '/'.$Url->filters('page').'/'.$Page->key(); + // Get the children + $children = $pagesParents[$Page->key()]; - echo ''; - echo ''; - echo ''.($Page->published()?'':''.$Language->g('Draft').' ').($Page->title()?$Page->title():''.$Language->g('Empty title').' ').''; - echo ''; - echo ''.$Page->position().''; - echo ''.$friendlyURL.''; - echo ''; + foreach($children as $keyChildren=>$dbChildren) + { + // Parent page + $Page = $pages[$keyChildren]; + + $friendlyURL = Text::isEmpty($Url->filters('page')) ? '/'.$Page->key() : '/'.$Url->filters('page').'/'.$Page->key(); + + echo ''; + echo ''; + echo ''.($Page->published()?'':''.$Language->g('Draft').' ').($Page->title()?$Page->title():''.$Language->g('Empty title').' ').''; + echo ''; + echo ''.$Page->position().''; + echo ''.$friendlyURL.''; + echo ''; + } } } diff --git a/bl-kernel/dbpages.class.php b/bl-kernel/dbpages.class.php index 8235ed36..555ef9c4 100644 --- a/bl-kernel/dbpages.class.php +++ b/bl-kernel/dbpages.class.php @@ -12,9 +12,9 @@ class dbPages extends dbJSON 'tags'=> array('inFile'=>false, 'value'=>array()), 'status'=> array('inFile'=>false, 'value'=>'draft'), 'date'=> array('inFile'=>false, 'value'=>''), + 'dateModified'=> array('inFile'=>false, 'value'=>''), 'position'=> array('inFile'=>false, 'value'=>0), - 'coverImage'=> array('inFile'=>false, 'value'=>''), - 'checksum'=> array('inFile'=>false, 'value'=>'') + 'coverImage'=> array('inFile'=>false, 'value'=>'') ); function __construct() @@ -76,10 +76,6 @@ class dbPages extends dbJSON } } - // Create Hash - $serialize = serialize($dataForDb+$dataForFile); - $dataForDb['checksum'] = sha1($serialize); - // Make the directory. Recursive. if( Filesystem::mkdir(PATH_PAGES.$key, true) === false ) { Log::set(__METHOD__.LOG_SEP.'Error occurred when trying to create the directory '.PATH_PAGES.$key); @@ -124,6 +120,9 @@ class dbPages extends dbJSON $args['date'] = $this->db[$args['key']]['date']; } + // Modified date + $args['dateModified'] = Date::current(DB_DATE_FORMAT); + // Verify arguments with the database fields. foreach($this->dbFields as $field=>$options) { @@ -162,10 +161,6 @@ class dbPages extends dbJSON } } - // Create Hash - $serialize = serialize($dataForDb+$dataForFile); - $dataForDb['checksum'] = sha1($serialize); - // Move the directory from old key to new key. if($newKey!==$args['key']) { @@ -437,4 +432,4 @@ class dbPages extends dbJSON return $this->db!=$db; } -} +} \ No newline at end of file diff --git a/bl-kernel/dbposts.class.php b/bl-kernel/dbposts.class.php index b22f8a00..4281d654 100644 --- a/bl-kernel/dbposts.class.php +++ b/bl-kernel/dbposts.class.php @@ -11,8 +11,8 @@ class dbPosts extends dbJSON 'tags'=> array('inFile'=>false, 'value'=>array()), 'allowComments'=> array('inFile'=>false, 'value'=>0), 'date'=> array('inFile'=>false, 'value'=>''), - 'coverImage'=> array('inFile'=>false, 'value'=>''), - 'checksum'=> array('inFile'=>false, 'value'=>'') + 'dateModified'=> array('inFile'=>false, 'value'=>''), + 'coverImage'=> array('inFile'=>false, 'value'=>'') ); private $numberPosts = array( @@ -160,10 +160,6 @@ class dbPosts extends dbJSON } } - // Create Hash - $serialize = serialize($dataForDb+$dataForFile); - $dataForDb['checksum'] = sha1($serialize); - // Make the directory. if( Filesystem::mkdir(PATH_POSTS.$key) === false ) { Log::set(__METHOD__.LOG_SEP.'Error occurred when trying to create the directory '.PATH_POSTS.$key); @@ -194,6 +190,10 @@ class dbPosts extends dbJSON public function edit($args) { if( $this->delete($args['key']) ) { + + // Modified date + $args['dateModified'] = Date::current(DB_DATE_FORMAT); + return $this->add($args); } diff --git a/bl-themes/blogme/assets/css/bludit.css b/bl-themes/blogme/assets/css/bludit.css deleted file mode 100644 index c182dffc..00000000 --- a/bl-themes/blogme/assets/css/bludit.css +++ /dev/null @@ -1,83 +0,0 @@ -/* Blogme hacks */ - -#wrapper { - width: 1100px !important; -} - -#sidebar { - min-width: 12em !important; -} - -article.post { - overflow: hidden; -} - -article.post div.title h1 { - font-weight: normal; - margin: 0 !important; - font-size: 1.2em; -} - -article.post div.info { - font-size: 0.9em; - color: #888; -} - -article.post div.info > span { - margin-right: 15px; -} - -div.cover-image { - border-bottom: 1px solid rgba(160, 160, 160, 0.3); - display: flex; - left: -3em; - margin: -3em 0 3em; - position: relative; - width: calc(100% + 6em); -} - -h2.blog-title { - font-size: 2em; - font-weight: normal; - text-align: center; -} - -h2 { - font-weight: normal !important; -} - -.plugin ul { - list-style: none !important; - padding: 0 !important; -} - -.plugin li { - padding: 0 !important; -} - -.plugin-pages ul.children { - margin-left: 10px; -} - -/* Just for Plugin tags */ -.plugin-tags li { - text-transform: capitalize; -} - -img { - width: 100%; -} - -#menu-bottom { - bottom: 0; - display: block; - margin: 20px; - background: rgba(220, 220, 220, 0.52); - position: fixed; - right: 0; - border-radius: 3px; -} - -#menu-bottom > a { - margin: 0 10px; -} \ No newline at end of file diff --git a/bl-themes/blogme/assets/css/ie8.css b/bl-themes/blogme/assets/css/ie8.css deleted file mode 100644 index b56a6722..00000000 --- a/bl-themes/blogme/assets/css/ie8.css +++ /dev/null @@ -1,72 +0,0 @@ -/* - Future Imperfect by HTML5 UP - html5up.net | @n33co - Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) -*/ - -/* Button */ - - input[type="submit"], - input[type="reset"], - input[type="button"], - button, - .button { - border: solid 1px #dedede; - } - -/* Form */ - - input[type="text"], - input[type="password"], - input[type="email"], - input[type="tel"], - select, - textarea { - border: solid 1px #dedede; - } - -/* Post */ - - .post { - border: solid 1px #dedede; - } - - .post > header { - border-bottom: solid 1px #dedede; - } - -/* Mini Post */ - - .mini-post { - border: solid 1px #dedede; - } - -/* Header */ - - #header { - border-bottom: solid 1px #dedede; - } - - #header .links { - border-left: solid 1px #dedede; - } - - #header .main ul li { - border-left: solid 1px #dedede; - } - -/* Sidebar */ - - #sidebar > * { - border-top: solid 1px #dedede; - } - -/* Menu */ - - #menu { - border-left: solid 1px #dedede; - } - - #menu > * { - border-top: solid 1px #dedede; - } \ No newline at end of file diff --git a/bl-themes/blogme/assets/css/ie9.css b/bl-themes/blogme/assets/css/ie9.css deleted file mode 100644 index e36dfe08..00000000 --- a/bl-themes/blogme/assets/css/ie9.css +++ /dev/null @@ -1,123 +0,0 @@ -/* - Future Imperfect by HTML5 UP - html5up.net | @n33co - Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) -*/ - -/* List */ - - ul.posts article:after { - clear: both; - content: ''; - display: block; - } - - ul.posts article .image { - display: table-cell; - vertical-align: top; - } - - ul.posts article header { - display: table-cell; - padding-right: 1em; - vertical-align: top; - } - -/* Author */ - - .author .name { - display: inline-block; - vertical-align: middle; - } - - .author img { - display: inline-block; - vertical-align: middle; - } - -/* Post */ - - .post:after { - clear: both; - content: ''; - display: block; - } - - .post > header:after { - clear: both; - content: ''; - display: block; - } - - .post > header .title { - display: table-cell; - vertical-align: top; - width: 65%; - } - - .post > header .meta { - display: table-cell; - vertical-align: top; - width: 30%; - } - - .post > footer:after { - clear: both; - content: ''; - display: block; - } - - .post > footer .actions { - display: inline-block; - } - - .post > footer .stats { - display: inline-block; - margin-left: 2em; - } - -/* Mini Post */ - - .mini-post .image { - display: block; - } - -/* Header */ - - #header:after { - clear: both; - content: ''; - display: block; - } - - #header h1 { - float: left; - } - - #header .links { - float: left; - } - - #header .main { - position: absolute; - right: 0; - top: 0; - } - -/* Wrapper */ - -/* Sidebar */ - - #sidebar { - display: table-cell; - margin-right: 0; - padding-right: 3em; - vertical-align: top; - } - -/* Main */ - - #main { - display: table-cell; - vertical-align: top; - } \ No newline at end of file diff --git a/bl-themes/blogme/assets/css/main.css b/bl-themes/blogme/assets/css/main.css deleted file mode 100644 index f829adbd..00000000 --- a/bl-themes/blogme/assets/css/main.css +++ /dev/null @@ -1,3435 +0,0 @@ -@import url("//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Raleway:400,800,900"); - -/* - Future Imperfect by HTML5 UP - html5up.net | @n33co - Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) -*/ - -/* Reset */ - - html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { - margin: 0; - padding: 0; - border: 0; - font-size: 100%; - font: inherit; - vertical-align: baseline; - } - - article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { - display: block; - } - - body { - line-height: 1; - } - - ol, ul { - list-style: none; - } - - blockquote, q { - quotes: none; - } - - blockquote:before, blockquote:after, q:before, q:after { - content: ''; - content: none; - } - - table { - border-collapse: collapse; - border-spacing: 0; - } - - body { - -webkit-text-size-adjust: none; - } - -/* Box Model */ - - *, *:before, *:after { - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; - } - -/* Grid */ - - .row { - border-bottom: solid 1px transparent; - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; - } - - .row > * { - float: left; - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; - } - - .row:after, .row:before { - content: ''; - display: block; - clear: both; - height: 0; - } - - .row.uniform > * > :first-child { - margin-top: 0; - } - - .row.uniform > * > :last-child { - margin-bottom: 0; - } - - .row.\30 \25 > * { - padding: 0 0 0 0em; - } - - .row.\30 \25 { - margin: 0 0 -1px 0em; - } - - .row.uniform.\30 \25 > * { - padding: 0em 0 0 0em; - } - - .row.uniform.\30 \25 { - margin: 0em 0 -1px 0em; - } - - .row > * { - padding: 0 0 0 1em; - } - - .row { - margin: 0 0 -1px -1em; - } - - .row.uniform > * { - padding: 1em 0 0 1em; - } - - .row.uniform { - margin: -1em 0 -1px -1em; - } - - .row.\32 00\25 > * { - padding: 0 0 0 2em; - } - - .row.\32 00\25 { - margin: 0 0 -1px -2em; - } - - .row.uniform.\32 00\25 > * { - padding: 2em 0 0 2em; - } - - .row.uniform.\32 00\25 { - margin: -2em 0 -1px -2em; - } - - .row.\31 50\25 > * { - padding: 0 0 0 1.5em; - } - - .row.\31 50\25 { - margin: 0 0 -1px -1.5em; - } - - .row.uniform.\31 50\25 > * { - padding: 1.5em 0 0 1.5em; - } - - .row.uniform.\31 50\25 { - margin: -1.5em 0 -1px -1.5em; - } - - .row.\35 0\25 > * { - padding: 0 0 0 0.5em; - } - - .row.\35 0\25 { - margin: 0 0 -1px -0.5em; - } - - .row.uniform.\35 0\25 > * { - padding: 0.5em 0 0 0.5em; - } - - .row.uniform.\35 0\25 { - margin: -0.5em 0 -1px -0.5em; - } - - .row.\32 5\25 > * { - padding: 0 0 0 0.25em; - } - - .row.\32 5\25 { - margin: 0 0 -1px -0.25em; - } - - .row.uniform.\32 5\25 > * { - padding: 0.25em 0 0 0.25em; - } - - .row.uniform.\32 5\25 { - margin: -0.25em 0 -1px -0.25em; - } - - .\31 2u, .\31 2u\24 { - width: 100%; - clear: none; - margin-left: 0; - } - - .\31 1u, .\31 1u\24 { - width: 91.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 0u, .\31 0u\24 { - width: 83.3333333333%; - clear: none; - margin-left: 0; - } - - .\39 u, .\39 u\24 { - width: 75%; - clear: none; - margin-left: 0; - } - - .\38 u, .\38 u\24 { - width: 66.6666666667%; - clear: none; - margin-left: 0; - } - - .\37 u, .\37 u\24 { - width: 58.3333333333%; - clear: none; - margin-left: 0; - } - - .\36 u, .\36 u\24 { - width: 50%; - clear: none; - margin-left: 0; - } - - .\35 u, .\35 u\24 { - width: 41.6666666667%; - clear: none; - margin-left: 0; - } - - .\34 u, .\34 u\24 { - width: 33.3333333333%; - clear: none; - margin-left: 0; - } - - .\33 u, .\33 u\24 { - width: 25%; - clear: none; - margin-left: 0; - } - - .\32 u, .\32 u\24 { - width: 16.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 u, .\31 u\24 { - width: 8.3333333333%; - clear: none; - margin-left: 0; - } - - .\31 2u\24 + *, - .\31 1u\24 + *, - .\31 0u\24 + *, - .\39 u\24 + *, - .\38 u\24 + *, - .\37 u\24 + *, - .\36 u\24 + *, - .\35 u\24 + *, - .\34 u\24 + *, - .\33 u\24 + *, - .\32 u\24 + *, - .\31 u\24 + * { - clear: left; - } - - .\-11u { - margin-left: 91.66667%; - } - - .\-10u { - margin-left: 83.33333%; - } - - .\-9u { - margin-left: 75%; - } - - .\-8u { - margin-left: 66.66667%; - } - - .\-7u { - margin-left: 58.33333%; - } - - .\-6u { - margin-left: 50%; - } - - .\-5u { - margin-left: 41.66667%; - } - - .\-4u { - margin-left: 33.33333%; - } - - .\-3u { - margin-left: 25%; - } - - .\-2u { - margin-left: 16.66667%; - } - - .\-1u { - margin-left: 8.33333%; - } - - @media screen and (max-width: 1680px) { - - .row > * { - padding: 0 0 0 1em; - } - - .row { - margin: 0 0 -1px -1em; - } - - .row.uniform > * { - padding: 1em 0 0 1em; - } - - .row.uniform { - margin: -1em 0 -1px -1em; - } - - .row.\32 00\25 > * { - padding: 0 0 0 2em; - } - - .row.\32 00\25 { - margin: 0 0 -1px -2em; - } - - .row.uniform.\32 00\25 > * { - padding: 2em 0 0 2em; - } - - .row.uniform.\32 00\25 { - margin: -2em 0 -1px -2em; - } - - .row.\31 50\25 > * { - padding: 0 0 0 1.5em; - } - - .row.\31 50\25 { - margin: 0 0 -1px -1.5em; - } - - .row.uniform.\31 50\25 > * { - padding: 1.5em 0 0 1.5em; - } - - .row.uniform.\31 50\25 { - margin: -1.5em 0 -1px -1.5em; - } - - .row.\35 0\25 > * { - padding: 0 0 0 0.5em; - } - - .row.\35 0\25 { - margin: 0 0 -1px -0.5em; - } - - .row.uniform.\35 0\25 > * { - padding: 0.5em 0 0 0.5em; - } - - .row.uniform.\35 0\25 { - margin: -0.5em 0 -1px -0.5em; - } - - .row.\32 5\25 > * { - padding: 0 0 0 0.25em; - } - - .row.\32 5\25 { - margin: 0 0 -1px -0.25em; - } - - .row.uniform.\32 5\25 > * { - padding: 0.25em 0 0 0.25em; - } - - .row.uniform.\32 5\25 { - margin: -0.25em 0 -1px -0.25em; - } - - .\31 2u\28xlarge\29, .\31 2u\24\28xlarge\29 { - width: 100%; - clear: none; - margin-left: 0; - } - - .\31 1u\28xlarge\29, .\31 1u\24\28xlarge\29 { - width: 91.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 0u\28xlarge\29, .\31 0u\24\28xlarge\29 { - width: 83.3333333333%; - clear: none; - margin-left: 0; - } - - .\39 u\28xlarge\29, .\39 u\24\28xlarge\29 { - width: 75%; - clear: none; - margin-left: 0; - } - - .\38 u\28xlarge\29, .\38 u\24\28xlarge\29 { - width: 66.6666666667%; - clear: none; - margin-left: 0; - } - - .\37 u\28xlarge\29, .\37 u\24\28xlarge\29 { - width: 58.3333333333%; - clear: none; - margin-left: 0; - } - - .\36 u\28xlarge\29, .\36 u\24\28xlarge\29 { - width: 50%; - clear: none; - margin-left: 0; - } - - .\35 u\28xlarge\29, .\35 u\24\28xlarge\29 { - width: 41.6666666667%; - clear: none; - margin-left: 0; - } - - .\34 u\28xlarge\29, .\34 u\24\28xlarge\29 { - width: 33.3333333333%; - clear: none; - margin-left: 0; - } - - .\33 u\28xlarge\29, .\33 u\24\28xlarge\29 { - width: 25%; - clear: none; - margin-left: 0; - } - - .\32 u\28xlarge\29, .\32 u\24\28xlarge\29 { - width: 16.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 u\28xlarge\29, .\31 u\24\28xlarge\29 { - width: 8.3333333333%; - clear: none; - margin-left: 0; - } - - .\31 2u\24\28xlarge\29 + *, - .\31 1u\24\28xlarge\29 + *, - .\31 0u\24\28xlarge\29 + *, - .\39 u\24\28xlarge\29 + *, - .\38 u\24\28xlarge\29 + *, - .\37 u\24\28xlarge\29 + *, - .\36 u\24\28xlarge\29 + *, - .\35 u\24\28xlarge\29 + *, - .\34 u\24\28xlarge\29 + *, - .\33 u\24\28xlarge\29 + *, - .\32 u\24\28xlarge\29 + *, - .\31 u\24\28xlarge\29 + * { - clear: left; - } - - .\-11u\28xlarge\29 { - margin-left: 91.66667%; - } - - .\-10u\28xlarge\29 { - margin-left: 83.33333%; - } - - .\-9u\28xlarge\29 { - margin-left: 75%; - } - - .\-8u\28xlarge\29 { - margin-left: 66.66667%; - } - - .\-7u\28xlarge\29 { - margin-left: 58.33333%; - } - - .\-6u\28xlarge\29 { - margin-left: 50%; - } - - .\-5u\28xlarge\29 { - margin-left: 41.66667%; - } - - .\-4u\28xlarge\29 { - margin-left: 33.33333%; - } - - .\-3u\28xlarge\29 { - margin-left: 25%; - } - - .\-2u\28xlarge\29 { - margin-left: 16.66667%; - } - - .\-1u\28xlarge\29 { - margin-left: 8.33333%; - } - - } - - @media screen and (max-width: 1010px) { - - .row > * { - padding: 0 0 0 1em; - } - - .row { - margin: 0 0 -1px -1em; - } - - .row.uniform > * { - padding: 1em 0 0 1em; - } - - .row.uniform { - margin: -1em 0 -1px -1em; - } - - .row.\32 00\25 > * { - padding: 0 0 0 2em; - } - - .row.\32 00\25 { - margin: 0 0 -1px -2em; - } - - .row.uniform.\32 00\25 > * { - padding: 2em 0 0 2em; - } - - .row.uniform.\32 00\25 { - margin: -2em 0 -1px -2em; - } - - .row.\31 50\25 > * { - padding: 0 0 0 1.5em; - } - - .row.\31 50\25 { - margin: 0 0 -1px -1.5em; - } - - .row.uniform.\31 50\25 > * { - padding: 1.5em 0 0 1.5em; - } - - .row.uniform.\31 50\25 { - margin: -1.5em 0 -1px -1.5em; - } - - .row.\35 0\25 > * { - padding: 0 0 0 0.5em; - } - - .row.\35 0\25 { - margin: 0 0 -1px -0.5em; - } - - .row.uniform.\35 0\25 > * { - padding: 0.5em 0 0 0.5em; - } - - .row.uniform.\35 0\25 { - margin: -0.5em 0 -1px -0.5em; - } - - .row.\32 5\25 > * { - padding: 0 0 0 0.25em; - } - - .row.\32 5\25 { - margin: 0 0 -1px -0.25em; - } - - .row.uniform.\32 5\25 > * { - padding: 0.25em 0 0 0.25em; - } - - .row.uniform.\32 5\25 { - margin: -0.25em 0 -1px -0.25em; - } - - .\31 2u\28large\29, .\31 2u\24\28large\29 { - width: 100%; - clear: none; - margin-left: 0; - } - - .\31 1u\28large\29, .\31 1u\24\28large\29 { - width: 91.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 0u\28large\29, .\31 0u\24\28large\29 { - width: 83.3333333333%; - clear: none; - margin-left: 0; - } - - .\39 u\28large\29, .\39 u\24\28large\29 { - width: 75%; - clear: none; - margin-left: 0; - } - - .\38 u\28large\29, .\38 u\24\28large\29 { - width: 66.6666666667%; - clear: none; - margin-left: 0; - } - - .\37 u\28large\29, .\37 u\24\28large\29 { - width: 58.3333333333%; - clear: none; - margin-left: 0; - } - - .\36 u\28large\29, .\36 u\24\28large\29 { - width: 50%; - clear: none; - margin-left: 0; - } - - .\35 u\28large\29, .\35 u\24\28large\29 { - width: 41.6666666667%; - clear: none; - margin-left: 0; - } - - .\34 u\28large\29, .\34 u\24\28large\29 { - width: 33.3333333333%; - clear: none; - margin-left: 0; - } - - .\33 u\28large\29, .\33 u\24\28large\29 { - width: 25%; - clear: none; - margin-left: 0; - } - - .\32 u\28large\29, .\32 u\24\28large\29 { - width: 16.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 u\28large\29, .\31 u\24\28large\29 { - width: 8.3333333333%; - clear: none; - margin-left: 0; - } - - .\31 2u\24\28large\29 + *, - .\31 1u\24\28large\29 + *, - .\31 0u\24\28large\29 + *, - .\39 u\24\28large\29 + *, - .\38 u\24\28large\29 + *, - .\37 u\24\28large\29 + *, - .\36 u\24\28large\29 + *, - .\35 u\24\28large\29 + *, - .\34 u\24\28large\29 + *, - .\33 u\24\28large\29 + *, - .\32 u\24\28large\29 + *, - .\31 u\24\28large\29 + * { - clear: left; - } - - .\-11u\28large\29 { - margin-left: 91.66667%; - } - - .\-10u\28large\29 { - margin-left: 83.33333%; - } - - .\-9u\28large\29 { - margin-left: 75%; - } - - .\-8u\28large\29 { - margin-left: 66.66667%; - } - - .\-7u\28large\29 { - margin-left: 58.33333%; - } - - .\-6u\28large\29 { - margin-left: 50%; - } - - .\-5u\28large\29 { - margin-left: 41.66667%; - } - - .\-4u\28large\29 { - margin-left: 33.33333%; - } - - .\-3u\28large\29 { - margin-left: 25%; - } - - .\-2u\28large\29 { - margin-left: 16.66667%; - } - - .\-1u\28large\29 { - margin-left: 8.33333%; - } - - } - - @media screen and (max-width: 980px) { - - .row > * { - padding: 0 0 0 1em; - } - - .row { - margin: 0 0 -1px -1em; - } - - .row.uniform > * { - padding: 1em 0 0 1em; - } - - .row.uniform { - margin: -1em 0 -1px -1em; - } - - .row.\32 00\25 > * { - padding: 0 0 0 2em; - } - - .row.\32 00\25 { - margin: 0 0 -1px -2em; - } - - .row.uniform.\32 00\25 > * { - padding: 2em 0 0 2em; - } - - .row.uniform.\32 00\25 { - margin: -2em 0 -1px -2em; - } - - .row.\31 50\25 > * { - padding: 0 0 0 1.5em; - } - - .row.\31 50\25 { - margin: 0 0 -1px -1.5em; - } - - .row.uniform.\31 50\25 > * { - padding: 1.5em 0 0 1.5em; - } - - .row.uniform.\31 50\25 { - margin: -1.5em 0 -1px -1.5em; - } - - .row.\35 0\25 > * { - padding: 0 0 0 0.5em; - } - - .row.\35 0\25 { - margin: 0 0 -1px -0.5em; - } - - .row.uniform.\35 0\25 > * { - padding: 0.5em 0 0 0.5em; - } - - .row.uniform.\35 0\25 { - margin: -0.5em 0 -1px -0.5em; - } - - .row.\32 5\25 > * { - padding: 0 0 0 0.25em; - } - - .row.\32 5\25 { - margin: 0 0 -1px -0.25em; - } - - .row.uniform.\32 5\25 > * { - padding: 0.25em 0 0 0.25em; - } - - .row.uniform.\32 5\25 { - margin: -0.25em 0 -1px -0.25em; - } - - .\31 2u\28medium\29, .\31 2u\24\28medium\29 { - width: 100%; - clear: none; - margin-left: 0; - } - - .\31 1u\28medium\29, .\31 1u\24\28medium\29 { - width: 91.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 0u\28medium\29, .\31 0u\24\28medium\29 { - width: 83.3333333333%; - clear: none; - margin-left: 0; - } - - .\39 u\28medium\29, .\39 u\24\28medium\29 { - width: 75%; - clear: none; - margin-left: 0; - } - - .\38 u\28medium\29, .\38 u\24\28medium\29 { - width: 66.6666666667%; - clear: none; - margin-left: 0; - } - - .\37 u\28medium\29, .\37 u\24\28medium\29 { - width: 58.3333333333%; - clear: none; - margin-left: 0; - } - - .\36 u\28medium\29, .\36 u\24\28medium\29 { - width: 50%; - clear: none; - margin-left: 0; - } - - .\35 u\28medium\29, .\35 u\24\28medium\29 { - width: 41.6666666667%; - clear: none; - margin-left: 0; - } - - .\34 u\28medium\29, .\34 u\24\28medium\29 { - width: 33.3333333333%; - clear: none; - margin-left: 0; - } - - .\33 u\28medium\29, .\33 u\24\28medium\29 { - width: 25%; - clear: none; - margin-left: 0; - } - - .\32 u\28medium\29, .\32 u\24\28medium\29 { - width: 16.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 u\28medium\29, .\31 u\24\28medium\29 { - width: 8.3333333333%; - clear: none; - margin-left: 0; - } - - .\31 2u\24\28medium\29 + *, - .\31 1u\24\28medium\29 + *, - .\31 0u\24\28medium\29 + *, - .\39 u\24\28medium\29 + *, - .\38 u\24\28medium\29 + *, - .\37 u\24\28medium\29 + *, - .\36 u\24\28medium\29 + *, - .\35 u\24\28medium\29 + *, - .\34 u\24\28medium\29 + *, - .\33 u\24\28medium\29 + *, - .\32 u\24\28medium\29 + *, - .\31 u\24\28medium\29 + * { - clear: left; - } - - .\-11u\28medium\29 { - margin-left: 91.66667%; - } - - .\-10u\28medium\29 { - margin-left: 83.33333%; - } - - .\-9u\28medium\29 { - margin-left: 75%; - } - - .\-8u\28medium\29 { - margin-left: 66.66667%; - } - - .\-7u\28medium\29 { - margin-left: 58.33333%; - } - - .\-6u\28medium\29 { - margin-left: 50%; - } - - .\-5u\28medium\29 { - margin-left: 41.66667%; - } - - .\-4u\28medium\29 { - margin-left: 33.33333%; - } - - .\-3u\28medium\29 { - margin-left: 25%; - } - - .\-2u\28medium\29 { - margin-left: 16.66667%; - } - - .\-1u\28medium\29 { - margin-left: 8.33333%; - } - - } - - @media screen and (max-width: 736px) { - - .row > * { - padding: 0 0 0 1em; - } - - .row { - margin: 0 0 -1px -1em; - } - - .row.uniform > * { - padding: 1em 0 0 1em; - } - - .row.uniform { - margin: -1em 0 -1px -1em; - } - - .row.\32 00\25 > * { - padding: 0 0 0 2em; - } - - .row.\32 00\25 { - margin: 0 0 -1px -2em; - } - - .row.uniform.\32 00\25 > * { - padding: 2em 0 0 2em; - } - - .row.uniform.\32 00\25 { - margin: -2em 0 -1px -2em; - } - - .row.\31 50\25 > * { - padding: 0 0 0 1.5em; - } - - .row.\31 50\25 { - margin: 0 0 -1px -1.5em; - } - - .row.uniform.\31 50\25 > * { - padding: 1.5em 0 0 1.5em; - } - - .row.uniform.\31 50\25 { - margin: -1.5em 0 -1px -1.5em; - } - - .row.\35 0\25 > * { - padding: 0 0 0 0.5em; - } - - .row.\35 0\25 { - margin: 0 0 -1px -0.5em; - } - - .row.uniform.\35 0\25 > * { - padding: 0.5em 0 0 0.5em; - } - - .row.uniform.\35 0\25 { - margin: -0.5em 0 -1px -0.5em; - } - - .row.\32 5\25 > * { - padding: 0 0 0 0.25em; - } - - .row.\32 5\25 { - margin: 0 0 -1px -0.25em; - } - - .row.uniform.\32 5\25 > * { - padding: 0.25em 0 0 0.25em; - } - - .row.uniform.\32 5\25 { - margin: -0.25em 0 -1px -0.25em; - } - - .\31 2u\28small\29, .\31 2u\24\28small\29 { - width: 100%; - clear: none; - margin-left: 0; - } - - .\31 1u\28small\29, .\31 1u\24\28small\29 { - width: 91.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 0u\28small\29, .\31 0u\24\28small\29 { - width: 83.3333333333%; - clear: none; - margin-left: 0; - } - - .\39 u\28small\29, .\39 u\24\28small\29 { - width: 75%; - clear: none; - margin-left: 0; - } - - .\38 u\28small\29, .\38 u\24\28small\29 { - width: 66.6666666667%; - clear: none; - margin-left: 0; - } - - .\37 u\28small\29, .\37 u\24\28small\29 { - width: 58.3333333333%; - clear: none; - margin-left: 0; - } - - .\36 u\28small\29, .\36 u\24\28small\29 { - width: 50%; - clear: none; - margin-left: 0; - } - - .\35 u\28small\29, .\35 u\24\28small\29 { - width: 41.6666666667%; - clear: none; - margin-left: 0; - } - - .\34 u\28small\29, .\34 u\24\28small\29 { - width: 33.3333333333%; - clear: none; - margin-left: 0; - } - - .\33 u\28small\29, .\33 u\24\28small\29 { - width: 25%; - clear: none; - margin-left: 0; - } - - .\32 u\28small\29, .\32 u\24\28small\29 { - width: 16.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 u\28small\29, .\31 u\24\28small\29 { - width: 8.3333333333%; - clear: none; - margin-left: 0; - } - - .\31 2u\24\28small\29 + *, - .\31 1u\24\28small\29 + *, - .\31 0u\24\28small\29 + *, - .\39 u\24\28small\29 + *, - .\38 u\24\28small\29 + *, - .\37 u\24\28small\29 + *, - .\36 u\24\28small\29 + *, - .\35 u\24\28small\29 + *, - .\34 u\24\28small\29 + *, - .\33 u\24\28small\29 + *, - .\32 u\24\28small\29 + *, - .\31 u\24\28small\29 + * { - clear: left; - } - - .\-11u\28small\29 { - margin-left: 91.66667%; - } - - .\-10u\28small\29 { - margin-left: 83.33333%; - } - - .\-9u\28small\29 { - margin-left: 75%; - } - - .\-8u\28small\29 { - margin-left: 66.66667%; - } - - .\-7u\28small\29 { - margin-left: 58.33333%; - } - - .\-6u\28small\29 { - margin-left: 50%; - } - - .\-5u\28small\29 { - margin-left: 41.66667%; - } - - .\-4u\28small\29 { - margin-left: 33.33333%; - } - - .\-3u\28small\29 { - margin-left: 25%; - } - - .\-2u\28small\29 { - margin-left: 16.66667%; - } - - .\-1u\28small\29 { - margin-left: 8.33333%; - } - - } - - @media screen and (max-width: 480px) { - - .row > * { - padding: 0 0 0 1em; - } - - .row { - margin: 0 0 -1px -1em; - } - - .row.uniform > * { - padding: 1em 0 0 1em; - } - - .row.uniform { - margin: -1em 0 -1px -1em; - } - - .row.\32 00\25 > * { - padding: 0 0 0 2em; - } - - .row.\32 00\25 { - margin: 0 0 -1px -2em; - } - - .row.uniform.\32 00\25 > * { - padding: 2em 0 0 2em; - } - - .row.uniform.\32 00\25 { - margin: -2em 0 -1px -2em; - } - - .row.\31 50\25 > * { - padding: 0 0 0 1.5em; - } - - .row.\31 50\25 { - margin: 0 0 -1px -1.5em; - } - - .row.uniform.\31 50\25 > * { - padding: 1.5em 0 0 1.5em; - } - - .row.uniform.\31 50\25 { - margin: -1.5em 0 -1px -1.5em; - } - - .row.\35 0\25 > * { - padding: 0 0 0 0.5em; - } - - .row.\35 0\25 { - margin: 0 0 -1px -0.5em; - } - - .row.uniform.\35 0\25 > * { - padding: 0.5em 0 0 0.5em; - } - - .row.uniform.\35 0\25 { - margin: -0.5em 0 -1px -0.5em; - } - - .row.\32 5\25 > * { - padding: 0 0 0 0.25em; - } - - .row.\32 5\25 { - margin: 0 0 -1px -0.25em; - } - - .row.uniform.\32 5\25 > * { - padding: 0.25em 0 0 0.25em; - } - - .row.uniform.\32 5\25 { - margin: -0.25em 0 -1px -0.25em; - } - - .\31 2u\28xsmall\29, .\31 2u\24\28xsmall\29 { - width: 100%; - clear: none; - margin-left: 0; - } - - .\31 1u\28xsmall\29, .\31 1u\24\28xsmall\29 { - width: 91.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 0u\28xsmall\29, .\31 0u\24\28xsmall\29 { - width: 83.3333333333%; - clear: none; - margin-left: 0; - } - - .\39 u\28xsmall\29, .\39 u\24\28xsmall\29 { - width: 75%; - clear: none; - margin-left: 0; - } - - .\38 u\28xsmall\29, .\38 u\24\28xsmall\29 { - width: 66.6666666667%; - clear: none; - margin-left: 0; - } - - .\37 u\28xsmall\29, .\37 u\24\28xsmall\29 { - width: 58.3333333333%; - clear: none; - margin-left: 0; - } - - .\36 u\28xsmall\29, .\36 u\24\28xsmall\29 { - width: 50%; - clear: none; - margin-left: 0; - } - - .\35 u\28xsmall\29, .\35 u\24\28xsmall\29 { - width: 41.6666666667%; - clear: none; - margin-left: 0; - } - - .\34 u\28xsmall\29, .\34 u\24\28xsmall\29 { - width: 33.3333333333%; - clear: none; - margin-left: 0; - } - - .\33 u\28xsmall\29, .\33 u\24\28xsmall\29 { - width: 25%; - clear: none; - margin-left: 0; - } - - .\32 u\28xsmall\29, .\32 u\24\28xsmall\29 { - width: 16.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 u\28xsmall\29, .\31 u\24\28xsmall\29 { - width: 8.3333333333%; - clear: none; - margin-left: 0; - } - - .\31 2u\24\28xsmall\29 + *, - .\31 1u\24\28xsmall\29 + *, - .\31 0u\24\28xsmall\29 + *, - .\39 u\24\28xsmall\29 + *, - .\38 u\24\28xsmall\29 + *, - .\37 u\24\28xsmall\29 + *, - .\36 u\24\28xsmall\29 + *, - .\35 u\24\28xsmall\29 + *, - .\34 u\24\28xsmall\29 + *, - .\33 u\24\28xsmall\29 + *, - .\32 u\24\28xsmall\29 + *, - .\31 u\24\28xsmall\29 + * { - clear: left; - } - - .\-11u\28xsmall\29 { - margin-left: 91.66667%; - } - - .\-10u\28xsmall\29 { - margin-left: 83.33333%; - } - - .\-9u\28xsmall\29 { - margin-left: 75%; - } - - .\-8u\28xsmall\29 { - margin-left: 66.66667%; - } - - .\-7u\28xsmall\29 { - margin-left: 58.33333%; - } - - .\-6u\28xsmall\29 { - margin-left: 50%; - } - - .\-5u\28xsmall\29 { - margin-left: 41.66667%; - } - - .\-4u\28xsmall\29 { - margin-left: 33.33333%; - } - - .\-3u\28xsmall\29 { - margin-left: 25%; - } - - .\-2u\28xsmall\29 { - margin-left: 16.66667%; - } - - .\-1u\28xsmall\29 { - margin-left: 8.33333%; - } - - } - -/* Basic */ - - @-ms-viewport { - width: device-width; - } - - body { - -ms-overflow-style: scrollbar; - } - - @media screen and (max-width: 480px) { - - html, body { - min-width: 320px; - } - - } - - body { - background: #f4f4f4; - } - - body.is-loading *, body.is-loading *:before, body.is-loading *:after { - -moz-animation: none !important; - -webkit-animation: none !important; - -ms-animation: none !important; - animation: none !important; - -moz-transition: none !important; - -webkit-transition: none !important; - -ms-transition: none !important; - transition: none !important; - } - -/* Type */ - - body, input, select, textarea { - color: #646464; - font-family: "Source Sans Pro", Helvetica, sans-serif; - font-size: 14pt; - font-weight: 400; - line-height: 1.75; - } - - @media screen and (max-width: 1680px) { - - body, input, select, textarea { - font-size: 12pt; - } - - } - - @media screen and (max-width: 1010px) { - - body, input, select, textarea { - font-size: 12pt; - } - - } - - @media screen and (max-width: 980px) { - - body, input, select, textarea { - font-size: 12pt; - } - - } - - @media screen and (max-width: 736px) { - - body, input, select, textarea { - font-size: 12pt; - } - - } - - @media screen and (max-width: 480px) { - - body, input, select, textarea { - font-size: 12pt; - } - - } - - a { - -moz-transition: color 0.2s ease, border-bottom-color 0.2s ease; - -webkit-transition: color 0.2s ease, border-bottom-color 0.2s ease; - -ms-transition: color 0.2s ease, border-bottom-color 0.2s ease; - transition: color 0.2s ease, border-bottom-color 0.2s ease; - border-bottom: dotted 1px rgba(160, 160, 160, 0.65); - color: inherit; - text-decoration: none; - } - - a:before { - -moz-transition: color 0.2s ease; - -webkit-transition: color 0.2s ease; - -ms-transition: color 0.2s ease; - transition: color 0.2s ease; - } - - a:hover { - border-bottom-color: transparent; - color: #2ebaae !important; - } - - a:hover:before { - color: #2ebaae !important; - } - - strong, b { - color: #3c3b3b; - font-weight: 700; - } - - em, i { - font-style: italic; - } - - p { - margin: 0 0 2em 0; - } - - h1, h2, h3, h4, h5, h6 { - color: #3c3b3b; - font-family: "Raleway", Helvetica, sans-serif; - font-weight: 800; - letter-spacing: 0.25em; - line-height: 1.65; - margin: 0 0 1em 0; - text-transform: uppercase; - } - - h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { - color: inherit; - border-bottom: 0; - } - - h2 { - font-size: 1.1em; - } - - h3 { - font-size: 0.9em; - } - - h4 { - font-size: 0.7em; - } - - h5 { - font-size: 0.7em; - } - - h6 { - font-size: 0.7em; - } - - sub { - font-size: 0.8em; - position: relative; - top: 0.5em; - } - - sup { - font-size: 0.8em; - position: relative; - top: -0.5em; - } - - blockquote { - border-left: solid 4px rgba(160, 160, 160, 0.3); - font-style: italic; - margin: 0 0 2em 0; - padding: 0.5em 0 0.5em 2em; - } - - code { - background: rgba(160, 160, 160, 0.075); - border: solid 1px rgba(160, 160, 160, 0.3); - font-family: "Courier New", monospace; - font-size: 0.9em; - margin: 0 0.25em; - padding: 0.25em 0.65em; - } - - pre { - -webkit-overflow-scrolling: touch; - font-family: "Courier New", monospace; - font-size: 0.9em; - margin: 0 0 2em 0; - } - - pre code { - display: block; - line-height: 1.75em; - padding: 1em 1.5em; - overflow-x: auto; - } - - hr { - border: 0; - border-bottom: solid 1px rgba(160, 160, 160, 0.3); - margin: 2em 0; - } - - hr.major { - margin: 3em 0; - } - - .align-left { - text-align: left; - } - - .align-center { - text-align: center; - } - - .align-right { - text-align: right; - } - -/* Author */ - - .author { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-flex-direction: row; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -moz-align-items: center; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -moz-justify-content: -moz-flex-end; - -webkit-justify-content: -webkit-flex-end; - -ms-justify-content: -ms-flex-end; - justify-content: flex-end; - border-bottom: 0; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.6em; - font-weight: 400; - letter-spacing: 0.25em; - text-transform: uppercase; - white-space: nowrap; - } - - .author .name { - -moz-transition: border-bottom-color 0.2s ease; - -webkit-transition: border-bottom-color 0.2s ease; - -ms-transition: border-bottom-color 0.2s ease; - transition: border-bottom-color 0.2s ease; - border-bottom: dotted 1px rgba(160, 160, 160, 0.65); - display: block; - margin: 0 1.5em 0 0; - } - - .author img { - border-radius: 100%; - display: block; - width: 4em; - } - - .author:hover .name { - border-bottom-color: transparent; - } - -/* Blurb */ - - .blurb h2 { - font-size: 0.8em; - margin: 0 0 1.5em 0; - } - - .blurb h3 { - font-size: 0.7em; - } - - .blurb p { - font-size: 0.9em; - } - -/* Box */ - - .box { - border: solid 1px rgba(160, 160, 160, 0.3); - margin-bottom: 2em; - padding: 1.5em; - } - - .box > :last-child, - .box > :last-child > :last-child, - .box > :last-child > :last-child > :last-child { - margin-bottom: 0; - } - - .box.alt { - border: 0; - border-radius: 0; - padding: 0; - } - -/* Button */ - - input[type="submit"], - input[type="reset"], - input[type="button"], - button, - .button { - -moz-appearance: none; - -webkit-appearance: none; - -ms-appearance: none; - appearance: none; - -moz-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; - -webkit-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; - -ms-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; - transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; - background-color: transparent; - border: 0; - box-shadow: inset 0 0 0 1px rgba(160, 160, 160, 0.3); - color: #3c3b3b !important; - cursor: pointer; - display: inline-block; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.6em; - font-weight: 800; - height: 4.8125em; - letter-spacing: 0.25em; - line-height: 4.8125em; - padding: 0 2.5em; - text-align: center; - text-decoration: none; - text-transform: uppercase; - white-space: nowrap; - } - - input[type="submit"]:hover, - input[type="reset"]:hover, - input[type="button"]:hover, - button:hover, - .button:hover { - box-shadow: inset 0 0 0 1px #2ebaae; - color: #2ebaae !important; - } - - input[type="submit"]:hover:active, - input[type="reset"]:hover:active, - input[type="button"]:hover:active, - button:hover:active, - .button:hover:active { - background-color: rgba(46, 186, 174, 0.05); - } - - input[type="submit"]:before, input[type="submit"]:after, - input[type="reset"]:before, - input[type="reset"]:after, - input[type="button"]:before, - input[type="button"]:after, - button:before, - button:after, - .button:before, - .button:after { - color: #aaaaaa; - position: relative; - } - - input[type="submit"]:before, - input[type="reset"]:before, - input[type="button"]:before, - button:before, - .button:before { - left: -1em; - padding: 0 0 0 0.75em; - } - - input[type="submit"]:after, - input[type="reset"]:after, - input[type="button"]:after, - button:after, - .button:after { - left: 1em; - padding: 0 0.75em 0 0; - } - - input[type="submit"].fit, - input[type="reset"].fit, - input[type="button"].fit, - button.fit, - .button.fit { - display: block; - margin: 0 0 1em 0; - width: 100%; - } - - input[type="submit"].big, - input[type="reset"].big, - input[type="button"].big, - button.big, - .button.big { - font-size: 0.7em; - padding: 0 3em; - } - - input[type="submit"].small, - input[type="reset"].small, - input[type="button"].small, - button.small, - .button.small { - font-size: 0.5em; - } - - input[type="submit"].disabled, input[type="submit"]:disabled, - input[type="reset"].disabled, - input[type="reset"]:disabled, - input[type="button"].disabled, - input[type="button"]:disabled, - button.disabled, - button:disabled, - .button.disabled, - .button:disabled { - -moz-pointer-events: none; - -webkit-pointer-events: none; - -ms-pointer-events: none; - pointer-events: none; - color: rgba(160, 160, 160, 0.3) !important; - } - - input[type="submit"].disabled:before, input[type="submit"]:disabled:before, - input[type="reset"].disabled:before, - input[type="reset"]:disabled:before, - input[type="button"].disabled:before, - input[type="button"]:disabled:before, - button.disabled:before, - button:disabled:before, - .button.disabled:before, - .button:disabled:before { - color: rgba(160, 160, 160, 0.3) !important; - } - -/* Form */ - - form { - margin: 0 0 2em 0; - } - - form.search { - text-decoration: none; - position: relative; - } - - form.search:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - form.search:before { - color: #aaaaaa; - content: '\f002'; - display: block; - height: 2.75em; - left: 0; - line-height: 2.75em; - position: absolute; - text-align: center; - top: 0; - width: 2.5em; - } - - form.search > input:first-child { - padding-left: 2.5em; - } - - label { - color: #3c3b3b; - display: block; - font-size: 0.9em; - font-weight: 700; - margin: 0 0 1em 0; - } - - input[type="text"], - input[type="password"], - input[type="email"], - input[type="tel"], - select, - textarea { - -moz-appearance: none; - -webkit-appearance: none; - -ms-appearance: none; - appearance: none; - background: rgba(160, 160, 160, 0.075); - border: none; - border: solid 1px rgba(160, 160, 160, 0.3); - border-radius: 0; - color: inherit; - display: block; - outline: 0; - padding: 0 1em; - text-decoration: none; - width: 100%; - } - - input[type="text"]:invalid, - input[type="password"]:invalid, - input[type="email"]:invalid, - input[type="tel"]:invalid, - select:invalid, - textarea:invalid { - box-shadow: none; - } - - input[type="text"]:focus, - input[type="password"]:focus, - input[type="email"]:focus, - input[type="tel"]:focus, - select:focus, - textarea:focus { - border-color: #2ebaae; - box-shadow: inset 0 0 0 1px #2ebaae; - } - - .select-wrapper { - text-decoration: none; - display: block; - position: relative; - } - - .select-wrapper:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - .select-wrapper:before { - color: rgba(160, 160, 160, 0.3); - content: '\f078'; - display: block; - height: 2.75em; - line-height: 2.75em; - pointer-events: none; - position: absolute; - right: 0; - text-align: center; - top: 0; - width: 2.75em; - } - - .select-wrapper select::-ms-expand { - display: none; - } - - input[type="text"], - input[type="password"], - input[type="email"], - select { - height: 2.75em; - } - - textarea { - padding: 0.75em 1em; - } - - input[type="checkbox"], - input[type="radio"] { - -moz-appearance: none; - -webkit-appearance: none; - -ms-appearance: none; - appearance: none; - display: block; - float: left; - margin-right: -2em; - opacity: 0; - width: 1em; - z-index: -1; - } - - input[type="checkbox"] + label, - input[type="radio"] + label { - text-decoration: none; - color: #646464; - cursor: pointer; - display: inline-block; - font-size: 1em; - font-weight: 400; - padding-left: 2.4em; - padding-right: 0.75em; - position: relative; - } - - input[type="checkbox"] + label:before, - input[type="radio"] + label:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - input[type="checkbox"] + label:before, - input[type="radio"] + label:before { - background: rgba(160, 160, 160, 0.075); - border: solid 1px rgba(160, 160, 160, 0.3); - content: ''; - display: inline-block; - height: 1.65em; - left: 0; - line-height: 1.58125em; - position: absolute; - text-align: center; - top: 0; - width: 1.65em; - } - - input[type="checkbox"]:checked + label:before, - input[type="radio"]:checked + label:before { - background: #3c3b3b; - border-color: #3c3b3b; - color: #ffffff; - content: '\f00c'; - } - - input[type="checkbox"]:focus + label:before, - input[type="radio"]:focus + label:before { - border-color: #2ebaae; - box-shadow: 0 0 0 1px #2ebaae; - } - - input[type="radio"] + label:before { - border-radius: 100%; - } - - ::-webkit-input-placeholder { - color: #aaaaaa !important; - opacity: 1.0; - } - - :-moz-placeholder { - color: #aaaaaa !important; - opacity: 1.0; - } - - ::-moz-placeholder { - color: #aaaaaa !important; - opacity: 1.0; - } - - :-ms-input-placeholder { - color: #aaaaaa !important; - opacity: 1.0; - } - - .formerize-placeholder { - color: #aaaaaa !important; - opacity: 1.0; - } - -/* Icon */ - - .icon { - text-decoration: none; - border-bottom: none; - position: relative; - } - - .icon:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - .icon > .label { - display: none; - } - - .icon.suffix:before { - float: right; - } - -/* Image */ - - .image { - border: 0; - display: inline-block; - position: relative; - } - - .image img { - display: block; - } - - .image.left, .image.right { - max-width: 40%; - } - - .image.left img, .image.right img { - width: 100%; - } - - .image.left { - float: left; - padding: 0 1.5em 1em 0; - top: 0.25em; - } - - .image.right { - float: right; - padding: 0 0 1em 1.5em; - top: 0.25em; - } - - .image.fit { - display: block; - margin: 0 0 2em 0; - width: 100%; - } - - .image.fit img { - width: 100%; - } - - .image.featured { - display: block; - margin: 0 0 3em 0; - width: 100%; - } - - .image.featured img { - width: 100%; - } - - @media screen and (max-width: 736px) { - - .image.featured { - margin: 0 0 1.5em 0; - } - - } - - .image.main { - display: block; - margin: 0 0 3em 0; - width: 100%; - } - - .image.main img { - width: 100%; - } - -/* List */ - - ol { - list-style: decimal; - margin: 0 0 2em 0; - padding-left: 1.25em; - } - - ol li { - padding-left: 0.25em; - } - - ul { - list-style: disc; - margin: 0 0 2em 0; - padding-left: 1em; - } - - ul li { - padding-left: 0.5em; - } - - ul.alt { - list-style: none; - padding-left: 0; - } - - ul.alt li { - border-top: solid 1px rgba(160, 160, 160, 0.3); - padding: 0.5em 0; - } - - ul.alt li:first-child { - border-top: 0; - padding-top: 0; - } - - ul.icons { - cursor: default; - list-style: none; - padding-left: 0; - } - - ul.icons li { - display: inline-block; - padding: 0 1em 0 0; - } - - ul.icons li:last-child { - padding-right: 0; - } - - ul.icons li > * { - text-decoration: none; - border: 0; - } - - ul.icons li > *:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - ul.icons li > * .label { - display: none; - } - - ul.actions { - cursor: default; - list-style: none; - padding-left: 0; - } - - ul.actions li { - display: inline-block; - padding: 0 1.5em 0 0; - vertical-align: middle; - } - - ul.actions li:last-child { - padding-right: 0; - } - - ul.actions.pagination .next { - text-decoration: none; - } - - ul.actions.pagination .next:after { - content: ""; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - ul.actions.pagination .next:after { - content: '\f054'; - } - - ul.actions.pagination .previous { - text-decoration: none; - } - - ul.actions.pagination .previous:before { - content: ""; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - ul.actions.pagination .previous:before { - content: '\f053'; - } - - @media screen and (max-width: 1010px) { - - ul.actions.pagination { - text-align: center; - } - - ul.actions.pagination .next, ul.actions.pagination .previous { - min-width: 20em; - } - - } - - @media screen and (max-width: 736px) { - - ul.actions.pagination .next, ul.actions.pagination .previous { - min-width: 18em; - } - - } - - ul.actions.small li { - padding: 0 1em 0 0; - } - - ul.actions.vertical li { - display: block; - padding: 1.5em 0 0 0; - } - - ul.actions.vertical li:first-child { - padding-top: 0; - } - - ul.actions.vertical li > * { - margin-bottom: 0; - } - - ul.actions.vertical.small li { - padding: 1em 0 0 0; - } - - ul.actions.vertical.small li:first-child { - padding-top: 0; - } - - ul.actions.fit { - display: table; - margin-left: -1em; - padding: 0; - table-layout: fixed; - width: calc(100% + 1em); - } - - ul.actions.fit li { - display: table-cell; - padding: 0 0 0 1em; - } - - ul.actions.fit li > * { - margin-bottom: 0; - } - - ul.actions.fit.small { - margin-left: -0.5em; - width: calc(100% + 0.5em); - } - - ul.actions.fit.small li { - padding: 0 0 0 0.5em; - } - - @media screen and (max-width: 480px) { - - ul.actions { - margin: 0 0 2em 0; - } - - ul.actions li { - padding: 1em 0 0 0; - display: block; - text-align: center; - width: 100%; - } - - ul.actions li:first-child { - padding-top: 0; - } - - ul.actions li > * { - width: 100%; - margin: 0 !important; - } - - ul.actions.small li { - padding: 0.5em 0 0 0; - } - - ul.actions.small li:first-child { - padding-top: 0; - } - - } - - ul.posts { - list-style: none; - padding: 0; - } - - ul.posts li { - border-top: dotted 1px rgba(160, 160, 160, 0.3); - margin: 1.5em 0 0 0; - padding: 1.5em 0 0 0; - } - - ul.posts li:first-child { - border-top: 0; - margin-top: 0; - padding-top: 0; - } - - ul.posts article { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-align-items: -moz-flex-start; - -webkit-align-items: -webkit-flex-start; - -ms-align-items: -ms-flex-start; - align-items: flex-start; - -moz-flex-direction: row-reverse; - -webkit-flex-direction: row-reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - } - - ul.posts article .image { - display: block; - margin-right: 1.5em; - min-width: 4em; - width: 4em; - } - - ul.posts article .image img { - width: 100%; - } - - ul.posts article header { - -moz-flex-grow: 1; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -ms-flex: 1; - } - - ul.posts article header h3 { - font-size: 0.7em; - margin-top: 0.125em; - } - - ul.posts article header .published { - display: block; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.6em; - font-weight: 400; - letter-spacing: 0.25em; - margin: -0.625em 0 1.7em 0; - text-transform: uppercase; - } - - ul.posts article header > :last-child { - margin-bottom: 0; - } - - dl { - margin: 0 0 2em 0; - } - - dl dt { - display: block; - font-weight: 700; - margin: 0 0 1em 0; - } - - dl dd { - margin-left: 2em; - } - -/* Mini Post */ - - .mini-post { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-flex-direction: column-reverse; - -webkit-flex-direction: column-reverse; - -ms-flex-direction: column-reverse; - flex-direction: column-reverse; - background: #ffffff; - border: solid 1px rgba(160, 160, 160, 0.3); - margin: 0 0 2em 0; - } - - .mini-post .image { - overflow: hidden; - width: 100%; - } - - .mini-post .image img { - -moz-transition: -moz-transform 0.2s ease-out; - -webkit-transition: -webkit-transform 0.2s ease-out; - -ms-transition: -ms-transform 0.2s ease-out; - transition: transform 0.2s ease-out; - width: 100%; - } - - .mini-post .image:hover img { - -moz-transform: scale(1.05); - -webkit-transform: scale(1.05); - -ms-transform: scale(1.05); - transform: scale(1.05); - } - - .mini-post header { - padding: 1.25em 4.25em 0.1em 1.25em ; - min-height: 4em; - position: relative; - -moz-flex-grow: 1; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - } - - .mini-post header h3 { - font-size: 0.7em; - } - - .mini-post header .published { - display: block; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.6em; - font-weight: 400; - letter-spacing: 0.25em; - margin: -0.625em 0 1.7em 0; - text-transform: uppercase; - } - - .mini-post header .author { - position: absolute; - right: 2em; - top: 2em; - } - - .mini-posts { - margin: 0 0 2em 0; - } - - @media screen and (max-width: 1010px) { - - .mini-posts { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-flex-wrap: wrap; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - width: calc(100% + 2em); - } - - .mini-posts > * { - margin: 2em 2em 0 0; - width: calc(50% - 2em); - } - - .mini-posts > :nth-child(-n + 2) { - margin-top: 0; - } - - } - - @media screen and (max-width: 480px) { - - .mini-posts { - display: block; - width: 100%; - } - - .mini-posts > * { - margin: 0 0 2em 0; - width: 100%; - } - - } - -/* Post */ - - .post { - padding: 3em 3em 1em 3em ; - background: #ffffff; - border: solid 1px rgba(160, 160, 160, 0.3); - margin: 0 0 3em 0; - position: relative; - } - - .post > header { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - border-bottom: solid 1px rgba(160, 160, 160, 0.3); - left: -3em; - margin: -3em 0 3em 0; - position: relative; - width: calc(100% + 6em); - } - - .post > header .title { - -moz-flex-grow: 1; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -ms-flex: 1; - padding: 3.75em 3em 3.3em 3em; - } - - .post > header .title h2 { - font-weight: 900; - font-size: 1.5em; - } - - .post > header .title > :last-child { - margin-bottom: 0; - } - - .post > header .meta { - padding: 3.75em 3em 1.75em 3em ; - border-left: solid 1px rgba(160, 160, 160, 0.3); - min-width: 17em; - text-align: right; - width: 17em; - } - - .post > header .meta > * { - margin: 0 0 1em 0; - } - - .post > header .meta > :last-child { - margin-bottom: 0; - } - - .post > header .meta .published { - color: #3c3b3b; - display: block; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.7em; - font-weight: 800; - letter-spacing: 0.25em; - margin-top: 0.5em; - text-transform: uppercase; - white-space: nowrap; - } - - .post > .image.featured { - overflow: hidden; - } - - .post > .image.featured img { - -moz-transition: -moz-transform 0.2s ease-out; - -webkit-transition: -webkit-transform 0.2s ease-out; - -ms-transition: -ms-transform 0.2s ease-out; - transition: transform 0.2s ease-out; - } - - .post > .image.featured:hover img { - -moz-transform: scale(1.05); - -webkit-transform: scale(1.05); - -ms-transform: scale(1.05); - transform: scale(1.05); - } - - .post > footer { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-align-items: center; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - } - - .post > footer .actions { - -moz-flex-grow: 1; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - } - - .post > footer .stats { - cursor: default; - list-style: none; - padding: 0; - } - - .post > footer .stats li { - border-left: solid 1px rgba(160, 160, 160, 0.3); - display: inline-block; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.6em; - font-weight: 400; - letter-spacing: 0.25em; - line-height: 1; - margin: 0 0 0 2em; - padding: 0 0 0 2em; - text-transform: uppercase; - } - - .post > footer .stats li:first-child { - border-left: 0; - margin-left: 0; - padding-left: 0; - } - - .post > footer .stats li .icon { - border-bottom: 0; - } - - .post > footer .stats li .icon:before { - color: rgba(160, 160, 160, 0.3); - margin-right: 0.75em; - } - - @media screen and (max-width: 980px) { - - .post { - border-left: 0; - border-right: 0; - left: -3em; - width: calc(100% + (3em * 2)); - } - - .post > header { - -moz-flex-direction: column; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - padding: 3.75em 3em 1.25em 3em ; - border-left: 0; - } - - .post > header .title { - -ms-flex: 0 1 auto; - margin: 0 0 2em 0; - padding: 0; - text-align: center; - } - - .post > header .meta { - -moz-align-items: center; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-justify-content: center; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; - border-left: 0; - margin: 0 0 2em 0; - padding-top: 0; - padding: 0; - text-align: left; - width: 100%; - } - - .post > header .meta > * { - border-left: solid 1px rgba(160, 160, 160, 0.3); - margin-left: 2em; - padding-left: 2em; - } - - .post > header .meta > :first-child { - border-left: 0; - margin-left: 0; - padding-left: 0; - } - - .post > header .meta .published { - margin-bottom: 0; - margin-top: 0; - } - - .post > header .meta .author { - -moz-flex-direction: row-reverse; - -webkit-flex-direction: row-reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - margin-bottom: 0; - } - - .post > header .meta .author .name { - margin: 0 0 0 1.5em; - } - - .post > header .meta .author img { - width: 3.5em; - } - - } - - @media screen and (max-width: 736px) { - - .post { - padding: 1.5em 1.5em 0.1em 1.5em ; - left: -1.5em; - margin: 0 0 2em 0; - width: calc(100% + (1.5em * 2)); - } - - .post > header { - padding: 3em 1.5em 0.5em 1.5em ; - left: -1.5em; - margin: -1.5em 0 1.5em 0; - width: calc(100% + 3em); - } - - .post > header .title h2 { - font-size: 1.1em; - } - - } - - @media screen and (max-width: 480px) { - - .post > header .meta { - -moz-align-items: center; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -moz-flex-direction: column; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } - - .post > header .meta > * { - border-left: 0; - margin: 1em 0 0 0; - padding-left: 0; - } - - .post > header .meta .author .name { - display: none; - } - - .post > .image.featured { - margin-left: -1.5em; - margin-top: calc(-1.5em - 1px); - width: calc(100% + 3em); - } - - .post > footer { - -moz-align-items: stretch; - -webkit-align-items: stretch; - -ms-align-items: stretch; - align-items: stretch; - -moz-flex-direction: column-reverse; - -webkit-flex-direction: column-reverse; - -ms-flex-direction: column-reverse; - flex-direction: column-reverse; - } - - .post > footer .stats { - text-align: center; - } - - .post > footer .stats li { - margin: 0 0 0 1.25em; - padding: 0 0 0 1.25em; - } - - } - -/* Section/Article */ - - section.special, article.special { - text-align: center; - } - - header p { - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.7em; - font-weight: 400; - letter-spacing: 0.25em; - line-height: 2.5; - margin-top: -1em; - text-transform: uppercase; - } - -/* Table */ - - .table-wrapper { - -webkit-overflow-scrolling: touch; - overflow-x: auto; - } - - table { - margin: 0 0 2em 0; - width: 100%; - } - - table tbody tr { - border: solid 1px rgba(160, 160, 160, 0.3); - border-left: 0; - border-right: 0; - } - - table tbody tr:nth-child(2n + 1) { - background-color: rgba(160, 160, 160, 0.075); - } - - table td { - padding: 0.75em 0.75em; - } - - table th { - color: #3c3b3b; - font-size: 0.9em; - font-weight: 700; - padding: 0 0.75em 0.75em 0.75em; - text-align: left; - } - - table thead { - border-bottom: solid 2px rgba(160, 160, 160, 0.3); - } - - table tfoot { - border-top: solid 2px rgba(160, 160, 160, 0.3); - } - - table.alt { - border-collapse: separate; - } - - table.alt tbody tr td { - border: solid 1px rgba(160, 160, 160, 0.3); - border-left-width: 0; - border-top-width: 0; - } - - table.alt tbody tr td:first-child { - border-left-width: 1px; - } - - table.alt tbody tr:first-child td { - border-top-width: 1px; - } - - table.alt thead { - border-bottom: 0; - } - - table.alt tfoot { - border-top: 0; - } - -/* Header */ - - body { - padding-top: 3.5em; - } - - #header { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-justify-content: space-between; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - background-color: #ffffff; - border-bottom: solid 1px rgba(160, 160, 160, 0.3); - height: 3.5em; - left: 0; - line-height: 3.5em; - position: fixed; - top: 0; - width: 100%; - z-index: 10000; - } - - #header a { - color: inherit; - text-decoration: none; - } - - #header ul { - list-style: none; - margin: 0; - padding-left: 0; - } - - #header ul li { - display: inline-block; - padding-left: 0; - } - - #header h1 { - height: inherit; - line-height: inherit; - padding: 0 0 0 1.5em; - white-space: nowrap; - } - - #header h1 a { - font-size: 0.7em; - } - - #header .links { - -moz-flex: 1; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - border-left: solid 1px rgba(160, 160, 160, 0.3); - height: inherit; - line-height: inherit; - margin-left: 1.5em; - overflow: hidden; - padding-left: 1.5em; - } - - #header .links ul li { - border-left: solid 1px rgba(160, 160, 160, 0.3); - line-height: 1; - margin-left: 1em; - padding-left: 1em; - } - - #header .links ul li:first-child { - border-left: 0; - margin-left: 0; - padding-left: 0; - } - - #header .links ul li a { - border-bottom: 0; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.7em; - font-weight: 400; - letter-spacing: 0.25em; - text-transform: uppercase; - } - - #header .main { - height: inherit; - line-height: inherit; - text-align: right; - } - - #header .main ul { - height: inherit; - line-height: inherit; - } - - #header .main ul li { - border-left: solid 1px rgba(160, 160, 160, 0.3); - height: inherit; - line-height: inherit; - white-space: nowrap; - } - - #header .main ul li > * { - display: block; - float: left; - } - - #header .main ul li > a { - text-decoration: none; - border-bottom: 0; - color: #aaaaaa; - overflow: hidden; - position: relative; - text-indent: 4em; - width: 4em; - } - - #header .main ul li > a:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - #header .main ul li > a:before { - display: block; - height: inherit; - left: 0; - line-height: inherit; - position: absolute; - text-align: center; - text-indent: 0; - top: 0; - width: inherit; - } - - #header form { - margin: 0; - } - - #header form input { - display: inline-block; - height: 2.5em; - position: relative; - top: -2px; - vertical-align: middle; - } - - #header #search { - -moz-transition: all 0.5s ease; - -webkit-transition: all 0.5s ease; - -ms-transition: all 0.5s ease; - transition: all 0.5s ease; - max-width: 0; - opacity: 0; - overflow: hidden; - padding: 0; - white-space: nowrap; - } - - #header #search input { - width: 12em; - } - - #header #search.visible { - max-width: 12.5em; - opacity: 1; - padding: 0 0.5em 0 0; - } - - @media screen and (max-width: 980px) { - - #header .links { - display: none; - } - - } - - @media screen and (max-width: 736px) { - - #header { - height: 2.75em; - line-height: 2.75em; - } - - #header h1 { - padding: 0 0 0 1em; - } - - #header .main .search { - display: none; - } - - } - -/* Wrapper */ - - #wrapper { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-flex-direction: row-reverse; - -webkit-flex-direction: row-reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - -moz-transition: opacity 0.5s ease; - -webkit-transition: opacity 0.5s ease; - -ms-transition: opacity 0.5s ease; - transition: opacity 0.5s ease; - margin: 0 auto; - max-width: 100%; - opacity: 1; - padding: 4.5em; - width: 90em; - } - - body.is-menu-visible #wrapper { - opacity: 0.15; - } - - @media screen and (max-width: 1680px) { - - #wrapper { - padding: 3em; - } - - } - - @media screen and (max-width: 1010px) { - - #wrapper { - display: block; - } - - } - - @media screen and (max-width: 736px) { - - #wrapper { - padding: 1.5em; - } - - } - -/* Main */ - - #main { - -moz-flex-grow: 1; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -ms-flex: 1; - width: 100%; - } - -/* Sidebar */ - - #sidebar { - margin-right: 3em; - min-width: 22em; - width: 22em; - } - - #sidebar > * { - border-top: solid 1px rgba(160, 160, 160, 0.3); - margin: 3em 0 0 0; - padding: 3em 0 0 0; - } - - #sidebar > :first-child { - border-top: 0; - margin-top: 0; - padding-top: 0; - } - - @media screen and (max-width: 1010px) { - - #sidebar { - border-top: solid 1px rgba(160, 160, 160, 0.3); - margin: 3em 0 0 0; - min-width: 0; - padding: 3em 0 0 0; - width: 100%; - } - - } - -/* Intro */ - - #intro .logo { - border-bottom: 0; - display: inline-block; - margin: 0 0 1em 0; - overflow: hidden; - position: relative; - width: 4em; - } - - #intro .logo:before { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100px' height='100px' viewBox='0 0 100 100' preserveAspectRatio='none' zoomAndPan='disable'%3E%3Cpolygon points='0,0 100,0 100,25 50,0 0,25' style='fill:%23f4f4f4' /%3E%3Cpolygon points='0,100 100,100 100,75 50,100 0,75' style='fill:%23f4f4f4' /%3E%3C/svg%3E"); - background-position: top left; - background-repeat: no-repeat; - background-size: 100% 100%; - content: ''; - display: block; - height: 100%; - left: 0; - position: absolute; - top: 0; - width: 100%; - } - - #intro .logo img { - display: block; - margin-left: -0.25em; - width: 4.5em; - } - - #intro header h2 { - font-size: 2em; - font-weight: 900; - } - - #intro header p { - font-size: 0.8em; - } - - @media screen and (max-width: 1010px) { - - #intro { - margin: 0 0 3em 0; - text-align: center; - } - - #intro header h2 { - font-size: 2em; - } - - #intro header p { - font-size: 0.7em; - } - - } - - @media screen and (max-width: 736px) { - - #intro { - margin: 0 0 1.5em 0; - padding: 1.25em 0; - } - - #intro > :last-child { - margin-bottom: 0; - } - - #intro .logo { - margin: 0 0 0.5em 0; - } - - #intro header h2 { - font-size: 1.25em; - } - - #intro header > :last-child { - margin-bottom: 0; - } - - } - -/* Footer */ - - #footer .icons { - color: #aaaaaa; - } - - #footer .copyright { - color: #aaaaaa; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.5em; - font-weight: 400; - letter-spacing: 0.25em; - text-transform: uppercase; - } - -/* Menu */ - - #menu { - -moz-transform: translateX(25em); - -webkit-transform: translateX(25em); - -ms-transform: translateX(25em); - transform: translateX(25em); - -moz-transition: -moz-transform 0.5s ease, visibility 0.5s; - -webkit-transition: -webkit-transform 0.5s ease, visibility 0.5s; - -ms-transition: -ms-transform 0.5s ease, visibility 0.5s; - transition: transform 0.5s ease, visibility 0.5s; - -webkit-overflow-scrolling: touch; - background: #ffffff; - border-left: solid 1px rgba(160, 160, 160, 0.3); - box-shadow: none; - height: 100%; - max-width: 80%; - overflow-y: auto; - position: fixed; - right: 0; - top: 0; - visibility: hidden; - width: 25em; - z-index: 10002; - } - - #menu > * { - border-top: solid 1px rgba(160, 160, 160, 0.3); - padding: 3em; - } - - #menu > * > :last-child { - margin-bottom: 0; - } - - #menu > :first-child { - border-top: 0; - } - - #menu .links { - list-style: none; - padding: 0; - } - - #menu .links > li { - border: 0; - border-top: dotted 1px rgba(160, 160, 160, 0.3); - margin: 1.5em 0 0 0; - padding: 1.5em 0 0 0; - } - - #menu .links > li a { - display: block; - border-bottom: 0; - } - - #menu .links > li a h3 { - -moz-transition: color 0.2s ease; - -webkit-transition: color 0.2s ease; - -ms-transition: color 0.2s ease; - transition: color 0.2s ease; - font-size: 0.7em; - } - - #menu .links > li a p { - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.6em; - font-weight: 400; - letter-spacing: 0.25em; - margin-bottom: 0; - text-decoration: none; - text-transform: uppercase; - } - - #menu .links > li a:hover h3 { - color: #2ebaae; - } - - #menu .links > li:first-child { - border-top: 0; - margin-top: 0; - padding-top: 0; - } - - body.is-menu-visible #menu { - -moz-transform: translateX(0); - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - visibility: visible; - } - - @media screen and (max-width: 736px) { - - #menu > * { - padding: 1.5em; - } - - } diff --git a/bl-themes/blogme/assets/js/ie/html5shiv.js b/bl-themes/blogme/assets/js/ie/html5shiv.js deleted file mode 100644 index dcf351c8..00000000 --- a/bl-themes/blogme/assets/js/ie/html5shiv.js +++ /dev/null @@ -1,8 +0,0 @@ -/* - HTML5 Shiv v3.6.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed -*/ -(function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag(); -a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/\w+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x"; -c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode|| -"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup main mark meter nav output progress section summary time video",version:"3.6.2",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment(); -for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d #mq-test-1 { width: 42px; }',c.insertBefore(e,d),b=42===f.offsetWidth,c.removeChild(e),{matches:b,media:a}}}(a.document)}(this),function(a){"use strict";function b(){v(!0)}var c={};a.respond=c,c.update=function(){};var d=[],e=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}(),f=function(a,b){var c=e();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))},g=function(a){return a.replace(c.regex.minmaxwh,"").match(c.regex.other)};if(c.ajax=f,c.queue=d,c.unsupportedmq=g,c.regex={media:/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/gi,comments:/\/\*[^*]*\*+([^/][^*]*\*+)*\//gi,urls:/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,findStyles:/@media *([^\{]+)\{([\S\s]+?)$/,only:/(only\s+)?([a-zA-Z]+)\s?/,minw:/\(\s*min\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/,maxw:/\(\s*max\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/,minmaxwh:/\(\s*m(in|ax)\-(height|width)\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/gi,other:/\([^\)]*\)/g},c.mediaQueriesSupported=a.matchMedia&&null!==a.matchMedia("only all")&&a.matchMedia("only all").matches,!c.mediaQueriesSupported){var h,i,j,k=a.document,l=k.documentElement,m=[],n=[],o=[],p={},q=30,r=k.getElementsByTagName("head")[0]||l,s=k.getElementsByTagName("base")[0],t=r.getElementsByTagName("link"),u=function(){var a,b=k.createElement("div"),c=k.body,d=l.style.fontSize,e=c&&c.style.fontSize,f=!1;return b.style.cssText="position:absolute;font-size:1em;width:1em",c||(c=f=k.createElement("body"),c.style.background="none"),l.style.fontSize="100%",c.style.fontSize="100%",c.appendChild(b),f&&l.insertBefore(c,l.firstChild),a=b.offsetWidth,f?l.removeChild(c):c.removeChild(b),l.style.fontSize=d,e&&(c.style.fontSize=e),a=j=parseFloat(a)},v=function(b){var c="clientWidth",d=l[c],e="CSS1Compat"===k.compatMode&&d||k.body[c]||d,f={},g=t[t.length-1],p=(new Date).getTime();if(b&&h&&q>p-h)return a.clearTimeout(i),i=a.setTimeout(v,q),void 0;h=p;for(var s in m)if(m.hasOwnProperty(s)){var w=m[s],x=w.minw,y=w.maxw,z=null===x,A=null===y,B="em";x&&(x=parseFloat(x)*(x.indexOf(B)>-1?j||u():1)),y&&(y=parseFloat(y)*(y.indexOf(B)>-1?j||u():1)),w.hasquery&&(z&&A||!(z||e>=x)||!(A||y>=e))||(f[w.media]||(f[w.media]=[]),f[w.media].push(n[w.rules]))}for(var C in o)o.hasOwnProperty(C)&&o[C]&&o[C].parentNode===r&&r.removeChild(o[C]);o.length=0;for(var D in f)if(f.hasOwnProperty(D)){var E=k.createElement("style"),F=f[D].join("\n");E.type="text/css",E.media=D,r.insertBefore(E,g.nextSibling),E.styleSheet?E.styleSheet.cssText=F:E.appendChild(k.createTextNode(F)),o.push(E)}},w=function(a,b,d){var e=a.replace(c.regex.comments,"").replace(c.regex.keyframes,"").match(c.regex.media),f=e&&e.length||0;b=b.substring(0,b.lastIndexOf("/"));var h=function(a){return a.replace(c.regex.urls,"$1"+b+"$2$3")},i=!f&&d;b.length&&(b+="/"),i&&(f=1);for(var j=0;f>j;j++){var k,l,o,p;i?(k=d,n.push(h(a))):(k=e[j].match(c.regex.findStyles)&&RegExp.$1,n.push(RegExp.$2&&h(RegExp.$2))),o=k.split(","),p=o.length;for(var q=0;p>q;q++)l=o[q],g(l)||m.push({media:l.split("(")[0].match(c.regex.only)&&RegExp.$2||"all",rules:n.length-1,hasquery:l.indexOf("(")>-1,minw:l.match(c.regex.minw)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:l.match(c.regex.maxw)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}v()},x=function(){if(d.length){var b=d.shift();f(b.href,function(c){w(c,b.href,b.media),p[b.href]=!0,a.setTimeout(function(){x()},0)})}},y=function(){for(var b=0;blarge. - skel - .on('+large', function() { - $intro.prependTo($main); - }) - .on('-large', function() { - $intro.prependTo($sidebar); - }); - - }); - -})(jQuery); \ No newline at end of file diff --git a/bl-themes/blogme/assets/js/skel.min.js b/bl-themes/blogme/assets/js/skel.min.js deleted file mode 100644 index 688de7c9..00000000 --- a/bl-themes/blogme/assets/js/skel.min.js +++ /dev/null @@ -1,2 +0,0 @@ -/* skel.js v3.0.0 | (c) n33 | skel.io | MIT licensed */ -var skel=function(){"use strict";var t={breakpointIds:null,events:{},isInit:!1,obj:{attachments:{},breakpoints:{},head:null,states:{}},sd:"/",state:null,stateHandlers:{},stateId:"",vars:{},DOMReady:null,indexOf:null,isArray:null,iterate:null,matchesMedia:null,extend:function(e,n){t.iterate(n,function(i){t.isArray(n[i])?(t.isArray(e[i])||(e[i]=[]),t.extend(e[i],n[i])):"object"==typeof n[i]?("object"!=typeof e[i]&&(e[i]={}),t.extend(e[i],n[i])):e[i]=n[i]})},newStyle:function(t){var e=document.createElement("style");return e.type="text/css",e.innerHTML=t,e},_canUse:null,canUse:function(e){t._canUse||(t._canUse=document.createElement("div"));var n=t._canUse.style,i=e.charAt(0).toUpperCase()+e.slice(1);return e in n||"Moz"+i in n||"Webkit"+i in n||"O"+i in n||"ms"+i in n},on:function(e,n){var i=e.split(/[\s]+/);return t.iterate(i,function(e){var a=i[e];if(t.isInit){if("init"==a)return void n();if("change"==a)n();else{var r=a.charAt(0);if("+"==r||"!"==r){var o=a.substring(1);if(o in t.obj.breakpoints)if("+"==r&&t.obj.breakpoints[o].active)n();else if("!"==r&&!t.obj.breakpoints[o].active)return void n()}}}t.events[a]||(t.events[a]=[]),t.events[a].push(n)}),t},trigger:function(e){return t.events[e]&&0!=t.events[e].length?(t.iterate(t.events[e],function(n){t.events[e][n]()}),t):void 0},breakpoint:function(e){return t.obj.breakpoints[e]},breakpoints:function(e){function n(t,e){this.name=this.id=t,this.media=e,this.active=!1,this.wasActive=!1}return n.prototype.matches=function(){return t.matchesMedia(this.media)},n.prototype.sync=function(){this.wasActive=this.active,this.active=this.matches()},t.iterate(e,function(i){t.obj.breakpoints[i]=new n(i,e[i])}),window.setTimeout(function(){t.poll()},0),t},addStateHandler:function(e,n){t.stateHandlers[e]=n},callStateHandler:function(e){var n=t.stateHandlers[e]();t.iterate(n,function(e){t.state.attachments.push(n[e])})},changeState:function(e){t.iterate(t.obj.breakpoints,function(e){t.obj.breakpoints[e].sync()}),t.vars.lastStateId=t.stateId,t.stateId=e,t.breakpointIds=t.stateId===t.sd?[]:t.stateId.substring(1).split(t.sd),t.obj.states[t.stateId]?t.state=t.obj.states[t.stateId]:(t.obj.states[t.stateId]={attachments:[]},t.state=t.obj.states[t.stateId],t.iterate(t.stateHandlers,t.callStateHandler)),t.detachAll(t.state.attachments),t.attachAll(t.state.attachments),t.vars.stateId=t.stateId,t.vars.state=t.state,t.trigger("change"),t.iterate(t.obj.breakpoints,function(e){t.obj.breakpoints[e].active?t.obj.breakpoints[e].wasActive||t.trigger("+"+e):t.obj.breakpoints[e].wasActive&&t.trigger("-"+e)})},generateStateConfig:function(e,n){var i={};return t.extend(i,e),t.iterate(t.breakpointIds,function(e){t.extend(i,n[t.breakpointIds[e]])}),i},getStateId:function(){var e="";return t.iterate(t.obj.breakpoints,function(n){var i=t.obj.breakpoints[n];i.matches()&&(e+=t.sd+i.id)}),e},poll:function(){var e="";e=t.getStateId(),""===e&&(e=t.sd),e!==t.stateId&&t.changeState(e)},_attach:null,attach:function(e){var n=t.obj.head,i=e.element;return i.parentNode&&i.parentNode.tagName?!1:(t._attach||(t._attach=n.firstChild),n.insertBefore(i,t._attach.nextSibling),e.permanent&&(t._attach=i),!0)},attachAll:function(e){var n=[];t.iterate(e,function(t){n[e[t].priority]||(n[e[t].priority]=[]),n[e[t].priority].push(e[t])}),n.reverse(),t.iterate(n,function(e){t.iterate(n[e],function(i){t.attach(n[e][i])})})},detach:function(t){var e=t.element;return t.permanent||!e.parentNode||e.parentNode&&!e.parentNode.tagName?!1:(e.parentNode.removeChild(e),!0)},detachAll:function(e){var n={};t.iterate(e,function(t){n[e[t].id]=!0}),t.iterate(t.obj.attachments,function(e){e in n||t.detach(t.obj.attachments[e])})},attachment:function(e){return e in t.obj.attachments?t.obj.attachments[e]:null},newAttachment:function(e,n,i,a){return t.obj.attachments[e]={id:e,element:n,priority:i,permanent:a}},init:function(){t.initMethods(),t.initVars(),t.initEvents(),t.obj.head=document.getElementsByTagName("head")[0],t.isInit=!0,t.trigger("init")},initEvents:function(){t.on("resize",function(){t.poll()}),t.on("orientationChange",function(){t.poll()}),t.DOMReady(function(){t.trigger("ready")}),window.onload&&t.on("load",window.onload),window.onload=function(){t.trigger("load")},window.onresize&&t.on("resize",window.onresize),window.onresize=function(){t.trigger("resize")},window.onorientationchange&&t.on("orientationChange",window.onorientationchange),window.onorientationchange=function(){t.trigger("orientationChange")}},initMethods:function(){document.addEventListener?!function(e,n){t.DOMReady=n()}("domready",function(){function t(t){for(r=1;t=n.shift();)t()}var e,n=[],i=document,a="DOMContentLoaded",r=/^loaded|^c/.test(i.readyState);return i.addEventListener(a,e=function(){i.removeEventListener(a,e),t()}),function(t){r?t():n.push(t)}}):!function(e,n){t.DOMReady=n()}("domready",function(t){function e(t){for(h=1;t=i.shift();)t()}var n,i=[],a=!1,r=document,o=r.documentElement,s=o.doScroll,c="DOMContentLoaded",d="addEventListener",u="onreadystatechange",l="readyState",f=s?/^loaded|^c/:/^loaded|c/,h=f.test(r[l]);return r[d]&&r[d](c,n=function(){r.removeEventListener(c,n,a),e()},a),s&&r.attachEvent(u,n=function(){/^c/.test(r[l])&&(r.detachEvent(u,n),e())}),t=s?function(e){self!=top?h?e():i.push(e):function(){try{o.doScroll("left")}catch(n){return setTimeout(function(){t(e)},50)}e()}()}:function(t){h?t():i.push(t)}}),Array.prototype.indexOf?t.indexOf=function(t,e){return t.indexOf(e)}:t.indexOf=function(t,e){if("string"==typeof t)return t.indexOf(e);var n,i,a=e?e:0;if(!this)throw new TypeError;if(i=this.length,0===i||a>=i)return-1;for(0>a&&(a=i-Math.abs(a)),n=a;i>n;n++)if(this[n]===t)return n;return-1},Array.isArray?t.isArray=function(t){return Array.isArray(t)}:t.isArray=function(t){return"[object Array]"===Object.prototype.toString.call(t)},Object.keys?t.iterate=function(t,e){if(!t)return[];var n,i=Object.keys(t);for(n=0;i[n]&&e(i[n],t[i[n]])!==!1;n++);}:t.iterate=function(t,e){if(!t)return[];var n;for(n in t)if(Object.prototype.hasOwnProperty.call(t,n)&&e(n,t[n])===!1)break},window.matchMedia?t.matchesMedia=function(t){return""==t?!0:window.matchMedia(t).matches}:window.styleMedia||window.media?t.matchesMedia=function(t){if(""==t)return!0;var e=window.styleMedia||window.media;return e.matchMedium(t||"all")}:window.getComputedStyle?t.matchesMedia=function(t){if(""==t)return!0;var e=document.createElement("style"),n=document.getElementsByTagName("script")[0],i=null;e.type="text/css",e.id="matchmediajs-test",n.parentNode.insertBefore(e,n),i="getComputedStyle"in window&&window.getComputedStyle(e,null)||e.currentStyle;var a="@media "+t+"{ #matchmediajs-test { width: 1px; } }";return e.styleSheet?e.styleSheet.cssText=a:e.textContent=a,"1px"===i.width}:t.matchesMedia=function(t){if(""==t)return!0;var e,n,i,a,r={"min-width":null,"max-width":null},o=!1;for(i=t.split(/\s+and\s+/),e=0;er["max-width"]||null!==r["min-height"]&&cr["max-height"]?!1:!0},navigator.userAgent.match(/MSIE ([0-9]+)/)&&RegExp.$1<9&&(t.newStyle=function(t){var e=document.createElement("span");return e.innerHTML=' ",e})},initVars:function(){var e,n,i,a=navigator.userAgent;e="other",n=0,i=[["firefox",/Firefox\/([0-9\.]+)/],["bb",/BlackBerry.+Version\/([0-9\.]+)/],["bb",/BB[0-9]+.+Version\/([0-9\.]+)/],["opera",/OPR\/([0-9\.]+)/],["opera",/Opera\/([0-9\.]+)/],["edge",/Edge\/([0-9\.]+)/],["safari",/Version\/([0-9\.]+).+Safari/],["chrome",/Chrome\/([0-9\.]+)/],["ie",/MSIE ([0-9]+)/],["ie",/Trident\/.+rv:([0-9]+)/]],t.iterate(i,function(t,i){return a.match(i[1])?(e=i[0],n=parseFloat(RegExp.$1),!1):void 0}),t.vars.browser=e,t.vars.browserVersion=n,e="other",n=0,i=[["ios",/([0-9_]+) like Mac OS X/,function(t){return t.replace("_",".").replace("_","")}],["ios",/CPU like Mac OS X/,function(t){return 0}],["android",/Android ([0-9\.]+)/,null],["mac",/Macintosh.+Mac OS X ([0-9_]+)/,function(t){return t.replace("_",".").replace("_","")}],["wp",/Windows Phone ([0-9\.]+)/,null],["windows",/Windows NT ([0-9\.]+)/,null],["bb",/BlackBerry.+Version\/([0-9\.]+)/,null],["bb",/BB[0-9]+.+Version\/([0-9\.]+)/,null]],t.iterate(i,function(t,i){return a.match(i[1])?(e=i[0],n=parseFloat(i[2]?i[2](RegExp.$1):RegExp.$1),!1):void 0}),t.vars.os=e,t.vars.osVersion=n,t.vars.IEVersion="ie"==t.vars.browser?t.vars.browserVersion:99,t.vars.touch="wp"==t.vars.os?navigator.msMaxTouchPoints>0:!!("ontouchstart"in window),t.vars.mobile="wp"==t.vars.os||"android"==t.vars.os||"ios"==t.vars.os||"bb"==t.vars.os}};return t.init(),t}();!function(t,e){"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?module.exports=e():t.skel=e()}(this,function(){return skel}); diff --git a/bl-themes/blogme/assets/js/util.js b/bl-themes/blogme/assets/js/util.js deleted file mode 100644 index bdb8e9f0..00000000 --- a/bl-themes/blogme/assets/js/util.js +++ /dev/null @@ -1,587 +0,0 @@ -(function($) { - - /** - * Generate an indented list of links from a nav. Meant for use with panel(). - * @return {jQuery} jQuery object. - */ - $.fn.navList = function() { - - var $this = $(this); - $a = $this.find('a'), - b = []; - - $a.each(function() { - - var $this = $(this), - indent = Math.max(0, $this.parents('li').length - 1), - href = $this.attr('href'), - target = $this.attr('target'); - - b.push( - '' + - '' + - $this.text() + - '' - ); - - }); - - return b.join(''); - - }; - - /** - * Panel-ify an element. - * @param {object} userConfig User config. - * @return {jQuery} jQuery object. - */ - $.fn.panel = function(userConfig) { - - // No elements? - if (this.length == 0) - return $this; - - // Multiple elements? - if (this.length > 1) { - - for (var i=0; i < this.length; i++) - $(this[i]).panel(userConfig); - - return $this; - - } - - // Vars. - var $this = $(this), - $body = $('body'), - $window = $(window), - id = $this.attr('id'), - config; - - // Config. - config = $.extend({ - - // Delay. - delay: 0, - - // Hide panel on link click. - hideOnClick: false, - - // Hide panel on escape keypress. - hideOnEscape: false, - - // Hide panel on swipe. - hideOnSwipe: false, - - // Reset scroll position on hide. - resetScroll: false, - - // Reset forms on hide. - resetForms: false, - - // Side of viewport the panel will appear. - side: null, - - // Target element for "class". - target: $this, - - // Class to toggle. - visibleClass: 'visible' - - }, userConfig); - - // Expand "target" if it's not a jQuery object already. - if (typeof config.target != 'jQuery') - config.target = $(config.target); - - // Panel. - - // Methods. - $this._hide = function(event) { - - // Already hidden? Bail. - if (!config.target.hasClass(config.visibleClass)) - return; - - // If an event was provided, cancel it. - if (event) { - - event.preventDefault(); - event.stopPropagation(); - - } - - // Hide. - config.target.removeClass(config.visibleClass); - - // Post-hide stuff. - window.setTimeout(function() { - - // Reset scroll position. - if (config.resetScroll) - $this.scrollTop(0); - - // Reset forms. - if (config.resetForms) - $this.find('form').each(function() { - this.reset(); - }); - - }, config.delay); - - }; - - // Vendor fixes. - $this - .css('-ms-overflow-style', '-ms-autohiding-scrollbar') - .css('-webkit-overflow-scrolling', 'touch'); - - // Hide on click. - if (config.hideOnClick) { - - $this.find('a') - .css('-webkit-tap-highlight-color', 'rgba(0,0,0,0)'); - - $this - .on('click', 'a', function(event) { - - var $a = $(this), - href = $a.attr('href'), - target = $a.attr('target'); - - if (!href || href == '#' || href == '' || href == '#' + id) - return; - - // Cancel original event. - event.preventDefault(); - event.stopPropagation(); - - // Hide panel. - $this._hide(); - - // Redirect to href. - window.setTimeout(function() { - - if (target == '_blank') - window.open(href); - else - window.location.href = href; - - }, config.delay + 10); - - }); - - } - - // Event: Touch stuff. - $this.on('touchstart', function(event) { - - $this.touchPosX = event.originalEvent.touches[0].pageX; - $this.touchPosY = event.originalEvent.touches[0].pageY; - - }) - - $this.on('touchmove', function(event) { - - if ($this.touchPosX === null - || $this.touchPosY === null) - return; - - var diffX = $this.touchPosX - event.originalEvent.touches[0].pageX, - diffY = $this.touchPosY - event.originalEvent.touches[0].pageY, - th = $this.outerHeight(), - ts = ($this.get(0).scrollHeight - $this.scrollTop()); - - // Hide on swipe? - if (config.hideOnSwipe) { - - var result = false, - boundary = 20, - delta = 50; - - switch (config.side) { - - case 'left': - result = (diffY < boundary && diffY > (-1 * boundary)) && (diffX > delta); - break; - - case 'right': - result = (diffY < boundary && diffY > (-1 * boundary)) && (diffX < (-1 * delta)); - break; - - case 'top': - result = (diffX < boundary && diffX > (-1 * boundary)) && (diffY > delta); - break; - - case 'bottom': - result = (diffX < boundary && diffX > (-1 * boundary)) && (diffY < (-1 * delta)); - break; - - default: - break; - - } - - if (result) { - - $this.touchPosX = null; - $this.touchPosY = null; - $this._hide(); - - return false; - - } - - } - - // Prevent vertical scrolling past the top or bottom. - if (($this.scrollTop() < 0 && diffY < 0) - || (ts > (th - 2) && ts < (th + 2) && diffY > 0)) { - - event.preventDefault(); - event.stopPropagation(); - - } - - }); - - // Event: Prevent certain events inside the panel from bubbling. - $this.on('click touchend touchstart touchmove', function(event) { - event.stopPropagation(); - }); - - // Event: Hide panel if a child anchor tag pointing to its ID is clicked. - $this.on('click', 'a[href="#' + id + '"]', function(event) { - - event.preventDefault(); - event.stopPropagation(); - - config.target.removeClass(config.visibleClass); - - }); - - // Body. - - // Event: Hide panel on body click/tap. - $body.on('click touchend', function(event) { - $this._hide(event); - }); - - // Event: Toggle. - $body.on('click', 'a[href="#' + id + '"]', function(event) { - - event.preventDefault(); - event.stopPropagation(); - - config.target.toggleClass(config.visibleClass); - - }); - - // Window. - - // Event: Hide on ESC. - if (config.hideOnEscape) - $window.on('keydown', function(event) { - - if (event.keyCode == 27) - $this._hide(event); - - }); - - return $this; - - }; - - /** - * Apply "placeholder" attribute polyfill to one or more forms. - * @return {jQuery} jQuery object. - */ - $.fn.placeholder = function() { - - // Browser natively supports placeholders? Bail. - if (typeof (document.createElement('input')).placeholder != 'undefined') - return $(this); - - // No elements? - if (this.length == 0) - return $this; - - // Multiple elements? - if (this.length > 1) { - - for (var i=0; i < this.length; i++) - $(this[i]).placeholder(); - - return $this; - - } - - // Vars. - var $this = $(this); - - // Text, TextArea. - $this.find('input[type=text],textarea') - .each(function() { - - var i = $(this); - - if (i.val() == '' - || i.val() == i.attr('placeholder')) - i - .addClass('polyfill-placeholder') - .val(i.attr('placeholder')); - - }) - .on('blur', function() { - - var i = $(this); - - if (i.attr('name').match(/-polyfill-field$/)) - return; - - if (i.val() == '') - i - .addClass('polyfill-placeholder') - .val(i.attr('placeholder')); - - }) - .on('focus', function() { - - var i = $(this); - - if (i.attr('name').match(/-polyfill-field$/)) - return; - - if (i.val() == i.attr('placeholder')) - i - .removeClass('polyfill-placeholder') - .val(''); - - }); - - // Password. - $this.find('input[type=password]') - .each(function() { - - var i = $(this); - var x = $( - $('
') - .append(i.clone()) - .remove() - .html() - .replace(/type="password"/i, 'type="text"') - .replace(/type=password/i, 'type=text') - ); - - if (i.attr('id') != '') - x.attr('id', i.attr('id') + '-polyfill-field'); - - if (i.attr('name') != '') - x.attr('name', i.attr('name') + '-polyfill-field'); - - x.addClass('polyfill-placeholder') - .val(x.attr('placeholder')).insertAfter(i); - - if (i.val() == '') - i.hide(); - else - x.hide(); - - i - .on('blur', function(event) { - - event.preventDefault(); - - var x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]'); - - if (i.val() == '') { - - i.hide(); - x.show(); - - } - - }); - - x - .on('focus', function(event) { - - event.preventDefault(); - - var i = x.parent().find('input[name=' + x.attr('name').replace('-polyfill-field', '') + ']'); - - x.hide(); - - i - .show() - .focus(); - - }) - .on('keypress', function(event) { - - event.preventDefault(); - x.val(''); - - }); - - }); - - // Events. - $this - .on('submit', function() { - - $this.find('input[type=text],input[type=password],textarea') - .each(function(event) { - - var i = $(this); - - if (i.attr('name').match(/-polyfill-field$/)) - i.attr('name', ''); - - if (i.val() == i.attr('placeholder')) { - - i.removeClass('polyfill-placeholder'); - i.val(''); - - } - - }); - - }) - .on('reset', function(event) { - - event.preventDefault(); - - $this.find('select') - .val($('option:first').val()); - - $this.find('input,textarea') - .each(function() { - - var i = $(this), - x; - - i.removeClass('polyfill-placeholder'); - - switch (this.type) { - - case 'submit': - case 'reset': - break; - - case 'password': - i.val(i.attr('defaultValue')); - - x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]'); - - if (i.val() == '') { - i.hide(); - x.show(); - } - else { - i.show(); - x.hide(); - } - - break; - - case 'checkbox': - case 'radio': - i.attr('checked', i.attr('defaultValue')); - break; - - case 'text': - case 'textarea': - i.val(i.attr('defaultValue')); - - if (i.val() == '') { - i.addClass('polyfill-placeholder'); - i.val(i.attr('placeholder')); - } - - break; - - default: - i.val(i.attr('defaultValue')); - break; - - } - }); - - }); - - return $this; - - }; - - /** - * Moves elements to/from the first positions of their respective parents. - * @param {jQuery} $elements Elements (or selector) to move. - * @param {bool} condition If true, moves elements to the top. Otherwise, moves elements back to their original locations. - */ - $.prioritize = function($elements, condition) { - - var key = '__prioritize'; - - // Expand $elements if it's not already a jQuery object. - if (typeof $elements != 'jQuery') - $elements = $($elements); - - // Step through elements. - $elements.each(function() { - - var $e = $(this), $p, - $parent = $e.parent(); - - // No parent? Bail. - if ($parent.length == 0) - return; - - // Not moved? Move it. - if (!$e.data(key)) { - - // Condition is false? Bail. - if (!condition) - return; - - // Get placeholder (which will serve as our point of reference for when this element needs to move back). - $p = $e.prev(); - - // Couldn't find anything? Means this element's already at the top, so bail. - if ($p.length == 0) - return; - - // Move element to top of parent. - $e.prependTo($parent); - - // Mark element as moved. - $e.data(key, $p); - - } - - // Moved already? - else { - - // Condition is true? Bail. - if (condition) - return; - - $p = $e.data(key); - - // Move element back to its original location (using our placeholder). - $e.insertAfter($p); - - // Unmark element as moved. - $e.removeData(key); - - } - - }); - - }; - -})(jQuery); \ No newline at end of file diff --git a/bl-themes/blogme/img/favicon.png b/bl-themes/blogme/img/favicon.png deleted file mode 100644 index 517c6c12..00000000 Binary files a/bl-themes/blogme/img/favicon.png and /dev/null differ diff --git a/bl-themes/blogme/index.php b/bl-themes/blogme/index.php deleted file mode 100644 index e8b5d63d..00000000 --- a/bl-themes/blogme/index.php +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - -
- - -
- - whereAmI()=='home') || ($Url->whereAmI()=='tag') || ($Url->whereAmI()=='blog') ) - { - include(PATH_THEME_PHP.'home.php'); - } - elseif($Url->whereAmI()=='post') - { - include(PATH_THEME_PHP.'post.php'); - } - elseif($Url->whereAmI()=='page') - { - include(PATH_THEME_PHP.'page.php'); - } - ?> - -
- - - whereAmI()=='home') || ($Url->whereAmI()=='tag') || ($Url->whereAmI()=='blog') ) { ?> - - - - - - -
- - - - - - - - - - - - - - - \ No newline at end of file diff --git a/bl-themes/blogme/languages/de_CH.json b/bl-themes/blogme/languages/de_CH.json deleted file mode 100644 index 568e415c..00000000 --- a/bl-themes/blogme/languages/de_CH.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "theme-data": - { - "name": "Blogme", - "description": "Minimalistisches und übersichtliches Theme, das die Verwendung von Hauptbildern unterstützt. Das Theme basiert auf dem Theme Future Imperfect." - } -} diff --git a/bl-themes/blogme/languages/de_DE.json b/bl-themes/blogme/languages/de_DE.json deleted file mode 100644 index 568e415c..00000000 --- a/bl-themes/blogme/languages/de_DE.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "theme-data": - { - "name": "Blogme", - "description": "Minimalistisches und übersichtliches Theme, das die Verwendung von Hauptbildern unterstützt. Das Theme basiert auf dem Theme Future Imperfect." - } -} diff --git a/bl-themes/blogme/languages/en_US.json b/bl-themes/blogme/languages/en_US.json deleted file mode 100644 index 2b270191..00000000 --- a/bl-themes/blogme/languages/en_US.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "theme-data": - { - "name": "Blogme", - "description": "Minimalist and clean, with cover image supported, based on Future Imperfect." - }, - "top": "Top" -} \ No newline at end of file diff --git a/bl-themes/blogme/languages/uk_UA.json b/bl-themes/blogme/languages/uk_UA.json deleted file mode 100644 index e601a1c8..00000000 --- a/bl-themes/blogme/languages/uk_UA.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "theme-data": - { - "name": "Blogme", - "description": "Мінімалістська та чиста тема, з підтримкою зображення обкладинки, на основі Future Imperfect." - }, - "top": "Top" -} \ No newline at end of file diff --git a/bl-themes/blogme/metadata.json b/bl-themes/blogme/metadata.json deleted file mode 100644 index 8955957d..00000000 --- a/bl-themes/blogme/metadata.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "author": "n33co", - "email": "", - "website": "https://github.com/dignajar/bludit-themes", - "version": "1.1", - "releaseDate": "2016-01-21", - "license": "CCA 3.0", - "compatible": "1.0,1.1,1.1.2,1.3", - "notes": "This theme is based on Future Imperfect, all credits to the author n33co." -} \ No newline at end of file diff --git a/bl-themes/blogme/php/head.php b/bl-themes/blogme/php/head.php deleted file mode 100644 index 2db250b7..00000000 --- a/bl-themes/blogme/php/head.php +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/bl-themes/blogme/php/home.php b/bl-themes/blogme/php/home.php deleted file mode 100644 index 12cbcd2d..00000000 --- a/bl-themes/blogme/php/home.php +++ /dev/null @@ -1,67 +0,0 @@ - - -
- - - - - -
-
-

title() ?>

-
date() ?> user('firstName'))?$Post->user('firstName'):$Post->user('username') ?>
-
-
- -
- - coverImage()) { - echo 'Cover Image'; - } - ?> -
- - - content(false) ?> - - -
- - readMore()) { ?> - - - - -
    - tags(true); - - foreach($tags as $tagKey=>$tagName) { - echo '
  • '.$tagName.'
  • '; - } - ?> -
-
- - - - -
- - - - - diff --git a/bl-themes/blogme/php/page.php b/bl-themes/blogme/php/page.php deleted file mode 100644 index 42fa26a5..00000000 --- a/bl-themes/blogme/php/page.php +++ /dev/null @@ -1,29 +0,0 @@ -

title() ?>

- -
- - - - - -
-
-

title() ?>

-
description() ?>
-
-
- - - coverImage()) { - echo 'Cover Image'; - } - ?> - - - content() ?> - - - - -
\ No newline at end of file diff --git a/bl-themes/blogme/php/post.php b/bl-themes/blogme/php/post.php deleted file mode 100644 index 9f30da71..00000000 --- a/bl-themes/blogme/php/post.php +++ /dev/null @@ -1,45 +0,0 @@ -

title() ?>

- -
- - - - - -
-
-

title() ?>

-
date() ?> user('firstName'))?$Post->user('firstName'):$Post->user('username') ?>
-
-
- -
- - coverImage()) { - echo 'Cover Image'; - } - ?> -
- - - content(true) ?> - - -
- -
    - tags(true); - - foreach($tags as $tagKey=>$tagName) { - echo '
  • '.$tagName.'
  • '; - } - ?> -
-
- - - - -
\ No newline at end of file diff --git a/bl-themes/blogme/php/sidebar.php b/bl-themes/blogme/php/sidebar.php deleted file mode 100644 index 61a48606..00000000 --- a/bl-themes/blogme/php/sidebar.php +++ /dev/null @@ -1,41 +0,0 @@ - -
-
-

title() ?>

-

slogan() ?>

-
-
- - - - - \ No newline at end of file diff --git a/bl-themes/future-imperfect/assets/css/bludit.css b/bl-themes/future-imperfect/assets/css/bludit.css deleted file mode 100644 index 07f278b6..00000000 --- a/bl-themes/future-imperfect/assets/css/bludit.css +++ /dev/null @@ -1,21 +0,0 @@ -.plugin ul { - list-style: none !important; - padding: 0 !important; -} - -.plugin li { - padding: 0 !important; -} - -.plugin-pages ul.children { - margin-left: 10px; -} - -/* Just for Plugin tags */ -.plugin-tags li { - text-transform: capitalize; -} - -img { - width: 100%; -} \ No newline at end of file diff --git a/bl-themes/future-imperfect/assets/css/ie8.css b/bl-themes/future-imperfect/assets/css/ie8.css deleted file mode 100644 index b56a6722..00000000 --- a/bl-themes/future-imperfect/assets/css/ie8.css +++ /dev/null @@ -1,72 +0,0 @@ -/* - Future Imperfect by HTML5 UP - html5up.net | @n33co - Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) -*/ - -/* Button */ - - input[type="submit"], - input[type="reset"], - input[type="button"], - button, - .button { - border: solid 1px #dedede; - } - -/* Form */ - - input[type="text"], - input[type="password"], - input[type="email"], - input[type="tel"], - select, - textarea { - border: solid 1px #dedede; - } - -/* Post */ - - .post { - border: solid 1px #dedede; - } - - .post > header { - border-bottom: solid 1px #dedede; - } - -/* Mini Post */ - - .mini-post { - border: solid 1px #dedede; - } - -/* Header */ - - #header { - border-bottom: solid 1px #dedede; - } - - #header .links { - border-left: solid 1px #dedede; - } - - #header .main ul li { - border-left: solid 1px #dedede; - } - -/* Sidebar */ - - #sidebar > * { - border-top: solid 1px #dedede; - } - -/* Menu */ - - #menu { - border-left: solid 1px #dedede; - } - - #menu > * { - border-top: solid 1px #dedede; - } \ No newline at end of file diff --git a/bl-themes/future-imperfect/assets/css/ie9.css b/bl-themes/future-imperfect/assets/css/ie9.css deleted file mode 100644 index e36dfe08..00000000 --- a/bl-themes/future-imperfect/assets/css/ie9.css +++ /dev/null @@ -1,123 +0,0 @@ -/* - Future Imperfect by HTML5 UP - html5up.net | @n33co - Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) -*/ - -/* List */ - - ul.posts article:after { - clear: both; - content: ''; - display: block; - } - - ul.posts article .image { - display: table-cell; - vertical-align: top; - } - - ul.posts article header { - display: table-cell; - padding-right: 1em; - vertical-align: top; - } - -/* Author */ - - .author .name { - display: inline-block; - vertical-align: middle; - } - - .author img { - display: inline-block; - vertical-align: middle; - } - -/* Post */ - - .post:after { - clear: both; - content: ''; - display: block; - } - - .post > header:after { - clear: both; - content: ''; - display: block; - } - - .post > header .title { - display: table-cell; - vertical-align: top; - width: 65%; - } - - .post > header .meta { - display: table-cell; - vertical-align: top; - width: 30%; - } - - .post > footer:after { - clear: both; - content: ''; - display: block; - } - - .post > footer .actions { - display: inline-block; - } - - .post > footer .stats { - display: inline-block; - margin-left: 2em; - } - -/* Mini Post */ - - .mini-post .image { - display: block; - } - -/* Header */ - - #header:after { - clear: both; - content: ''; - display: block; - } - - #header h1 { - float: left; - } - - #header .links { - float: left; - } - - #header .main { - position: absolute; - right: 0; - top: 0; - } - -/* Wrapper */ - -/* Sidebar */ - - #sidebar { - display: table-cell; - margin-right: 0; - padding-right: 3em; - vertical-align: top; - } - -/* Main */ - - #main { - display: table-cell; - vertical-align: top; - } \ No newline at end of file diff --git a/bl-themes/future-imperfect/assets/css/main.css b/bl-themes/future-imperfect/assets/css/main.css deleted file mode 100644 index 6b29d9a6..00000000 --- a/bl-themes/future-imperfect/assets/css/main.css +++ /dev/null @@ -1,3435 +0,0 @@ -@import url("//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Raleway:400,800,900"); - -/* - Future Imperfect by HTML5 UP - html5up.net | @n33co - Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) -*/ - -/* Reset */ - - html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { - margin: 0; - padding: 0; - border: 0; - font-size: 100%; - font: inherit; - vertical-align: baseline; - } - - article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { - display: block; - } - - body { - line-height: 1; - } - - ol, ul { - list-style: none; - } - - blockquote, q { - quotes: none; - } - - blockquote:before, blockquote:after, q:before, q:after { - content: ''; - content: none; - } - - table { - border-collapse: collapse; - border-spacing: 0; - } - - body { - -webkit-text-size-adjust: none; - } - -/* Box Model */ - - *, *:before, *:after { - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; - } - -/* Grid */ - - .row { - border-bottom: solid 1px transparent; - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; - } - - .row > * { - float: left; - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; - } - - .row:after, .row:before { - content: ''; - display: block; - clear: both; - height: 0; - } - - .row.uniform > * > :first-child { - margin-top: 0; - } - - .row.uniform > * > :last-child { - margin-bottom: 0; - } - - .row.\30 \25 > * { - padding: 0 0 0 0em; - } - - .row.\30 \25 { - margin: 0 0 -1px 0em; - } - - .row.uniform.\30 \25 > * { - padding: 0em 0 0 0em; - } - - .row.uniform.\30 \25 { - margin: 0em 0 -1px 0em; - } - - .row > * { - padding: 0 0 0 1em; - } - - .row { - margin: 0 0 -1px -1em; - } - - .row.uniform > * { - padding: 1em 0 0 1em; - } - - .row.uniform { - margin: -1em 0 -1px -1em; - } - - .row.\32 00\25 > * { - padding: 0 0 0 2em; - } - - .row.\32 00\25 { - margin: 0 0 -1px -2em; - } - - .row.uniform.\32 00\25 > * { - padding: 2em 0 0 2em; - } - - .row.uniform.\32 00\25 { - margin: -2em 0 -1px -2em; - } - - .row.\31 50\25 > * { - padding: 0 0 0 1.5em; - } - - .row.\31 50\25 { - margin: 0 0 -1px -1.5em; - } - - .row.uniform.\31 50\25 > * { - padding: 1.5em 0 0 1.5em; - } - - .row.uniform.\31 50\25 { - margin: -1.5em 0 -1px -1.5em; - } - - .row.\35 0\25 > * { - padding: 0 0 0 0.5em; - } - - .row.\35 0\25 { - margin: 0 0 -1px -0.5em; - } - - .row.uniform.\35 0\25 > * { - padding: 0.5em 0 0 0.5em; - } - - .row.uniform.\35 0\25 { - margin: -0.5em 0 -1px -0.5em; - } - - .row.\32 5\25 > * { - padding: 0 0 0 0.25em; - } - - .row.\32 5\25 { - margin: 0 0 -1px -0.25em; - } - - .row.uniform.\32 5\25 > * { - padding: 0.25em 0 0 0.25em; - } - - .row.uniform.\32 5\25 { - margin: -0.25em 0 -1px -0.25em; - } - - .\31 2u, .\31 2u\24 { - width: 100%; - clear: none; - margin-left: 0; - } - - .\31 1u, .\31 1u\24 { - width: 91.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 0u, .\31 0u\24 { - width: 83.3333333333%; - clear: none; - margin-left: 0; - } - - .\39 u, .\39 u\24 { - width: 75%; - clear: none; - margin-left: 0; - } - - .\38 u, .\38 u\24 { - width: 66.6666666667%; - clear: none; - margin-left: 0; - } - - .\37 u, .\37 u\24 { - width: 58.3333333333%; - clear: none; - margin-left: 0; - } - - .\36 u, .\36 u\24 { - width: 50%; - clear: none; - margin-left: 0; - } - - .\35 u, .\35 u\24 { - width: 41.6666666667%; - clear: none; - margin-left: 0; - } - - .\34 u, .\34 u\24 { - width: 33.3333333333%; - clear: none; - margin-left: 0; - } - - .\33 u, .\33 u\24 { - width: 25%; - clear: none; - margin-left: 0; - } - - .\32 u, .\32 u\24 { - width: 16.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 u, .\31 u\24 { - width: 8.3333333333%; - clear: none; - margin-left: 0; - } - - .\31 2u\24 + *, - .\31 1u\24 + *, - .\31 0u\24 + *, - .\39 u\24 + *, - .\38 u\24 + *, - .\37 u\24 + *, - .\36 u\24 + *, - .\35 u\24 + *, - .\34 u\24 + *, - .\33 u\24 + *, - .\32 u\24 + *, - .\31 u\24 + * { - clear: left; - } - - .\-11u { - margin-left: 91.66667%; - } - - .\-10u { - margin-left: 83.33333%; - } - - .\-9u { - margin-left: 75%; - } - - .\-8u { - margin-left: 66.66667%; - } - - .\-7u { - margin-left: 58.33333%; - } - - .\-6u { - margin-left: 50%; - } - - .\-5u { - margin-left: 41.66667%; - } - - .\-4u { - margin-left: 33.33333%; - } - - .\-3u { - margin-left: 25%; - } - - .\-2u { - margin-left: 16.66667%; - } - - .\-1u { - margin-left: 8.33333%; - } - - @media screen and (max-width: 1680px) { - - .row > * { - padding: 0 0 0 1em; - } - - .row { - margin: 0 0 -1px -1em; - } - - .row.uniform > * { - padding: 1em 0 0 1em; - } - - .row.uniform { - margin: -1em 0 -1px -1em; - } - - .row.\32 00\25 > * { - padding: 0 0 0 2em; - } - - .row.\32 00\25 { - margin: 0 0 -1px -2em; - } - - .row.uniform.\32 00\25 > * { - padding: 2em 0 0 2em; - } - - .row.uniform.\32 00\25 { - margin: -2em 0 -1px -2em; - } - - .row.\31 50\25 > * { - padding: 0 0 0 1.5em; - } - - .row.\31 50\25 { - margin: 0 0 -1px -1.5em; - } - - .row.uniform.\31 50\25 > * { - padding: 1.5em 0 0 1.5em; - } - - .row.uniform.\31 50\25 { - margin: -1.5em 0 -1px -1.5em; - } - - .row.\35 0\25 > * { - padding: 0 0 0 0.5em; - } - - .row.\35 0\25 { - margin: 0 0 -1px -0.5em; - } - - .row.uniform.\35 0\25 > * { - padding: 0.5em 0 0 0.5em; - } - - .row.uniform.\35 0\25 { - margin: -0.5em 0 -1px -0.5em; - } - - .row.\32 5\25 > * { - padding: 0 0 0 0.25em; - } - - .row.\32 5\25 { - margin: 0 0 -1px -0.25em; - } - - .row.uniform.\32 5\25 > * { - padding: 0.25em 0 0 0.25em; - } - - .row.uniform.\32 5\25 { - margin: -0.25em 0 -1px -0.25em; - } - - .\31 2u\28xlarge\29, .\31 2u\24\28xlarge\29 { - width: 100%; - clear: none; - margin-left: 0; - } - - .\31 1u\28xlarge\29, .\31 1u\24\28xlarge\29 { - width: 91.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 0u\28xlarge\29, .\31 0u\24\28xlarge\29 { - width: 83.3333333333%; - clear: none; - margin-left: 0; - } - - .\39 u\28xlarge\29, .\39 u\24\28xlarge\29 { - width: 75%; - clear: none; - margin-left: 0; - } - - .\38 u\28xlarge\29, .\38 u\24\28xlarge\29 { - width: 66.6666666667%; - clear: none; - margin-left: 0; - } - - .\37 u\28xlarge\29, .\37 u\24\28xlarge\29 { - width: 58.3333333333%; - clear: none; - margin-left: 0; - } - - .\36 u\28xlarge\29, .\36 u\24\28xlarge\29 { - width: 50%; - clear: none; - margin-left: 0; - } - - .\35 u\28xlarge\29, .\35 u\24\28xlarge\29 { - width: 41.6666666667%; - clear: none; - margin-left: 0; - } - - .\34 u\28xlarge\29, .\34 u\24\28xlarge\29 { - width: 33.3333333333%; - clear: none; - margin-left: 0; - } - - .\33 u\28xlarge\29, .\33 u\24\28xlarge\29 { - width: 25%; - clear: none; - margin-left: 0; - } - - .\32 u\28xlarge\29, .\32 u\24\28xlarge\29 { - width: 16.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 u\28xlarge\29, .\31 u\24\28xlarge\29 { - width: 8.3333333333%; - clear: none; - margin-left: 0; - } - - .\31 2u\24\28xlarge\29 + *, - .\31 1u\24\28xlarge\29 + *, - .\31 0u\24\28xlarge\29 + *, - .\39 u\24\28xlarge\29 + *, - .\38 u\24\28xlarge\29 + *, - .\37 u\24\28xlarge\29 + *, - .\36 u\24\28xlarge\29 + *, - .\35 u\24\28xlarge\29 + *, - .\34 u\24\28xlarge\29 + *, - .\33 u\24\28xlarge\29 + *, - .\32 u\24\28xlarge\29 + *, - .\31 u\24\28xlarge\29 + * { - clear: left; - } - - .\-11u\28xlarge\29 { - margin-left: 91.66667%; - } - - .\-10u\28xlarge\29 { - margin-left: 83.33333%; - } - - .\-9u\28xlarge\29 { - margin-left: 75%; - } - - .\-8u\28xlarge\29 { - margin-left: 66.66667%; - } - - .\-7u\28xlarge\29 { - margin-left: 58.33333%; - } - - .\-6u\28xlarge\29 { - margin-left: 50%; - } - - .\-5u\28xlarge\29 { - margin-left: 41.66667%; - } - - .\-4u\28xlarge\29 { - margin-left: 33.33333%; - } - - .\-3u\28xlarge\29 { - margin-left: 25%; - } - - .\-2u\28xlarge\29 { - margin-left: 16.66667%; - } - - .\-1u\28xlarge\29 { - margin-left: 8.33333%; - } - - } - - @media screen and (max-width: 1280px) { - - .row > * { - padding: 0 0 0 1em; - } - - .row { - margin: 0 0 -1px -1em; - } - - .row.uniform > * { - padding: 1em 0 0 1em; - } - - .row.uniform { - margin: -1em 0 -1px -1em; - } - - .row.\32 00\25 > * { - padding: 0 0 0 2em; - } - - .row.\32 00\25 { - margin: 0 0 -1px -2em; - } - - .row.uniform.\32 00\25 > * { - padding: 2em 0 0 2em; - } - - .row.uniform.\32 00\25 { - margin: -2em 0 -1px -2em; - } - - .row.\31 50\25 > * { - padding: 0 0 0 1.5em; - } - - .row.\31 50\25 { - margin: 0 0 -1px -1.5em; - } - - .row.uniform.\31 50\25 > * { - padding: 1.5em 0 0 1.5em; - } - - .row.uniform.\31 50\25 { - margin: -1.5em 0 -1px -1.5em; - } - - .row.\35 0\25 > * { - padding: 0 0 0 0.5em; - } - - .row.\35 0\25 { - margin: 0 0 -1px -0.5em; - } - - .row.uniform.\35 0\25 > * { - padding: 0.5em 0 0 0.5em; - } - - .row.uniform.\35 0\25 { - margin: -0.5em 0 -1px -0.5em; - } - - .row.\32 5\25 > * { - padding: 0 0 0 0.25em; - } - - .row.\32 5\25 { - margin: 0 0 -1px -0.25em; - } - - .row.uniform.\32 5\25 > * { - padding: 0.25em 0 0 0.25em; - } - - .row.uniform.\32 5\25 { - margin: -0.25em 0 -1px -0.25em; - } - - .\31 2u\28large\29, .\31 2u\24\28large\29 { - width: 100%; - clear: none; - margin-left: 0; - } - - .\31 1u\28large\29, .\31 1u\24\28large\29 { - width: 91.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 0u\28large\29, .\31 0u\24\28large\29 { - width: 83.3333333333%; - clear: none; - margin-left: 0; - } - - .\39 u\28large\29, .\39 u\24\28large\29 { - width: 75%; - clear: none; - margin-left: 0; - } - - .\38 u\28large\29, .\38 u\24\28large\29 { - width: 66.6666666667%; - clear: none; - margin-left: 0; - } - - .\37 u\28large\29, .\37 u\24\28large\29 { - width: 58.3333333333%; - clear: none; - margin-left: 0; - } - - .\36 u\28large\29, .\36 u\24\28large\29 { - width: 50%; - clear: none; - margin-left: 0; - } - - .\35 u\28large\29, .\35 u\24\28large\29 { - width: 41.6666666667%; - clear: none; - margin-left: 0; - } - - .\34 u\28large\29, .\34 u\24\28large\29 { - width: 33.3333333333%; - clear: none; - margin-left: 0; - } - - .\33 u\28large\29, .\33 u\24\28large\29 { - width: 25%; - clear: none; - margin-left: 0; - } - - .\32 u\28large\29, .\32 u\24\28large\29 { - width: 16.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 u\28large\29, .\31 u\24\28large\29 { - width: 8.3333333333%; - clear: none; - margin-left: 0; - } - - .\31 2u\24\28large\29 + *, - .\31 1u\24\28large\29 + *, - .\31 0u\24\28large\29 + *, - .\39 u\24\28large\29 + *, - .\38 u\24\28large\29 + *, - .\37 u\24\28large\29 + *, - .\36 u\24\28large\29 + *, - .\35 u\24\28large\29 + *, - .\34 u\24\28large\29 + *, - .\33 u\24\28large\29 + *, - .\32 u\24\28large\29 + *, - .\31 u\24\28large\29 + * { - clear: left; - } - - .\-11u\28large\29 { - margin-left: 91.66667%; - } - - .\-10u\28large\29 { - margin-left: 83.33333%; - } - - .\-9u\28large\29 { - margin-left: 75%; - } - - .\-8u\28large\29 { - margin-left: 66.66667%; - } - - .\-7u\28large\29 { - margin-left: 58.33333%; - } - - .\-6u\28large\29 { - margin-left: 50%; - } - - .\-5u\28large\29 { - margin-left: 41.66667%; - } - - .\-4u\28large\29 { - margin-left: 33.33333%; - } - - .\-3u\28large\29 { - margin-left: 25%; - } - - .\-2u\28large\29 { - margin-left: 16.66667%; - } - - .\-1u\28large\29 { - margin-left: 8.33333%; - } - - } - - @media screen and (max-width: 980px) { - - .row > * { - padding: 0 0 0 1em; - } - - .row { - margin: 0 0 -1px -1em; - } - - .row.uniform > * { - padding: 1em 0 0 1em; - } - - .row.uniform { - margin: -1em 0 -1px -1em; - } - - .row.\32 00\25 > * { - padding: 0 0 0 2em; - } - - .row.\32 00\25 { - margin: 0 0 -1px -2em; - } - - .row.uniform.\32 00\25 > * { - padding: 2em 0 0 2em; - } - - .row.uniform.\32 00\25 { - margin: -2em 0 -1px -2em; - } - - .row.\31 50\25 > * { - padding: 0 0 0 1.5em; - } - - .row.\31 50\25 { - margin: 0 0 -1px -1.5em; - } - - .row.uniform.\31 50\25 > * { - padding: 1.5em 0 0 1.5em; - } - - .row.uniform.\31 50\25 { - margin: -1.5em 0 -1px -1.5em; - } - - .row.\35 0\25 > * { - padding: 0 0 0 0.5em; - } - - .row.\35 0\25 { - margin: 0 0 -1px -0.5em; - } - - .row.uniform.\35 0\25 > * { - padding: 0.5em 0 0 0.5em; - } - - .row.uniform.\35 0\25 { - margin: -0.5em 0 -1px -0.5em; - } - - .row.\32 5\25 > * { - padding: 0 0 0 0.25em; - } - - .row.\32 5\25 { - margin: 0 0 -1px -0.25em; - } - - .row.uniform.\32 5\25 > * { - padding: 0.25em 0 0 0.25em; - } - - .row.uniform.\32 5\25 { - margin: -0.25em 0 -1px -0.25em; - } - - .\31 2u\28medium\29, .\31 2u\24\28medium\29 { - width: 100%; - clear: none; - margin-left: 0; - } - - .\31 1u\28medium\29, .\31 1u\24\28medium\29 { - width: 91.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 0u\28medium\29, .\31 0u\24\28medium\29 { - width: 83.3333333333%; - clear: none; - margin-left: 0; - } - - .\39 u\28medium\29, .\39 u\24\28medium\29 { - width: 75%; - clear: none; - margin-left: 0; - } - - .\38 u\28medium\29, .\38 u\24\28medium\29 { - width: 66.6666666667%; - clear: none; - margin-left: 0; - } - - .\37 u\28medium\29, .\37 u\24\28medium\29 { - width: 58.3333333333%; - clear: none; - margin-left: 0; - } - - .\36 u\28medium\29, .\36 u\24\28medium\29 { - width: 50%; - clear: none; - margin-left: 0; - } - - .\35 u\28medium\29, .\35 u\24\28medium\29 { - width: 41.6666666667%; - clear: none; - margin-left: 0; - } - - .\34 u\28medium\29, .\34 u\24\28medium\29 { - width: 33.3333333333%; - clear: none; - margin-left: 0; - } - - .\33 u\28medium\29, .\33 u\24\28medium\29 { - width: 25%; - clear: none; - margin-left: 0; - } - - .\32 u\28medium\29, .\32 u\24\28medium\29 { - width: 16.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 u\28medium\29, .\31 u\24\28medium\29 { - width: 8.3333333333%; - clear: none; - margin-left: 0; - } - - .\31 2u\24\28medium\29 + *, - .\31 1u\24\28medium\29 + *, - .\31 0u\24\28medium\29 + *, - .\39 u\24\28medium\29 + *, - .\38 u\24\28medium\29 + *, - .\37 u\24\28medium\29 + *, - .\36 u\24\28medium\29 + *, - .\35 u\24\28medium\29 + *, - .\34 u\24\28medium\29 + *, - .\33 u\24\28medium\29 + *, - .\32 u\24\28medium\29 + *, - .\31 u\24\28medium\29 + * { - clear: left; - } - - .\-11u\28medium\29 { - margin-left: 91.66667%; - } - - .\-10u\28medium\29 { - margin-left: 83.33333%; - } - - .\-9u\28medium\29 { - margin-left: 75%; - } - - .\-8u\28medium\29 { - margin-left: 66.66667%; - } - - .\-7u\28medium\29 { - margin-left: 58.33333%; - } - - .\-6u\28medium\29 { - margin-left: 50%; - } - - .\-5u\28medium\29 { - margin-left: 41.66667%; - } - - .\-4u\28medium\29 { - margin-left: 33.33333%; - } - - .\-3u\28medium\29 { - margin-left: 25%; - } - - .\-2u\28medium\29 { - margin-left: 16.66667%; - } - - .\-1u\28medium\29 { - margin-left: 8.33333%; - } - - } - - @media screen and (max-width: 736px) { - - .row > * { - padding: 0 0 0 1em; - } - - .row { - margin: 0 0 -1px -1em; - } - - .row.uniform > * { - padding: 1em 0 0 1em; - } - - .row.uniform { - margin: -1em 0 -1px -1em; - } - - .row.\32 00\25 > * { - padding: 0 0 0 2em; - } - - .row.\32 00\25 { - margin: 0 0 -1px -2em; - } - - .row.uniform.\32 00\25 > * { - padding: 2em 0 0 2em; - } - - .row.uniform.\32 00\25 { - margin: -2em 0 -1px -2em; - } - - .row.\31 50\25 > * { - padding: 0 0 0 1.5em; - } - - .row.\31 50\25 { - margin: 0 0 -1px -1.5em; - } - - .row.uniform.\31 50\25 > * { - padding: 1.5em 0 0 1.5em; - } - - .row.uniform.\31 50\25 { - margin: -1.5em 0 -1px -1.5em; - } - - .row.\35 0\25 > * { - padding: 0 0 0 0.5em; - } - - .row.\35 0\25 { - margin: 0 0 -1px -0.5em; - } - - .row.uniform.\35 0\25 > * { - padding: 0.5em 0 0 0.5em; - } - - .row.uniform.\35 0\25 { - margin: -0.5em 0 -1px -0.5em; - } - - .row.\32 5\25 > * { - padding: 0 0 0 0.25em; - } - - .row.\32 5\25 { - margin: 0 0 -1px -0.25em; - } - - .row.uniform.\32 5\25 > * { - padding: 0.25em 0 0 0.25em; - } - - .row.uniform.\32 5\25 { - margin: -0.25em 0 -1px -0.25em; - } - - .\31 2u\28small\29, .\31 2u\24\28small\29 { - width: 100%; - clear: none; - margin-left: 0; - } - - .\31 1u\28small\29, .\31 1u\24\28small\29 { - width: 91.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 0u\28small\29, .\31 0u\24\28small\29 { - width: 83.3333333333%; - clear: none; - margin-left: 0; - } - - .\39 u\28small\29, .\39 u\24\28small\29 { - width: 75%; - clear: none; - margin-left: 0; - } - - .\38 u\28small\29, .\38 u\24\28small\29 { - width: 66.6666666667%; - clear: none; - margin-left: 0; - } - - .\37 u\28small\29, .\37 u\24\28small\29 { - width: 58.3333333333%; - clear: none; - margin-left: 0; - } - - .\36 u\28small\29, .\36 u\24\28small\29 { - width: 50%; - clear: none; - margin-left: 0; - } - - .\35 u\28small\29, .\35 u\24\28small\29 { - width: 41.6666666667%; - clear: none; - margin-left: 0; - } - - .\34 u\28small\29, .\34 u\24\28small\29 { - width: 33.3333333333%; - clear: none; - margin-left: 0; - } - - .\33 u\28small\29, .\33 u\24\28small\29 { - width: 25%; - clear: none; - margin-left: 0; - } - - .\32 u\28small\29, .\32 u\24\28small\29 { - width: 16.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 u\28small\29, .\31 u\24\28small\29 { - width: 8.3333333333%; - clear: none; - margin-left: 0; - } - - .\31 2u\24\28small\29 + *, - .\31 1u\24\28small\29 + *, - .\31 0u\24\28small\29 + *, - .\39 u\24\28small\29 + *, - .\38 u\24\28small\29 + *, - .\37 u\24\28small\29 + *, - .\36 u\24\28small\29 + *, - .\35 u\24\28small\29 + *, - .\34 u\24\28small\29 + *, - .\33 u\24\28small\29 + *, - .\32 u\24\28small\29 + *, - .\31 u\24\28small\29 + * { - clear: left; - } - - .\-11u\28small\29 { - margin-left: 91.66667%; - } - - .\-10u\28small\29 { - margin-left: 83.33333%; - } - - .\-9u\28small\29 { - margin-left: 75%; - } - - .\-8u\28small\29 { - margin-left: 66.66667%; - } - - .\-7u\28small\29 { - margin-left: 58.33333%; - } - - .\-6u\28small\29 { - margin-left: 50%; - } - - .\-5u\28small\29 { - margin-left: 41.66667%; - } - - .\-4u\28small\29 { - margin-left: 33.33333%; - } - - .\-3u\28small\29 { - margin-left: 25%; - } - - .\-2u\28small\29 { - margin-left: 16.66667%; - } - - .\-1u\28small\29 { - margin-left: 8.33333%; - } - - } - - @media screen and (max-width: 480px) { - - .row > * { - padding: 0 0 0 1em; - } - - .row { - margin: 0 0 -1px -1em; - } - - .row.uniform > * { - padding: 1em 0 0 1em; - } - - .row.uniform { - margin: -1em 0 -1px -1em; - } - - .row.\32 00\25 > * { - padding: 0 0 0 2em; - } - - .row.\32 00\25 { - margin: 0 0 -1px -2em; - } - - .row.uniform.\32 00\25 > * { - padding: 2em 0 0 2em; - } - - .row.uniform.\32 00\25 { - margin: -2em 0 -1px -2em; - } - - .row.\31 50\25 > * { - padding: 0 0 0 1.5em; - } - - .row.\31 50\25 { - margin: 0 0 -1px -1.5em; - } - - .row.uniform.\31 50\25 > * { - padding: 1.5em 0 0 1.5em; - } - - .row.uniform.\31 50\25 { - margin: -1.5em 0 -1px -1.5em; - } - - .row.\35 0\25 > * { - padding: 0 0 0 0.5em; - } - - .row.\35 0\25 { - margin: 0 0 -1px -0.5em; - } - - .row.uniform.\35 0\25 > * { - padding: 0.5em 0 0 0.5em; - } - - .row.uniform.\35 0\25 { - margin: -0.5em 0 -1px -0.5em; - } - - .row.\32 5\25 > * { - padding: 0 0 0 0.25em; - } - - .row.\32 5\25 { - margin: 0 0 -1px -0.25em; - } - - .row.uniform.\32 5\25 > * { - padding: 0.25em 0 0 0.25em; - } - - .row.uniform.\32 5\25 { - margin: -0.25em 0 -1px -0.25em; - } - - .\31 2u\28xsmall\29, .\31 2u\24\28xsmall\29 { - width: 100%; - clear: none; - margin-left: 0; - } - - .\31 1u\28xsmall\29, .\31 1u\24\28xsmall\29 { - width: 91.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 0u\28xsmall\29, .\31 0u\24\28xsmall\29 { - width: 83.3333333333%; - clear: none; - margin-left: 0; - } - - .\39 u\28xsmall\29, .\39 u\24\28xsmall\29 { - width: 75%; - clear: none; - margin-left: 0; - } - - .\38 u\28xsmall\29, .\38 u\24\28xsmall\29 { - width: 66.6666666667%; - clear: none; - margin-left: 0; - } - - .\37 u\28xsmall\29, .\37 u\24\28xsmall\29 { - width: 58.3333333333%; - clear: none; - margin-left: 0; - } - - .\36 u\28xsmall\29, .\36 u\24\28xsmall\29 { - width: 50%; - clear: none; - margin-left: 0; - } - - .\35 u\28xsmall\29, .\35 u\24\28xsmall\29 { - width: 41.6666666667%; - clear: none; - margin-left: 0; - } - - .\34 u\28xsmall\29, .\34 u\24\28xsmall\29 { - width: 33.3333333333%; - clear: none; - margin-left: 0; - } - - .\33 u\28xsmall\29, .\33 u\24\28xsmall\29 { - width: 25%; - clear: none; - margin-left: 0; - } - - .\32 u\28xsmall\29, .\32 u\24\28xsmall\29 { - width: 16.6666666667%; - clear: none; - margin-left: 0; - } - - .\31 u\28xsmall\29, .\31 u\24\28xsmall\29 { - width: 8.3333333333%; - clear: none; - margin-left: 0; - } - - .\31 2u\24\28xsmall\29 + *, - .\31 1u\24\28xsmall\29 + *, - .\31 0u\24\28xsmall\29 + *, - .\39 u\24\28xsmall\29 + *, - .\38 u\24\28xsmall\29 + *, - .\37 u\24\28xsmall\29 + *, - .\36 u\24\28xsmall\29 + *, - .\35 u\24\28xsmall\29 + *, - .\34 u\24\28xsmall\29 + *, - .\33 u\24\28xsmall\29 + *, - .\32 u\24\28xsmall\29 + *, - .\31 u\24\28xsmall\29 + * { - clear: left; - } - - .\-11u\28xsmall\29 { - margin-left: 91.66667%; - } - - .\-10u\28xsmall\29 { - margin-left: 83.33333%; - } - - .\-9u\28xsmall\29 { - margin-left: 75%; - } - - .\-8u\28xsmall\29 { - margin-left: 66.66667%; - } - - .\-7u\28xsmall\29 { - margin-left: 58.33333%; - } - - .\-6u\28xsmall\29 { - margin-left: 50%; - } - - .\-5u\28xsmall\29 { - margin-left: 41.66667%; - } - - .\-4u\28xsmall\29 { - margin-left: 33.33333%; - } - - .\-3u\28xsmall\29 { - margin-left: 25%; - } - - .\-2u\28xsmall\29 { - margin-left: 16.66667%; - } - - .\-1u\28xsmall\29 { - margin-left: 8.33333%; - } - - } - -/* Basic */ - - @-ms-viewport { - width: device-width; - } - - body { - -ms-overflow-style: scrollbar; - } - - @media screen and (max-width: 480px) { - - html, body { - min-width: 320px; - } - - } - - body { - background: #f4f4f4; - } - - body.is-loading *, body.is-loading *:before, body.is-loading *:after { - -moz-animation: none !important; - -webkit-animation: none !important; - -ms-animation: none !important; - animation: none !important; - -moz-transition: none !important; - -webkit-transition: none !important; - -ms-transition: none !important; - transition: none !important; - } - -/* Type */ - - body, input, select, textarea { - color: #646464; - font-family: "Source Sans Pro", Helvetica, sans-serif; - font-size: 14pt; - font-weight: 400; - line-height: 1.75; - } - - @media screen and (max-width: 1680px) { - - body, input, select, textarea { - font-size: 12pt; - } - - } - - @media screen and (max-width: 1280px) { - - body, input, select, textarea { - font-size: 12pt; - } - - } - - @media screen and (max-width: 980px) { - - body, input, select, textarea { - font-size: 12pt; - } - - } - - @media screen and (max-width: 736px) { - - body, input, select, textarea { - font-size: 12pt; - } - - } - - @media screen and (max-width: 480px) { - - body, input, select, textarea { - font-size: 12pt; - } - - } - - a { - -moz-transition: color 0.2s ease, border-bottom-color 0.2s ease; - -webkit-transition: color 0.2s ease, border-bottom-color 0.2s ease; - -ms-transition: color 0.2s ease, border-bottom-color 0.2s ease; - transition: color 0.2s ease, border-bottom-color 0.2s ease; - border-bottom: dotted 1px rgba(160, 160, 160, 0.65); - color: inherit; - text-decoration: none; - } - - a:before { - -moz-transition: color 0.2s ease; - -webkit-transition: color 0.2s ease; - -ms-transition: color 0.2s ease; - transition: color 0.2s ease; - } - - a:hover { - border-bottom-color: transparent; - color: #2ebaae !important; - } - - a:hover:before { - color: #2ebaae !important; - } - - strong, b { - color: #3c3b3b; - font-weight: 700; - } - - em, i { - font-style: italic; - } - - p { - margin: 0 0 2em 0; - } - - h1, h2, h3, h4, h5, h6 { - color: #3c3b3b; - font-family: "Raleway", Helvetica, sans-serif; - font-weight: 800; - letter-spacing: 0.25em; - line-height: 1.65; - margin: 0 0 1em 0; - text-transform: uppercase; - } - - h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { - color: inherit; - border-bottom: 0; - } - - h2 { - font-size: 1.1em; - } - - h3 { - font-size: 0.9em; - } - - h4 { - font-size: 0.7em; - } - - h5 { - font-size: 0.7em; - } - - h6 { - font-size: 0.7em; - } - - sub { - font-size: 0.8em; - position: relative; - top: 0.5em; - } - - sup { - font-size: 0.8em; - position: relative; - top: -0.5em; - } - - blockquote { - border-left: solid 4px rgba(160, 160, 160, 0.3); - font-style: italic; - margin: 0 0 2em 0; - padding: 0.5em 0 0.5em 2em; - } - - code { - background: rgba(160, 160, 160, 0.075); - border: solid 1px rgba(160, 160, 160, 0.3); - font-family: "Courier New", monospace; - font-size: 0.9em; - margin: 0 0.25em; - padding: 0.25em 0.65em; - } - - pre { - -webkit-overflow-scrolling: touch; - font-family: "Courier New", monospace; - font-size: 0.9em; - margin: 0 0 2em 0; - } - - pre code { - display: block; - line-height: 1.75em; - padding: 1em 1.5em; - overflow-x: auto; - } - - hr { - border: 0; - border-bottom: solid 1px rgba(160, 160, 160, 0.3); - margin: 2em 0; - } - - hr.major { - margin: 3em 0; - } - - .align-left { - text-align: left; - } - - .align-center { - text-align: center; - } - - .align-right { - text-align: right; - } - -/* Author */ - - .author { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-flex-direction: row; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -moz-align-items: center; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -moz-justify-content: -moz-flex-end; - -webkit-justify-content: -webkit-flex-end; - -ms-justify-content: -ms-flex-end; - justify-content: flex-end; - border-bottom: 0; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.6em; - font-weight: 400; - letter-spacing: 0.25em; - text-transform: uppercase; - white-space: nowrap; - } - - .author .name { - -moz-transition: border-bottom-color 0.2s ease; - -webkit-transition: border-bottom-color 0.2s ease; - -ms-transition: border-bottom-color 0.2s ease; - transition: border-bottom-color 0.2s ease; - border-bottom: dotted 1px rgba(160, 160, 160, 0.65); - display: block; - margin: 0 1.5em 0 0; - } - - .author img { - border-radius: 100%; - display: block; - width: 4em; - } - - .author:hover .name { - border-bottom-color: transparent; - } - -/* Blurb */ - - .blurb h2 { - font-size: 0.8em; - margin: 0 0 1.5em 0; - } - - .blurb h3 { - font-size: 0.7em; - } - - .blurb p { - font-size: 0.9em; - } - -/* Box */ - - .box { - border: solid 1px rgba(160, 160, 160, 0.3); - margin-bottom: 2em; - padding: 1.5em; - } - - .box > :last-child, - .box > :last-child > :last-child, - .box > :last-child > :last-child > :last-child { - margin-bottom: 0; - } - - .box.alt { - border: 0; - border-radius: 0; - padding: 0; - } - -/* Button */ - - input[type="submit"], - input[type="reset"], - input[type="button"], - button, - .button { - -moz-appearance: none; - -webkit-appearance: none; - -ms-appearance: none; - appearance: none; - -moz-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; - -webkit-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; - -ms-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; - transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; - background-color: transparent; - border: 0; - box-shadow: inset 0 0 0 1px rgba(160, 160, 160, 0.3); - color: #3c3b3b !important; - cursor: pointer; - display: inline-block; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.6em; - font-weight: 800; - height: 4.8125em; - letter-spacing: 0.25em; - line-height: 4.8125em; - padding: 0 2.5em; - text-align: center; - text-decoration: none; - text-transform: uppercase; - white-space: nowrap; - } - - input[type="submit"]:hover, - input[type="reset"]:hover, - input[type="button"]:hover, - button:hover, - .button:hover { - box-shadow: inset 0 0 0 1px #2ebaae; - color: #2ebaae !important; - } - - input[type="submit"]:hover:active, - input[type="reset"]:hover:active, - input[type="button"]:hover:active, - button:hover:active, - .button:hover:active { - background-color: rgba(46, 186, 174, 0.05); - } - - input[type="submit"]:before, input[type="submit"]:after, - input[type="reset"]:before, - input[type="reset"]:after, - input[type="button"]:before, - input[type="button"]:after, - button:before, - button:after, - .button:before, - .button:after { - color: #aaaaaa; - position: relative; - } - - input[type="submit"]:before, - input[type="reset"]:before, - input[type="button"]:before, - button:before, - .button:before { - left: -1em; - padding: 0 0 0 0.75em; - } - - input[type="submit"]:after, - input[type="reset"]:after, - input[type="button"]:after, - button:after, - .button:after { - left: 1em; - padding: 0 0.75em 0 0; - } - - input[type="submit"].fit, - input[type="reset"].fit, - input[type="button"].fit, - button.fit, - .button.fit { - display: block; - margin: 0 0 1em 0; - width: 100%; - } - - input[type="submit"].big, - input[type="reset"].big, - input[type="button"].big, - button.big, - .button.big { - font-size: 0.7em; - padding: 0 3em; - } - - input[type="submit"].small, - input[type="reset"].small, - input[type="button"].small, - button.small, - .button.small { - font-size: 0.5em; - } - - input[type="submit"].disabled, input[type="submit"]:disabled, - input[type="reset"].disabled, - input[type="reset"]:disabled, - input[type="button"].disabled, - input[type="button"]:disabled, - button.disabled, - button:disabled, - .button.disabled, - .button:disabled { - -moz-pointer-events: none; - -webkit-pointer-events: none; - -ms-pointer-events: none; - pointer-events: none; - color: rgba(160, 160, 160, 0.3) !important; - } - - input[type="submit"].disabled:before, input[type="submit"]:disabled:before, - input[type="reset"].disabled:before, - input[type="reset"]:disabled:before, - input[type="button"].disabled:before, - input[type="button"]:disabled:before, - button.disabled:before, - button:disabled:before, - .button.disabled:before, - .button:disabled:before { - color: rgba(160, 160, 160, 0.3) !important; - } - -/* Form */ - - form { - margin: 0 0 2em 0; - } - - form.search { - text-decoration: none; - position: relative; - } - - form.search:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - form.search:before { - color: #aaaaaa; - content: '\f002'; - display: block; - height: 2.75em; - left: 0; - line-height: 2.75em; - position: absolute; - text-align: center; - top: 0; - width: 2.5em; - } - - form.search > input:first-child { - padding-left: 2.5em; - } - - label { - color: #3c3b3b; - display: block; - font-size: 0.9em; - font-weight: 700; - margin: 0 0 1em 0; - } - - input[type="text"], - input[type="password"], - input[type="email"], - input[type="tel"], - select, - textarea { - -moz-appearance: none; - -webkit-appearance: none; - -ms-appearance: none; - appearance: none; - background: rgba(160, 160, 160, 0.075); - border: none; - border: solid 1px rgba(160, 160, 160, 0.3); - border-radius: 0; - color: inherit; - display: block; - outline: 0; - padding: 0 1em; - text-decoration: none; - width: 100%; - } - - input[type="text"]:invalid, - input[type="password"]:invalid, - input[type="email"]:invalid, - input[type="tel"]:invalid, - select:invalid, - textarea:invalid { - box-shadow: none; - } - - input[type="text"]:focus, - input[type="password"]:focus, - input[type="email"]:focus, - input[type="tel"]:focus, - select:focus, - textarea:focus { - border-color: #2ebaae; - box-shadow: inset 0 0 0 1px #2ebaae; - } - - .select-wrapper { - text-decoration: none; - display: block; - position: relative; - } - - .select-wrapper:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - .select-wrapper:before { - color: rgba(160, 160, 160, 0.3); - content: '\f078'; - display: block; - height: 2.75em; - line-height: 2.75em; - pointer-events: none; - position: absolute; - right: 0; - text-align: center; - top: 0; - width: 2.75em; - } - - .select-wrapper select::-ms-expand { - display: none; - } - - input[type="text"], - input[type="password"], - input[type="email"], - select { - height: 2.75em; - } - - textarea { - padding: 0.75em 1em; - } - - input[type="checkbox"], - input[type="radio"] { - -moz-appearance: none; - -webkit-appearance: none; - -ms-appearance: none; - appearance: none; - display: block; - float: left; - margin-right: -2em; - opacity: 0; - width: 1em; - z-index: -1; - } - - input[type="checkbox"] + label, - input[type="radio"] + label { - text-decoration: none; - color: #646464; - cursor: pointer; - display: inline-block; - font-size: 1em; - font-weight: 400; - padding-left: 2.4em; - padding-right: 0.75em; - position: relative; - } - - input[type="checkbox"] + label:before, - input[type="radio"] + label:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - input[type="checkbox"] + label:before, - input[type="radio"] + label:before { - background: rgba(160, 160, 160, 0.075); - border: solid 1px rgba(160, 160, 160, 0.3); - content: ''; - display: inline-block; - height: 1.65em; - left: 0; - line-height: 1.58125em; - position: absolute; - text-align: center; - top: 0; - width: 1.65em; - } - - input[type="checkbox"]:checked + label:before, - input[type="radio"]:checked + label:before { - background: #3c3b3b; - border-color: #3c3b3b; - color: #ffffff; - content: '\f00c'; - } - - input[type="checkbox"]:focus + label:before, - input[type="radio"]:focus + label:before { - border-color: #2ebaae; - box-shadow: 0 0 0 1px #2ebaae; - } - - input[type="radio"] + label:before { - border-radius: 100%; - } - - ::-webkit-input-placeholder { - color: #aaaaaa !important; - opacity: 1.0; - } - - :-moz-placeholder { - color: #aaaaaa !important; - opacity: 1.0; - } - - ::-moz-placeholder { - color: #aaaaaa !important; - opacity: 1.0; - } - - :-ms-input-placeholder { - color: #aaaaaa !important; - opacity: 1.0; - } - - .formerize-placeholder { - color: #aaaaaa !important; - opacity: 1.0; - } - -/* Icon */ - - .icon { - text-decoration: none; - border-bottom: none; - position: relative; - } - - .icon:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - .icon > .label { - display: none; - } - - .icon.suffix:before { - float: right; - } - -/* Image */ - - .image { - border: 0; - display: inline-block; - position: relative; - } - - .image img { - display: block; - } - - .image.left, .image.right { - max-width: 40%; - } - - .image.left img, .image.right img { - width: 100%; - } - - .image.left { - float: left; - padding: 0 1.5em 1em 0; - top: 0.25em; - } - - .image.right { - float: right; - padding: 0 0 1em 1.5em; - top: 0.25em; - } - - .image.fit { - display: block; - margin: 0 0 2em 0; - width: 100%; - } - - .image.fit img { - width: 100%; - } - - .image.featured { - display: block; - margin: 0 0 3em 0; - width: 100%; - } - - .image.featured img { - width: 100%; - } - - @media screen and (max-width: 736px) { - - .image.featured { - margin: 0 0 1.5em 0; - } - - } - - .image.main { - display: block; - margin: 0 0 3em 0; - width: 100%; - } - - .image.main img { - width: 100%; - } - -/* List */ - - ol { - list-style: decimal; - margin: 0 0 2em 0; - padding-left: 1.25em; - } - - ol li { - padding-left: 0.25em; - } - - ul { - list-style: disc; - margin: 0 0 2em 0; - padding-left: 1em; - } - - ul li { - padding-left: 0.5em; - } - - ul.alt { - list-style: none; - padding-left: 0; - } - - ul.alt li { - border-top: solid 1px rgba(160, 160, 160, 0.3); - padding: 0.5em 0; - } - - ul.alt li:first-child { - border-top: 0; - padding-top: 0; - } - - ul.icons { - cursor: default; - list-style: none; - padding-left: 0; - } - - ul.icons li { - display: inline-block; - padding: 0 1em 0 0; - } - - ul.icons li:last-child { - padding-right: 0; - } - - ul.icons li > * { - text-decoration: none; - border: 0; - } - - ul.icons li > *:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - ul.icons li > * .label { - display: none; - } - - ul.actions { - cursor: default; - list-style: none; - padding-left: 0; - } - - ul.actions li { - display: inline-block; - padding: 0 1.5em 0 0; - vertical-align: middle; - } - - ul.actions li:last-child { - padding-right: 0; - } - - ul.actions.pagination .next { - text-decoration: none; - } - - ul.actions.pagination .next:after { - content: ""; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - ul.actions.pagination .next:after { - content: '\f054'; - } - - ul.actions.pagination .previous { - text-decoration: none; - } - - ul.actions.pagination .previous:before { - content: ""; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - ul.actions.pagination .previous:before { - content: '\f053'; - } - - @media screen and (max-width: 1280px) { - - ul.actions.pagination { - text-align: center; - } - - ul.actions.pagination .next, ul.actions.pagination .previous { - min-width: 20em; - } - - } - - @media screen and (max-width: 736px) { - - ul.actions.pagination .next, ul.actions.pagination .previous { - min-width: 18em; - } - - } - - ul.actions.small li { - padding: 0 1em 0 0; - } - - ul.actions.vertical li { - display: block; - padding: 1.5em 0 0 0; - } - - ul.actions.vertical li:first-child { - padding-top: 0; - } - - ul.actions.vertical li > * { - margin-bottom: 0; - } - - ul.actions.vertical.small li { - padding: 1em 0 0 0; - } - - ul.actions.vertical.small li:first-child { - padding-top: 0; - } - - ul.actions.fit { - display: table; - margin-left: -1em; - padding: 0; - table-layout: fixed; - width: calc(100% + 1em); - } - - ul.actions.fit li { - display: table-cell; - padding: 0 0 0 1em; - } - - ul.actions.fit li > * { - margin-bottom: 0; - } - - ul.actions.fit.small { - margin-left: -0.5em; - width: calc(100% + 0.5em); - } - - ul.actions.fit.small li { - padding: 0 0 0 0.5em; - } - - @media screen and (max-width: 480px) { - - ul.actions { - margin: 0 0 2em 0; - } - - ul.actions li { - padding: 1em 0 0 0; - display: block; - text-align: center; - width: 100%; - } - - ul.actions li:first-child { - padding-top: 0; - } - - ul.actions li > * { - width: 100%; - margin: 0 !important; - } - - ul.actions.small li { - padding: 0.5em 0 0 0; - } - - ul.actions.small li:first-child { - padding-top: 0; - } - - } - - ul.posts { - list-style: none; - padding: 0; - } - - ul.posts li { - border-top: dotted 1px rgba(160, 160, 160, 0.3); - margin: 1.5em 0 0 0; - padding: 1.5em 0 0 0; - } - - ul.posts li:first-child { - border-top: 0; - margin-top: 0; - padding-top: 0; - } - - ul.posts article { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-align-items: -moz-flex-start; - -webkit-align-items: -webkit-flex-start; - -ms-align-items: -ms-flex-start; - align-items: flex-start; - -moz-flex-direction: row-reverse; - -webkit-flex-direction: row-reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - } - - ul.posts article .image { - display: block; - margin-right: 1.5em; - min-width: 4em; - width: 4em; - } - - ul.posts article .image img { - width: 100%; - } - - ul.posts article header { - -moz-flex-grow: 1; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -ms-flex: 1; - } - - ul.posts article header h3 { - font-size: 0.7em; - margin-top: 0.125em; - } - - ul.posts article header .published { - display: block; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.6em; - font-weight: 400; - letter-spacing: 0.25em; - margin: -0.625em 0 1.7em 0; - text-transform: uppercase; - } - - ul.posts article header > :last-child { - margin-bottom: 0; - } - - dl { - margin: 0 0 2em 0; - } - - dl dt { - display: block; - font-weight: 700; - margin: 0 0 1em 0; - } - - dl dd { - margin-left: 2em; - } - -/* Mini Post */ - - .mini-post { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-flex-direction: column-reverse; - -webkit-flex-direction: column-reverse; - -ms-flex-direction: column-reverse; - flex-direction: column-reverse; - background: #ffffff; - border: solid 1px rgba(160, 160, 160, 0.3); - margin: 0 0 2em 0; - } - - .mini-post .image { - overflow: hidden; - width: 100%; - } - - .mini-post .image img { - -moz-transition: -moz-transform 0.2s ease-out; - -webkit-transition: -webkit-transform 0.2s ease-out; - -ms-transition: -ms-transform 0.2s ease-out; - transition: transform 0.2s ease-out; - width: 100%; - } - - .mini-post .image:hover img { - -moz-transform: scale(1.05); - -webkit-transform: scale(1.05); - -ms-transform: scale(1.05); - transform: scale(1.05); - } - - .mini-post header { - padding: 1.25em 4.25em 0.1em 1.25em ; - min-height: 4em; - position: relative; - -moz-flex-grow: 1; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - } - - .mini-post header h3 { - font-size: 0.7em; - } - - .mini-post header .published { - display: block; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.6em; - font-weight: 400; - letter-spacing: 0.25em; - margin: -0.625em 0 1.7em 0; - text-transform: uppercase; - } - - .mini-post header .author { - position: absolute; - right: 2em; - top: 2em; - } - - .mini-posts { - margin: 0 0 2em 0; - } - - @media screen and (max-width: 1280px) { - - .mini-posts { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-flex-wrap: wrap; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - width: calc(100% + 2em); - } - - .mini-posts > * { - margin: 2em 2em 0 0; - width: calc(50% - 2em); - } - - .mini-posts > :nth-child(-n + 2) { - margin-top: 0; - } - - } - - @media screen and (max-width: 480px) { - - .mini-posts { - display: block; - width: 100%; - } - - .mini-posts > * { - margin: 0 0 2em 0; - width: 100%; - } - - } - -/* Post */ - - .post { - padding: 3em 3em 1em 3em ; - background: #ffffff; - border: solid 1px rgba(160, 160, 160, 0.3); - margin: 0 0 3em 0; - position: relative; - } - - .post > header { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - border-bottom: solid 1px rgba(160, 160, 160, 0.3); - left: -3em; - margin: -3em 0 3em 0; - position: relative; - width: calc(100% + 6em); - } - - .post > header .title { - -moz-flex-grow: 1; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -ms-flex: 1; - padding: 3.75em 3em 3.3em 3em; - } - - .post > header .title h2 { - font-weight: 900; - font-size: 1.5em; - } - - .post > header .title > :last-child { - margin-bottom: 0; - } - - .post > header .meta { - padding: 3.75em 3em 1.75em 3em ; - border-left: solid 1px rgba(160, 160, 160, 0.3); - min-width: 17em; - text-align: right; - width: 17em; - } - - .post > header .meta > * { - margin: 0 0 1em 0; - } - - .post > header .meta > :last-child { - margin-bottom: 0; - } - - .post > header .meta .published { - color: #3c3b3b; - display: block; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.7em; - font-weight: 800; - letter-spacing: 0.25em; - margin-top: 0.5em; - text-transform: uppercase; - white-space: nowrap; - } - - .post > .image.featured { - overflow: hidden; - } - - .post > .image.featured img { - -moz-transition: -moz-transform 0.2s ease-out; - -webkit-transition: -webkit-transform 0.2s ease-out; - -ms-transition: -ms-transform 0.2s ease-out; - transition: transform 0.2s ease-out; - } - - .post > .image.featured:hover img { - -moz-transform: scale(1.05); - -webkit-transform: scale(1.05); - -ms-transform: scale(1.05); - transform: scale(1.05); - } - - .post > footer { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-align-items: center; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - } - - .post > footer .actions { - -moz-flex-grow: 1; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - } - - .post > footer .stats { - cursor: default; - list-style: none; - padding: 0; - } - - .post > footer .stats li { - border-left: solid 1px rgba(160, 160, 160, 0.3); - display: inline-block; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.6em; - font-weight: 400; - letter-spacing: 0.25em; - line-height: 1; - margin: 0 0 0 2em; - padding: 0 0 0 2em; - text-transform: uppercase; - } - - .post > footer .stats li:first-child { - border-left: 0; - margin-left: 0; - padding-left: 0; - } - - .post > footer .stats li .icon { - border-bottom: 0; - } - - .post > footer .stats li .icon:before { - color: rgba(160, 160, 160, 0.3); - margin-right: 0.75em; - } - - @media screen and (max-width: 980px) { - - .post { - border-left: 0; - border-right: 0; - left: -3em; - width: calc(100% + (3em * 2)); - } - - .post > header { - -moz-flex-direction: column; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - padding: 3.75em 3em 1.25em 3em ; - border-left: 0; - } - - .post > header .title { - -ms-flex: 0 1 auto; - margin: 0 0 2em 0; - padding: 0; - text-align: center; - } - - .post > header .meta { - -moz-align-items: center; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-justify-content: center; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; - border-left: 0; - margin: 0 0 2em 0; - padding-top: 0; - padding: 0; - text-align: left; - width: 100%; - } - - .post > header .meta > * { - border-left: solid 1px rgba(160, 160, 160, 0.3); - margin-left: 2em; - padding-left: 2em; - } - - .post > header .meta > :first-child { - border-left: 0; - margin-left: 0; - padding-left: 0; - } - - .post > header .meta .published { - margin-bottom: 0; - margin-top: 0; - } - - .post > header .meta .author { - -moz-flex-direction: row-reverse; - -webkit-flex-direction: row-reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - margin-bottom: 0; - } - - .post > header .meta .author .name { - margin: 0 0 0 1.5em; - } - - .post > header .meta .author img { - width: 3.5em; - } - - } - - @media screen and (max-width: 736px) { - - .post { - padding: 1.5em 1.5em 0.1em 1.5em ; - left: -1.5em; - margin: 0 0 2em 0; - width: calc(100% + (1.5em * 2)); - } - - .post > header { - padding: 3em 1.5em 0.5em 1.5em ; - left: -1.5em; - margin: -1.5em 0 1.5em 0; - width: calc(100% + 3em); - } - - .post > header .title h2 { - font-size: 1.1em; - } - - } - - @media screen and (max-width: 480px) { - - .post > header .meta { - -moz-align-items: center; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -moz-flex-direction: column; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } - - .post > header .meta > * { - border-left: 0; - margin: 1em 0 0 0; - padding-left: 0; - } - - .post > header .meta .author .name { - display: none; - } - - .post > .image.featured { - margin-left: -1.5em; - margin-top: calc(-1.5em - 1px); - width: calc(100% + 3em); - } - - .post > footer { - -moz-align-items: stretch; - -webkit-align-items: stretch; - -ms-align-items: stretch; - align-items: stretch; - -moz-flex-direction: column-reverse; - -webkit-flex-direction: column-reverse; - -ms-flex-direction: column-reverse; - flex-direction: column-reverse; - } - - .post > footer .stats { - text-align: center; - } - - .post > footer .stats li { - margin: 0 0 0 1.25em; - padding: 0 0 0 1.25em; - } - - } - -/* Section/Article */ - - section.special, article.special { - text-align: center; - } - - header p { - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.7em; - font-weight: 400; - letter-spacing: 0.25em; - line-height: 2.5; - margin-top: -1em; - text-transform: uppercase; - } - -/* Table */ - - .table-wrapper { - -webkit-overflow-scrolling: touch; - overflow-x: auto; - } - - table { - margin: 0 0 2em 0; - width: 100%; - } - - table tbody tr { - border: solid 1px rgba(160, 160, 160, 0.3); - border-left: 0; - border-right: 0; - } - - table tbody tr:nth-child(2n + 1) { - background-color: rgba(160, 160, 160, 0.075); - } - - table td { - padding: 0.75em 0.75em; - } - - table th { - color: #3c3b3b; - font-size: 0.9em; - font-weight: 700; - padding: 0 0.75em 0.75em 0.75em; - text-align: left; - } - - table thead { - border-bottom: solid 2px rgba(160, 160, 160, 0.3); - } - - table tfoot { - border-top: solid 2px rgba(160, 160, 160, 0.3); - } - - table.alt { - border-collapse: separate; - } - - table.alt tbody tr td { - border: solid 1px rgba(160, 160, 160, 0.3); - border-left-width: 0; - border-top-width: 0; - } - - table.alt tbody tr td:first-child { - border-left-width: 1px; - } - - table.alt tbody tr:first-child td { - border-top-width: 1px; - } - - table.alt thead { - border-bottom: 0; - } - - table.alt tfoot { - border-top: 0; - } - -/* Header */ - - body { - padding-top: 3.5em; - } - - #header { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-justify-content: space-between; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - background-color: #ffffff; - border-bottom: solid 1px rgba(160, 160, 160, 0.3); - height: 3.5em; - left: 0; - line-height: 3.5em; - position: fixed; - top: 0; - width: 100%; - z-index: 10000; - } - - #header a { - color: inherit; - text-decoration: none; - } - - #header ul { - list-style: none; - margin: 0; - padding-left: 0; - } - - #header ul li { - display: inline-block; - padding-left: 0; - } - - #header h1 { - height: inherit; - line-height: inherit; - padding: 0 0 0 1.5em; - white-space: nowrap; - } - - #header h1 a { - font-size: 0.7em; - } - - #header .links { - -moz-flex: 1; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - border-left: solid 1px rgba(160, 160, 160, 0.3); - height: inherit; - line-height: inherit; - margin-left: 1.5em; - overflow: hidden; - padding-left: 1.5em; - } - - #header .links ul li { - border-left: solid 1px rgba(160, 160, 160, 0.3); - line-height: 1; - margin-left: 1em; - padding-left: 1em; - } - - #header .links ul li:first-child { - border-left: 0; - margin-left: 0; - padding-left: 0; - } - - #header .links ul li a { - border-bottom: 0; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.7em; - font-weight: 400; - letter-spacing: 0.25em; - text-transform: uppercase; - } - - #header .main { - height: inherit; - line-height: inherit; - text-align: right; - } - - #header .main ul { - height: inherit; - line-height: inherit; - } - - #header .main ul li { - border-left: solid 1px rgba(160, 160, 160, 0.3); - height: inherit; - line-height: inherit; - white-space: nowrap; - } - - #header .main ul li > * { - display: block; - float: left; - } - - #header .main ul li > a { - text-decoration: none; - border-bottom: 0; - color: #aaaaaa; - overflow: hidden; - position: relative; - text-indent: 4em; - width: 4em; - } - - #header .main ul li > a:before { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - font-family: FontAwesome; - font-style: normal; - font-weight: normal; - text-transform: none !important; - } - - #header .main ul li > a:before { - display: block; - height: inherit; - left: 0; - line-height: inherit; - position: absolute; - text-align: center; - text-indent: 0; - top: 0; - width: inherit; - } - - #header form { - margin: 0; - } - - #header form input { - display: inline-block; - height: 2.5em; - position: relative; - top: -2px; - vertical-align: middle; - } - - #header #search { - -moz-transition: all 0.5s ease; - -webkit-transition: all 0.5s ease; - -ms-transition: all 0.5s ease; - transition: all 0.5s ease; - max-width: 0; - opacity: 0; - overflow: hidden; - padding: 0; - white-space: nowrap; - } - - #header #search input { - width: 12em; - } - - #header #search.visible { - max-width: 12.5em; - opacity: 1; - padding: 0 0.5em 0 0; - } - - @media screen and (max-width: 980px) { - - #header .links { - display: none; - } - - } - - @media screen and (max-width: 736px) { - - #header { - height: 2.75em; - line-height: 2.75em; - } - - #header h1 { - padding: 0 0 0 1em; - } - - #header .main .search { - display: none; - } - - } - -/* Wrapper */ - - #wrapper { - display: -moz-flex; - display: -webkit-flex; - display: -ms-flex; - display: flex; - -moz-flex-direction: row-reverse; - -webkit-flex-direction: row-reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - -moz-transition: opacity 0.5s ease; - -webkit-transition: opacity 0.5s ease; - -ms-transition: opacity 0.5s ease; - transition: opacity 0.5s ease; - margin: 0 auto; - max-width: 100%; - opacity: 1; - padding: 4.5em; - width: 90em; - } - - body.is-menu-visible #wrapper { - opacity: 0.15; - } - - @media screen and (max-width: 1680px) { - - #wrapper { - padding: 3em; - } - - } - - @media screen and (max-width: 1280px) { - - #wrapper { - display: block; - } - - } - - @media screen and (max-width: 736px) { - - #wrapper { - padding: 1.5em; - } - - } - -/* Main */ - - #main { - -moz-flex-grow: 1; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -ms-flex: 1; - width: 100%; - } - -/* Sidebar */ - - #sidebar { - margin-right: 3em; - min-width: 22em; - width: 22em; - } - - #sidebar > * { - border-top: solid 1px rgba(160, 160, 160, 0.3); - margin: 3em 0 0 0; - padding: 3em 0 0 0; - } - - #sidebar > :first-child { - border-top: 0; - margin-top: 0; - padding-top: 0; - } - - @media screen and (max-width: 1280px) { - - #sidebar { - border-top: solid 1px rgba(160, 160, 160, 0.3); - margin: 3em 0 0 0; - min-width: 0; - padding: 3em 0 0 0; - width: 100%; - } - - } - -/* Intro */ - - #intro .logo { - border-bottom: 0; - display: inline-block; - margin: 0 0 1em 0; - overflow: hidden; - position: relative; - width: 4em; - } - - #intro .logo:before { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100px' height='100px' viewBox='0 0 100 100' preserveAspectRatio='none' zoomAndPan='disable'%3E%3Cpolygon points='0,0 100,0 100,25 50,0 0,25' style='fill:%23f4f4f4' /%3E%3Cpolygon points='0,100 100,100 100,75 50,100 0,75' style='fill:%23f4f4f4' /%3E%3C/svg%3E"); - background-position: top left; - background-repeat: no-repeat; - background-size: 100% 100%; - content: ''; - display: block; - height: 100%; - left: 0; - position: absolute; - top: 0; - width: 100%; - } - - #intro .logo img { - display: block; - margin-left: -0.25em; - width: 4.5em; - } - - #intro header h2 { - font-size: 2em; - font-weight: 900; - } - - #intro header p { - font-size: 0.8em; - } - - @media screen and (max-width: 1280px) { - - #intro { - margin: 0 0 3em 0; - text-align: center; - } - - #intro header h2 { - font-size: 2em; - } - - #intro header p { - font-size: 0.7em; - } - - } - - @media screen and (max-width: 736px) { - - #intro { - margin: 0 0 1.5em 0; - padding: 1.25em 0; - } - - #intro > :last-child { - margin-bottom: 0; - } - - #intro .logo { - margin: 0 0 0.5em 0; - } - - #intro header h2 { - font-size: 1.25em; - } - - #intro header > :last-child { - margin-bottom: 0; - } - - } - -/* Footer */ - - #footer .icons { - color: #aaaaaa; - } - - #footer .copyright { - color: #aaaaaa; - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.5em; - font-weight: 400; - letter-spacing: 0.25em; - text-transform: uppercase; - } - -/* Menu */ - - #menu { - -moz-transform: translateX(25em); - -webkit-transform: translateX(25em); - -ms-transform: translateX(25em); - transform: translateX(25em); - -moz-transition: -moz-transform 0.5s ease, visibility 0.5s; - -webkit-transition: -webkit-transform 0.5s ease, visibility 0.5s; - -ms-transition: -ms-transform 0.5s ease, visibility 0.5s; - transition: transform 0.5s ease, visibility 0.5s; - -webkit-overflow-scrolling: touch; - background: #ffffff; - border-left: solid 1px rgba(160, 160, 160, 0.3); - box-shadow: none; - height: 100%; - max-width: 80%; - overflow-y: auto; - position: fixed; - right: 0; - top: 0; - visibility: hidden; - width: 25em; - z-index: 10002; - } - - #menu > * { - border-top: solid 1px rgba(160, 160, 160, 0.3); - padding: 3em; - } - - #menu > * > :last-child { - margin-bottom: 0; - } - - #menu > :first-child { - border-top: 0; - } - - #menu .links { - list-style: none; - padding: 0; - } - - #menu .links > li { - border: 0; - border-top: dotted 1px rgba(160, 160, 160, 0.3); - margin: 1.5em 0 0 0; - padding: 1.5em 0 0 0; - } - - #menu .links > li a { - display: block; - border-bottom: 0; - } - - #menu .links > li a h3 { - -moz-transition: color 0.2s ease; - -webkit-transition: color 0.2s ease; - -ms-transition: color 0.2s ease; - transition: color 0.2s ease; - font-size: 0.7em; - } - - #menu .links > li a p { - font-family: "Raleway", Helvetica, sans-serif; - font-size: 0.6em; - font-weight: 400; - letter-spacing: 0.25em; - margin-bottom: 0; - text-decoration: none; - text-transform: uppercase; - } - - #menu .links > li a:hover h3 { - color: #2ebaae; - } - - #menu .links > li:first-child { - border-top: 0; - margin-top: 0; - padding-top: 0; - } - - body.is-menu-visible #menu { - -moz-transform: translateX(0); - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - visibility: visible; - } - - @media screen and (max-width: 736px) { - - #menu > * { - padding: 1.5em; - } - - } diff --git a/bl-themes/future-imperfect/assets/js/ie/html5shiv.js b/bl-themes/future-imperfect/assets/js/ie/html5shiv.js deleted file mode 100644 index dcf351c8..00000000 --- a/bl-themes/future-imperfect/assets/js/ie/html5shiv.js +++ /dev/null @@ -1,8 +0,0 @@ -/* - HTML5 Shiv v3.6.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed -*/ -(function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag(); -a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/\w+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x"; -c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode|| -"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup main mark meter nav output progress section summary time video",version:"3.6.2",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment(); -for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d #mq-test-1 { width: 42px; }',c.insertBefore(e,d),b=42===f.offsetWidth,c.removeChild(e),{matches:b,media:a}}}(a.document)}(this),function(a){"use strict";function b(){v(!0)}var c={};a.respond=c,c.update=function(){};var d=[],e=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}(),f=function(a,b){var c=e();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))},g=function(a){return a.replace(c.regex.minmaxwh,"").match(c.regex.other)};if(c.ajax=f,c.queue=d,c.unsupportedmq=g,c.regex={media:/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/gi,comments:/\/\*[^*]*\*+([^/][^*]*\*+)*\//gi,urls:/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,findStyles:/@media *([^\{]+)\{([\S\s]+?)$/,only:/(only\s+)?([a-zA-Z]+)\s?/,minw:/\(\s*min\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/,maxw:/\(\s*max\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/,minmaxwh:/\(\s*m(in|ax)\-(height|width)\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/gi,other:/\([^\)]*\)/g},c.mediaQueriesSupported=a.matchMedia&&null!==a.matchMedia("only all")&&a.matchMedia("only all").matches,!c.mediaQueriesSupported){var h,i,j,k=a.document,l=k.documentElement,m=[],n=[],o=[],p={},q=30,r=k.getElementsByTagName("head")[0]||l,s=k.getElementsByTagName("base")[0],t=r.getElementsByTagName("link"),u=function(){var a,b=k.createElement("div"),c=k.body,d=l.style.fontSize,e=c&&c.style.fontSize,f=!1;return b.style.cssText="position:absolute;font-size:1em;width:1em",c||(c=f=k.createElement("body"),c.style.background="none"),l.style.fontSize="100%",c.style.fontSize="100%",c.appendChild(b),f&&l.insertBefore(c,l.firstChild),a=b.offsetWidth,f?l.removeChild(c):c.removeChild(b),l.style.fontSize=d,e&&(c.style.fontSize=e),a=j=parseFloat(a)},v=function(b){var c="clientWidth",d=l[c],e="CSS1Compat"===k.compatMode&&d||k.body[c]||d,f={},g=t[t.length-1],p=(new Date).getTime();if(b&&h&&q>p-h)return a.clearTimeout(i),i=a.setTimeout(v,q),void 0;h=p;for(var s in m)if(m.hasOwnProperty(s)){var w=m[s],x=w.minw,y=w.maxw,z=null===x,A=null===y,B="em";x&&(x=parseFloat(x)*(x.indexOf(B)>-1?j||u():1)),y&&(y=parseFloat(y)*(y.indexOf(B)>-1?j||u():1)),w.hasquery&&(z&&A||!(z||e>=x)||!(A||y>=e))||(f[w.media]||(f[w.media]=[]),f[w.media].push(n[w.rules]))}for(var C in o)o.hasOwnProperty(C)&&o[C]&&o[C].parentNode===r&&r.removeChild(o[C]);o.length=0;for(var D in f)if(f.hasOwnProperty(D)){var E=k.createElement("style"),F=f[D].join("\n");E.type="text/css",E.media=D,r.insertBefore(E,g.nextSibling),E.styleSheet?E.styleSheet.cssText=F:E.appendChild(k.createTextNode(F)),o.push(E)}},w=function(a,b,d){var e=a.replace(c.regex.comments,"").replace(c.regex.keyframes,"").match(c.regex.media),f=e&&e.length||0;b=b.substring(0,b.lastIndexOf("/"));var h=function(a){return a.replace(c.regex.urls,"$1"+b+"$2$3")},i=!f&&d;b.length&&(b+="/"),i&&(f=1);for(var j=0;f>j;j++){var k,l,o,p;i?(k=d,n.push(h(a))):(k=e[j].match(c.regex.findStyles)&&RegExp.$1,n.push(RegExp.$2&&h(RegExp.$2))),o=k.split(","),p=o.length;for(var q=0;p>q;q++)l=o[q],g(l)||m.push({media:l.split("(")[0].match(c.regex.only)&&RegExp.$2||"all",rules:n.length-1,hasquery:l.indexOf("(")>-1,minw:l.match(c.regex.minw)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:l.match(c.regex.maxw)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}v()},x=function(){if(d.length){var b=d.shift();f(b.href,function(c){w(c,b.href,b.media),p[b.href]=!0,a.setTimeout(function(){x()},0)})}},y=function(){for(var b=0;blarge. - skel - .on('+large', function() { - $intro.prependTo($main); - }) - .on('-large', function() { - $intro.prependTo($sidebar); - }); - - }); - -})(jQuery); \ No newline at end of file diff --git a/bl-themes/future-imperfect/assets/js/skel.min.js b/bl-themes/future-imperfect/assets/js/skel.min.js deleted file mode 100644 index 688de7c9..00000000 --- a/bl-themes/future-imperfect/assets/js/skel.min.js +++ /dev/null @@ -1,2 +0,0 @@ -/* skel.js v3.0.0 | (c) n33 | skel.io | MIT licensed */ -var skel=function(){"use strict";var t={breakpointIds:null,events:{},isInit:!1,obj:{attachments:{},breakpoints:{},head:null,states:{}},sd:"/",state:null,stateHandlers:{},stateId:"",vars:{},DOMReady:null,indexOf:null,isArray:null,iterate:null,matchesMedia:null,extend:function(e,n){t.iterate(n,function(i){t.isArray(n[i])?(t.isArray(e[i])||(e[i]=[]),t.extend(e[i],n[i])):"object"==typeof n[i]?("object"!=typeof e[i]&&(e[i]={}),t.extend(e[i],n[i])):e[i]=n[i]})},newStyle:function(t){var e=document.createElement("style");return e.type="text/css",e.innerHTML=t,e},_canUse:null,canUse:function(e){t._canUse||(t._canUse=document.createElement("div"));var n=t._canUse.style,i=e.charAt(0).toUpperCase()+e.slice(1);return e in n||"Moz"+i in n||"Webkit"+i in n||"O"+i in n||"ms"+i in n},on:function(e,n){var i=e.split(/[\s]+/);return t.iterate(i,function(e){var a=i[e];if(t.isInit){if("init"==a)return void n();if("change"==a)n();else{var r=a.charAt(0);if("+"==r||"!"==r){var o=a.substring(1);if(o in t.obj.breakpoints)if("+"==r&&t.obj.breakpoints[o].active)n();else if("!"==r&&!t.obj.breakpoints[o].active)return void n()}}}t.events[a]||(t.events[a]=[]),t.events[a].push(n)}),t},trigger:function(e){return t.events[e]&&0!=t.events[e].length?(t.iterate(t.events[e],function(n){t.events[e][n]()}),t):void 0},breakpoint:function(e){return t.obj.breakpoints[e]},breakpoints:function(e){function n(t,e){this.name=this.id=t,this.media=e,this.active=!1,this.wasActive=!1}return n.prototype.matches=function(){return t.matchesMedia(this.media)},n.prototype.sync=function(){this.wasActive=this.active,this.active=this.matches()},t.iterate(e,function(i){t.obj.breakpoints[i]=new n(i,e[i])}),window.setTimeout(function(){t.poll()},0),t},addStateHandler:function(e,n){t.stateHandlers[e]=n},callStateHandler:function(e){var n=t.stateHandlers[e]();t.iterate(n,function(e){t.state.attachments.push(n[e])})},changeState:function(e){t.iterate(t.obj.breakpoints,function(e){t.obj.breakpoints[e].sync()}),t.vars.lastStateId=t.stateId,t.stateId=e,t.breakpointIds=t.stateId===t.sd?[]:t.stateId.substring(1).split(t.sd),t.obj.states[t.stateId]?t.state=t.obj.states[t.stateId]:(t.obj.states[t.stateId]={attachments:[]},t.state=t.obj.states[t.stateId],t.iterate(t.stateHandlers,t.callStateHandler)),t.detachAll(t.state.attachments),t.attachAll(t.state.attachments),t.vars.stateId=t.stateId,t.vars.state=t.state,t.trigger("change"),t.iterate(t.obj.breakpoints,function(e){t.obj.breakpoints[e].active?t.obj.breakpoints[e].wasActive||t.trigger("+"+e):t.obj.breakpoints[e].wasActive&&t.trigger("-"+e)})},generateStateConfig:function(e,n){var i={};return t.extend(i,e),t.iterate(t.breakpointIds,function(e){t.extend(i,n[t.breakpointIds[e]])}),i},getStateId:function(){var e="";return t.iterate(t.obj.breakpoints,function(n){var i=t.obj.breakpoints[n];i.matches()&&(e+=t.sd+i.id)}),e},poll:function(){var e="";e=t.getStateId(),""===e&&(e=t.sd),e!==t.stateId&&t.changeState(e)},_attach:null,attach:function(e){var n=t.obj.head,i=e.element;return i.parentNode&&i.parentNode.tagName?!1:(t._attach||(t._attach=n.firstChild),n.insertBefore(i,t._attach.nextSibling),e.permanent&&(t._attach=i),!0)},attachAll:function(e){var n=[];t.iterate(e,function(t){n[e[t].priority]||(n[e[t].priority]=[]),n[e[t].priority].push(e[t])}),n.reverse(),t.iterate(n,function(e){t.iterate(n[e],function(i){t.attach(n[e][i])})})},detach:function(t){var e=t.element;return t.permanent||!e.parentNode||e.parentNode&&!e.parentNode.tagName?!1:(e.parentNode.removeChild(e),!0)},detachAll:function(e){var n={};t.iterate(e,function(t){n[e[t].id]=!0}),t.iterate(t.obj.attachments,function(e){e in n||t.detach(t.obj.attachments[e])})},attachment:function(e){return e in t.obj.attachments?t.obj.attachments[e]:null},newAttachment:function(e,n,i,a){return t.obj.attachments[e]={id:e,element:n,priority:i,permanent:a}},init:function(){t.initMethods(),t.initVars(),t.initEvents(),t.obj.head=document.getElementsByTagName("head")[0],t.isInit=!0,t.trigger("init")},initEvents:function(){t.on("resize",function(){t.poll()}),t.on("orientationChange",function(){t.poll()}),t.DOMReady(function(){t.trigger("ready")}),window.onload&&t.on("load",window.onload),window.onload=function(){t.trigger("load")},window.onresize&&t.on("resize",window.onresize),window.onresize=function(){t.trigger("resize")},window.onorientationchange&&t.on("orientationChange",window.onorientationchange),window.onorientationchange=function(){t.trigger("orientationChange")}},initMethods:function(){document.addEventListener?!function(e,n){t.DOMReady=n()}("domready",function(){function t(t){for(r=1;t=n.shift();)t()}var e,n=[],i=document,a="DOMContentLoaded",r=/^loaded|^c/.test(i.readyState);return i.addEventListener(a,e=function(){i.removeEventListener(a,e),t()}),function(t){r?t():n.push(t)}}):!function(e,n){t.DOMReady=n()}("domready",function(t){function e(t){for(h=1;t=i.shift();)t()}var n,i=[],a=!1,r=document,o=r.documentElement,s=o.doScroll,c="DOMContentLoaded",d="addEventListener",u="onreadystatechange",l="readyState",f=s?/^loaded|^c/:/^loaded|c/,h=f.test(r[l]);return r[d]&&r[d](c,n=function(){r.removeEventListener(c,n,a),e()},a),s&&r.attachEvent(u,n=function(){/^c/.test(r[l])&&(r.detachEvent(u,n),e())}),t=s?function(e){self!=top?h?e():i.push(e):function(){try{o.doScroll("left")}catch(n){return setTimeout(function(){t(e)},50)}e()}()}:function(t){h?t():i.push(t)}}),Array.prototype.indexOf?t.indexOf=function(t,e){return t.indexOf(e)}:t.indexOf=function(t,e){if("string"==typeof t)return t.indexOf(e);var n,i,a=e?e:0;if(!this)throw new TypeError;if(i=this.length,0===i||a>=i)return-1;for(0>a&&(a=i-Math.abs(a)),n=a;i>n;n++)if(this[n]===t)return n;return-1},Array.isArray?t.isArray=function(t){return Array.isArray(t)}:t.isArray=function(t){return"[object Array]"===Object.prototype.toString.call(t)},Object.keys?t.iterate=function(t,e){if(!t)return[];var n,i=Object.keys(t);for(n=0;i[n]&&e(i[n],t[i[n]])!==!1;n++);}:t.iterate=function(t,e){if(!t)return[];var n;for(n in t)if(Object.prototype.hasOwnProperty.call(t,n)&&e(n,t[n])===!1)break},window.matchMedia?t.matchesMedia=function(t){return""==t?!0:window.matchMedia(t).matches}:window.styleMedia||window.media?t.matchesMedia=function(t){if(""==t)return!0;var e=window.styleMedia||window.media;return e.matchMedium(t||"all")}:window.getComputedStyle?t.matchesMedia=function(t){if(""==t)return!0;var e=document.createElement("style"),n=document.getElementsByTagName("script")[0],i=null;e.type="text/css",e.id="matchmediajs-test",n.parentNode.insertBefore(e,n),i="getComputedStyle"in window&&window.getComputedStyle(e,null)||e.currentStyle;var a="@media "+t+"{ #matchmediajs-test { width: 1px; } }";return e.styleSheet?e.styleSheet.cssText=a:e.textContent=a,"1px"===i.width}:t.matchesMedia=function(t){if(""==t)return!0;var e,n,i,a,r={"min-width":null,"max-width":null},o=!1;for(i=t.split(/\s+and\s+/),e=0;er["max-width"]||null!==r["min-height"]&&cr["max-height"]?!1:!0},navigator.userAgent.match(/MSIE ([0-9]+)/)&&RegExp.$1<9&&(t.newStyle=function(t){var e=document.createElement("span");return e.innerHTML=' ",e})},initVars:function(){var e,n,i,a=navigator.userAgent;e="other",n=0,i=[["firefox",/Firefox\/([0-9\.]+)/],["bb",/BlackBerry.+Version\/([0-9\.]+)/],["bb",/BB[0-9]+.+Version\/([0-9\.]+)/],["opera",/OPR\/([0-9\.]+)/],["opera",/Opera\/([0-9\.]+)/],["edge",/Edge\/([0-9\.]+)/],["safari",/Version\/([0-9\.]+).+Safari/],["chrome",/Chrome\/([0-9\.]+)/],["ie",/MSIE ([0-9]+)/],["ie",/Trident\/.+rv:([0-9]+)/]],t.iterate(i,function(t,i){return a.match(i[1])?(e=i[0],n=parseFloat(RegExp.$1),!1):void 0}),t.vars.browser=e,t.vars.browserVersion=n,e="other",n=0,i=[["ios",/([0-9_]+) like Mac OS X/,function(t){return t.replace("_",".").replace("_","")}],["ios",/CPU like Mac OS X/,function(t){return 0}],["android",/Android ([0-9\.]+)/,null],["mac",/Macintosh.+Mac OS X ([0-9_]+)/,function(t){return t.replace("_",".").replace("_","")}],["wp",/Windows Phone ([0-9\.]+)/,null],["windows",/Windows NT ([0-9\.]+)/,null],["bb",/BlackBerry.+Version\/([0-9\.]+)/,null],["bb",/BB[0-9]+.+Version\/([0-9\.]+)/,null]],t.iterate(i,function(t,i){return a.match(i[1])?(e=i[0],n=parseFloat(i[2]?i[2](RegExp.$1):RegExp.$1),!1):void 0}),t.vars.os=e,t.vars.osVersion=n,t.vars.IEVersion="ie"==t.vars.browser?t.vars.browserVersion:99,t.vars.touch="wp"==t.vars.os?navigator.msMaxTouchPoints>0:!!("ontouchstart"in window),t.vars.mobile="wp"==t.vars.os||"android"==t.vars.os||"ios"==t.vars.os||"bb"==t.vars.os}};return t.init(),t}();!function(t,e){"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?module.exports=e():t.skel=e()}(this,function(){return skel}); diff --git a/bl-themes/future-imperfect/assets/js/util.js b/bl-themes/future-imperfect/assets/js/util.js deleted file mode 100644 index bdb8e9f0..00000000 --- a/bl-themes/future-imperfect/assets/js/util.js +++ /dev/null @@ -1,587 +0,0 @@ -(function($) { - - /** - * Generate an indented list of links from a nav. Meant for use with panel(). - * @return {jQuery} jQuery object. - */ - $.fn.navList = function() { - - var $this = $(this); - $a = $this.find('a'), - b = []; - - $a.each(function() { - - var $this = $(this), - indent = Math.max(0, $this.parents('li').length - 1), - href = $this.attr('href'), - target = $this.attr('target'); - - b.push( - '' + - '' + - $this.text() + - '' - ); - - }); - - return b.join(''); - - }; - - /** - * Panel-ify an element. - * @param {object} userConfig User config. - * @return {jQuery} jQuery object. - */ - $.fn.panel = function(userConfig) { - - // No elements? - if (this.length == 0) - return $this; - - // Multiple elements? - if (this.length > 1) { - - for (var i=0; i < this.length; i++) - $(this[i]).panel(userConfig); - - return $this; - - } - - // Vars. - var $this = $(this), - $body = $('body'), - $window = $(window), - id = $this.attr('id'), - config; - - // Config. - config = $.extend({ - - // Delay. - delay: 0, - - // Hide panel on link click. - hideOnClick: false, - - // Hide panel on escape keypress. - hideOnEscape: false, - - // Hide panel on swipe. - hideOnSwipe: false, - - // Reset scroll position on hide. - resetScroll: false, - - // Reset forms on hide. - resetForms: false, - - // Side of viewport the panel will appear. - side: null, - - // Target element for "class". - target: $this, - - // Class to toggle. - visibleClass: 'visible' - - }, userConfig); - - // Expand "target" if it's not a jQuery object already. - if (typeof config.target != 'jQuery') - config.target = $(config.target); - - // Panel. - - // Methods. - $this._hide = function(event) { - - // Already hidden? Bail. - if (!config.target.hasClass(config.visibleClass)) - return; - - // If an event was provided, cancel it. - if (event) { - - event.preventDefault(); - event.stopPropagation(); - - } - - // Hide. - config.target.removeClass(config.visibleClass); - - // Post-hide stuff. - window.setTimeout(function() { - - // Reset scroll position. - if (config.resetScroll) - $this.scrollTop(0); - - // Reset forms. - if (config.resetForms) - $this.find('form').each(function() { - this.reset(); - }); - - }, config.delay); - - }; - - // Vendor fixes. - $this - .css('-ms-overflow-style', '-ms-autohiding-scrollbar') - .css('-webkit-overflow-scrolling', 'touch'); - - // Hide on click. - if (config.hideOnClick) { - - $this.find('a') - .css('-webkit-tap-highlight-color', 'rgba(0,0,0,0)'); - - $this - .on('click', 'a', function(event) { - - var $a = $(this), - href = $a.attr('href'), - target = $a.attr('target'); - - if (!href || href == '#' || href == '' || href == '#' + id) - return; - - // Cancel original event. - event.preventDefault(); - event.stopPropagation(); - - // Hide panel. - $this._hide(); - - // Redirect to href. - window.setTimeout(function() { - - if (target == '_blank') - window.open(href); - else - window.location.href = href; - - }, config.delay + 10); - - }); - - } - - // Event: Touch stuff. - $this.on('touchstart', function(event) { - - $this.touchPosX = event.originalEvent.touches[0].pageX; - $this.touchPosY = event.originalEvent.touches[0].pageY; - - }) - - $this.on('touchmove', function(event) { - - if ($this.touchPosX === null - || $this.touchPosY === null) - return; - - var diffX = $this.touchPosX - event.originalEvent.touches[0].pageX, - diffY = $this.touchPosY - event.originalEvent.touches[0].pageY, - th = $this.outerHeight(), - ts = ($this.get(0).scrollHeight - $this.scrollTop()); - - // Hide on swipe? - if (config.hideOnSwipe) { - - var result = false, - boundary = 20, - delta = 50; - - switch (config.side) { - - case 'left': - result = (diffY < boundary && diffY > (-1 * boundary)) && (diffX > delta); - break; - - case 'right': - result = (diffY < boundary && diffY > (-1 * boundary)) && (diffX < (-1 * delta)); - break; - - case 'top': - result = (diffX < boundary && diffX > (-1 * boundary)) && (diffY > delta); - break; - - case 'bottom': - result = (diffX < boundary && diffX > (-1 * boundary)) && (diffY < (-1 * delta)); - break; - - default: - break; - - } - - if (result) { - - $this.touchPosX = null; - $this.touchPosY = null; - $this._hide(); - - return false; - - } - - } - - // Prevent vertical scrolling past the top or bottom. - if (($this.scrollTop() < 0 && diffY < 0) - || (ts > (th - 2) && ts < (th + 2) && diffY > 0)) { - - event.preventDefault(); - event.stopPropagation(); - - } - - }); - - // Event: Prevent certain events inside the panel from bubbling. - $this.on('click touchend touchstart touchmove', function(event) { - event.stopPropagation(); - }); - - // Event: Hide panel if a child anchor tag pointing to its ID is clicked. - $this.on('click', 'a[href="#' + id + '"]', function(event) { - - event.preventDefault(); - event.stopPropagation(); - - config.target.removeClass(config.visibleClass); - - }); - - // Body. - - // Event: Hide panel on body click/tap. - $body.on('click touchend', function(event) { - $this._hide(event); - }); - - // Event: Toggle. - $body.on('click', 'a[href="#' + id + '"]', function(event) { - - event.preventDefault(); - event.stopPropagation(); - - config.target.toggleClass(config.visibleClass); - - }); - - // Window. - - // Event: Hide on ESC. - if (config.hideOnEscape) - $window.on('keydown', function(event) { - - if (event.keyCode == 27) - $this._hide(event); - - }); - - return $this; - - }; - - /** - * Apply "placeholder" attribute polyfill to one or more forms. - * @return {jQuery} jQuery object. - */ - $.fn.placeholder = function() { - - // Browser natively supports placeholders? Bail. - if (typeof (document.createElement('input')).placeholder != 'undefined') - return $(this); - - // No elements? - if (this.length == 0) - return $this; - - // Multiple elements? - if (this.length > 1) { - - for (var i=0; i < this.length; i++) - $(this[i]).placeholder(); - - return $this; - - } - - // Vars. - var $this = $(this); - - // Text, TextArea. - $this.find('input[type=text],textarea') - .each(function() { - - var i = $(this); - - if (i.val() == '' - || i.val() == i.attr('placeholder')) - i - .addClass('polyfill-placeholder') - .val(i.attr('placeholder')); - - }) - .on('blur', function() { - - var i = $(this); - - if (i.attr('name').match(/-polyfill-field$/)) - return; - - if (i.val() == '') - i - .addClass('polyfill-placeholder') - .val(i.attr('placeholder')); - - }) - .on('focus', function() { - - var i = $(this); - - if (i.attr('name').match(/-polyfill-field$/)) - return; - - if (i.val() == i.attr('placeholder')) - i - .removeClass('polyfill-placeholder') - .val(''); - - }); - - // Password. - $this.find('input[type=password]') - .each(function() { - - var i = $(this); - var x = $( - $('
') - .append(i.clone()) - .remove() - .html() - .replace(/type="password"/i, 'type="text"') - .replace(/type=password/i, 'type=text') - ); - - if (i.attr('id') != '') - x.attr('id', i.attr('id') + '-polyfill-field'); - - if (i.attr('name') != '') - x.attr('name', i.attr('name') + '-polyfill-field'); - - x.addClass('polyfill-placeholder') - .val(x.attr('placeholder')).insertAfter(i); - - if (i.val() == '') - i.hide(); - else - x.hide(); - - i - .on('blur', function(event) { - - event.preventDefault(); - - var x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]'); - - if (i.val() == '') { - - i.hide(); - x.show(); - - } - - }); - - x - .on('focus', function(event) { - - event.preventDefault(); - - var i = x.parent().find('input[name=' + x.attr('name').replace('-polyfill-field', '') + ']'); - - x.hide(); - - i - .show() - .focus(); - - }) - .on('keypress', function(event) { - - event.preventDefault(); - x.val(''); - - }); - - }); - - // Events. - $this - .on('submit', function() { - - $this.find('input[type=text],input[type=password],textarea') - .each(function(event) { - - var i = $(this); - - if (i.attr('name').match(/-polyfill-field$/)) - i.attr('name', ''); - - if (i.val() == i.attr('placeholder')) { - - i.removeClass('polyfill-placeholder'); - i.val(''); - - } - - }); - - }) - .on('reset', function(event) { - - event.preventDefault(); - - $this.find('select') - .val($('option:first').val()); - - $this.find('input,textarea') - .each(function() { - - var i = $(this), - x; - - i.removeClass('polyfill-placeholder'); - - switch (this.type) { - - case 'submit': - case 'reset': - break; - - case 'password': - i.val(i.attr('defaultValue')); - - x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]'); - - if (i.val() == '') { - i.hide(); - x.show(); - } - else { - i.show(); - x.hide(); - } - - break; - - case 'checkbox': - case 'radio': - i.attr('checked', i.attr('defaultValue')); - break; - - case 'text': - case 'textarea': - i.val(i.attr('defaultValue')); - - if (i.val() == '') { - i.addClass('polyfill-placeholder'); - i.val(i.attr('placeholder')); - } - - break; - - default: - i.val(i.attr('defaultValue')); - break; - - } - }); - - }); - - return $this; - - }; - - /** - * Moves elements to/from the first positions of their respective parents. - * @param {jQuery} $elements Elements (or selector) to move. - * @param {bool} condition If true, moves elements to the top. Otherwise, moves elements back to their original locations. - */ - $.prioritize = function($elements, condition) { - - var key = '__prioritize'; - - // Expand $elements if it's not already a jQuery object. - if (typeof $elements != 'jQuery') - $elements = $($elements); - - // Step through elements. - $elements.each(function() { - - var $e = $(this), $p, - $parent = $e.parent(); - - // No parent? Bail. - if ($parent.length == 0) - return; - - // Not moved? Move it. - if (!$e.data(key)) { - - // Condition is false? Bail. - if (!condition) - return; - - // Get placeholder (which will serve as our point of reference for when this element needs to move back). - $p = $e.prev(); - - // Couldn't find anything? Means this element's already at the top, so bail. - if ($p.length == 0) - return; - - // Move element to top of parent. - $e.prependTo($parent); - - // Mark element as moved. - $e.data(key, $p); - - } - - // Moved already? - else { - - // Condition is true? Bail. - if (condition) - return; - - $p = $e.data(key); - - // Move element back to its original location (using our placeholder). - $e.insertAfter($p); - - // Unmark element as moved. - $e.removeData(key); - - } - - }); - - }; - -})(jQuery); \ No newline at end of file diff --git a/bl-themes/future-imperfect/img/favicon.png b/bl-themes/future-imperfect/img/favicon.png deleted file mode 100644 index 517c6c12..00000000 Binary files a/bl-themes/future-imperfect/img/favicon.png and /dev/null differ diff --git a/bl-themes/future-imperfect/img/logo.jpg b/bl-themes/future-imperfect/img/logo.jpg deleted file mode 100644 index 7c522026..00000000 Binary files a/bl-themes/future-imperfect/img/logo.jpg and /dev/null differ diff --git a/bl-themes/future-imperfect/index.php b/bl-themes/future-imperfect/index.php deleted file mode 100644 index 6237de0e..00000000 --- a/bl-themes/future-imperfect/index.php +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - -
- - - - - - - - -
- - whereAmI()=='home') || ($Url->whereAmI()=='tag') || ($Url->whereAmI()=='blog') ) - { - include(PATH_THEME_PHP.'home.php'); - } - elseif($Url->whereAmI()=='post') - { - include(PATH_THEME_PHP.'post.php'); - } - elseif($Url->whereAmI()=='page') - { - include(PATH_THEME_PHP.'page.php'); - } - ?> - -
- - - - -
- - - - - - - - - - - - - \ No newline at end of file diff --git a/bl-themes/future-imperfect/languages/de_CH.json b/bl-themes/future-imperfect/languages/de_CH.json deleted file mode 100644 index d239fd87..00000000 --- a/bl-themes/future-imperfect/languages/de_CH.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "theme-data": - { - "name": "Future Imperfect", - "description": "Übersichtliches responsives Theme von @n33co, von Diego Najar für Bludit angepasst." - } -} diff --git a/bl-themes/future-imperfect/languages/de_DE.json b/bl-themes/future-imperfect/languages/de_DE.json deleted file mode 100644 index d239fd87..00000000 --- a/bl-themes/future-imperfect/languages/de_DE.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "theme-data": - { - "name": "Future Imperfect", - "description": "Übersichtliches responsives Theme von @n33co, von Diego Najar für Bludit angepasst." - } -} diff --git a/bl-themes/future-imperfect/languages/en_US.json b/bl-themes/future-imperfect/languages/en_US.json deleted file mode 100644 index aab1d10d..00000000 --- a/bl-themes/future-imperfect/languages/en_US.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "theme-data": - { - "name": "Future Imperfect", - "description": "Clean and very responsive theme by @n33co adapted by Diego Najar for Bludit." - } -} \ No newline at end of file diff --git a/bl-themes/future-imperfect/languages/es_AR.json b/bl-themes/future-imperfect/languages/es_AR.json deleted file mode 100644 index 1da18e71..00000000 --- a/bl-themes/future-imperfect/languages/es_AR.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "theme-data": - { - "name": "Future Imperfect", - "description": "Tema limpio y adaptable para todo tipo de dispositivos creado por @n33co portado por Diego Najar para Bludit." - } -} \ No newline at end of file diff --git a/bl-themes/future-imperfect/languages/uk_UA.json b/bl-themes/future-imperfect/languages/uk_UA.json deleted file mode 100644 index a6de429c..00000000 --- a/bl-themes/future-imperfect/languages/uk_UA.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "theme-data": - { - "name": "Future Imperfect", - "description": "Чиста та дуже адаптивна тема від @n33co адаптована Diego Najar для Bludit." - } -} \ No newline at end of file diff --git a/bl-themes/future-imperfect/metadata.json b/bl-themes/future-imperfect/metadata.json deleted file mode 100644 index 99c75bbc..00000000 --- a/bl-themes/future-imperfect/metadata.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "author": "n33co", - "email": "", - "website": "http://html5up.net", - "version": "1.1", - "releaseDate": "2015-11-11", - "license": "CCA 3.0", - "compatible": "1.0,1.1,1.1.2,1.3", - "notes": "" -} diff --git a/bl-themes/future-imperfect/php/head.php b/bl-themes/future-imperfect/php/head.php deleted file mode 100644 index 2db250b7..00000000 --- a/bl-themes/future-imperfect/php/head.php +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/bl-themes/future-imperfect/php/home.php b/bl-themes/future-imperfect/php/home.php deleted file mode 100644 index 11f90320..00000000 --- a/bl-themes/future-imperfect/php/home.php +++ /dev/null @@ -1,87 +0,0 @@ - - - -
- - - - - -
- -
-

title() ?>

-

description() ?>

-
- - -
- user(); - - if( Text::isNotEmpty($User->firstName()) || Text::isNotEmpty($User->lastName()) ) { - // Author = First name and Last name - $author = $User->firstName().' '.$User->lastName(); - } - else { - // Author = username - $author = $User->username(); - } - ?> - -
-
-
- - - coverImage()) { - echo 'Cover Image'; - } - ?> - - - content(false) ?> - - -
- - - readMore()) { ?> - - - - -
    - tags(true); - - foreach($tags as $tagKey=>$tagName) { - echo '
  • '.$tagName.'
  • '; - } - ?> -
-
- - - - -
- - - - - \ No newline at end of file diff --git a/bl-themes/future-imperfect/php/page.php b/bl-themes/future-imperfect/php/page.php deleted file mode 100644 index 3b7bc136..00000000 --- a/bl-themes/future-imperfect/php/page.php +++ /dev/null @@ -1,27 +0,0 @@ -
- - - - - -
-
-

title() ?>

-

description() ?>

-
-
- - - coverImage()) { - echo 'Cover Image'; - } - ?> - - - content() ?> - - - - -
\ No newline at end of file diff --git a/bl-themes/future-imperfect/php/post.php b/bl-themes/future-imperfect/php/post.php deleted file mode 100644 index a071c235..00000000 --- a/bl-themes/future-imperfect/php/post.php +++ /dev/null @@ -1,58 +0,0 @@ -
- - - - - -
-
-

title() ?>

-

description() ?>

-
-
- user(); - - // Default author is the username. - $author = $User->username(); - - // If the user complete the first name or last name this will be the author. - if( Text::isNotEmpty($User->firstName()) || Text::isNotEmpty($User->lastName()) ) { - $author = $User->firstName().' '.$User->lastName(); - } - ?> - -
-
-
- - - coverImage()) { - echo 'Cover Image'; - } - ?> - - - content() ?> - - -
- - -
    - tags(true); - - foreach($tags as $tagKey=>$tagName) { - echo '
  • '.$tagName.'
  • '; - } - ?> -
-
- - - - -
\ No newline at end of file diff --git a/bl-themes/future-imperfect/php/sidebar.php b/bl-themes/future-imperfect/php/sidebar.php deleted file mode 100644 index 4ca678e1..00000000 --- a/bl-themes/future-imperfect/php/sidebar.php +++ /dev/null @@ -1,42 +0,0 @@ - -
- -
-

title() ?>

-

description() ?>

-
-
- - - - - \ No newline at end of file diff --git a/bl-themes/log/assets/css/bludit.css b/bl-themes/log/assets/css/bludit.css index 6bf369ba..22fcb97a 100644 --- a/bl-themes/log/assets/css/bludit.css +++ b/bl-themes/log/assets/css/bludit.css @@ -154,7 +154,7 @@ blockquote p { } .plugin-pages ul.children { - margin-left: 10px; + margin: 0 0 0 10px; } /* Only for Plugin tags */