diff --git a/static/config.rb b/static/config.rb index 12ef425..c1375c8 100644 --- a/static/config.rb +++ b/static/config.rb @@ -1,7 +1,8 @@ # Require any additional compass plugins here. +require "zurb-foundation" # Set this to the root of your project when deployed: -http_path = "/" +http_path = "/theme" css_dir = "css" sass_dir = "sass" images_dir = "images" @@ -12,7 +13,7 @@ fonts_dir = "fonts" output_style = :compact #or :compressed # To enable relative paths to assets via compass helper functions. Uncomment: -# relative_assets = true +relative_assets = true # To disable debugging comments that display the original location of your selectors. Uncomment: line_comments = false @@ -22,4 +23,4 @@ line_comments = false # preferred_syntax = :sass # and then run: # sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass -preferred_syntax = :scss \ No newline at end of file +preferred_syntax = :scss diff --git a/static/css/app.css b/static/css/app.css index 47e51c8..fbc1331 100644 --- a/static/css/app.css +++ b/static/css/app.css @@ -1,1502 +1,698 @@ -*, -*:before, -*:after { - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; -} +/* normalize.css v2.1.1 | MIT License | git.io/normalize */ +/* ========================================================================== HTML5 display definitions ========================================================================== */ +/** Correct `block` display not defined in IE 8/9. */ +article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; } -html, -body { - font-size: 100%; -} +/** Correct `inline-block` display not defined in IE 8/9. */ +audio, canvas, video { display: inline-block; } -body { - background: white; - color: #222222; - padding: 0; - margin: 0; - font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; - font-weight: normal; - font-style: normal; - line-height: 1; - position: relative; -} +/** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */ +audio:not([controls]) { display: none; height: 0; } -a:focus { - outline: none; -} +/** Address styling not present in IE 8/9. */ +[hidden] { display: none; } -img, -object, -embed { - max-width: 100%; - height: auto; -} +/* ========================================================================== Base ========================================================================== */ +/** 1. Prevent system color scheme's background color being used in Firefox, IE, and Opera. 2. Prevent system color scheme's text color being used in Firefox, IE, and Opera. 3. Set default font family to sans-serif. 4. Prevent iOS text size adjust after orientation change, without disabling user zoom. */ +html { background: #fff; /* 1 */ color: #000; /* 2 */ font-family: sans-serif; /* 3 */ -ms-text-size-adjust: 100%; /* 4 */ -webkit-text-size-adjust: 100%; /* 4 */ } -object, -embed { - height: 100%; -} +/** Remove default margin. */ +body { margin: 0; } -img { - -ms-interpolation-mode: bicubic; -} +/* ========================================================================== Links ========================================================================== */ +/** Address `outline` inconsistency between Chrome and other browsers. */ +a:focus { outline: thin dotted; } -#map_canvas img, -#map_canvas embed, -#map_canvas object, -.map_canvas img, -.map_canvas embed, -.map_canvas object { - max-width: none !important; -} +/** Improve readability when focused and also mouse hovered in all browsers. */ +a:active, a:hover { outline: 0; } -.left { - float: left !important; -} +/* ========================================================================== Typography ========================================================================== */ +/** Address variable `h1` font-size and margin within `section` and `article` contexts in Firefox 4+, Safari 5, and Chrome. */ +h1 { font-size: 2em; margin: 0.67em 0; } -.right { - float: right !important; -} +/** Address styling not present in IE 8/9, Safari 5, and Chrome. */ +abbr[title] { border-bottom: 1px dotted; } -.text-left { - text-align: left !important; -} +/** Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */ +b, strong { font-weight: bold; } -.text-right { - text-align: right !important; -} +/** Address styling not present in Safari 5 and Chrome. */ +dfn { font-style: italic; } -.text-center { - text-align: center !important; -} +/** Address differences between Firefox and other browsers. */ +hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } -.text-justify { - text-align: justify !important; -} +/** Address styling not present in IE 8/9. */ +mark { background: #ff0; color: #000; } -.hide { - display: none; -} +/** Correct font family set oddly in Safari 5 and Chrome. */ +code, kbd, pre, samp { font-family: monospace, serif; font-size: 1em; } -.antialiased { - -webkit-font-smoothing: antialiased; -} +/** Improve readability of pre-formatted text in all browsers. */ +pre { white-space: pre-wrap; } -img { - display: inline-block; - vertical-align: middle; -} +/** Set consistent quote types. */ +q { quotes: "\201C" "\201D" "\2018" "\2019"; } -textarea { - height: auto; - min-height: 50px; -} +/** Address inconsistent and variable font size in all browsers. */ +small { font-size: 80%; } -select { - width: 100%; -} +/** Prevent `sub` and `sup` affecting `line-height` in all browsers. */ +sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } + +sup { top: -0.5em; } + +sub { bottom: -0.25em; } + +/* ========================================================================== Embedded content ========================================================================== */ +/** Remove border when inside `a` element in IE 8/9. */ +img { border: 0; } + +/** Correct overflow displayed oddly in IE 9. */ +svg:not(:root) { overflow: hidden; } + +/* ========================================================================== Figures ========================================================================== */ +/** Address margin not present in IE 8/9 and Safari 5. */ +figure { margin: 0; } + +/* ========================================================================== Forms ========================================================================== */ +/** Define consistent border, margin, and padding. */ +fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } + +/** 1. Correct `color` not being inherited in IE 8/9. 2. Remove padding so people aren't caught out if they zero out fieldsets. */ +legend { border: 0; /* 1 */ padding: 0; /* 2 */ } + +/** 1. Correct font family not being inherited in all browsers. 2. Correct font size not being inherited in all browsers. 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. */ +button, input, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 2 */ margin: 0; /* 3 */ } + +/** Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet. */ +button, input { line-height: normal; } + +/** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */ +button, select { text-transform: none; } + +/** 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. 2. Correct inability to style clickable `input` types in iOS. 3. Improve usability and consistency of cursor style between image-type `input` and others. */ +button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ } + +/** Re-set default cursor for disabled elements. */ +button[disabled], html input[disabled] { cursor: default; } + +/** 1. Address box sizing set to `content-box` in IE 8/9. 2. Remove excess padding in IE 8/9. */ +input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } + +/** 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome (include `-moz` to future-proof). */ +input[type="search"] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; } + +/** Remove inner padding and search cancel button in Safari 5 and Chrome on OS X. */ +input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } + +/** Remove inner padding and border in Firefox 4+. */ +button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } + +/** 1. Remove default vertical scrollbar in IE 8/9. 2. Improve readability and alignment in all browsers. */ +textarea { overflow: auto; /* 1 */ vertical-align: top; /* 2 */ } + +/* ========================================================================== Tables ========================================================================== */ +/** Remove most spacing between table cells. */ +table { border-collapse: collapse; border-spacing: 0; } + +*, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } + +html, body { font-size: 100%; } + +body { background: #fbfbfb; color: #222222; padding: 0; margin: 0; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; line-height: 1; position: relative; cursor: default; } + +a:hover { cursor: pointer; } + +a:focus { outline: none; } + +img, object, embed { max-width: 100%; height: auto; } + +object, embed { height: 100%; } + +img { -ms-interpolation-mode: bicubic; } + +#map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object { max-width: none !important; } + +.left { float: left !important; } + +.right { float: right !important; } + +.text-left { text-align: left !important; } + +.text-right { text-align: right !important; } + +.text-center { text-align: center !important; } + +.text-justify { text-align: justify !important; } + +.hide { display: none; } + +.antialiased { -webkit-font-smoothing: antialiased; } + +img { display: inline-block; vertical-align: middle; } + +textarea { height: auto; min-height: 50px; } + +select { width: 100%; } /* Grid HTML Classes */ -.row { - width: 100%; - margin-left: auto; - margin-right: auto; - margin-top: 0; - margin-bottom: 0; - max-width: 62.5em; - *zoom: 1; -} -.row:before, .row:after { - content: " "; - display: table; -} -.row:after { - clear: both; -} -.row.collapse .column, -.row.collapse .columns { - position: relative; - padding-left: 0; - padding-right: 0; - float: left; -} -.row .row { - width: auto; - margin-left: -0.9375em; - margin-right: -0.9375em; - margin-top: 0; - margin-bottom: 0; - max-width: none; - *zoom: 1; -} -.row .row:before, .row .row:after { - content: " "; - display: table; -} -.row .row:after { - clear: both; -} -.row .row.collapse { - width: auto; - margin: 0; - max-width: none; - *zoom: 1; -} -.row .row.collapse:before, .row .row.collapse:after { - content: " "; - display: table; -} -.row .row.collapse:after { - clear: both; -} +.row { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 62.5em; *zoom: 1; } +.row:before, .row:after { content: " "; display: table; } +.row:after { clear: both; } +.row.collapse .column, .row.collapse .columns, .row.collapse #mw-content #mw-content-text #toc, #mw-content #mw-content-text .row.collapse #toc { position: relative; padding-left: 0; padding-right: 0; float: left; } +.row .row { width: auto; margin-left: -0.9375em; margin-right: -0.9375em; margin-top: 0; margin-bottom: 0; max-width: none; *zoom: 1; } +.row .row:before, .row .row:after { content: " "; display: table; } +.row .row:after { clear: both; } +.row .row.collapse { width: auto; margin: 0; max-width: none; *zoom: 1; } +.row .row.collapse:before, .row .row.collapse:after { content: " "; display: table; } +.row .row.collapse:after { clear: both; } -.column, -.columns { - position: relative; - padding-left: 0.9375em; - padding-right: 0.9375em; - width: 100%; - float: left; -} +.column, .columns, #mw-content #mw-content-text #toc { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; width: 100%; float: left; } -@media only screen { - .column, - .columns { - position: relative; - padding-left: 0.9375em; - padding-right: 0.9375em; - float: left; - } - - .small-1 { - position: relative; - width: 8.33333%; - } - - .small-2 { - position: relative; - width: 16.66667%; - } - - .small-3 { - position: relative; - width: 25%; - } - - .small-4 { - position: relative; - width: 33.33333%; - } - - .small-5 { - position: relative; - width: 41.66667%; - } - - .small-6 { - position: relative; - width: 50%; - } - - .small-7 { - position: relative; - width: 58.33333%; - } - - .small-8 { - position: relative; - width: 66.66667%; - } - - .small-9 { - position: relative; - width: 75%; - } - - .small-10 { - position: relative; - width: 83.33333%; - } - - .small-11 { - position: relative; - width: 91.66667%; - } - - .small-12 { - position: relative; - width: 100%; - } - - .small-offset-1 { - position: relative; - margin-left: 8.33333%; - } - - .small-offset-2 { - position: relative; - margin-left: 16.66667%; - } - - .small-offset-3 { - position: relative; - margin-left: 25%; - } - - .small-offset-4 { - position: relative; - margin-left: 33.33333%; - } - - .small-offset-5 { - position: relative; - margin-left: 41.66667%; - } - - .small-offset-6 { - position: relative; - margin-left: 50%; - } - - .small-offset-7 { - position: relative; - margin-left: 58.33333%; - } - - .small-offset-8 { - position: relative; - margin-left: 66.66667%; - } - - .small-offset-9 { - position: relative; - margin-left: 75%; - } - - .small-offset-10 { - position: relative; - margin-left: 83.33333%; - } - - [class*="column"] + [class*="column"]:last-child { - float: right; - } - - [class*="column"] + [class*="column"].end { - float: left; - } - - .column.small-centered, - .columns.small-centered { - position: relative; - margin-left: auto; - margin-right: auto; - float: none !important; - } -} +@media only screen { .column, .columns, #mw-content #mw-content-text #toc { position: relative; padding-left: 0.9375em; padding-right: 0.9375em; float: left; } + .small-1 { position: relative; width: 8.33333%; } + .small-2 { position: relative; width: 16.66667%; } + .small-3 { position: relative; width: 25%; } + .small-4 { position: relative; width: 33.33333%; } + .small-5 { position: relative; width: 41.66667%; } + .small-6 { position: relative; width: 50%; } + .small-7 { position: relative; width: 58.33333%; } + .small-8 { position: relative; width: 66.66667%; } + .small-9 { position: relative; width: 75%; } + .small-10 { position: relative; width: 83.33333%; } + .small-11 { position: relative; width: 91.66667%; } + .small-12 { position: relative; width: 100%; } + .small-offset-0 { position: relative; margin-left: 0%; } + .small-offset-1 { position: relative; margin-left: 8.33333%; } + .small-offset-2 { position: relative; margin-left: 16.66667%; } + .small-offset-3 { position: relative; margin-left: 25%; } + .small-offset-4 { position: relative; margin-left: 33.33333%; } + .small-offset-5 { position: relative; margin-left: 41.66667%; } + .small-offset-6 { position: relative; margin-left: 50%; } + .small-offset-7 { position: relative; margin-left: 58.33333%; } + .small-offset-8 { position: relative; margin-left: 66.66667%; } + .small-offset-9 { position: relative; margin-left: 75%; } + .small-offset-10 { position: relative; margin-left: 83.33333%; } + [class*="column"] + [class*="column"]:last-child { float: right; } + [class*="column"] + [class*="column"].end { float: left; } + .column.small-centered, .columns.small-centered, #mw-content #mw-content-text .small-centered#toc { position: relative; margin-left: auto; margin-right: auto; float: none !important; } } /* Styles for screens that are atleast 768px; */ -@media only screen and (min-width: 48em) { - .large-1 { - position: relative; - width: 8.33333%; - } - - .large-2 { - position: relative; - width: 16.66667%; - } - - .large-3 { - position: relative; - width: 25%; - } - - .large-4 { - position: relative; - width: 33.33333%; - } - - .large-5 { - position: relative; - width: 41.66667%; - } - - .large-6 { - position: relative; - width: 50%; - } - - .large-7 { - position: relative; - width: 58.33333%; - } - - .large-8 { - position: relative; - width: 66.66667%; - } - - .large-9 { - position: relative; - width: 75%; - } - - .large-10 { - position: relative; - width: 83.33333%; - } - - .large-11 { - position: relative; - width: 91.66667%; - } - - .large-12 { - position: relative; - width: 100%; - } - - .row .large-offset-1 { - position: relative; - margin-left: 8.33333%; - } - - .row .large-offset-2 { - position: relative; - margin-left: 16.66667%; - } - - .row .large-offset-3 { - position: relative; - margin-left: 25%; - } - - .row .large-offset-4 { - position: relative; - margin-left: 33.33333%; - } - - .row .large-offset-5 { - position: relative; - margin-left: 41.66667%; - } - - .row .large-offset-6 { - position: relative; - margin-left: 50%; - } - - .row .large-offset-7 { - position: relative; - margin-left: 58.33333%; - } - - .row .large-offset-8 { - position: relative; - margin-left: 66.66667%; - } - - .row .large-offset-9 { - position: relative; - margin-left: 75%; - } - - .row .large-offset-10 { - position: relative; - margin-left: 83.33333%; - } - - .row .large-offset-11 { - position: relative; - margin-left: 91.66667%; - } - - .push-1 { - position: relative; - left: 8.33333%; - right: auto; - } - - .pull-1 { - position: relative; - right: 8.33333%; - left: auto; - } - - .push-2 { - position: relative; - left: 16.66667%; - right: auto; - } - - .pull-2 { - position: relative; - right: 16.66667%; - left: auto; - } - - .push-3 { - position: relative; - left: 25%; - right: auto; - } - - .pull-3 { - position: relative; - right: 25%; - left: auto; - } - - .push-4 { - position: relative; - left: 33.33333%; - right: auto; - } - - .pull-4 { - position: relative; - right: 33.33333%; - left: auto; - } - - .push-5 { - position: relative; - left: 41.66667%; - right: auto; - } - - .pull-5 { - position: relative; - right: 41.66667%; - left: auto; - } - - .push-6 { - position: relative; - left: 50%; - right: auto; - } - - .pull-6 { - position: relative; - right: 50%; - left: auto; - } - - .push-7 { - position: relative; - left: 58.33333%; - right: auto; - } - - .pull-7 { - position: relative; - right: 58.33333%; - left: auto; - } - - .push-8 { - position: relative; - left: 66.66667%; - right: auto; - } - - .pull-8 { - position: relative; - right: 66.66667%; - left: auto; - } - - .push-9 { - position: relative; - left: 75%; - right: auto; - } - - .pull-9 { - position: relative; - right: 75%; - left: auto; - } - - .push-10 { - position: relative; - left: 83.33333%; - right: auto; - } - - .pull-10 { - position: relative; - right: 83.33333%; - left: auto; - } - - .push-11 { - position: relative; - left: 91.66667%; - right: auto; - } - - .pull-11 { - position: relative; - right: 91.66667%; - left: auto; - } - - .small-push-1 { - left: inherit; - } - - .small-pull-1 { - right: inherit; - } - - .small-push-2 { - left: inherit; - } - - .small-pull-2 { - right: inherit; - } - - .small-push-3 { - left: inherit; - } - - .small-pull-3 { - right: inherit; - } - - .small-push-4 { - left: inherit; - } - - .small-pull-4 { - right: inherit; - } - - .small-push-5 { - left: inherit; - } - - .small-pull-5 { - right: inherit; - } - - .small-push-6 { - left: inherit; - } - - .small-pull-6 { - right: inherit; - } - - .small-push-7 { - left: inherit; - } - - .small-pull-7 { - right: inherit; - } - - .small-push-8 { - left: inherit; - } - - .small-pull-8 { - right: inherit; - } - - .small-push-9 { - left: inherit; - } - - .small-pull-9 { - right: inherit; - } - - .small-push-10 { - left: inherit; - } - - .small-pull-10 { - right: inherit; - } - - .small-push-11 { - left: inherit; - } - - .small-pull-11 { - right: inherit; - } - - .column.small-centered, - .columns.small-centered { - margin-left: 0; - margin-right: 0; - float: left !important; - } - - .column.large-centered, - .columns.large-centered { - position: relative; - margin-left: auto; - margin-right: auto; - float: none !important; - } -} -p.lead { - font-size: 1.21875em; - line-height: 1.6; -} - -.subheader { - line-height: 1.4; - color: #6f6f6f; - font-weight: 300; - margin-top: 0.2em; - margin-bottom: 0.5em; -} +@media only screen and (min-width: 768px) { .large-1 { position: relative; width: 8.33333%; } + .large-2 { position: relative; width: 16.66667%; } + .large-3, #mw-content #mw-content-text #toc { position: relative; width: 25%; } + .large-4 { position: relative; width: 33.33333%; } + .large-5 { position: relative; width: 41.66667%; } + .large-6 { position: relative; width: 50%; } + .large-7 { position: relative; width: 58.33333%; } + .large-8 { position: relative; width: 66.66667%; } + .large-9 { position: relative; width: 75%; } + .large-10 { position: relative; width: 83.33333%; } + .large-11 { position: relative; width: 91.66667%; } + .large-12 { position: relative; width: 100%; } + .row .large-offset-0 { position: relative; margin-left: 0%; } + .row .large-offset-1 { position: relative; margin-left: 8.33333%; } + .row .large-offset-2 { position: relative; margin-left: 16.66667%; } + .row .large-offset-3 { position: relative; margin-left: 25%; } + .row .large-offset-4 { position: relative; margin-left: 33.33333%; } + .row .large-offset-5 { position: relative; margin-left: 41.66667%; } + .row .large-offset-6 { position: relative; margin-left: 50%; } + .row .large-offset-7 { position: relative; margin-left: 58.33333%; } + .row .large-offset-8 { position: relative; margin-left: 66.66667%; } + .row .large-offset-9 { position: relative; margin-left: 75%; } + .row .large-offset-10 { position: relative; margin-left: 83.33333%; } + .row .large-offset-11 { position: relative; margin-left: 91.66667%; } + .push-1 { position: relative; left: 8.33333%; right: auto; } + .pull-1 { position: relative; right: 8.33333%; left: auto; } + .push-2 { position: relative; left: 16.66667%; right: auto; } + .pull-2 { position: relative; right: 16.66667%; left: auto; } + .push-3 { position: relative; left: 25%; right: auto; } + .pull-3 { position: relative; right: 25%; left: auto; } + .push-4 { position: relative; left: 33.33333%; right: auto; } + .pull-4 { position: relative; right: 33.33333%; left: auto; } + .push-5 { position: relative; left: 41.66667%; right: auto; } + .pull-5 { position: relative; right: 41.66667%; left: auto; } + .push-6 { position: relative; left: 50%; right: auto; } + .pull-6 { position: relative; right: 50%; left: auto; } + .push-7 { position: relative; left: 58.33333%; right: auto; } + .pull-7 { position: relative; right: 58.33333%; left: auto; } + .push-8 { position: relative; left: 66.66667%; right: auto; } + .pull-8 { position: relative; right: 66.66667%; left: auto; } + .push-9 { position: relative; left: 75%; right: auto; } + .pull-9 { position: relative; right: 75%; left: auto; } + .push-10 { position: relative; left: 83.33333%; right: auto; } + .pull-10 { position: relative; right: 83.33333%; left: auto; } + .push-11 { position: relative; left: 91.66667%; right: auto; } + .pull-11 { position: relative; right: 91.66667%; left: auto; } + .column.large-centered, .columns.large-centered, #mw-content #mw-content-text .large-centered#toc { position: relative; margin-left: auto; margin-right: auto; float: none !important; } + .column.large-uncentered, .columns.large-uncentered, #mw-content #mw-content-text .large-uncentered#toc { margin-left: 0; margin-right: 0; float: left !important; } + .column.large-uncentered.opposite, .columns.large-uncentered.opposite, #mw-content #mw-content-text .large-uncentered.opposite#toc { float: right !important; } } +p.lead { font-size: 1.21875em; line-height: 1.6; } + +.subheader { line-height: 1.4; color: #6f6f6f; font-weight: 300; margin-top: 0.2em; margin-bottom: 0.5em; } /* Typography resets */ -div, -dl, -dt, -dd, -ul, -ol, -li, -h1, -h2, -h3, -h4, -h5, -h6, -pre, -form, -p, -blockquote, -th, -td { - margin: 0; - padding: 0; - direction: ltr; -} +div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; direction: ltr; } /* Default Link Styles */ -a { - color: #9b160d; - text-decoration: none; - line-height: inherit; -} -a:hover, a:focus { - color: #83130b; -} -a img { - border: none; -} +a { color: #9b160d; text-decoration: none; line-height: inherit; } +a:hover, a:focus { color: #83130b; } +a img { border: none; } /* Default paragraph styles */ -p { - font-family: inherit; - font-weight: normal; - font-size: 1em; - line-height: 1.6; - margin-bottom: 1.25em; - text-rendering: optimizeLegibility; -} -p aside { - font-size: 0.875em; - line-height: 1.35; - font-style: italic; -} +p { font-family: inherit; font-weight: normal; font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; text-rendering: optimizeLegibility; } +p aside { font-size: 0.875em; line-height: 1.35; font-style: italic; } /* Default header styles */ -h1, h2, h3, h4, h5, h6 { - font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; - font-weight: bold; - font-style: normal; - color: #222222; - text-rendering: optimizeLegibility; - margin-top: 0.2em; - margin-bottom: 0.5em; - line-height: 1.2125em; -} -h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { - font-size: 60%; - color: #6f6f6f; - line-height: 0; -} +h1, h2, h3, h4, h5, h6 { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: bold; font-style: normal; color: #222222; text-rendering: optimizeLegibility; margin-top: 0.2em; margin-bottom: 0.5em; line-height: 1.2125em; } +h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; } -h1 { - font-size: 1.375em; -} +h1 { font-size: 2.125em; } -h2 { - font-size: 1.125em; -} +h2 { font-size: 1.6875em; } -h3 { - font-size: 1.25em; -} +h3 { font-size: 1.375em; } -h4 { - font-size: 1.0625em; -} +h4 { font-size: 1.125em; } -h5 { - font-size: 1.125em; -} +h5 { font-size: 1.125em; } -h6 { - font-size: 1em; -} +h6 { font-size: 1em; } -hr { - border: solid #dddddd; - border-width: 1px 0 0; - clear: both; - margin: 1.25em 0 1.1875em; - height: 0; -} +hr { border: solid #dddddd; border-width: 1px 0 0; clear: both; margin: 1.25em 0 1.1875em; height: 0; } /* Helpful Typography Defaults */ -em, -i { - font-style: italic; - line-height: inherit; -} +em, i { font-style: italic; line-height: inherit; } -strong, -b { - font-weight: bold; - line-height: inherit; -} +strong, b { font-weight: bold; line-height: inherit; } -small { - font-size: 60%; - line-height: inherit; -} +small { font-size: 60%; line-height: inherit; } -code { - font-family: Consolas, "Liberation Mono", Courier, monospace; - font-weight: bold; - color: #7f0a0c; -} +code { font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: bold; color: #7f0a0c; } /* Lists */ -ul, -ol, -dl { - font-size: 1em; - line-height: 1.6; - margin-bottom: 1.25em; - list-style-position: outside; - font-family: inherit; -} +ul, ol, dl { font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; list-style-position: outside; font-family: inherit; } + +ul, ol { margin-left: 1.875em; } /* Unordered Lists */ -ul li ul, -ul li ol { - margin-left: 1.25em; - margin-bottom: 0; - font-size: 1em; - /* Override nested font-size change */ -} -ul.square li ul, ul.circle li ul, ul.disc li ul { - list-style: inherit; -} -ul.square { - list-style-type: square; -} -ul.circle { - list-style-type: circle; -} -ul.disc { - list-style-type: disc; -} -ul.no-bullet { - list-style: none; -} +ul li ul, ul li ol { margin-left: 1.25em; margin-bottom: 0; font-size: 1em; /* Override nested font-size change */ } +ul.square li ul, ul.circle li ul, ul.disc li ul { list-style: inherit; } +ul.square { list-style-type: square; } +ul.circle { list-style-type: circle; } +ul.disc { list-style-type: disc; } +ul.no-bullet, #mw-content #mw-content-text #toc ul { list-style: none; } /* Ordered Lists */ -ol li ul, -ol li ol { - margin-left: 1.25em; - margin-bottom: 0; -} +ol li ul, ol li ol { margin-left: 1.25em; margin-bottom: 0; } /* Definition Lists */ -dl dt { - margin-bottom: 0.3em; - font-weight: bold; -} -dl dd { - margin-bottom: 0.75em; -} +dl dt { margin-bottom: 0.3em; font-weight: bold; } +dl dd { margin-bottom: 0.75em; } /* Abbreviations */ -abbr, -acronym { - text-transform: uppercase; - font-size: 90%; - color: #222222; - border-bottom: 1px dotted #dddddd; - cursor: help; -} +abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222222; border-bottom: 1px dotted #dddddd; cursor: help; } -abbr { - text-transform: none; -} +abbr { text-transform: none; } /* Blockquotes */ -blockquote { - margin: 0 0 1.25em; - padding: 0.5625em 1.25em 0 1.1875em; - border-left: 1px solid #dddddd; -} -blockquote cite { - display: block; - font-size: 0.8125em; - color: #555555; -} -blockquote cite:before { - content: "\2014 \0020"; -} -blockquote cite a, -blockquote cite a:visited { - color: #555555; -} +blockquote { margin: 0 0 1.25em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #dddddd; } +blockquote cite { display: block; font-size: 0.8125em; color: #555555; } +blockquote cite:before { content: "\2014 \0020"; } +blockquote cite a, blockquote cite a:visited { color: #555555; } -blockquote, -blockquote p { - line-height: 1.6; - color: #6f6f6f; -} +blockquote, blockquote p { line-height: 1.6; color: #6f6f6f; } /* Microformats */ -.vcard { - display: inline-block; - margin: 0 0 1.25em 0; - border: 1px solid #dddddd; - padding: 0.625em 0.75em; -} -.vcard li { - margin: 0; - display: block; -} -.vcard .fn { - font-weight: bold; - font-size: 0.9375em; -} +.vcard { display: inline-block; margin: 0 0 1.25em 0; border: 1px solid #dddddd; padding: 0.625em 0.75em; } +.vcard li { margin: 0; display: block; } +.vcard .fn { font-weight: bold; font-size: 0.9375em; } -.vevent .summary { - font-weight: bold; -} -.vevent abbr { - cursor: default; - text-decoration: none; - font-weight: bold; - border: none; - padding: 0 0.0625em; -} +.vevent .summary { font-weight: bold; } +.vevent abbr { cursor: default; text-decoration: none; font-weight: bold; border: none; padding: 0 0.0625em; } -@media only screen and (min-width: 48em) { - h1, h2, h3, h4, h5, h6 { - line-height: 1.4; - } - - h1 { - font-size: 2em; - } - - h2 { - font-size: 1.75em; - } - - h3 { - font-size: 1.5625em; - } - - h4 { - font-size: 1.375em; - } -} -/* - * Print styles. - * - * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/ - * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com) +@media only screen and (min-width: 768px) { h1, h2, h3, h4, h5, h6 { line-height: 1.4; } + h1 { font-size: 2.75em; } + h2 { font-size: 2.3125em; } + h3 { font-size: 1.6875em; } + h4 { font-size: 1.4375em; } } +/* Print styles. Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/ Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com) */ -.print-only { - display: none !important; -} +.print-only { display: none !important; } -@media print { - * { - background: transparent !important; - color: #000 !important; - /* Black prints faster: h5bp.com/s */ - box-shadow: none !important; - text-shadow: none !important; - } +@media print { * { background: transparent !important; color: #000 !important; /* Black prints faster: h5bp.com/s */ box-shadow: none !important; text-shadow: none !important; } + a, a:visited { text-decoration: underline; } + a[href]:after { content: " (" attr(href) ")"; } + abbr[title]:after { content: " (" attr(title) ")"; } + .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } + pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } + thead { display: table-header-group; /* h5bp.com/t */ } + tr, img { page-break-inside: avoid; } + img { max-width: 100% !important; } + @page { margin: 0.5cm; } + p, h2, h3 { orphans: 3; widows: 3; } + h2, h3 { page-break-after: avoid; } + .hide-on-print { display: none !important; } + .print-only { display: block !important; } + .hide-for-print { display: none !important; } + .show-for-print { display: inherit !important; } } +button, .button { border-style: solid; border-width: 1px; cursor: pointer; font-family: inherit; font-weight: bold; line-height: 1; margin: 0 0 1.25em; position: relative; text-decoration: none; text-align: center; display: inline-block; padding-top: 0.75em; padding-right: 1.5em; padding-bottom: 0.8125em; padding-left: 1.5em; font-size: 1em; background-color: #9b160d; border-color: #6c0f09; color: white; } +button:hover, button:focus, .button:hover, .button:focus { background-color: #6c0f09; } +button:hover, button:focus, .button:hover, .button:focus { color: white; } +button.secondary, .button.secondary { background-color: #e0e0e0; border-color: #c7c7c7; color: #333333; } +button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus { background-color: #c7c7c7; } +button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus { color: #333333; } +button.success, .button.success { background-color: #5da423; border-color: #457a1a; color: white; } +button.success:hover, button.success:focus, .button.success:hover, .button.success:focus { background-color: #457a1a; } +button.success:hover, button.success:focus, .button.success:hover, .button.success:focus { color: white; } +button.alert, .button.alert { background-color: #c60f13; border-color: #970b0e; color: white; } +button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus { background-color: #970b0e; } +button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus { color: white; } +button.large, .button.large { padding-top: 1em; padding-right: 2em; padding-bottom: 1.0625em; padding-left: 2em; font-size: 1.25em; } +button.small, .button.small { padding-top: 0.5625em; padding-right: 1.125em; padding-bottom: 0.625em; padding-left: 1.125em; font-size: 0.8125em; } +button.tiny, .button.tiny { padding-top: 0.4375em; padding-right: 0.875em; padding-bottom: 0.5em; padding-left: 0.875em; font-size: 0.6875em; } +button.expand, .button.expand { padding-right: 0px; padding-left: 0px; width: 100%; } +button.left-align, .button.left-align { text-align: left; text-indent: 0.75em; } +button.right-align, .button.right-align { text-align: right; padding-right: 0.75em; } +button.disabled, button[disabled], .button.disabled, .button[disabled] { background-color: #9b160d; border-color: #6c0f09; color: white; cursor: default; opacity: 0.6; -webkit-box-shadow: none; box-shadow: none; } +button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { background-color: #6c0f09; } +button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { color: white; } +button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { background-color: #9b160d; } +button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary { background-color: #e0e0e0; border-color: #c7c7c7; color: #333333; cursor: default; opacity: 0.6; -webkit-box-shadow: none; box-shadow: none; } +button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { background-color: #c7c7c7; } +button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { color: #333333; } +button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { background-color: #e0e0e0; } +button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success { background-color: #5da423; border-color: #457a1a; color: white; cursor: default; opacity: 0.6; -webkit-box-shadow: none; box-shadow: none; } +button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { background-color: #457a1a; } +button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { color: white; } +button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { background-color: #5da423; } +button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert { background-color: #c60f13; border-color: #970b0e; color: white; cursor: default; opacity: 0.6; -webkit-box-shadow: none; box-shadow: none; } +button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { background-color: #970b0e; } +button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { color: white; } +button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { background-color: #c60f13; } - a, - a:visited { - text-decoration: underline; - } +button, .button { padding-top: 0.8125em; padding-bottom: 0.75em; -webkit-appearance: none; } +button.tiny, .button.tiny { padding-top: 0.5em; padding-bottom: 0.4375em; -webkit-appearance: none; } +button.small, .button.small { padding-top: 0.625em; padding-bottom: 0.5625em; -webkit-appearance: none; } +button.large, .button.large { padding-top: 1.03125em; padding-bottom: 1.03125em; -webkit-appearance: none; } - a[href]:after { - content: " (" attr(href) ")"; - } +@media only screen { button, .button { -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; -webkit-transition: background-color 300ms ease-out; -moz-transition: background-color 300ms ease-out; transition: background-color 300ms ease-out; } + button:active, .button:active { -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; } + button.radius, .button.radius { -webkit-border-radius: 3px; border-radius: 3px; } + button.round, .button.round { -webkit-border-radius: 1000px; border-radius: 1000px; } } +@media only screen and (min-width: 768px) { button, .button { display: inline-block; } } +/* Wrapped around .top-bar to contain to grid width */ +.contain-to-grid { width: 100%; background: #9b160d; } +.contain-to-grid .top-bar { margin-bottom: 0; } - abbr[title]:after { - content: " (" attr(title) ")"; - } +.fixed { width: 100%; left: 0; position: fixed; top: 0; z-index: 99; } - .ir a:after, - a[href^="javascript:"]:after, - a[href^="#"]:after { - content: ""; - } +.top-bar { overflow: hidden; height: 45px; line-height: 45px; position: relative; background: #9b160d; margin-bottom: 1.875em; } +.top-bar ul { margin-bottom: 0; list-style: none; } +.top-bar .row { max-width: none; } +.top-bar form, .top-bar input { margin-bottom: 0; } +.top-bar input { height: 2.45em; } +.top-bar .button { padding-top: .5em; padding-bottom: .5em; margin-bottom: 0; } +.top-bar .title-area { position: relative; margin: 0; } +.top-bar .name { height: 45px; margin: 0; font-size: 16px; } +.top-bar .name h1 { line-height: 45px; font-size: 1.0625em; margin: 0; } +.top-bar .name h1 a { font-weight: bold; color: white; width: 50%; display: block; padding: 0 15px; } +.top-bar .toggle-topbar { position: absolute; right: 0; top: 0; } +.top-bar .toggle-topbar a { color: white; text-transform: uppercase; font-size: 0.8125em; font-weight: bold; position: relative; display: block; padding: 0 15px; height: 45px; line-height: 45px; } +.top-bar .toggle-topbar.menu-icon { right: 15px; top: 50%; margin-top: -16px; padding-left: 40px; } +.top-bar .toggle-topbar.menu-icon a { text-indent: -48px; width: 34px; height: 34px; line-height: 33px; padding: 0; color: white; } +.top-bar .toggle-topbar.menu-icon a span { position: absolute; right: 0; display: block; width: 16px; height: 0; -webkit-box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white; box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white; } +.top-bar.expanded { height: auto; background: transparent; } +.top-bar.expanded .title-area { background: #9b160d; } +.top-bar.expanded .toggle-topbar a { color: #eeeeee; } +.top-bar.expanded .toggle-topbar a span { -webkit-box-shadow: 0 10px 0 1px #eeeeee, 0 16px 0 1px #eeeeee, 0 22px 0 1px #eeeeee; box-shadow: 0 10px 0 1px #eeeeee, 0 16px 0 1px #eeeeee, 0 22px 0 1px #eeeeee; } - pre, - blockquote { - border: 1px solid #999; - page-break-inside: avoid; - } +.top-bar-section { left: 0; position: relative; width: auto; -webkit-transition: left 300ms ease-out; -moz-transition: left 300ms ease-out; transition: left 300ms ease-out; } +.top-bar-section ul { width: 100%; height: auto; display: block; background: #83130b; font-size: 16px; margin: 0; } +.top-bar-section .divider, .top-bar-section [role="separator"] { border-bottom: solid 1px #ca1d11; border-top: solid 1px #6c0f09; clear: both; height: 1px; width: 100%; } +.top-bar-section ul li > a { display: block; width: 100%; color: white; padding: 12px 0 12px 0; padding-left: 15px; font-size: 0.8125em; font-weight: bold; background: #83130b; } +.top-bar-section ul li > a.button { background: #9b160d; font-size: 0.8125em; } +.top-bar-section ul li > a.button.hover { background: #6c0f09; } +.top-bar-section ul li > a.button.secondary { background: #e0e0e0; } +.top-bar-section ul li > a.button.secondary.hover { background: #c7c7c7; } +.top-bar-section ul li > a.button.success { background: #5da423; } +.top-bar-section ul li > a.button.success.hover { background: #457a1a; } +.top-bar-section ul li > a.button.alert { background: #c60f13; } +.top-bar-section ul li > a.button.alert.hover { background: #970b0e; } +.top-bar-section ul li.hover > a { background: #8d140c; color: white; } +.top-bar-section ul li.active > a { background: #8d140c; color: white; } +.top-bar-section .has-form { padding: 15px; } +.top-bar-section .has-dropdown { position: relative; } +.top-bar-section .has-dropdown > a:after { content: ""; display: block; width: 0; height: 0; border: inset 5px; border-color: transparent transparent transparent rgba(255, 255, 255, 0.5); border-left-style: solid; margin-right: 15px; margin-top: -4.5px; position: absolute; top: 50%; right: 0; } +.top-bar-section .has-dropdown.moved { position: static; } +.top-bar-section .has-dropdown.moved > .dropdown { visibility: visible; } +.top-bar-section .dropdown { position: absolute; left: 100%; top: 0; visibility: hidden; z-index: 99; } +.top-bar-section .dropdown li { width: 100%; height: auto; } +.top-bar-section .dropdown li a { font-weight: normal; padding: 8px 15px; } +.top-bar-section .dropdown li.title h5 { margin-bottom: 0; } +.top-bar-section .dropdown li.title h5 a { color: white; line-height: 22.5px; display: block; } +.top-bar-section .dropdown label { padding: 8px 15px 2px; margin-bottom: 0; text-transform: uppercase; color: #555555; font-weight: bold; font-size: 0.625em; } - thead { - display: table-header-group; - /* h5bp.com/t */ - } +.top-bar-js-breakpoint { width: 58.75em !important; visibility: hidden; } - tr, - img { - page-break-inside: avoid; - } +.js-generated { display: block; } - img { - max-width: 100% !important; - } +@media only screen and (min-width: 58.75em) { .top-bar { background: #9b160d; *zoom: 1; overflow: visible; } + .top-bar:before, .top-bar:after { content: " "; display: table; } + .top-bar:after { clear: both; } + .top-bar .toggle-topbar { display: none; } + .top-bar .title-area { float: left; } + .top-bar .name h1 a { width: auto; } + .top-bar input, .top-bar .button { line-height: 2em; font-size: 0.875em; height: 2em; padding: 0 10px; position: relative; top: 8px; } + .top-bar.expanded { background: #9b160d; } + .contain-to-grid .top-bar { max-width: 62.5em; margin: 0 auto; } + .top-bar-section { -webkit-transition: none 0 0; -moz-transition: none 0 0; transition: none 0 0; left: 0 !important; } + .top-bar-section ul { width: auto; height: auto !important; display: inline; } + .top-bar-section ul li { float: left; } + .top-bar-section ul li .js-generated { display: none; } + .top-bar-section li a:not(.button) { padding: 0 15px; line-height: 45px; background: #9b160d; } + .top-bar-section li a:not(.button).hover { background: black; } + .top-bar-section .has-dropdown > a { padding-right: 35px !important; } + .top-bar-section .has-dropdown > a:after { content: ""; display: block; width: 0; height: 0; border: inset 5px; border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent; border-top-style: solid; margin-top: -2.5px; top: 22.5px; } + .top-bar-section .has-dropdown.moved { position: relative; } + .top-bar-section .has-dropdown.moved > .dropdown { visibility: hidden; } + .top-bar-section .has-dropdown.hover > .dropdown { visibility: visible; } + .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after { border: none; content: "\00bb"; margin-top: -16px; right: 5px; } + .top-bar-section .dropdown { left: 0; top: auto; background: transparent; min-width: 100%; } + .top-bar-section .dropdown li a { color: white; line-height: 1; white-space: nowrap; padding: 7px 15px; background: #b3190f; } + .top-bar-section .dropdown li label { white-space: nowrap; background: #b3190f; } + .top-bar-section .dropdown li .dropdown { left: 100%; top: 0; } + .top-bar-section > ul > .divider, .top-bar-section > ul > [role="separator"] { border-bottom: none; border-top: none; border-right: solid 1px #ca1d11; border-left: solid 1px #6c0f09; clear: none; height: 45px; width: 0px; } + .top-bar-section .has-form { background: #9b160d; padding: 0 15px; height: 45px; } + .top-bar-section ul.right li .dropdown { left: auto; right: 0; } + .top-bar-section ul.right li .dropdown li .dropdown { right: 100%; } + .no-js .top-bar-section ul li:hover > a { background: #8d140c; color: white; } + .no-js .top-bar-section ul li:active > a { background: #8d140c; color: white; } + .no-js .top-bar-section .has-dropdown:hover > .dropdown { visibility: visible; } } +/* Inline Lists */ +.inline-list { margin: 0 auto 1.0625em auto; margin-left: -1.375em; margin-right: 0; padding: 0; list-style: none; overflow: hidden; } +.inline-list > li { list-style: none; float: left; margin-left: 1.375em; display: block; } +.inline-list > li > * { display: block; } - @page { - margin: 0.5cm; -} - - p, - h2, - h3 { - orphans: 3; - widows: 3; - } - - h2, - h3 { - page-break-after: avoid; - } - - .hide-on-print { - display: none !important; - } - - .print-only { - display: block !important; - } - - .hide-for-print { - display: none !important; - } - - .show-for-print { - display: inherit !important; - } -} -/* Clearing Styles */ -[data-clearing] { - *zoom: 1; - margin-bottom: 0; - list-style: none; -} -[data-clearing]:before, [data-clearing]:after { - content: " "; - display: table; -} -[data-clearing]:after { - clear: both; -} -[data-clearing] li { - float: left; - margin-right: 10px; -} - -.clearing-blackout { - background: #111111; - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: 998; -} -.clearing-blackout .clearing-close { - display: block; -} - -.clearing-container { - position: relative; - z-index: 998; - height: 100%; - overflow: hidden; - margin: 0; -} - -.visible-img { - height: 95%; - position: relative; -} -.visible-img img { - position: absolute; - left: 50%; - top: 50%; - margin-left: -50%; - max-height: 100%; - max-width: 100%; -} - -.clearing-caption { - color: white; - line-height: 1.3; - margin-bottom: 0; - text-align: center; - bottom: 0; - background: #111111; - width: 100%; - padding: 10px 30px; - position: absolute; - left: 0; -} - -.clearing-close { - z-index: 999; - padding-left: 20px; - padding-top: 10px; - font-size: 40px; - line-height: 1; - color: white; - display: none; -} -.clearing-close:hover, .clearing-close:focus { - color: #ccc; -} - -.clearing-assembled .clearing-container { - height: 100%; -} -.clearing-assembled .clearing-container .carousel > ul { - display: none; -} - -@media only screen and (min-width: 48em) { - .clearing-main-prev, - .clearing-main-next { - position: absolute; - height: 100%; - width: 40px; - top: 0; - } - .clearing-main-prev > span, - .clearing-main-next > span { - position: absolute; - top: 50%; - display: block; - width: 0; - height: 0; - border: solid 16px; - } - - .clearing-main-prev { - left: 0; - } - .clearing-main-prev > span { - left: 5px; - border-color: transparent; - border-right-color: white; - } - - .clearing-main-next { - right: 0; - } - .clearing-main-next > span { - border-color: transparent; - border-left-color: white; - } - - .clearing-main-prev.disabled, - .clearing-main-next.disabled { - opacity: 0.5; - } - - .clearing-feature ~ li { - display: none; - } - - .clearing-assembled .clearing-container .carousel { - background: #111111; - height: 150px; - margin-top: 5px; - } - .clearing-assembled .clearing-container .carousel > ul { - display: block; - z-index: 999; - width: 200%; - height: 100%; - margin-left: 0; - position: relative; - left: 0; - } - .clearing-assembled .clearing-container .carousel > ul li { - display: block; - width: 175px; - height: inherit; - padding: 0; - float: left; - overflow: hidden; - margin-right: 1px; - position: relative; - cursor: pointer; - opacity: 0.4; - } - .clearing-assembled .clearing-container .carousel > ul li.fix-height img { - min-height: 100%; - height: 100%; - max-width: none; - } - .clearing-assembled .clearing-container .carousel > ul li a.th { - border: none; - -webkit-box-shadow: none; - box-shadow: none; - display: block; - } - .clearing-assembled .clearing-container .carousel > ul li img { - cursor: pointer !important; - min-width: 100% !important; - } - .clearing-assembled .clearing-container .carousel > ul li.visible { - opacity: 1; - } - .clearing-assembled .clearing-container .visible-img { - background: #111111; - overflow: hidden; - height: 75%; - } - - .clearing-close { - position: absolute; - top: 10px; - right: 20px; - padding-left: 0; - padding-top: 0; - } -} /* Panels */ -.panel { - border-style: solid; - border-width: 1px; - border-color: #d9d9d9; - margin-bottom: 1.25em; - padding: 1.25em; - background: #f2f2f2; -} -.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p { - color: #333333; -} -.panel > :first-child { - margin-top: 0; -} -.panel > :last-child { - margin-bottom: 0; -} -.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 { - line-height: 1; - margin-bottom: 0.625em; -} -.panel h1.subheader, .panel h2.subheader, .panel h3.subheader, .panel h4.subheader, .panel h5.subheader, .panel h6.subheader { - line-height: 1.4; -} -.panel.callout { - border-style: solid; - border-width: 1px; - border-color: #6c0f09; - margin-bottom: 1.25em; - padding: 1.25em; - background: #9b160d; - -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; - box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; -} -.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6, .panel.callout p { - color: white; -} -.panel.callout > :first-child { - margin-top: 0; -} -.panel.callout > :last-child { - margin-bottom: 0; -} -.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6 { - line-height: 1; - margin-bottom: 0.625em; -} -.panel.callout h1.subheader, .panel.callout h2.subheader, .panel.callout h3.subheader, .panel.callout h4.subheader, .panel.callout h5.subheader, .panel.callout h6.subheader { - line-height: 1.4; -} -.panel.radius { - -webkit-border-radius: 3px; - border-radius: 3px; -} +.panel { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; } +.panel > :first-child { margin-top: 0; } +.panel > :last-child { margin-bottom: 0; } +.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p { color: #333333; } +.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 { line-height: 1; margin-bottom: 0.625em; } +.panel h1.subheader, .panel h2.subheader, .panel h3.subheader, .panel h4.subheader, .panel h5.subheader, .panel h6.subheader { line-height: 1.4; } +.panel.callout { border-style: solid; border-width: 1px; border-color: #6c0f09; margin-bottom: 1.25em; padding: 1.25em; background: #9b160d; -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; } +.panel.callout > :first-child { margin-top: 0; } +.panel.callout > :last-child { margin-bottom: 0; } +.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6, .panel.callout p { color: white; } +.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6 { line-height: 1; margin-bottom: 0.625em; } +.panel.callout h1.subheader, .panel.callout h2.subheader, .panel.callout h3.subheader, .panel.callout h4.subheader, .panel.callout h5.subheader, .panel.callout h6.subheader { line-height: 1.4; } +.panel.radius { -webkit-border-radius: 3px; border-radius: 3px; } -body { - height: 100%; - margin: 0; - overflow-y: scroll; - overflow-x: hidden; - background-color: #e5e5e5; -} +/* Tables */ +table { background: white; margin-bottom: 1.25em; border: solid 1px #dddddd; } +table thead, table tfoot { background: whitesmoke; font-weight: bold; } +table thead tr th, table thead tr td, table tfoot tr th, table tfoot tr td { padding: 0.5em 0.625em 0.625em; font-size: 0.875em; color: #222222; text-align: left; } +table tr th, table tr td { padding: 0.5625em 0.625em; font-size: 0.875em; color: #222222; } +table tr.even, table tr.alt, table tr:nth-of-type(even) { background: #f9f9f9; } +table thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td { display: table-cell; line-height: 1.125em; } -.article > article { - background-color: #d8d8d8; - padding-top: 60px; - padding-bottom: 0.9375em; - -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); - box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); -} -.article > article header { - background-color: #ffffff; - border-bottom: 1px solid #e0e0e0; -} -.article > article header h1 { - color: #9b160d; - text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3); -} -.article > article header time { - color: #adadad; - font-weight: bold; - line-height: 1.125em; - font-size: 1.125em; - padding-top: 0.625em; - paddting-bottom: 0.3125em; - display: block; - text-align: right; -} -.article > article .content { - padding-top: 0.625em; - background-color: #f5f5f5; - padding-left: 0.3125em; -} -.article > article footer { - background-color: #ffffff; - border-top: 1px solid #e0e0e0; - padding-top: 0.4375em; - padding-bottom: 0.625em; - color: #adadad; - border-bottom: solid 2px rgba(0, 0, 0, 0.2); -} -.article > article footer a { - color: rgba(155, 22, 13, 0.6); -} -.article > aside > .row > .columns { - background-color: #f5f5f5; - -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); - box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); -} +@font-face { font-family: "pelican-red"; src: url('../fonts/pelican-red.eot'); src: url('../fonts/pelican-red.eot?#iefix') format('eot'), url('../fonts/pelican-red.woff') format('woff'), url('../fonts/pelican-red.ttf') format('truetype'), url('../fonts/pelican-red.svg') format('svg'); font-weight: normal; font-style: normal; } -.articleComments > div { - background-color: #f5f5f5; - -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); - box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); - padding-top: 0.625em; -} +[class*="icon-"] { background-image: none; background-position: 0% 0%; background-repeat: repeat; display: inline; height: auto; width: auto; vertical-align: baseline; line-height: 1; margin-top: 0; speak: none; font-family: "pelican-red"; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; text-decoration: inherit; -webkit-font-smoothing: antialiased; } -@media only screen and (min-width: 48em) { - .article > aside { - padding-top: 60px; - } - .article > aside > .row > .columns { - background-color: inherit; - padding-right: 0; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - } - .article > aside > .row > .columns > div { - -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); - box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); - border-style: solid; - border-width: 1px; - border-color: gainsboro; - margin-bottom: 1.25em; - padding: 1.25em; - background: whitesmoke; - } - .article > aside > .row > .columns > div h1, .article > aside > .row > .columns > div h2, .article > aside > .row > .columns > div h3, .article > aside > .row > .columns > div h4, .article > aside > .row > .columns > div h5, .article > aside > .row > .columns > div h6, .article > aside > .row > .columns > div p { - color: #333333; - } - .article > aside > .row > .columns > div > :first-child { - margin-top: 0; - } - .article > aside > .row > .columns > div > :last-child { - margin-bottom: 0; - } - .article > aside > .row > .columns > div h1, .article > aside > .row > .columns > div h2, .article > aside > .row > .columns > div h3, .article > aside > .row > .columns > div h4, .article > aside > .row > .columns > div h5, .article > aside > .row > .columns > div h6 { - line-height: 1; - margin-bottom: 0.625em; - } - .article > aside > .row > .columns > div h1.subheader, .article > aside > .row > .columns > div h2.subheader, .article > aside > .row > .columns > div h3.subheader, .article > aside > .row > .columns > div h4.subheader, .article > aside > .row > .columns > div h5.subheader, .article > aside > .row > .columns > div h6.subheader { - line-height: 1.4; - } -} -.articleInfo h5 { - text-align: center; -} +[class*="icon-"]:before { text-decoration: inherit; display: inline-block; speak: none; } -body #footer { - color: rgba(155, 22, 13, 0.4); - padding-top: 0.625em; - padding-bottom: 0.9375em; - padding-right: 0.9375em; - text-align: right; -} -body #footer a { - color: inherit; -} -body #footer a:hover { - color: rgba(155, 22, 13, 0.8); -} +[class*="border icon-"] { border: solid 1px #eeeeee; padding: .2em .25em .15em; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } -.top-bar { - overflow: hidden; - height: 45px; - line-height: 45px; - max-width: none; - background: rgba(155, 22, 13, 0.9); - position: relative; - margin-bottom: 0px; - -webkit-box-shadow: 0 5px 5px rgba(50, 50, 50, 0.4); - -moz-box-shadow: 0 5px 5px rgba(50, 50, 50, 0.4); - box-shadow: 0 5px 5px rgba(50, 50, 50, 0.4); -} -.top-bar ul { - margin-bottom: 0; - list-style: none; -} -.top-bar .title-area { - float: left; - position: relative; - height: 45px; - margin: 0; - line-height: 45px; - font-size: 1.0625em; - margin: 0; -} -.top-bar .title-area a { - font-weight: bold; - color: white; - width: auto; - display: block; - padding: 0 15px; -} -.top-bar .title-area a:hover { - color: white; -} -.top-bar .title-area a:active { - color: white; -} -.top-bar .social-area { - float: right; - width: auto; - height: auto; - display: inline; -} -.top-bar .social-area li { - float: left; -} -.top-bar .social-area li a { - display: block; - color: white; - height: 45px; - line-height: 45px; - width: 100%; - padding: 0 9px; - font-size: 0.8125em; - font-weight: bold; -} -.top-bar .social-area li a:hover { - background: rgba(108, 15, 9, 0.9); -} +[class*="large icon-"]:before { vertical-align: -10%; font-size: 1.333em; } -[class="fixed top-bar"] { - width: 100%; - left: 0; - position: fixed; - top: 0; - margin-bottom: 0; - z-index: 99; -} +[class*="huge icon-"]:before { vertical-align: -17%; font-size: 1.75em; } -@media print { - .top-bar { - position: relative; - } - .top-bar .title-area i { - display: none; - } - .top-bar .social-area { - display: none; - } -} -::-webkit-scrollbar { - width: 12px; - height: 12px; -} +[class*="2x icon-"] { font-size: 2em; } +[class*="2x icon-"] .border { border-width: 2px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } -::-webkit-scrollbar-button { - height: 0; - width: 0; -} +[class*="3x icon-"] { font-size: 3em; } +[class*="3x icon-"] .border { border-width: 3px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } -::-webkit-scrollbar-track { - border: solid transparent; - background-color: #f5f5f5; -} +[class*="4x icon-"] { font-size: 4em; } +[class*="4x icon-"] .border { border-width: 4px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } -::-webkit-scrollbar-track-piece { - background-color: #f5f5f5; - -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.14), inset -1px 0 0 rgba(0, 0, 0, 0.07); - -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.14), inset -1px 0 0 rgba(0, 0, 0, 0.07); - box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.14), inset -1px 0 0 rgba(0, 0, 0, 0.07); -} +[class*="5x icon-"] { font-size: 5em; } +[class*="5x icon-"] .border { border-width: 5px; -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px; } -::-webkit-scrollbar-thumb { - min-height: 30px; - background-color: rgba(0, 0, 0, 0.2); - border: none; - -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07); - -moz-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07); - box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07); -} -::-webkit-scrollbar-thumb:hover { - background-color: rgba(0, 0, 0, 0.4); -} +[class*="muted icon-"] { color: #eeeeee; } -@media print { - .hide-on-print iframe { - display: none; - } -} +[class*="light icon-"] { color: white; } + +[class*="dark icon-"] { color: #333333; } + +a [class*="icon-"]:before { display: inline; } + +@-moz-keyframes spin { 0% { -moz-transform: rotate(0deg); transform: rotate(0deg); } + 100% { -moz-transform: rotate(359deg); transform: rotate(359deg); } } + +@-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } + 100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); } } + +@-o-keyframes spin { 0% { -o-transform: rotate(0deg); transform: rotate(0deg); } + 100% { -o-transform: rotate(359deg); transform: rotate(359deg); } } + +@keyframes spin { 0% { transform: rotate(0deg); } + 100% { transform: rotate(359deg); } } + +.animate-spin { -webkit-animation: spin 2s infinite linear; -moz-animation: spin 2s infinite linear; -o-animation: spin 2s infinite linear; animation: spin 2s infinite linear; } + +.icon-grooveshark:before { content: "\e805"; } + +.icon-reddit:before { content: "\e804"; } + +.icon-blogger:before { content: "\e803"; } + +.icon-youtube:before { content: "\e802"; } + +.icon-steam:before { content: "\e801"; } + +.icon-tag:before { content: "\e81a"; } + +.icon-vcard:before { content: "\e817"; } + +.icon-language:before { content: "\e806"; } + +.icon-dot-3:before { content: "\e808"; } + +.icon-cc:before { content: "\e826"; } + +.icon-cc-by:before { content: "\e825"; } + +.icon-cc-nc:before { content: "\e824"; } + +.icon-cc-nc-eu:before { content: "\e823"; } + +.icon-cc-nc-jp:before { content: "\e822"; } + +.icon-cc-sa:before { content: "\e821"; } + +.icon-cc-nd:before { content: "\e820"; } + +.icon-cc-pd:before { content: "\e81f"; } + +.icon-cc-zero:before { content: "\e81e"; } + +.icon-cc-share:before { content: "\e81d"; } + +.icon-cc-remix:before { content: "\e81c"; } + +.icon-github:before { content: "\e80a"; } + +.icon-flickr:before { content: "\e815"; } + +.icon-vimeo:before { content: "\e80b"; } + +.icon-twitter:before { content: "\e80e"; } + +.icon-facebook:before { content: "\e80d"; } + +.icon-gplus:before { content: "\e80c"; } + +.icon-pinterest:before { content: "\e800"; } + +.icon-tumblr:before { content: "\e809"; } + +.icon-linkedin:before { content: "\e80f"; } + +.icon-dribbble:before { content: "\e814"; } + +.icon-stumbleupon:before { content: "\e816"; } + +.icon-lastfm:before { content: "\e810"; } + +.icon-rdio:before { content: "\e811"; } + +.icon-instagram:before { content: "\e812"; } + +.icon-skype:before { content: "\e813"; } + +.icon-picasa:before { content: "\e818"; } + +.icon-soundcloud:before { content: "\e819"; } + +.icon-newspaper:before { content: "\e807"; } + +.icon-search:before { content: "\e827"; } + +.icon-link:before { content: "\e81b"; } + +html { height: 100%; } + +body { height: 100%; } + +.top-bar { margin-bottom: 0; } +.top-bar #searchInput { width: 100%; } + +.top-bar-section ul li.hover > a { background: #8d140c; color: white; } + +@media only screen and (min-width: 58.75em) { .top-bar { -webkit-box-shadow: 0 2px 2px rgba(50, 50, 50, 0.4); -moz-box-shadow: 0 2px 2px rgba(50, 50, 50, 0.4); box-shadow: 0 2px 2px rgba(50, 50, 50, 0.4); } + .top-bar .dropdown { -webkit-box-shadow: 0 2px 2px rgba(50, 50, 50, 0.4); -moz-box-shadow: 0 2px 2px rgba(50, 50, 50, 0.4); box-shadow: 0 2px 2px rgba(50, 50, 50, 0.4); } + .top-bar .name h1 a { color: #88130b; text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.3); } + .top-bar .name h1 a:hover { color: #fff; } } +.social-area li a:not(.button) { padding: 0 10px; } + +#mainFooter { font-size: 0.8em; } +#mainFooter .no-bullet, #mainFooter #mw-content #mw-content-text #toc ul, #mw-content #mw-content-text #toc #mainFooter ul { margin-left: 0; } + +#mw-content { padding: 0 0.6em; margin-bottom: 1.25em; } +#mw-content article { background-color: #fff; padding: 0.5em 0.5em 0.5em 0.8em; -webkit-box-shadow: 0 0 0.5em rgba(50, 50, 50, 0.4); -moz-box-shadow: 0 0 0.5em rgba(50, 50, 50, 0.4); box-shadow: 0 0 0.5em rgba(50, 50, 50, 0.4); -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } +#mw-content a { word-wrap: break-word; } +#mw-content a.new { color: #c60f13; } +#mw-content #mw-content-header h1 { border-bottom: 1px solid #c7c7c7; } +#mw-content #mw-content-text #toc { margin-left: 1em; float: right; font-size: 0.9em; } +#mw-content #mw-content-text #toc #toctitle { font-size: 0.8em; margin-left: 1em; position: relative; } +#mw-content #mw-content-text #toc #toctitle h2 { border: none; } +#mw-content #mw-content-text #toc #toctitle .toctoggle { position: absolute; right: 0; top: 1em; } +#mw-content #mw-content-text #toc ul { margin-left: 1em; } +#mw-content #mw-content-text .mw-editsection { float: right; } +#mw-content #mw-content-text .mw-editsection a { color: #e0e0e0; } +#mw-content #mw-content-text .mw-editsection a:hover { color: #c7c7c7; } +#mw-content #mw-content-text h2 { border-bottom: 1px solid #c7c7c7; } +#mw-content #mw-content-text pre { background-color: #f5f2f0; margin: 0.5em 0; padding: 1em; overflow: auto; } +#mw-content #mw-content-text #pagehistory .selected { border: 1px solid #adadad; background-color: #e0e0e0; } +#mw-content #mw-content-text #editform textarea { resize: vertical; height: 400px; } +#mw-content #catlinks { -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 0.4375em; background: #f2f2f2; margin-bottom: 0; } +#mw-content #catlinks > :first-child { margin-top: 0; } +#mw-content #catlinks > :last-child { margin-bottom: 0; } +#mw-content #catlinks h1, #mw-content #catlinks h2, #mw-content #catlinks h3, #mw-content #catlinks h4, #mw-content #catlinks h5, #mw-content #catlinks h6, #mw-content #catlinks p { color: #333333; } +#mw-content #catlinks h1, #mw-content #catlinks h2, #mw-content #catlinks h3, #mw-content #catlinks h4, #mw-content #catlinks h5, #mw-content #catlinks h6 { line-height: 1; margin-bottom: 0.625em; } +#mw-content #catlinks h1.subheader, #mw-content #catlinks h2.subheader, #mw-content #catlinks h3.subheader, #mw-content #catlinks h4.subheader, #mw-content #catlinks h5.subheader, #mw-content #catlinks h6.subheader { line-height: 1.4; } +#mw-content #catlinks ul { display: inline; margin-left: 0.5em; } +#mw-content #catlinks ul li { display: inline-block; margin-right: 0.5em; } +#mw-content .catlinks-allhidden { display: none; } + +@media only screen and (min-width: 768px) { #content-actions .inline-list li { width: auto; margin-left: 15px; } + #content-actions .inline-list li a { color: #9b160d; } + #content-actions .inline-list .selected a { color: #c7c7c7; } } +.printfooter, #siteSub { display: none; } + +@media print { body { padding-top: 0 !important; } + .printfooter, #siteSub { display: block; } + #footerPlaces, #footerIcons, .top-bar, .editsection, .toctoggle, #content-actions, #messageArea, .mw-editsection { display: none; } } diff --git a/static/css/icons.css b/static/css/icons.css deleted file mode 100644 index 00da046..0000000 --- a/static/css/icons.css +++ /dev/null @@ -1,2903 +0,0 @@ -@font-face { - font-family: "fontello"; - src: url('/fonts/fontello.eot'); - src: url('/fonts/fontello.eot?#iefix') format('eot'), url('/fonts/fontello.woff') format('woff'), url('/fonts/fontello.ttf') format('truetype'), url('/fonts/fontello.svg') format('svg'); - font-weight: normal; - font-style: normal; -} - -[class*="icon-"] { - background-image: none; - background-position: 0% 0%; - background-repeat: repeat; - display: inline; - height: auto; - width: auto; - vertical-align: baseline; - line-height: 1; - margin-top: 0; - speak: none; - font-family: "fontello"; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - text-decoration: inherit; - -webkit-font-smoothing: antialiased; -} - -[class*="icon-"]:before { - text-decoration: inherit; - display: inline-block; - speak: none; -} - -[class*="border icon-"] { - border: solid 1px #eeeeee; - padding: .2em .25em .15em; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - -ms-border-radius: 3px; - -o-border-radius: 3px; - border-radius: 3px; -} - -[class*="large icon-"]:before { - vertical-align: -10%; - font-size: 1.333em; -} - -[class*="huge icon-"]:before { - vertical-align: -17%; - font-size: 1.75em; -} - -[class*="2x icon-"] { - font-size: 2em; -} -[class*="2x icon-"] .border { - border-width: 2px; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - -ms-border-radius: 4px; - -o-border-radius: 4px; - border-radius: 4px; -} - -[class*="3x icon-"] { - font-size: 3em; -} -[class*="3x icon-"] .border { - border-width: 3px; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - -ms-border-radius: 5px; - -o-border-radius: 5px; - border-radius: 5px; -} - -[class*="4x icon-"] { - font-size: 4em; -} -[class*="4x icon-"] .border { - border-width: 4px; - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - -ms-border-radius: 6px; - -o-border-radius: 6px; - border-radius: 6px; -} - -[class*="5x icon-"] { - font-size: 5em; -} -[class*="5x icon-"] .border { - border-width: 5px; - -webkit-border-radius: 7px; - -moz-border-radius: 7px; - -ms-border-radius: 7px; - -o-border-radius: 7px; - border-radius: 7px; -} - -[class*="muted icon-"] { - color: #eeeeee; -} - -[class*="light icon-"] { - color: white; -} - -[class*="dark icon-"] { - color: #333333; -} - -a [class*="icon-"]:before { - display: inline; -} - -@-moz-keyframes spin { - 0% { - -moz-transform: rotate(0deg); - transform: rotate(0deg); - } - - 100% { - -moz-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -@-webkit-keyframes spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -@-o-keyframes spin { - 0% { - -o-transform: rotate(0deg); - transform: rotate(0deg); - } - - 100% { - -o-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -@-ms-keyframes spin { - 0% { - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - - 100% { - -ms-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -@keyframes spin { - 0% { - transform: rotate(0deg); - } - - 100% { - transform: rotate(359deg); - } -} - -.animate-spin { - -webkit-animation: spin 2s infinite linear; - -moz-animation: spin 2s infinite linear; - -ms-animation: spin 2s infinite linear; - -o-animation: spin 2s infinite linear; - animation: spin 2s infinite linear; -} - -.icon-duckduckgo:before { - content: "\ea15"; -} - -.icon-aim:before { - content: "\ea16"; -} - -.icon-delicious:before { - content: "\ea17"; -} - -.icon-paypal-1:before { - content: "\ea18"; -} - -.icon-flattr-1:before { - content: "\ea19"; -} - -.icon-android:before { - content: "\ea1a"; -} - -.icon-eventful:before { - content: "\ea1b"; -} - -.icon-smashmag:before { - content: "\ea1c"; -} - -.icon-gplus-2:before { - content: "\ea1d"; -} - -.icon-plus:before { - content: "\e816"; -} - -.icon-plus-1:before { - content: "\e936"; -} - -.icon-wikipedia:before { - content: "\ea1e"; -} - -.icon-lanyrd:before { - content: "\ea1f"; -} - -.icon-minus:before { - content: "\e819"; -} - -.icon-minus-1:before { - content: "\e938"; -} - -.icon-calendar-2:before { - content: "\ea20"; -} - -.icon-stumbleupon-1:before { - content: "\ea21"; -} - -.icon-fivehundredpx:before { - content: "\ea22"; -} - -.icon-pinterest-1:before { - content: "\ea23"; -} - -.icon-bitcoin:before { - content: "\ea24"; -} - -.icon-w3c:before { - content: "\ea25"; -} - -.icon-foursquare:before { - content: "\ea26"; -} - -.icon-html5:before { - content: "\ea27"; -} - -.icon-ie:before { - content: "\ea28"; -} - -.icon-call:before { - content: "\ea29"; -} - -.icon-grooveshark:before { - content: "\ea2a"; -} - -.icon-ninetyninedesigns:before { - content: "\ea2b"; -} - -.icon-forrst:before { - content: "\ea2c"; -} - -.icon-digg:before { - content: "\ea2d"; -} - -.icon-spotify-1:before { - content: "\ea2e"; -} - -.icon-reddit:before { - content: "\ea2f"; -} - -.icon-guest:before { - content: "\ea30"; -} - -.icon-gowalla:before { - content: "\ea31"; -} - -.icon-at:before { - content: "\ea9d"; -} - -.icon-appstore:before { - content: "\ea32"; -} - -.icon-blogger:before { - content: "\ea33"; -} - -.icon-cc-1:before { - content: "\ea34"; -} - -.icon-dribbble-1:before { - content: "\ea35"; -} - -.icon-evernote-1:before { - content: "\ea36"; -} - -.icon-flickr-1:before { - content: "\ea37"; -} - -.icon-google:before { - content: "\ea38"; -} - -.icon-viadeo:before { - content: "\ea39"; -} - -.icon-instapaper:before { - content: "\ea3a"; -} - -.icon-weibo:before { - content: "\ea3b"; -} - -.icon-klout:before { - content: "\ea3c"; -} - -.icon-linkedin-2:before { - content: "\ea3d"; -} - -.icon-meetup:before { - content: "\ea3e"; -} - -.icon-vk:before { - content: "\ea3f"; -} - -.icon-plancast:before { - content: "\ea40"; -} - -.icon-disqus:before { - content: "\ea41"; -} - -.icon-rss-2:before { - content: "\ea42"; -} - -.icon-skype-1:before { - content: "\ea43"; -} - -.icon-twitter-2:before { - content: "\ea44"; -} - -.icon-youtube:before { - content: "\ea45"; -} - -.icon-vimeo-1:before { - content: "\ea46"; -} - -.icon-windows:before { - content: "\ea47"; -} - -.icon-xing:before { - content: "\ea48"; -} - -.icon-yahoo:before { - content: "\ea49"; -} - -.icon-chrome:before { - content: "\ea4a"; -} - -.icon-email:before { - content: "\ea4b"; -} - -.icon-macstore:before { - content: "\ea4c"; -} - -.icon-myspace:before { - content: "\ea4d"; -} - -.icon-podcast:before { - content: "\ea4e"; -} - -.icon-amazon:before { - content: "\ea4f"; -} - -.icon-steam:before { - content: "\ea50"; -} - -.icon-cloudapp:before { - content: "\ea51"; -} - -.icon-dropbox-1:before { - content: "\ea52"; -} - -.icon-ebay:before { - content: "\ea53"; -} - -.icon-facebook-2:before { - content: "\ea54"; -} - -.icon-github-2:before { - content: "\ea55"; -} - -.icon-googleplay:before { - content: "\ea57"; -} - -.icon-itunes:before { - content: "\ea58"; -} - -.icon-plurk:before { - content: "\ea59"; -} - -.icon-songkick:before { - content: "\ea5a"; -} - -.icon-lastfm-1:before { - content: "\ea5b"; -} - -.icon-gmail:before { - content: "\ea5c"; -} - -.icon-pinboard:before { - content: "\ea5d"; -} - -.icon-openid:before { - content: "\ea5e"; -} - -.icon-quora:before { - content: "\ea5f"; -} - -.icon-soundcloud-1:before { - content: "\ea60"; -} - -.icon-tumblr-1:before { - content: "\ea61"; -} - -.icon-eventasaurus:before { - content: "\ea62"; -} - -.icon-wordpress:before { - content: "\ea63"; -} - -.icon-yelp:before { - content: "\ea64"; -} - -.icon-intensedebate:before { - content: "\ea65"; -} - -.icon-eventbrite:before { - content: "\ea66"; -} - -.icon-scribd:before { - content: "\ea67"; -} - -.icon-posterous:before { - content: "\ea68"; -} - -.icon-stripe:before { - content: "\ea69"; -} - -.icon-pilcrow:before { - content: "\ea9c"; -} - -.icon-opentable:before { - content: "\ea6a"; -} - -.icon-cart:before { - content: "\ea6b"; -} - -.icon-print-2:before { - content: "\ea6c"; -} - -.icon-angellist:before { - content: "\ea6d"; -} - -.icon-instagram-1:before { - content: "\ea6e"; -} - -.icon-dwolla:before { - content: "\ea6f"; -} - -.icon-appnet:before { - content: "\ea70"; -} - -.icon-statusnet:before { - content: "\ea71"; -} - -.icon-acrobat:before { - content: "\ea72"; -} - -.icon-drupal:before { - content: "\ea73"; -} - -.icon-buffer:before { - content: "\ea74"; -} - -.icon-pocket:before { - content: "\ea75"; -} - -.icon-github-circled-2:before { - content: "\ea56"; -} - -.icon-bitbucket:before { - content: "\ea76"; -} - -.icon-lego:before { - content: "\ea77"; -} - -.icon-login-2:before { - content: "\ea78"; -} - -.icon-stackoverflow:before { - content: "\ea79"; -} - -.icon-hackernews:before { - content: "\ea7a"; -} - -.icon-lkdto:before { - content: "\ea7b"; -} - -.icon-info:before { - content: "\e81e"; -} - -.icon-left-thin:before { - content: "\e88c"; -} - -.icon-left-1:before { - content: "\e997"; -} - -.icon-up-thin:before { - content: "\e88e"; -} - -.icon-up-1:before { - content: "\e999"; -} - -.icon-right-thin:before { - content: "\e88d"; -} - -.icon-right-1:before { - content: "\e998"; -} - -.icon-down-thin:before { - content: "\e88b"; -} - -.icon-down-1:before { - content: "\e996"; -} - -.icon-level-up:before { - content: "\e893"; -} - -.icon-level-down:before { - content: "\e892"; -} - -.icon-switch:before { - content: "\e896"; -} - -.icon-infinity:before { - content: "\e8c2"; -} - -.icon-plus-squared:before { - content: "\e818"; -} - -.icon-minus-squared:before { - content: "\e81b"; -} - -.icon-home-1:before { - content: "\e93c"; -} - -.icon-home:before { - content: "\e821"; -} - -.icon-keyboard:before { - content: "\e83a"; -} - -.icon-erase:before { - content: "\e8c3"; -} - -.icon-pause-1:before { - content: "\e9aa"; -} - -.icon-pause:before { - content: "\e899"; -} - -.icon-fast-fw:before { - content: "\e9af"; -} - -.icon-fast-forward:before { - content: "\e89d"; -} - -.icon-fast-backward:before { - content: "\e89e"; -} - -.icon-fast-bw:before { - content: "\e9b0"; -} - -.icon-to-end-1:before { - content: "\e9ab"; -} - -.icon-to-end:before { - content: "\e89b"; -} - -.icon-to-start:before { - content: "\e89c"; -} - -.icon-to-start-1:before { - content: "\e9ad"; -} - -.icon-hourglass:before { - content: "\e863"; -} - -.icon-stop:before { - content: "\e898"; -} - -.icon-stop-1:before { - content: "\e9a9"; -} - -.icon-up-dir:before { - content: "\e886"; -} - -.icon-up-dir-1:before { - content: "\e987"; -} - -.icon-play-1:before { - content: "\e9a7"; -} - -.icon-play:before { - content: "\e897"; -} - -.icon-right-dir:before { - content: "\e885"; -} - -.icon-right-dir-1:before { - content: "\e989"; -} - -.icon-down-dir:before { - content: "\e883"; -} - -.icon-down-dir-1:before { - content: "\e986"; -} - -.icon-left-dir:before { - content: "\e884"; -} - -.icon-left-dir-1:before { - content: "\e988"; -} - -.icon-adjust:before { - content: "\e867"; -} - -.icon-cloud-1:before { - content: "\e9bb"; -} - -.icon-cloud:before { - content: "\e8b2"; -} - -.icon-umbrella:before { - content: "\e9bd"; -} - -.icon-star:before { - content: "\e808"; -} - -.icon-star-1:before { - content: "\e923"; -} - -.icon-star-empty:before { - content: "\e809"; -} - -.icon-star-empty-1:before { - content: "\e924"; -} - -.icon-check-1:before { - content: "\e9df"; -} - -.icon-cup:before { - content: "\e846"; -} - -.icon-left-hand:before { - content: "\e99b"; -} - -.icon-up-hand:before { - content: "\e99c"; -} - -.icon-right-hand:before { - content: "\e99a"; -} - -.icon-down-hand:before { - content: "\e99d"; -} - -.icon-menu:before { - content: "\e811"; -} - -.icon-th-list:before { - content: "\e92f"; -} - -.icon-moon:before { - content: "\e8b5"; -} - -.icon-heart-empty-1:before { - content: "\e922"; -} - -.icon-heart-empty:before { - content: "\e807"; -} - -.icon-heart-1:before { - content: "\e921"; -} - -.icon-heart:before { - content: "\e806"; -} - -.icon-note:before { - content: "\e800"; -} - -.icon-music-1:before { - content: "\e91d"; -} - -.icon-note-beamed:before { - content: "\e801"; -} - -.icon-layout:before { - content: "\e810"; -} - -.icon-th:before { - content: "\e92e"; -} - -.icon-flag-1:before { - content: "\e949"; -} - -.icon-flag:before { - content: "\e82a"; -} - -.icon-tools:before { - content: "\e856"; -} - -.icon-cog:before { - content: "\e855"; -} - -.icon-cog-1:before { - content: "\e96e"; -} - -.icon-attention:before { - content: "\e83e"; -} - -.icon-attention-1:before { - content: "\e95f"; -} - -.icon-flash:before { - content: "\e8b4"; -} - -.icon-flash-1:before { - content: "\e9bc"; -} - -.icon-record:before { - content: "\e89a"; -} - -.icon-cloud-thunder:before { - content: "\e8b3"; -} - -.icon-cog-alt:before { - content: "\e96f"; -} - -.icon-scissors:before { - content: "\e9d3"; -} - -.icon-tape:before { - content: "\e8c8"; -} - -.icon-flight:before { - content: "\e8b6"; -} - -.icon-flight-1:before { - content: "\e9be"; -} - -.icon-mail:before { - content: "\e805"; -} - -.icon-mail-1:before { - content: "\e91f"; -} - -.icon-edit:before { - content: "\e956"; -} - -.icon-pencil:before { - content: "\e836"; -} - -.icon-pencil-1:before { - content: "\e955"; -} - -.icon-feather:before { - content: "\e837"; -} - -.icon-check:before { - content: "\e812"; -} - -.icon-ok:before { - content: "\e930"; -} - -.icon-ok-circle:before { - content: "\e931"; -} - -.icon-cancel:before { - content: "\e813"; -} - -.icon-cancel-1:before { - content: "\e933"; -} - -.icon-cancel-circled:before { - content: "\e814"; -} - -.icon-cancel-circle:before { - content: "\e934"; -} - -.icon-asterisk:before { - content: "\e9e3"; -} - -.icon-cancel-squared:before { - content: "\e815"; -} - -.icon-help:before { - content: "\e81c"; -} - -.icon-attention-circle:before { - content: "\e960"; -} - -.icon-quote:before { - content: "\e833"; -} - -.icon-plus-circled:before { - content: "\e817"; -} - -.icon-plus-circle:before { - content: "\e937"; -} - -.icon-minus-circled:before { - content: "\e81a"; -} - -.icon-minus-circle:before { - content: "\e939"; -} - -.icon-right:before { - content: "\e881"; -} - -.icon-direction:before { - content: "\e844"; -} - -.icon-forward-1:before { - content: "\e951"; -} - -.icon-forward:before { - content: "\e832"; -} - -.icon-ccw-1:before { - content: "\e9a3"; -} - -.icon-ccw:before { - content: "\e88f"; -} - -.icon-cw:before { - content: "\e890"; -} - -.icon-cw-1:before { - content: "\e9a2"; -} - -.icon-left:before { - content: "\e880"; -} - -.icon-up:before { - content: "\e882"; -} - -.icon-down:before { - content: "\e87f"; -} - -.icon-resize-vertical:before { - content: "\e97f"; -} - -.icon-resize-horizontal:before { - content: "\e980"; -} - -.icon-eject:before { - content: "\e9b1"; -} - -.icon-list-add:before { - content: "\e8a6"; -} - -.icon-list:before { - content: "\e8a5"; -} - -.icon-left-bold:before { - content: "\e888"; -} - -.icon-right-bold:before { - content: "\e889"; -} - -.icon-up-bold:before { - content: "\e88a"; -} - -.icon-down-bold:before { - content: "\e887"; -} - -.icon-user-add:before { - content: "\e80c"; -} - -.icon-star-half:before { - content: "\e925"; -} - -.icon-ok-circle2:before { - content: "\e932"; -} - -.icon-cancel-circle2:before { - content: "\e935"; -} - -.icon-help-circle:before { - content: "\e93a"; -} - -.icon-help-circled:before { - content: "\e81d"; -} - -.icon-info-circle:before { - content: "\e93b"; -} - -.icon-info-circled:before { - content: "\e81f"; -} - -.icon-th-large:before { - content: "\e92d"; -} - -.icon-eye:before { - content: "\e826"; -} - -.icon-eye-1:before { - content: "\e943"; -} - -.icon-eye-off:before { - content: "\e944"; -} - -.icon-tag-1:before { - content: "\e945"; -} - -.icon-tag:before { - content: "\e827"; -} - -.icon-tags:before { - content: "\e946"; -} - -.icon-camera-alt:before { - content: "\e92c"; -} - -.icon-upload-cloud:before { - content: "\e82f"; -} - -.icon-reply:before { - content: "\e830"; -} - -.icon-reply-all:before { - content: "\e831"; -} - -.icon-code:before { - content: "\e834"; -} - -.icon-export:before { - content: "\e835"; -} - -.icon-export-1:before { - content: "\e954"; -} - -.icon-print:before { - content: "\e838"; -} - -.icon-print-1:before { - content: "\e957"; -} - -.icon-retweet-1:before { - content: "\e958"; -} - -.icon-retweet:before { - content: "\e839"; -} - -.icon-comment-1:before { - content: "\e959"; -} - -.icon-comment:before { - content: "\e83b"; -} - -.icon-chat:before { - content: "\e83c"; -} - -.icon-chat-1:before { - content: "\e95a"; -} - -.icon-vcard:before { - content: "\e840"; -} - -.icon-address:before { - content: "\e841"; -} - -.icon-location-1:before { - content: "\e961"; -} - -.icon-location:before { - content: "\e842"; -} - -.icon-map:before { - content: "\e843"; -} - -.icon-compass:before { - content: "\e845"; -} - -.icon-trash-1:before { - content: "\e962"; -} - -.icon-trash:before { - content: "\e847"; -} - -.icon-doc:before { - content: "\e848"; -} - -.icon-doc-text-inv:before { - content: "\e84c"; -} - -.icon-docs:before { - content: "\e849"; -} - -.icon-doc-landscape:before { - content: "\e84a"; -} - -.icon-archive:before { - content: "\e851"; -} - -.icon-rss:before { - content: "\e853"; -} - -.icon-share:before { - content: "\e857"; -} - -.icon-basket:before { - content: "\e859"; -} - -.icon-basket-1:before { - content: "\e971"; -} - -.icon-shareable:before { - content: "\e858"; -} - -.icon-login-1:before { - content: "\e973"; -} - -.icon-login:before { - content: "\e85c"; -} - -.icon-logout-1:before { - content: "\e974"; -} - -.icon-logout:before { - content: "\e85d"; -} - -.icon-volume:before { - content: "\e861"; -} - -.icon-resize-full:before { - content: "\e869"; -} - -.icon-resize-full-1:before { - content: "\e97c"; -} - -.icon-resize-small:before { - content: "\e86a"; -} - -.icon-resize-small-1:before { - content: "\e97e"; -} - -.icon-popup:before { - content: "\e86b"; -} - -.icon-publish:before { - content: "\e86c"; -} - -.icon-window:before { - content: "\e86d"; -} - -.icon-arrow-combo:before { - content: "\e86e"; -} - -.icon-zoom-in:before { - content: "\e982"; -} - -.icon-zoom-out:before { - content: "\e983"; -} - -.icon-chart-pie:before { - content: "\e8c4"; -} - -.icon-language:before { - content: "\e8ca"; -} - -.icon-air:before { - content: "\e8ce"; -} - -.icon-database:before { - content: "\e8d3"; -} - -.icon-drive:before { - content: "\e8d4"; -} - -.icon-bucket:before { - content: "\e8d5"; -} - -.icon-thermometer:before { - content: "\e8d6"; -} - -.icon-down-circled:before { - content: "\e86f"; -} - -.icon-down-circle2:before { - content: "\e984"; -} - -.icon-left-circled:before { - content: "\e870"; -} - -.icon-right-circled:before { - content: "\e871"; -} - -.icon-up-circled:before { - content: "\e872"; -} - -.icon-up-circle2:before { - content: "\e985"; -} - -.icon-down-open:before { - content: "\e873"; -} - -.icon-down-open-1:before { - content: "\e98a"; -} - -.icon-left-open-1:before { - content: "\e98b"; -} - -.icon-left-open:before { - content: "\e874"; -} - -.icon-right-open-1:before { - content: "\e98c"; -} - -.icon-right-open:before { - content: "\e875"; -} - -.icon-up-open:before { - content: "\e876"; -} - -.icon-up-open-1:before { - content: "\e98d"; -} - -.icon-arrows-cw:before { - content: "\e9a4"; -} - -.icon-down-open-mini:before { - content: "\e877"; -} - -.icon-play-circle2:before { - content: "\e9a8"; -} - -.icon-left-open-mini:before { - content: "\e878"; -} - -.icon-right-open-mini:before { - content: "\e879"; -} - -.icon-to-end-alt:before { - content: "\e9ac"; -} - -.icon-up-open-mini:before { - content: "\e87a"; -} - -.icon-to-start-alt:before { - content: "\e9ae"; -} - -.icon-down-open-big:before { - content: "\e87b"; -} - -.icon-left-open-big:before { - content: "\e87c"; -} - -.icon-right-open-big:before { - content: "\e87d"; -} - -.icon-up-open-big:before { - content: "\e87e"; -} - -.icon-progress-0:before { - content: "\e89f"; -} - -.icon-progress-1:before { - content: "\e8a0"; -} - -.icon-progress-2:before { - content: "\e8a1"; -} - -.icon-progress-3:before { - content: "\e8a2"; -} - -.icon-back-in-time:before { - content: "\e8aa"; -} - -.icon-network:before { - content: "\e8ad"; -} - -.icon-inbox-1:before { - content: "\e9b9"; -} - -.icon-inbox:before { - content: "\e8af"; -} - -.icon-install:before { - content: "\e8b0"; -} - -.icon-font:before { - content: "\e9c1"; -} - -.icon-bold:before { - content: "\e9c2"; -} - -.icon-italic:before { - content: "\e9c3"; -} - -.icon-text-height:before { - content: "\e9c4"; -} - -.icon-text-width:before { - content: "\e9c5"; -} - -.icon-align-left:before { - content: "\e9c6"; -} - -.icon-align-center:before { - content: "\e9c7"; -} - -.icon-align-right:before { - content: "\e9c8"; -} - -.icon-align-justify:before { - content: "\e9c9"; -} - -.icon-list-1:before { - content: "\e9ca"; -} - -.icon-indent-left:before { - content: "\e9cb"; -} - -.icon-indent-right:before { - content: "\e9cc"; -} - -.icon-lifebuoy:before { - content: "\e8b9"; -} - -.icon-mouse:before { - content: "\e8ba"; -} - -.icon-dot:before { - content: "\e8bd"; -} - -.icon-dot-2:before { - content: "\e8be"; -} - -.icon-dot-3:before { - content: "\e8bf"; -} - -.icon-off:before { - content: "\e9d7"; -} - -.icon-suitcase:before { - content: "\e8bc"; -} - -.icon-road:before { - content: "\e9d8"; -} - -.icon-list-alt:before { - content: "\e9d9"; -} - -.icon-flow-cascade:before { - content: "\e8d8"; -} - -.icon-flow-branch:before { - content: "\e8d9"; -} - -.icon-qrcode:before { - content: "\e9da"; -} - -.icon-flow-tree:before { - content: "\e8da"; -} - -.icon-barcode:before { - content: "\e9db"; -} - -.icon-flow-line:before { - content: "\e8db"; -} - -.icon-ajust:before { - content: "\e9dd"; -} - -.icon-tint:before { - content: "\e9de"; -} - -.icon-flow-parallel:before { - content: "\e8dc"; -} - -.icon-brush:before { - content: "\e8c0"; -} - -.icon-paper-plane:before { - content: "\e8b7"; -} - -.icon-magnet-1:before { - content: "\e9e6"; -} - -.icon-magnet:before { - content: "\e8c1"; -} - -.icon-gauge:before { - content: "\e8de"; -} - -.icon-traffic-cone:before { - content: "\e8df"; -} - -.icon-cc:before { - content: "\e8e0"; -} - -.icon-cc-by:before { - content: "\e8e1"; -} - -.icon-cc-nc:before { - content: "\e8e2"; -} - -.icon-cc-nc-eu:before { - content: "\e8e3"; -} - -.icon-cc-nc-jp:before { - content: "\e8e4"; -} - -.icon-cc-sa:before { - content: "\e8e5"; -} - -.icon-cc-nd:before { - content: "\e8e6"; -} - -.icon-cc-pd:before { - content: "\e8e7"; -} - -.icon-cc-zero:before { - content: "\e8e8"; -} - -.icon-cc-share:before { - content: "\e8e9"; -} - -.icon-cc-remix:before { - content: "\e8ea"; -} - -.icon-spin1:before { - content: "\eaa3"; -} - -.icon-spin2:before { - content: "\eaa2"; -} - -.icon-spin3:before { - content: "\eaa1"; -} - -.icon-spin4:before { - content: "\eaa0"; -} - -.icon-spin5:before { - content: "\ea9e"; -} - -.icon-spin6:before { - content: "\ea9f"; -} - -.icon-firefox:before { - content: "\eaa4"; -} - -.icon-chrome-1:before { - content: "\eaa5"; -} - -.icon-opera:before { - content: "\eaa6"; -} - -.icon-ie-1:before { - content: "\eaa7"; -} - -.icon-move:before { - content: "\e981"; -} - -.icon-link-ext:before { - content: "\e93e"; -} - -.icon-check-empty:before { - content: "\e9e0"; -} - -.icon-bookmark-empty:before { - content: "\e948"; -} - -.icon-phone-squared:before { - content: "\e96c"; -} - -.icon-twitter-1:before { - content: "\ea0a"; -} - -.icon-facebook-1:before { - content: "\ea0c"; -} - -.icon-github-circled-1:before { - content: "\ea07"; -} - -.icon-rss-1:before { - content: "\e96a"; -} - -.icon-hdd:before { - content: "\e9eb"; -} - -.icon-certificate:before { - content: "\e9ed"; -} - -.icon-left-circled-1:before { - content: "\e99e"; -} - -.icon-right-circled-1:before { - content: "\e99f"; -} - -.icon-up-circled-1:before { - content: "\e9a0"; -} - -.icon-down-circled-1:before { - content: "\e9a1"; -} - -.icon-tasks:before { - content: "\e9ee"; -} - -.icon-filter:before { - content: "\e9ef"; -} - -.icon-resize-full-alt:before { - content: "\e97d"; -} - -.icon-beaker:before { - content: "\e9f0"; -} - -.icon-docs-1:before { - content: "\e964"; -} - -.icon-blank:before { - content: "\ea13"; -} - -.icon-menu-1:before { - content: "\e96d"; -} - -.icon-list-bullet:before { - content: "\e9cd"; -} - -.icon-list-numbered:before { - content: "\e9ce"; -} - -.icon-strike:before { - content: "\e9cf"; -} - -.icon-underline:before { - content: "\e9d0"; -} - -.icon-table:before { - content: "\e9d1"; -} - -.icon-magic:before { - content: "\e9f1"; -} - -.icon-pinterest-circled-1:before { - content: "\ea0f"; -} - -.icon-pinterest-squared:before { - content: "\ea10"; -} - -.icon-gplus-squared:before { - content: "\ea11"; -} - -.icon-gplus-1:before { - content: "\ea12"; -} - -.icon-money:before { - content: "\e9f3"; -} - -.icon-columns:before { - content: "\e9d2"; -} - -.icon-sort:before { - content: "\e9f4"; -} - -.icon-sort-down:before { - content: "\e9f5"; -} - -.icon-sort-up:before { - content: "\e9f6"; -} - -.icon-mail-alt:before { - content: "\e920"; -} - -.icon-linkedin-1:before { - content: "\ea0e"; -} - -.icon-gauge-1:before { - content: "\e9f8"; -} - -.icon-comment-empty:before { - content: "\e95b"; -} - -.icon-chat-empty:before { - content: "\e95c"; -} - -.icon-sitemap:before { - content: "\e9f9"; -} - -.icon-paste:before { - content: "\e9d4"; -} - -.icon-lightbulb:before { - content: "\e97a"; -} - -.icon-exchange:before { - content: "\e9a6"; -} - -.icon-download-cloud:before { - content: "\e94e"; -} - -.icon-upload-cloud-1:before { - content: "\e94f"; -} - -.icon-user-md:before { - content: "\e9fe"; -} - -.icon-stethoscope:before { - content: "\e9ff"; -} - -.icon-suitcase-1:before { - content: "\e9d6"; -} - -.icon-bell-alt:before { - content: "\e95e"; -} - -.icon-coffee:before { - content: "\e9fb"; -} - -.icon-food:before { - content: "\e9fc"; -} - -.icon-doc-alt:before { - content: "\e965"; -} - -.icon-building:before { - content: "\ea05"; -} - -.icon-hospital:before { - content: "\ea04"; -} - -.icon-ambulance:before { - content: "\ea00"; -} - -.icon-medkit:before { - content: "\ea01"; -} - -.icon-fighter-jet:before { - content: "\e9bf"; -} - -.icon-beer:before { - content: "\e9fd"; -} - -.icon-h-sigh:before { - content: "\ea02"; -} - -.icon-plus-squared-1:before { - content: "\ea03"; -} - -.icon-angle-double-left:before { - content: "\e992"; -} - -.icon-angle-double-right:before { - content: "\e993"; -} - -.icon-angle-double-up:before { - content: "\e994"; -} - -.icon-angle-double-down:before { - content: "\e995"; -} - -.icon-angle-left:before { - content: "\e98e"; -} - -.icon-angle-right:before { - content: "\e98f"; -} - -.icon-angle-up:before { - content: "\e990"; -} - -.icon-angle-down:before { - content: "\e991"; -} - -.icon-desktop:before { - content: "\e9b5"; -} - -.icon-laptop:before { - content: "\e9b6"; -} - -.icon-tablet:before { - content: "\e9b7"; -} - -.icon-mobile-1:before { - content: "\e9b8"; -} - -.icon-circle-empty:before { - content: "\e9e2"; -} - -.icon-quote-left:before { - content: "\e952"; -} - -.icon-quote-right:before { - content: "\e953"; -} - -.icon-spinner:before { - content: "\e9fa"; -} - -.icon-circle:before { - content: "\e9e1"; -} - -.icon-reply-1:before { - content: "\e950"; -} - -.icon-github-1:before { - content: "\ea08"; -} - -.icon-folder-empty:before { - content: "\e968"; -} - -.icon-folder-open-empty:before { - content: "\e969"; -} - -.icon-github-squared:before { - content: "\ea06"; -} - -.icon-facebook-3:before { - content: "\ea7c"; -} - -.icon-github:before { - content: "\e8eb"; -} - -.icon-facebook-rect:before { - content: "\ea7d"; -} - -.icon-github-circled:before { - content: "\e8ec"; -} - -.icon-twitter-3:before { - content: "\ea7e"; -} - -.icon-twitter-bird:before { - content: "\ea7f"; -} - -.icon-flickr:before { - content: "\e8ed"; -} - -.icon-flickr-circled:before { - content: "\e8ee"; -} - -.icon-twitter-squared:before { - content: "\ea09"; -} - -.icon-icq:before { - content: "\ea88"; -} - -.icon-yandex:before { - content: "\ea89"; -} - -.icon-yandex-rect:before { - content: "\ea8a"; -} - -.icon-vimeo:before { - content: "\e8ef"; -} - -.icon-github-text:before { - content: "\ea85"; -} - -.icon-vimeo-circled:before { - content: "\e8f0"; -} - -.icon-github-3:before { - content: "\ea86"; -} - -.icon-facebook-squared-1:before { - content: "\ea0b"; -} - -.icon-googleplus-rect:before { - content: "\ea84"; -} - -.icon-twitter:before { - content: "\e8f1"; -} - -.icon-vkontakte-rect:before { - content: "\ea8b"; -} - -.icon-twitter-circled:before { - content: "\e8f2"; -} - -.icon-skype-2:before { - content: "\ea87"; -} - -.icon-facebook:before { - content: "\e8f3"; -} - -.icon-odnoklassniki:before { - content: "\ea8c"; -} - -.icon-linkedin-squared:before { - content: "\ea0d"; -} - -.icon-odnoklassniki-rect:before { - content: "\ea8d"; -} - -.icon-facebook-circled:before { - content: "\e8f4"; -} - -.icon-vimeo-rect:before { - content: "\ea81"; -} - -.icon-facebook-squared:before { - content: "\e8f5"; -} - -.icon-gplus:before { - content: "\e8f6"; -} - -.icon-vimeo-2:before { - content: "\ea80"; -} - -.icon-tumblr-rect:before { - content: "\ea83"; -} - -.icon-gplus-circled:before { - content: "\e8f7"; -} - -.icon-tumblr-2:before { - content: "\ea82"; -} - -.icon-friendfeed:before { - content: "\ea8e"; -} - -.icon-pinterest:before { - content: "\e8f8"; -} - -.icon-friendfeed-rect:before { - content: "\ea8f"; -} - -.icon-pinterest-circled:before { - content: "\e8f9"; -} - -.icon-blogger-1:before { - content: "\ea90"; -} - -.icon-tumblr:before { - content: "\e8fa"; -} - -.icon-blogger-rect:before { - content: "\ea91"; -} - -.icon-deviantart:before { - content: "\ea92"; -} - -.icon-tumblr-circled:before { - content: "\e8fb"; -} - -.icon-jabber:before { - content: "\ea93"; -} - -.icon-lastfm-2:before { - content: "\ea94"; -} - -.icon-linkedin:before { - content: "\e8fc"; -} - -.icon-lastfm-rect:before { - content: "\ea95"; -} - -.icon-linkedin-circled:before { - content: "\e8fd"; -} - -.icon-linkedin-3:before { - content: "\ea96"; -} - -.icon-linkedin-rect:before { - content: "\ea97"; -} - -.icon-dribbble:before { - content: "\e8fe"; -} - -.icon-dribbble-circled:before { - content: "\e8ff"; -} - -.icon-picasa-1:before { - content: "\ea98"; -} - -.icon-wordpress-1:before { - content: "\ea99"; -} - -.icon-stumbleupon:before { - content: "\e900"; -} - -.icon-instagram-2:before { - content: "\ea9a"; -} - -.icon-instagram-filled:before { - content: "\ea9b"; -} - -.icon-stumbleupon-circled:before { - content: "\e901"; -} - -.icon-lastfm:before { - content: "\e902"; -} - -.icon-lastfm-circled:before { - content: "\e903"; -} - -.icon-rdio:before { - content: "\e904"; -} - -.icon-rdio-circled:before { - content: "\e905"; -} - -.icon-spotify:before { - content: "\e906"; -} - -.icon-spotify-circled:before { - content: "\e907"; -} - -.icon-qq:before { - content: "\e908"; -} - -.icon-instagram:before { - content: "\e909"; -} - -.icon-dropbox:before { - content: "\e90a"; -} - -.icon-evernote:before { - content: "\e90b"; -} - -.icon-flattr:before { - content: "\e90c"; -} - -.icon-skype:before { - content: "\e90d"; -} - -.icon-skype-circled:before { - content: "\e90e"; -} - -.icon-renren:before { - content: "\e90f"; -} - -.icon-sina-weibo:before { - content: "\e910"; -} - -.icon-paypal:before { - content: "\e911"; -} - -.icon-picasa:before { - content: "\e912"; -} - -.icon-soundcloud:before { - content: "\e913"; -} - -.icon-mixi:before { - content: "\e914"; -} - -.icon-behance:before { - content: "\e915"; -} - -.icon-google-circles:before { - content: "\e916"; -} - -.icon-vkontakte:before { - content: "\e917"; -} - -.icon-smashing:before { - content: "\e918"; -} - -.icon-db-shape:before { - content: "\e91a"; -} - -.icon-sweden:before { - content: "\e919"; -} - -.icon-logo-db:before { - content: "\e91b"; -} - -.icon-picture:before { - content: "\e80e"; -} - -.icon-picture-1:before { - content: "\e92a"; -} - -.icon-globe:before { - content: "\e8b1"; -} - -.icon-globe-1:before { - content: "\e9ba"; -} - -.icon-leaf-1:before { - content: "\e9c0"; -} - -.icon-leaf:before { - content: "\e8b8"; -} - -.icon-lemon:before { - content: "\ea14"; -} - -.icon-glass:before { - content: "\e91c"; -} - -.icon-gift:before { - content: "\e9e4"; -} - -.icon-graduation-cap:before { - content: "\e8c9"; -} - -.icon-mic:before { - content: "\e85e"; -} - -.icon-videocam:before { - content: "\e929"; -} - -.icon-headphones:before { - content: "\e978"; -} - -.icon-palette:before { - content: "\e8a4"; -} - -.icon-ticket:before { - content: "\e8cb"; -} - -.icon-video-1:before { - content: "\e928"; -} - -.icon-video:before { - content: "\e80d"; -} - -.icon-target:before { - content: "\e8a3"; -} - -.icon-target-1:before { - content: "\e9b2"; -} - -.icon-music:before { - content: "\e802"; -} - -.icon-trophy:before { - content: "\e8a8"; -} - -.icon-award:before { - content: "\e9b4"; -} - -.icon-thumbs-up:before { - content: "\e82b"; -} - -.icon-thumbs-up-1:before { - content: "\e94a"; -} - -.icon-thumbs-down:before { - content: "\e82c"; -} - -.icon-thumbs-down-1:before { - content: "\e94b"; -} - -.icon-bag:before { - content: "\e85a"; -} - -.icon-user:before { - content: "\e80a"; -} - -.icon-user-1:before { - content: "\e926"; -} - -.icon-users-1:before { - content: "\e927"; -} - -.icon-users:before { - content: "\e80b"; -} - -.icon-lamp:before { - content: "\e864"; -} - -.icon-alert:before { - content: "\e83f"; -} - -.icon-water:before { - content: "\e8cc"; -} - -.icon-droplet:before { - content: "\e8cd"; -} - -.icon-credit-card:before { - content: "\e8cf"; -} - -.icon-credit-card-1:before { - content: "\e9e8"; -} - -.icon-monitor:before { - content: "\e8ab"; -} - -.icon-briefcase-1:before { - content: "\e9d5"; -} - -.icon-briefcase:before { - content: "\e8bb"; -} - -.icon-floppy-1:before { - content: "\e9e9"; -} - -.icon-floppy:before { - content: "\e8d0"; -} - -.icon-cd:before { - content: "\e8ae"; -} - -.icon-folder:before { - content: "\e850"; -} - -.icon-folder-1:before { - content: "\e966"; -} - -.icon-folder-open:before { - content: "\e967"; -} - -.icon-doc-1:before { - content: "\e963"; -} - -.icon-doc-text:before { - content: "\e84b"; -} - -.icon-calendar-1:before { - content: "\e972"; -} - -.icon-calendar:before { - content: "\e85b"; -} - -.icon-chart-line:before { - content: "\e8c5"; -} - -.icon-chart-bar-1:before { - content: "\e9e7"; -} - -.icon-chart-bar:before { - content: "\e8c6"; -} - -.icon-clipboard:before { - content: "\e8d1"; -} - -.icon-pin:before { - content: "\e942"; -} - -.icon-attach-1:before { - content: "\e93f"; -} - -.icon-attach:before { - content: "\e823"; -} - -.icon-bookmarks:before { - content: "\e829"; -} - -.icon-book:before { - content: "\e84f"; -} - -.icon-book-1:before { - content: "\e9dc"; -} - -.icon-book-open:before { - content: "\e84e"; -} - -.icon-phone:before { - content: "\e854"; -} - -.icon-phone-1:before { - content: "\e96b"; -} - -.icon-megaphone:before { - content: "\e8d2"; -} - -.icon-megaphone-1:before { - content: "\e9ea"; -} - -.icon-upload:before { - content: "\e82e"; -} - -.icon-upload-1:before { - content: "\e94d"; -} - -.icon-download-1:before { - content: "\e94c"; -} - -.icon-download:before { - content: "\e82d"; -} - -.icon-box:before { - content: "\e852"; -} - -.icon-newspaper:before { - content: "\e84d"; -} - -.icon-mobile:before { - content: "\e8ac"; -} - -.icon-signal:before { - content: "\e8a7"; -} - -.icon-signal-1:before { - content: "\e9b3"; -} - -.icon-camera-1:before { - content: "\e92b"; -} - -.icon-camera:before { - content: "\e80f"; -} - -.icon-shuffle-1:before { - content: "\e9a5"; -} - -.icon-shuffle:before { - content: "\e894"; -} - -.icon-loop:before { - content: "\e895"; -} - -.icon-arrows-ccw:before { - content: "\e891"; -} - -.icon-light-down:before { - content: "\e865"; -} - -.icon-light-up:before { - content: "\e866"; -} - -.icon-mute:before { - content: "\e85f"; -} - -.icon-volume-off:before { - content: "\e975"; -} - -.icon-volume-down:before { - content: "\e976"; -} - -.icon-volume-up:before { - content: "\e977"; -} - -.icon-sound:before { - content: "\e860"; -} - -.icon-battery:before { - content: "\e8a9"; -} - -.icon-search:before { - content: "\e803"; -} - -.icon-search-1:before { - content: "\e91e"; -} - -.icon-key:before { - content: "\e8d7"; -} - -.icon-key-1:before { - content: "\e9ec"; -} - -.icon-lock:before { - content: "\e824"; -} - -.icon-lock-1:before { - content: "\e940"; -} - -.icon-lock-open-1:before { - content: "\e941"; -} - -.icon-lock-open:before { - content: "\e825"; -} - -.icon-bell-1:before { - content: "\e95d"; -} - -.icon-bell:before { - content: "\e83d"; -} - -.icon-bookmark:before { - content: "\e828"; -} - -.icon-bookmark-1:before { - content: "\e947"; -} - -.icon-link-1:before { - content: "\e93d"; -} - -.icon-link:before { - content: "\e822"; -} - -.icon-back:before { - content: "\e820"; -} - -.icon-fire:before { - content: "\e9e5"; -} - -.icon-flashlight:before { - content: "\e804"; -} - -.icon-wrench:before { - content: "\e970"; -} - -.icon-hammer:before { - content: "\e9f7"; -} - -.icon-chart-area:before { - content: "\e8c7"; -} - -.icon-clock-1:before { - content: "\e979"; -} - -.icon-clock:before { - content: "\e862"; -} - -.icon-rocket:before { - content: "\e8dd"; -} - -.icon-truck:before { - content: "\e9f2"; -} - -.icon-block:before { - content: "\e868"; -} - -.icon-block-1:before { - content: "\e97b"; -} diff --git a/static/css/icons_ie7.css b/static/css/icons_ie7.css deleted file mode 100644 index 4dcdb41..0000000 --- a/static/css/icons_ie7.css +++ /dev/null @@ -1,2719 +0,0 @@ -.icon-duckduckgo { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-aim { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-delicious { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-paypal-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-flattr-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-android { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-eventful { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-smashmag { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-gplus-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-plus { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-plus-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-wikipedia { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-lanyrd { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-minus { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-minus-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-calendar-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-stumbleupon-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-fivehundredpx { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-pinterest-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-bitcoin { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-w3c { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-foursquare { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-html5 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-ie { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-call { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-rooveshark { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-ninetyninedesigns { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-forrst { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-digg { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-spotify-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-reddit { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-guest { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-gowalla { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-at { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-appstore { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-blogger { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cc-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-dribbble-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-evernote-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-flickr-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-google { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-viadeo { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-instapaper { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-weibo { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-klout { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-linkedin-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-meetup { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-vk { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-plancast { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-disqus { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-rss-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-skype-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-twitter-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-youtube { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-vimeo-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-windows { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-xing { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-yahoo { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-chrome { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-email { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-macstore { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-myspace { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-podcast { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-amazon { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-steam { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cloudapp { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-dropbox-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-ebay { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-facebook-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-github-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-googleplay { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-itunes { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-plurk { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-songkick { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-lastfm-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-gmail { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-pinboard { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-openid { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-quora { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-soundcloud-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-tumblr-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-eventasaurus { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-wordpress { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-yelp { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-intensedebate { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-eventbrite { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-scribd { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-posterous { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-stripe { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-pilcrow { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-opentable { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cart { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-print-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-angellist { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-instagram-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-dwolla { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-appnet { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-statusnet { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-acrobat { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-drupal { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-buffer { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-pocket { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-github-circled-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-bitbucket { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-lego { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-login-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-stackoverflow { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-hackernews { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-lkdto { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-info { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-left-thin { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-left-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-up-thin { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-up-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-right-thin { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-right-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-down-thin { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-down-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-level-up { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-level-down { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-switch { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-infinity { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຌ 2; "); -} - -.icon-plus-squared { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-minus-squared { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-home-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-home { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-keyboard { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-erase { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຌ 3; "); -} - -.icon-pause-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-pause { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-fast-fw { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-fast-forward { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-fast-backward { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-fast-bw { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ປ 0; "); -} - -.icon-to-end-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-to-end { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-to-start { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-to-start-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-hourglass { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-stop { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-stop-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ບ 9; "); -} - -.icon-up-dir { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-up-dir-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-play-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ບ 7; "); -} - -.icon-play { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-right-dir { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-right-dir-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-down-dir { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-down-dir-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-left-dir { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-left-dir-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-adjust { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cloud-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cloud { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "຋ 2; "); -} - -.icon-umbrella { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-star { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-star-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-star-empty { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-star-empty-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-check-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cup { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-left-hand { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-up-hand { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-right-hand { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-down-hand { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-menu { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-th-list { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-moon { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "຋ 5; "); -} - -.icon-heart-empty-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-heart-empty { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-heart-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-heart { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-note { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-music-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-note-beamed { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-layout { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-th { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-flag-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-flag { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-tools { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cog { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cog-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-attention { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-attention-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-flash { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "຋ 4; "); -} - -.icon-flash-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-record { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cloud-thunder { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "຋ 3; "); -} - -.icon-cog-alt { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-scissors { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຝ 3; "); -} - -.icon-tape { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຌ 8; "); -} - -.icon-flight { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "຋ 6; "); -} - -.icon-flight-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-mail { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-mail-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-edit { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-pencil { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-pencil-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-feather { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-check { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-ok { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-ok-circle { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cancel { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cancel-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cancel-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cancel-circle { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-asterisk { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ພ 3; "); -} - -.icon-cancel-squared { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-help { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-attention-circle { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-quote { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-plus-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-plus-circle { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-minus-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-minus-circle { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-right { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-direction { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-forward-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-forward { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-ccw-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ບ 3; "); -} - -.icon-ccw { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cw { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cw-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ບ 2; "); -} - -.icon-left { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-up { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-down { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-resize-vertical { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-resize-horizontal { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-eject { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ປ 1; "); -} - -.icon-list-add { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຊ 6; "); -} - -.icon-list { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຊ 5; "); -} - -.icon-left-bold { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-right-bold { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-up-bold { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-down-bold { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-user-add { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-star-half { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-ok-circle2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cancel-circle2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-help-circle { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-help-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-info-circle { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-info-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-th-large { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-eye { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-eye-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-eye-off { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-tag-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-tag { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-tags { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-camera-alt { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-upload-cloud { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-reply { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-reply-all { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-code { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-export { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-export-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-print { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-print-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-retweet-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-retweet { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-comment-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-comment { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-chat { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-chat-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-vcard { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-address { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-location-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-location { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-map { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-compass { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-trash-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-trash { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-doc { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-doc-text-inv { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-docs { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-doc-landscape { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-archive { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-rss { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-share { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-basket { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-basket-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-shareable { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-login-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-login { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-logout-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-logout { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-volume { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-resize-full { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-resize-full-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-resize-small { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-resize-small-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-popup { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-publish { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-window { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-arrow-combo { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-zoom-in { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-zoom-out { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-chart-pie { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຌ 4; "); -} - -.icon-language { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-air { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-database { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຍ 3; "); -} - -.icon-drive { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຍ 4; "); -} - -.icon-bucket { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຍ 5; "); -} - -.icon-thermometer { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຍ 6; "); -} - -.icon-down-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-down-circle2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-left-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-right-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-up-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-up-circle2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-down-open { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-down-open-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-left-open-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-left-open { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-right-open-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-right-open { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-up-open { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-up-open-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-arrows-cw { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ບ 4; "); -} - -.icon-down-open-mini { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-play-circle2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ບ 8; "); -} - -.icon-left-open-mini { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-right-open-mini { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-to-end-alt { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-up-open-mini { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-to-start-alt { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-down-open-big { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-left-open-big { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-right-open-big { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-up-open-big { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-progress-0 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-progress-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຊ 0; "); -} - -.icon-progress-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຊ 1; "); -} - -.icon-progress-3 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຊ 2; "); -} - -.icon-back-in-time { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-network { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-inbox-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ປ 9; "); -} - -.icon-inbox { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-install { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "຋ 0; "); -} - -.icon-font { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຜ 1; "); -} - -.icon-bold { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຜ 2; "); -} - -.icon-italic { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຜ 3; "); -} - -.icon-text-height { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຜ 4; "); -} - -.icon-text-width { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຜ 5; "); -} - -.icon-align-left { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຜ 6; "); -} - -.icon-align-center { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຜ 7; "); -} - -.icon-align-right { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຜ 8; "); -} - -.icon-align-justify { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຜ 9; "); -} - -.icon-list-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-indent-left { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-indent-right { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-lifebuoy { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "຋ 9; "); -} - -.icon-mouse { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-dot { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-dot-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-dot-3 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-off { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຝ 7; "); -} - -.icon-suitcase { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-road { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຝ 8; "); -} - -.icon-list-alt { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຝ 9; "); -} - -.icon-flow-cascade { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຍ 8; "); -} - -.icon-flow-branch { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຍ 9; "); -} - -.icon-qrcode { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-flow-tree { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-barcode { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-flow-line { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-ajust { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-tint { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-flow-parallel { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-brush { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຌ 0; "); -} - -.icon-paper-plane { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "຋ 7; "); -} - -.icon-magnet-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ພ 6; "); -} - -.icon-magnet { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຌ 1; "); -} - -.icon-gauge { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-traffic-cone { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-cc { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຎ 0; "); -} - -.icon-cc-by { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຎ 1; "); -} - -.icon-cc-nc { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຎ 2; "); -} - -.icon-cc-nc-eu { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຎ 3; "); -} - -.icon-cc-nc-jp { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຎ 4; "); -} - -.icon-cc-sa { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຎ 5; "); -} - -.icon-cc-nd { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຎ 6; "); -} - -.icon-cc-pd { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຎ 7; "); -} - -.icon-cc-zero { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຎ 8; "); -} - -.icon-cc-share { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຎ 9; "); -} - -.icon-cc-remix { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-spin1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-spin2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-spin3 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-spin4 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-spin5 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-spin6 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-firefox { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-chrome-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-opera { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-ie-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-move { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-link-ext { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-check-empty { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ພ 0; "); -} - -.icon-bookmark-empty { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-phone-squared { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-twitter-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-facebook-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-github-circled-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-rss-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-hdd { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-certificate { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-left-circled-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-right-circled-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-up-circled-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ບ 0; "); -} - -.icon-down-circled-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ບ 1; "); -} - -.icon-tasks { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-filter { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-resize-full-alt { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-beaker { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຟ 0; "); -} - -.icon-docs-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-blank { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-menu-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-list-bullet { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-list-numbered { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-strike { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-underline { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຝ 0; "); -} - -.icon-table { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຝ 1; "); -} - -.icon-magic { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຟ 1; "); -} - -.icon-pinterest-circled-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-pinterest-squared { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-gplus-squared { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-gplus-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-money { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຟ 3; "); -} - -.icon-columns { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຝ 2; "); -} - -.icon-sort { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຟ 4; "); -} - -.icon-sort-down { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຟ 5; "); -} - -.icon-sort-up { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຟ 6; "); -} - -.icon-mail-alt { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-linkedin-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-gauge-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຟ 8; "); -} - -.icon-comment-empty { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-chat-empty { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-sitemap { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຟ 9; "); -} - -.icon-paste { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຝ 4; "); -} - -.icon-lightbulb { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-exchange { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ບ 6; "); -} - -.icon-download-cloud { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-upload-cloud-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-user-md { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-stethoscope { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-suitcase-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຝ 6; "); -} - -.icon-bell-alt { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-coffee { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-food { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-doc-alt { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-building { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-hospital { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-ambulance { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-medkit { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-fighter-jet { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-beer { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-h-sigh { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-plus-squared-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-angle-double-left { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-angle-double-right { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-angle-double-up { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-angle-double-down { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-angle-left { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-angle-right { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-angle-up { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-angle-down { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-desktop { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ປ 5; "); -} - -.icon-laptop { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ປ 6; "); -} - -.icon-tablet { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ປ 7; "); -} - -.icon-mobile-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ປ 8; "); -} - -.icon-circle-empty { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ພ 2; "); -} - -.icon-quote-left { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-quote-right { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-spinner { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-circle { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ພ 1; "); -} - -.icon-reply-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-github-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-folder-empty { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-folder-open-empty { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-github-squared { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-facebook-3 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-github { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-facebook-rect { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-github-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-twitter-3 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-twitter-bird { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-flickr { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-flickr-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-twitter-squared { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-icq { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-yandex { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-yandex-rect { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-vimeo { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-github-text { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-vimeo-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຏ 0; "); -} - -.icon-github-3 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-facebook-squared-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-googleplus-rect { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-twitter { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຏ 1; "); -} - -.icon-vkontakte-rect { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-twitter-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຏ 2; "); -} - -.icon-skype-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-facebook { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຏ 3; "); -} - -.icon-odnoklassniki { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-linkedin-squared { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-odnoklassniki-rect { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-facebook-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຏ 4; "); -} - -.icon-vimeo-rect { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-facebook-squared { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຏ 5; "); -} - -.icon-gplus { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຏ 6; "); -} - -.icon-vimeo-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-tumblr-rect { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-gplus-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຏ 7; "); -} - -.icon-tumblr-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-friendfeed { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-pinterest { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຏ 8; "); -} - -.icon-friendfeed-rect { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-pinterest-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຏ 9; "); -} - -.icon-blogger-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-tumblr { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-blogger-rect { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-deviantart { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-tumblr-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-jabber { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-lastfm-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-linkedin { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-lastfm-rect { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-linkedin-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-linkedin-3 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-linkedin-rect { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-dribbble { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-dribbble-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-picasa-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-wordpress-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-stumbleupon { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-instagram-2 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-instagram-filled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-stumbleupon-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-lastfm { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-lastfm-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-rdio { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-rdio-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-spotify { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-spotify-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-qq { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-instagram { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-dropbox { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-evernote { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-flattr { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-skype { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-skype-circled { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-renren { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-sina-weibo { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-paypal { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-picasa { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-soundcloud { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-mixi { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-behance { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-google-circles { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-vkontakte { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-smashing { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-db-shape { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-sweden { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-logo-db { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-picture { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-picture-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-globe { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "຋ 1; "); -} - -.icon-globe-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-leaf-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຜ 0; "); -} - -.icon-leaf { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "຋ 8; "); -} - -.icon-lemon { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-glass { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-gift { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ພ 4; "); -} - -.icon-graduation-cap { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຌ 9; "); -} - -.icon-mic { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-videocam { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-headphones { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-palette { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຊ 4; "); -} - -.icon-ticket { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-video-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-video { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-target { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຊ 3; "); -} - -.icon-target-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ປ 2; "); -} - -.icon-music { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-trophy { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຊ 8; "); -} - -.icon-award { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ປ 4; "); -} - -.icon-thumbs-up { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-thumbs-up-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-thumbs-down { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-thumbs-down-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-bag { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-user { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-user-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-users-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-users { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-lamp { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-alert { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-water { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-droplet { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-credit-card { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-credit-card-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ພ 8; "); -} - -.icon-monitor { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-briefcase-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຝ 5; "); -} - -.icon-briefcase { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-floppy-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ພ 9; "); -} - -.icon-floppy { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຍ 0; "); -} - -.icon-cd { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-folder { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-folder-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-folder-open { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-doc-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-doc-text { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-calendar-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-calendar { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-chart-line { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຌ 5; "); -} - -.icon-chart-bar-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ພ 7; "); -} - -.icon-chart-bar { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຌ 6; "); -} - -.icon-clipboard { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຍ 1; "); -} - -.icon-pin { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-attach-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-attach { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-bookmarks { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-book { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-book-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-book-open { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-phone { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-phone-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-megaphone { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຍ 2; "); -} - -.icon-megaphone-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-upload { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-upload-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-download-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-download { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-box { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-newspaper { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-mobile { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-signal { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຊ 7; "); -} - -.icon-signal-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ປ 3; "); -} - -.icon-camera-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-camera { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-shuffle-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ບ 5; "); -} - -.icon-shuffle { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-loop { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-arrows-ccw { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-light-down { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-light-up { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-mute { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-volume-off { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-volume-down { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-volume-up { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-sound { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-battery { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຊ 9; "); -} - -.icon-search { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-search-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-key { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຍ 7; "); -} - -.icon-key-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-lock { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-lock-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-lock-open-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-lock-open { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-bell-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-bell { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-bookmark { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-bookmark-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-link-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-link { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-back { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-fire { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ພ 5; "); -} - -.icon-flashlight { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-wrench { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-hammer { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຟ 7; "); -} - -.icon-chart-area { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຌ 7; "); -} - -.icon-clock-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-clock { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-rocket { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-truck { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = "ຟ 2; "); -} - -.icon-block { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} - -.icon-block-1 { - *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = " "); -} diff --git a/static/css/normalize.css b/static/css/normalize.css deleted file mode 100644 index 2659e8c..0000000 --- a/static/css/normalize.css +++ /dev/null @@ -1,376 +0,0 @@ -/* normalize.css v2.1.1 | MIT License | git.io/normalize */ -/* ========================================================================== - HTML5 display definitions - ========================================================================== */ -/** - * Correct `block` display not defined in IE 8/9. - */ -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -nav, -section, -summary { - display: block; -} - -/** - * Correct `inline-block` display not defined in IE 8/9. - */ -audio, -canvas, -video { - display: inline-block; -} - -/** - * Prevent modern browsers from displaying `audio` without controls. - * Remove excess height in iOS 5 devices. - */ -audio:not([controls]) { - display: none; - height: 0; -} - -/** - * Address styling not present in IE 8/9. - */ -[hidden] { - display: none; -} - -/* ========================================================================== - Base - ========================================================================== */ -/** - * 1. Prevent system color scheme's background color being used in Firefox, IE, - * and Opera. - * 2. Prevent system color scheme's text color being used in Firefox, IE, and - * Opera. - * 3. Set default font family to sans-serif. - * 4. Prevent iOS text size adjust after orientation change, without disabling - * user zoom. - */ -html { - background: #fff; - /* 1 */ - color: #000; - /* 2 */ - font-family: sans-serif; - /* 3 */ - -ms-text-size-adjust: 100%; - /* 4 */ - -webkit-text-size-adjust: 100%; - /* 4 */ -} - -/** - * Remove default margin. - */ -body { - margin: 0; -} - -/* ========================================================================== - Links - ========================================================================== */ -/** - * Address `outline` inconsistency between Chrome and other browsers. - */ -a:focus { - outline: thin dotted; -} - -/** - * Improve readability when focused and also mouse hovered in all browsers. - */ -a:active, -a:hover { - outline: 0; -} - -/* ========================================================================== - Typography - ========================================================================== */ -/** - * Address variable `h1` font-size and margin within `section` and `article` - * contexts in Firefox 4+, Safari 5, and Chrome. - */ -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -/** - * Address styling not present in IE 8/9, Safari 5, and Chrome. - */ -abbr[title] { - border-bottom: 1px dotted; -} - -/** - * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. - */ -b, -strong { - font-weight: bold; -} - -/** - * Address styling not present in Safari 5 and Chrome. - */ -dfn { - font-style: italic; -} - -/** - * Address differences between Firefox and other browsers. - */ -hr { - -moz-box-sizing: content-box; - box-sizing: content-box; - height: 0; -} - -/** - * Address styling not present in IE 8/9. - */ -mark { - background: #ff0; - color: #000; -} - -/** - * Correct font family set oddly in Safari 5 and Chrome. - */ -code, -kbd, -pre, -samp { - font-family: monospace, serif; - font-size: 1em; -} - -/** - * Improve readability of pre-formatted text in all browsers. - */ -pre { - white-space: pre-wrap; -} - -/** - * Set consistent quote types. - */ -q { - quotes: "\201C" "\201D" "\2018" "\2019"; -} - -/** - * Address inconsistent and variable font size in all browsers. - */ -small { - font-size: 80%; -} - -/** - * Prevent `sub` and `sup` affecting `line-height` in all browsers. - */ -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sup { - top: -0.5em; -} - -sub { - bottom: -0.25em; -} - -/* ========================================================================== - Embedded content - ========================================================================== */ -/** - * Remove border when inside `a` element in IE 8/9. - */ -img { - border: 0; -} - -/** - * Correct overflow displayed oddly in IE 9. - */ -svg:not(:root) { - overflow: hidden; -} - -/* ========================================================================== - Figures - ========================================================================== */ -/** - * Address margin not present in IE 8/9 and Safari 5. - */ -figure { - margin: 0; -} - -/* ========================================================================== - Forms - ========================================================================== */ -/** - * Define consistent border, margin, and padding. - */ -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} - -/** - * 1. Correct `color` not being inherited in IE 8/9. - * 2. Remove padding so people aren't caught out if they zero out fieldsets. - */ -legend { - border: 0; - /* 1 */ - padding: 0; - /* 2 */ -} - -/** - * 1. Correct font family not being inherited in all browsers. - * 2. Correct font size not being inherited in all browsers. - * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. - */ -button, -input, -select, -textarea { - font-family: inherit; - /* 1 */ - font-size: 100%; - /* 2 */ - margin: 0; - /* 3 */ -} - -/** - * Address Firefox 4+ setting `line-height` on `input` using `!important` in - * the UA stylesheet. - */ -button, -input { - line-height: normal; -} - -/** - * Address inconsistent `text-transform` inheritance for `button` and `select`. - * All other form control elements do not inherit `text-transform` values. - * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. - * Correct `select` style inheritance in Firefox 4+ and Opera. - */ -button, -select { - text-transform: none; -} - -/** - * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` - * and `video` controls. - * 2. Correct inability to style clickable `input` types in iOS. - * 3. Improve usability and consistency of cursor style between image-type - * `input` and others. - */ -button, -html input[type="button"], -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; - /* 2 */ - cursor: pointer; - /* 3 */ -} - -/** - * Re-set default cursor for disabled elements. - */ -button[disabled], -html input[disabled] { - cursor: default; -} - -/** - * 1. Address box sizing set to `content-box` in IE 8/9. - * 2. Remove excess padding in IE 8/9. - */ -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; - /* 1 */ - padding: 0; - /* 2 */ -} - -/** - * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. - * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome - * (include `-moz` to future-proof). - */ -input[type="search"] { - -webkit-appearance: textfield; - /* 1 */ - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; - /* 2 */ - box-sizing: content-box; -} - -/** - * Remove inner padding and search cancel button in Safari 5 and Chrome - * on OS X. - */ -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -/** - * Remove inner padding and border in Firefox 4+. - */ -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} - -/** - * 1. Remove default vertical scrollbar in IE 8/9. - * 2. Improve readability and alignment in all browsers. - */ -textarea { - overflow: auto; - /* 1 */ - vertical-align: top; - /* 2 */ -} - -/* ========================================================================== - Tables - ========================================================================== */ -/** - * Remove most spacing between table cells. - */ -table { - border-collapse: collapse; - border-spacing: 0; -} diff --git a/static/fonts/fontello.eot b/static/fonts/fontello.eot deleted file mode 100644 index 453d8d9..0000000 Binary files a/static/fonts/fontello.eot and /dev/null differ diff --git a/static/fonts/fontello.svg b/static/fonts/fontello.svg deleted file mode 100644 index 0746989..0000000 --- a/static/fonts/fontello.svg +++ /dev/null @@ -1,691 +0,0 @@ - - - -Copyright (C) 2012 by original authors @ fontello.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/fonts/fontello.ttf b/static/fonts/fontello.ttf deleted file mode 100644 index cc02e89..0000000 Binary files a/static/fonts/fontello.ttf and /dev/null differ diff --git a/static/fonts/fontello.woff b/static/fonts/fontello.woff deleted file mode 100644 index 5ec832a..0000000 Binary files a/static/fonts/fontello.woff and /dev/null differ diff --git a/static/fonts/fontello_config.json b/static/fonts/fontello_config.json new file mode 100644 index 0000000..1a6cb27 --- /dev/null +++ b/static/fonts/fontello_config.json @@ -0,0 +1,247 @@ +{ + "name": "pelican-red", + "css_prefix_text": "icon-", + "css_use_suffix": false, + "glyphs": [ + { + "uid": "7222571caa5c15f83dcfd447c58d68d9", + "css": "search", + "code": 59431, + "src": "entypo" + }, + { + "uid": "815503841e980c848f55e0271deacead", + "css": "link", + "code": 59419, + "src": "entypo" + }, + { + "uid": "875ab0f6d417223f6ec76ff7f0a4baed", + "css": "tag", + "code": 59418, + "src": "entypo" + }, + { + "uid": "457c8e2b305e7af74c1be4f07a01ca92", + "css": "vcard", + "code": 59415, + "src": "entypo" + }, + { + "uid": "da0fd38d651815e3a12f6c030ff1fe5b", + "css": "newspaper", + "code": 59399, + "src": "entypo" + }, + { + "uid": "d10920db2e79c997c5e783279291970c", + "css": "dot-3", + "code": 59400, + "src": "entypo" + }, + { + "uid": "ddecf5ad7935e3fb1b70dac6ed00d06a", + "css": "language", + "code": 59398, + "src": "entypo" + }, + { + "uid": "4a413ef43c364dafa42766e74c31bbca", + "css": "cc", + "code": 59430, + "src": "entypo" + }, + { + "uid": "72681d2825fef7fd83711278f845547b", + "css": "cc-by", + "code": 59429, + "src": "entypo" + }, + { + "uid": "7540520e12e941839cdb7d76b12e82a8", + "css": "cc-nc", + "code": 59428, + "src": "entypo" + }, + { + "uid": "2d741e29010c6afbfc3784251fbf4e8b", + "css": "cc-nc-eu", + "code": 59427, + "src": "entypo" + }, + { + "uid": "3138d5e10d50279c6d97ad1c99fdb584", + "css": "cc-nc-jp", + "code": 59426, + "src": "entypo" + }, + { + "uid": "900851106d63af1bc6076ae118dc543d", + "css": "cc-sa", + "code": 59425, + "src": "entypo" + }, + { + "uid": "b92e2a918daa2f9a042df1ce942b686f", + "css": "cc-nd", + "code": 59424, + "src": "entypo" + }, + { + "uid": "49679f26492c29c7bc277f1de9249229", + "css": "cc-pd", + "code": 59423, + "src": "entypo" + }, + { + "uid": "94914cbbfba692ebbc13c179d62355f7", + "css": "cc-zero", + "code": 59422, + "src": "entypo" + }, + { + "uid": "915c11e4e2e713cc7d65d32d66f004bf", + "css": "cc-share", + "code": 59421, + "src": "entypo" + }, + { + "uid": "0cd7be54280d9ffbe0f48342c011268e", + "css": "cc-remix", + "code": 59420, + "src": "entypo" + }, + { + "uid": "d94334f23acba022bfd68e49d76b31bb", + "css": "github", + "code": 59402, + "src": "entypo" + }, + { + "uid": "14cfd18cc1dd5fb99ba04311b888bc23", + "css": "flickr", + "code": 59413, + "src": "entypo" + }, + { + "uid": "538531af0e023b15882c505ee2297cbe", + "css": "vimeo", + "code": 59403, + "src": "entypo" + }, + { + "uid": "d090355c31f497b61d676416c1fd39fb", + "css": "twitter", + "code": 59406, + "src": "entypo" + }, + { + "uid": "bc50457410acf467b8b5721240768742", + "css": "facebook", + "code": 59405, + "src": "entypo" + }, + { + "uid": "b945f4ac2439565661e8e4878e35d379", + "css": "gplus", + "code": 59404, + "src": "entypo" + }, + { + "uid": "689febe699d74bc8862965555503e445", + "css": "pinterest", + "code": 59392, + "src": "entypo" + }, + { + "uid": "d491462e64eb5b8c4f064108a2ff1780", + "css": "tumblr", + "code": 59401, + "src": "entypo" + }, + { + "uid": "7132e1233bc16cd1b6efe7e29d3613a5", + "css": "linkedin", + "code": 59407, + "src": "entypo" + }, + { + "uid": "e8d13cd05bd63219329b2b61835d776c", + "css": "dribbble", + "code": 59412, + "src": "entypo" + }, + { + "uid": "ef5e2b339a93fff038cc6a28f8c91edd", + "css": "stumbleupon", + "code": 59414, + "src": "entypo" + }, + { + "uid": "ae49d5a5d0c2f7253f375bde5f0da2d2", + "css": "lastfm", + "code": 59408, + "src": "entypo" + }, + { + "uid": "406d96226bd9d021b7d976efa1c4a061", + "css": "rdio", + "code": 59409, + "src": "entypo" + }, + { + "uid": "0fbfb1cd7a847c88ea4c141d0e1bbdb5", + "css": "instagram", + "code": 59410, + "src": "entypo" + }, + { + "uid": "28ccaf022b8363aeaa5b86f66e1f5173", + "css": "skype", + "code": 59411, + "src": "entypo" + }, + { + "uid": "07269ba9c8905d091e1a01beab1f0958", + "css": "picasa", + "code": 59416, + "src": "entypo" + }, + { + "uid": "b86600decaba538aca184421752cd640", + "css": "soundcloud", + "code": 59417, + "src": "entypo" + }, + { + "uid": "c9829449672245d22b3d43d7d1a7cc90", + "css": "grooveshark", + "code": 59397, + "src": "zocial" + }, + { + "uid": "b3a537446285bb3510bba57d20374818", + "css": "reddit", + "code": 59396, + "src": "zocial" + }, + { + "uid": "2dd7e3046b63beb19616dce63c5782a6", + "css": "blogger", + "code": 59395, + "src": "zocial" + }, + { + "uid": "57a4f84c40a0c44d47387105f162a427", + "css": "youtube", + "code": 59394, + "src": "zocial" + }, + { + "uid": "785a9b232e86ae750516adc5228a5aa7", + "css": "steam", + "code": 59393, + "src": "zocial" + } + ] +} \ No newline at end of file diff --git a/static/fonts/pelican-red.eot b/static/fonts/pelican-red.eot new file mode 100644 index 0000000..ed5b555 Binary files /dev/null and b/static/fonts/pelican-red.eot differ diff --git a/static/fonts/pelican-red.svg b/static/fonts/pelican-red.svg new file mode 100644 index 0000000..a9f2caa --- /dev/null +++ b/static/fonts/pelican-red.svg @@ -0,0 +1,51 @@ + + + +Copyright (C) 2012 by original authors @ fontello.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/fonts/pelican-red.ttf b/static/fonts/pelican-red.ttf new file mode 100644 index 0000000..75c4077 Binary files /dev/null and b/static/fonts/pelican-red.ttf differ diff --git a/static/fonts/pelican-red.woff b/static/fonts/pelican-red.woff new file mode 100644 index 0000000..217d2ed Binary files /dev/null and b/static/fonts/pelican-red.woff differ diff --git a/static/sass/_settings.scss b/static/sass/_foundationSettings.scss similarity index 65% rename from static/sass/_settings.scss rename to static/sass/_foundationSettings.scss index 89b7cbf..8380a84 100644 --- a/static/sass/_settings.scss +++ b/static/sass/_foundationSettings.scss @@ -2,96 +2,118 @@ // Foundation Variables // -//// The default font-size is set to 100% of the browser style sheet (usually 16px) -//// for compatibility with brower-based text zoom or user-set defaults. +// The default font-size is set to 100% of the browser style sheet (usually 16px) +// for compatibility with browser-based text zoom or user-set defaults. $base-font-size: 100% !default; -//// $base-line-height is 24px while $base-font-size is 16px -//// $base-line-height: 150%; +// $base-line-height is 24px while $base-font-size is 16px +// $base-line-height: 150%; -//// This is the default html and body font-size for the base em value. +// This is the default html and body font-size for the base em value. -//// Since the typical default browser font-size is 16px, that makes the calculation for grid size. -//// If you want your base font-size to be a different size and not have it effect grid size too, -//// set the value of $em-base to $base-font-size ($em-base: $base-font-size;) +// Since the typical default browser font-size is 16px, that makes the calculation for grid size. +// If you want your base font-size to be a different size and not have it effect grid size too, +// set the value of $em-base to $base-font-size ($em-base: $base-font-size;) $em-base: 16px !default; -//// Working in ems is annoying. Think in pixels by using this handy function, emCalc(#px) +// Working in ems is annoying. Think in pixels by using this handy function, emCalc(#px) @function emCalc($pxWidth) { @return $pxWidth / $em-base * 1em; } -//// Various global styles +// Change whether or not you include browser prefixes +// $experimental: true; -$body-bg: #fff; -$body-font-color: #222; -$body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; -$body-font-weight: normal; -$body-font-style: normal; +// Various global styles -//// Font-smoothing +$default-float: left; -$font-smoothing: antialiased; +$body-bg: #fbfbfb; +// $body-font-color: #222; +// $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; +// $body-font-weight: normal; +// $body-font-style: normal; -//// Text direction settings +// Font-smoothing + +// $font-smoothing: antialiased; + +// Text direction settings // $text-direction: ltr; -//// Colors +// Colors - $primary-color: #9b160d; - $secondary-color: #e0e0e0; -// $alert-color: #c60f13; -// $success-color: #5da423; +$primary-color: #9b160d; +$secondary-color: #e0e0e0; +$alert-color: #c60f13; +$success-color: #5da423; -//// Make sure border radius matches unless we want it different. +// Make sure border radius matches unless we want it different. // $global-radius: 3px; // $global-rounded: 1000px; -//// Inset shadow shiny edges and depressions. +// Inset shadow shiny edges and depressions. // $shiny-edge-size: 0 1px 0; // $shiny-edge-color: rgba(#fff, .5); // $shiny-edge-active-color: rgba(#000, .2); -//// Control whether or not CSS classes come through in the CSS files. +// Control whether or not CSS classes come through in the CSS files. // $include-html-classes: true; // $include-print-styles: true; +// $include-html-global-classes: $include-html-classes; +// $include-html-type-classes: $include-html-classes; // $include-html-grid-classes: $include-html-classes; // $include-html-visibility-classes: $include-html-classes; // $include-html-button-classes: $include-html-classes; // $include-html-form-classes: $include-html-classes; +// $include-html-custom-form-classes: $include-html-classes; // $include-html-media-classes: $include-html-classes; // $include-html-section-classes: $include-html-classes; +// $include-html-orbit-classes: $include-html-classes; // $include-html-reveal-classes: $include-html-classes; +// $include-html-joyride-classes: $include-html-classes; +// $include-html-clearing-classes: $include-html-classes; // $include-html-alert-classes: $include-html-classes; // $include-html-nav-classes: $include-html-classes; +// $include-html-top-bar-classes: $include-html-classes; // $include-html-label-classes: $include-html-classes; // $include-html-panel-classes: $include-html-classes; // $include-html-pricing-classes: $include-html-classes; // $include-html-progress-classes: $include-html-classes; // $include-html-magellan-classes: $include-html-classes; +// $include-html-tooltip-classes: $include-html-classes; -//// Media Queries +// Media Queries -// $small-screen: emCalc(768px); -$medium-screen: emCalc(960px); //allows for half of 1920 without going responsive -// $large-screen: emCalc(1440px); +// $small-screen: 700px; +// $medium-screen: 1280px; +// $large-screen: 1440px; // $screen: "only screen"; -// $small: "only screen and (min-width:"#{$small-screen}")"; -// $medium: "only screen and (min-width:"#{$medium-screen}")"; -// $large: "only screen and (min-width:"#{$large-screen}")"; +// $small: "only screen and (min-width: #{$small-screen})"; +// $medium: "only screen and (min-width: #{$medium-screen})"; +// $large: "only screen and (min-width: #{$large-screen})"; // $landscape: "only screen and (orientation: landscape)"; // $portrait: "only screen and (orientation: portrait)"; +//// Cursors + +//Custom use example -> $cursor-default-value: url(http://cursors-site.net/path/to/custom/cursor/default.cur),progress; + +// $cursor-crosshair-value: "crosshair"; +// $cursor-default-value: "default"; +// $cursor-pointer-value: "pointer"; +// $cursor-help-value: "help"; + // // Grid Variables // -// $row-width: emCalc(1000px); +// $row-width: 100%; // $column-gutter: emCalc(30px); // $total-columns: 12; @@ -99,12 +121,12 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Block Grid Variables // -//// Maximum number of block grid elements per row +// Maximum number of block grid elements per row // $block-grid-elements: 12; -// $block-grid-default-spacing: 10px; +// $block-grid-default-spacing: emCalc(20px); -//// Enables media queries for block-grid classes. Set to false if writing semantic HTML. +// Enables media queries for block-grid classes. Set to false if writing semantic HTML. // $block-grid-media-queries: true; @@ -112,7 +134,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Typography Variables // -//// Heading font styles +// Heading font styles // $header-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; // $header-font-weight: bold; @@ -123,16 +145,16 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $header-bottom-margin: .5em; // $header-text-rendering: optimizeLegibility; -//// Heading font sizes +// Heading font sizes - $h1-font-size: emCalc(32px); - $h2-font-size: emCalc(28px); - $h3-font-size: emCalc(25px); - $h4-font-size: emCalc(22px); - $h5-font-size: emCalc(18px); - $h6-font-size: 1em; +// $h1-font-size: emCalc(44px); +// $h2-font-size: emCalc(37px); +// $h3-font-size: emCalc(27px); +// $h4-font-size: emCalc(23px); +// $h5-font-size: emCalc(18px); +// $h6-font-size: 1em; -//// Subheaders +// Subheaders // $subheader-line-height: 1.4; // $subheader-font-color: lighten($header-font-color, 30%); @@ -140,12 +162,12 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $subheader-top-margin: .2em; // $subheader-bottom-margin: .5em; -//// styling +// styling // $small-font-size: 60%; // $small-font-color: lighten($header-font-color, 30%); -//// Paragraphs +// Paragraphs // $paragraph-font-family: inherit; // $paragraph-font-weight: normal; @@ -156,34 +178,35 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $paragraph-aside-line-height: 1.35; // $paragraph-aside-font-style: italic; -//// tags +// tags // $code-color: darken($alert-color, 15%); // $code-font-family: Consolas, 'Liberation Mono', Courier, monospace; // $code-font-weight: bold; -//// Anchors +// Anchors // $anchor-text-decoration: none; // $anchor-font-color: $primary-color; // $anchor-font-color-hover: darken($primary-color, 5%); -////
element +//
element // $hr-border-width: 1px; // $hr-border-style: solid; // $hr-border-color: #ddd; // $hr-margin: emCalc(20px); -//// Lists +// Lists -// $list-style-position: outside; -// $list-side-margin: emCalc(18px); +// $list-style-position: inside; +$list-side-margin: emCalc(30px); +// $list-nested-margin: emCalc(20px); // $definition-list-header-weight: bold; // $definition-list-header-margin-bottom: .3em; // $definition-list-margin-bottom: emCalc(12px); -//// Blockquotes +// Blockquotes // $blockquote-font-color: lighten($header-font-color, 30%); // $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px); @@ -192,35 +215,35 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $blockquote-cite-font-color: lighten($header-font-color, 20%); // $blockquote-cite-link-color: $blockquote-cite-font-color; -//// Acronym +// Acronym // $acronym-underline: 1px dotted #ddd; -//// Padding and margin +// Padding and margin // $microformat-padding: emCalc(10px) emCalc(12px); // $microformat-margin: 0 0 emCalc(20px) 0; -//// Border styles +// Border styles // $microformat-border-width: 1px; // $microformat-border-style: solid; // $microformat-border-color: #ddd; -//// Full name font styles +// Full name font styles // $microformat-fullname-font-weight: bold; // $microformat-fullname-font-size: emCalc(15px); -//// Summary font styles +// Summary font styles // $microformat-summary-font-weight: bold; -//// padding +// padding // $microformat-abbr-padding: 0 emCalc(1px); -//// font styles +// font styles // $microformat-abbr-font-weight: bold; // $microformat-abbr-font-decoration: none; @@ -229,17 +252,17 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Form Variables // -//// Base for lots of form spacing and positioning styles +// Base for lots of form spacing and positioning styles // $form-spacing: emCalc(16px); -//// Labels +// Labels -// $label-pointer: pointer; -// $label-font-size: emCalc(14px); -// $label-font-weight: 500; -// $label-font-color: lighten(#000, 30%); -// $label-bottom-margin: emCalc(3px); +// $form-label-pointer: pointer; +// $form-label-font-size: emCalc(14px); +// $form-label-font-weight: 500; +// $form-label-font-color: lighten(#000, 30%); +// $form-label-bottom-margin: emCalc(3px); // $input-font-family: inherit; // $input-font-color: rgba(0,0,0,0.75); // $input-font-size: emCalc(14px); @@ -251,8 +274,9 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $input-border-width: 1px; // $input-disabled-bg: #ddd; // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); +// $input-include-glowing-effect: true; -//// Fieldset border and spacing. +// Fieldset border and spacing. // $fieldset-border-style: solid; // $fieldset-border-width: 1px; @@ -260,13 +284,13 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $fieldset-padding: emCalc(20px); // $fieldset-margin: emCalc(18px) 0; -//// Legends +// Legends // $legend-bg: #fff; // $legend-font-weight: bold; // $legend-padding: 0 emCalc(3px); -//// Prefix and postfix input elements +// Prefix and postfix input elements // $input-prefix-bg: darken(#fff, 5%); // $input-prefix-border-color: darken(#fff, 20%); @@ -276,7 +300,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $input-prefix-font-color: #333; // $input-prefix-font-color-alt: #fff; -//// Error states for inputs and labels +// Error states for inputs and labels // $input-error-message-padding: emCalc(6px) emCalc(4px); // $input-error-message-top: -($form-spacing) - emCalc(5px); @@ -285,19 +309,28 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $input-error-message-font-color: #fff; // $input-error-message-font-color-alt: #333; -//// Padding for buttons. +// Glowing effect of inputs when focused + +// $glowing-effect-fade-time: 0.45s; +// $glowing-effect-color: $input-focus-border-color; + +// +// Button Variables +// + +// Padding for buttons. // $button-tny: emCalc(7px); // $button-sml: emCalc(9px); // $button-med: emCalc(12px); // $button-lrg: emCalc(16px); -//// Display property. +// Display property. // $button-display: inline-block; // $button-margin-bottom: emCalc(20px); -//// Button text styles. +// Button text styles. // $button-font-family: inherit; // $button-font-color: #fff; @@ -309,24 +342,32 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $button-font-weight: bold; // $button-font-align: center; -//// Various hover effects. +// Various hover effects. // $button-function-factor: 10%; -//// Button border styles. +// Button border styles. // $button-border-width: 1px; // $button-border-style: solid; // $button-border-color: darken($primary-color, $button-function-factor); -//// Radius used throughout the core. +// Radius used throughout the core. // $button-radius: $global-radius; -//// Opacity for disabled buttons. +// Opacity for disabled buttons. // $button-disabled-opacity: 0.6; +// +// Button Groups +// + +// Sets the margin for the right side by default, and the left margin if right-to-left direction is used + +// $button-bar-margin-opposite: emCalc(10px); + // // Dropdown Button Variables // @@ -336,28 +377,28 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $dropdown-button-pip-color: #fff; // $dropdown-button-pip-color-alt: #333; -//// Tiny dropdown buttons +// Tiny dropdown buttons // $dropdown-button-padding-tny: $button-tny * 5; // $dropdown-button-pip-size-tny: $button-tny; // $dropdown-button-pip-right-tny: $button-tny * 2; // $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px); -//// Small dropdown buttons +// Small dropdown buttons // $dropdown-button-padding-sml: $button-sml * 5; // $dropdown-button-pip-size-sml: $button-sml; // $dropdown-button-pip-right-sml: $button-sml * 2; // $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px); -//// Medium dropdown buttons +// Medium dropdown buttons // $dropdown-button-padding-med: $button-med * 4 + emCalc(3px); // $dropdown-button-pip-size-med: $button-med - emCalc(3px); // $dropdown-button-pip-right-med: $button-med * 2; // $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px); -//// Large dropdown buttons +// Large dropdown buttons // $dropdown-button-padding-lrg: $button-lrg * 4; // $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px); @@ -368,14 +409,14 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Split Button Variables // -//// Shared styles for Split Buttons +// Shared styles for Split Buttons // $split-button-function-factor: 15%; // $split-button-pip-color: #fff; // $split-button-pip-color-alt: #333; // $split-button-active-bg-tint: rgba(0,0,0,0.1); -//// Tiny split buttons +// Tiny split buttons // $split-button-padding-tny: $button-tny * 9; // $split-button-span-width-tny: $button-tny * 6.5; @@ -383,7 +424,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $split-button-pip-top-tny: $button-tny * 2; // $split-button-pip-left-tny: emCalc(-5px); -//// Small split buttons +// Small split buttons // $split-button-padding-sml: $button-sml * 7; // $split-button-span-width-sml: $button-sml * 5; @@ -391,7 +432,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $split-button-pip-top-sml: $button-sml * 1.5; // $split-button-pip-left-sml: emCalc(-9px); -//// Medium split buttons +// Medium split buttons // $split-button-padding-med: $button-med * 6.4; // $split-button-span-width-med: $button-med * 4; @@ -399,7 +440,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $split-button-pip-top-med: $button-med * 1.5; // $split-button-pip-left-med: emCalc(-9px); -//// Large split buttons +// Large split buttons // $split-button-padding-lrg: $button-lrg * 6; // $split-button-span-width-lrg: $button-lrg * 3.75; @@ -411,58 +452,59 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Alert Variables // -//// Alert padding. +// Alert padding -// $alert-padding-top: emCalc(11px); -// $alert-padding-left: $alert-padding-top; -// $alert-padding-right: $alert-padding-top + emCalc(10px); -// $alert-padding-bottom: $alert-padding-top + emCalc(1px); +// $alert-padding-top: emCalc(11px); +// $alert-padding-default-float: $alert-padding-top; +// $alert-padding-opposite-direction: $alert-padding-top + emCalc(10px); +// $alert-padding-bottom: $alert-padding-top + emCalc(1px); -//// Text style. +// Text style -// $alert-font-weight: bold; -// $alert-font-size: emCalc(14px); -// $alert-font-color: #fff; -// $alert-font-color-alt: darken($secondary-color, 60%); +// $alert-font-weight: bold; +// $alert-font-size: emCalc(14px); +// $alert-font-color: #fff; +// $alert-font-color-alt: darken($secondary-color, 60%); -//// Close hover effect. +// Hover effect -// $alert-function-factor: 10%; +// $alert-function-factor: 10%; -//// Border styles. +// Border Styles -// $alert-border-style: solid; -// $alert-border-width: 1px; -// $alert-border-color: darken($primary-color, $alert-function-factor); -// $alert-bottom-margin: emCalc(20px); +// $alert-border-style: solid; +// $alert-border-width: 1px; +// $alert-border-color: darken($primary-color, $alert-function-factor); +// $alert-bottom-margin: emCalc(20px); -//// Close buttons +// Close Button style -// $alert-close-color: #333; -// $alert-close-position: emCalc(5px); -// $alert-close-font-size: emCalc(22px); -// $alert-close-opacity: 0.3; -// $alert-close-opacity-hover: 0.5; -// $alert-close-padding: 5px 4px 4px; +// $alert-close-color: #333; +// $alert-close-position: emCalc(5px); +// $alert-close-font-size: emCalc(22px); +// $alert-close-opacity: 0.3; +// $alert-close-opacity-hover: 0.5; +// $alert-close-padding: 5px 4px 4px; -//// Border radius +// Border radius + +// $alert-radius: $global-radius; -// $alert-radius: $global-radius; // // Breadcrumb Variables // -//// Background color for the breadcrumb container. +// Background color for the breadcrumb container. // $crumb-bg: lighten($secondary-color, 5%); -//// Padding around the breadcrumbs. +// Padding around the breadcrumbs. // $crumb-padding: emCalc(6px) emCalc(14px) emCalc(9px); // $crumb-side-padding: emCalc(12px); -//// Border styles. +// Border styles. // $crumb-function-factor: 10%; // $crumb-border-size: 1px; @@ -470,7 +512,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $crumb-border-color: darken($crumb-bg, $crumb-function-factor); // $crumb-radius: $global-radius; -//// Various text styles for breadcrumbs. +// Various text styles for breadcrumbs. // $crumb-font-size: emCalc(11px); // $crumb-font-color: $primary-color; @@ -479,7 +521,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $crumb-font-transform: uppercase; // $crumb-link-decor: underline; -//// Slash between breadcrumbs +// Slash between breadcrumbs // $crumb-slash-color: #aaa; // $crumb-slash: "/"; @@ -488,29 +530,29 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Clearing Variables // -//// Background colors for parts of Clearing. +// Background colors for parts of Clearing. // $clearing-bg: #111; // $clearing-caption-bg: $clearing-bg; // $clearing-carousel-bg: #111; // $clearing-img-bg: $clearing-bg; -//// Close button +// Close button // $clearing-close-color: #fff; // $clearing-close-size: 40px; -//// Style the arrows +// Style the arrows // $clearing-arrow-size: 16px; // $clearing-arrow-color: $clearing-close-color; -//// Style captions +// Style captions // $clearing-caption-font-color: #fff; // $clearing-caption-padding: 10px 30px; -//// Make the image and carousel height and style +// Make the image and carousel height and style // $clearing-active-img-height: 75%; // $clearing-carousel-height: 150px; @@ -521,14 +563,19 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Custom Form Variables // -//// Basic form styles input styles +// Basic form styles input styles // $custom-form-border-color: #ccc; +// $custom-form-border-size: 1px; // $custom-form-bg: #fff; // $custom-form-bg-disabled: #ddd; +// $custom-form-input-size: 16px; // $custom-form-check-color: #222; +// $custom-form-check-size: 14px; +// $custom-form-radio-size: 8px; +// $custom-form-checkbox-radius: 0px; -//// Custom select form element. +// Custom select form element. // $custom-select-bg: #fff; // $custom-select-fade-to-color: #f3f3f3; @@ -540,7 +587,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $custom-select-font-color-selected: #141414; // $custom-select-disabled-color: #888; -//// Custom select dropdown element. +// Custom select dropdown element. // $custom-dropdown-height: 200px; // $custom-dropdown-bg: #fff; @@ -562,30 +609,30 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Dropdown Variables // -//// Height and width styles. +// Height and width styles. // $f-dropdown-max-width: 200px; // $f-dropdown-height: auto; // $f-dropdown-max-height: none; // $f-dropdown-margin-top: 2px; -//// Background color +// Background color // $f-dropdown-bg: #fff; -//// Border styles for dropdowns. +// Border styles for dropdowns. // $f-dropdown-border-style: solid; // $f-dropdown-border-width: 1px; // $f-dropdown-border-color: darken(#fff, 20%); -//// Triangle pip. +// Triangle pip. // $f-dropdown-triangle-size: 6px; // $f-dropdown-triangle-color: #fff; // $f-dropdown-triangle-side-offset: 10px; -//// List elements. +// List elements. // $f-dropdown-list-style: none; // $f-dropdown-font-color: #555; @@ -595,7 +642,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $f-dropdown-list-hover-bg: #eeeeee; // $dropdown-mobile-left: 0; -//// When the dropdown has custom content. +// When the dropdown has custom content. // $f-dropdown-content-padding: emCalc(20px); @@ -603,13 +650,13 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Flex Video Variables // -//// Video container padding and margins +// Video container padding and margins // $flex-video-padding-top: emCalc(25px); // $flex-video-padding-bottom: 67.5%; // $flex-video-margin-bottom: emCalc(16px); -//// Widescreen bottom padding +// Widescreen bottom padding // $flex-video-widescreen-padding-bottom: 57.25%; @@ -617,21 +664,21 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Inline List Variables // -//// Margins and padding of the inline list. +// Margins and padding of the inline list. // $inline-list-margin-bottom: emCalc(17px) emCalc(-22px ); // $inline-list-margin: 0 0; // $inline-list-padding: 0; -//// Overflow of the inline list. +// Overflow of the inline list. // $inline-list-overflow: hidden; -//// List items +// List items // $inline-list-display: block; -//// Elments within list items +// Elments within list items // $inline-list-children-display: block; @@ -639,7 +686,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Joyride Variables // -//// Joyride styles +// Joyride styles // $joyride-tip-bg: rgb(0,0,0); // $joyride-tip-default-width: 300px; @@ -648,29 +695,29 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $joyride-tip-radius: 4px; // $joyride-tip-position-offset: 22px; -//// Tip font styles +// Tip font styles // $joyride-tip-font-color: #fff; // $joyride-tip-font-size: emCalc(14px); // $joyride-tip-header-weight: bold; -//// Changes the nub size +// Changes the nub size // $joyride-tip-nub-size: 14px; -//// Adjusts the styles for the timer when its enabled +// Adjusts the styles for the timer when its enabled // $joyride-tip-timer-width: 50px; // $joyride-tip-timer-height: 3px; // $joyride-tip-timer-color: #666; -//// Changes up the styles for the close button +// Changes up the styles for the close button // $joyride-tip-close-color: #777; // $joyride-tip-close-size: 30px; // $joyride-tip-close-weight: normal; -//// When Joyride is filling the screen, style for the bg +// When Joyride is filling the screen, style for the bg // $joyride-screenfill: rgba(0,0,0,0.5); @@ -678,7 +725,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Keystroke Variables // -//// Text styles. +// Text styles. // $keystroke-font: "Consolas", "Menlo", "Courier", monospace; // $keystroke-font-size: emCalc(15px); @@ -686,11 +733,11 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $keystroke-font-color-alt: #fff; // $keystroke-function-factor: 7%; -//// Keystroke padding. +// Keystroke padding. // $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px); -//// Background and border styles. +// Background and border styles. // $keystroke-bg: darken(#fff, $keystroke-function-factor); // $keystroke-border-style: solid; @@ -702,12 +749,12 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Label Variables // -//// Style the labels +// Style the labels // $label-padding: emCalc(3px) emCalc(10px) emCalc(4px); // $label-radius: $global-radius; -//// We use these to style the label text +// We use these to style the label text // $label-font-sizing: emCalc(14px); // $label-font-weight: bold; @@ -718,7 +765,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Magellan Variables // -//// Basic visual styles +// Basic visual styles // $magellan-bg: #fff; // $magellan-padding: 10px; @@ -727,49 +774,49 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Orbit Settings // -//// Caption styles +// Caption styles // $orbit-container-bg: #f5f5f5; -// $orbit-caption-bg-old-browser: #000; // $orbit-caption-bg-old: rgb(0,0,0); // $orbit-caption-bg: rgba(0,0,0,0.6); // $orbit-caption-font-color: #fff; -//// Left/right nav styles +// Left/right nav styles // $orbit-nav-bg-old: rgb(0,0,0); // $orbit-nav-bg: rgba(0,0,0,0.6); -//// Timer styles +// Timer styles // $orbit-timer-bg-old: rgb(0,0,0); // $orbit-timer-bg: rgba(0,0,0,0.6); -//// Bullet nav styles +// Bullet nav styles // $orbit-bullet-nav-color: #999; // $orbit-bullet-nav-color-active: #222; -//// Slide numbers +// Slide numbers -// $orbit-slide-number-bg: rgb(0,0,0); +// $orbit-slide-number-bg: rgba(0,0,0,0); // $orbit-slide-number-font-color: #fff; // $orbit-slide-number-padding: emCalc(5px); -//// Margin for when Orbit is stacked on small screens +// Graceful Loading Wrapper and preloader -// $stack-on-small-margin-bottom: emCalc(20px); // Doesn't quite work yet +// $wrapper-class: "slideshow-wrapper"; +// $preloader-class: "preloader" ; // // Pagination Variables // -//// Pagination container +// Pagination container // $pagination-height: emCalc(24px); // $pagination-margin: emCalc(-5px); -//// List-item properties +// List-item properties // $pagination-li-float: $default-float; // $pagination-li-height: emCalc(24px); @@ -777,47 +824,47 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $pagination-li-font-size: emCalc(14px); // $pagination-li-margin: emCalc(5px); -//// Pagination anchor links +// Pagination anchor links // $pagination-link-pad: emCalc(1px) emCalc(7px) emCalc(1px); // $pagination-link-font-color: #999; // $pagination-link-active-bg: darken(#fff, 10%); -//// Disabled anchor links +// Disabled anchor links -// $pagination-link-unavailable-cursor: default; +// $pagination-link-unavailable-cursor: $cursor-default-value; // $pagination-link-unavailable-font-color: #999; // $pagination-link-unavailable-bg-active: transparent; -//// Currently selected anchor links +// Currently selected anchor links // $pagination-link-current-background: $primary-color; // $pagination-link-current-font-color: #fff; // $pagination-link-current-font-weight: bold; -// $pagination-link-current-cursor: default; +// $pagination-link-current-cursor: $cursor-default-value; // $pagination-link-current-active-bg: $primary-color; // // Panel Variables // -//// Background and border styles +// Background and border styles // $panel-bg: darken(#fff, 5%); // $panel-border-style: solid; // $panel-border-size: 1px; -//// Control how much we darken things on hover +// Control how much we darken things on hover // $panel-function-factor: 10%; // $panel-border-color: darken($panel-bg, $panel-function-factor); -//// Inner padding and bottom margin +// Inner padding and bottom margin // $panel-margin-bottom: emCalc(20px); // $panel-padding: emCalc(20px); -//// Font colors +// Font colors // $panel-font-color: #333; // $panel-font-color-alt: #fff; @@ -826,15 +873,15 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Pricing Table Variables // -//// Border color +// Border color // $price-table-border: solid 1px #ddd; -//// Bottom margin of the pricing table +// Bottom margin of the pricing table // $price-table-margin-bottom: emCalc(20px); -//// Control the title styles +// Control the title styles // $price-title-bg: #ddd; // $price-title-padding: emCalc(15px) emCalc(20px); @@ -843,7 +890,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $price-title-weight: bold; // $price-title-size: emCalc(16px); -//// Control the price styles +// Control the price styles // $price-money-bg: #eee; // $price-money-padding: emCalc(15px) emCalc(20px); @@ -852,7 +899,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $price-money-weight: normal; // $price-money-size: emCalc(20px); -//// Description styles +// Description styles // $price-bg: #fff; // $price-desc-color: #777; @@ -863,7 +910,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $price-desc-line-height: 1.4; // $price-desc-bottom-border: dotted 1px #ddd; -//// List item styles +// List item styles // $price-item-color: #333; // $price-item-padding: emCalc(15px); @@ -872,7 +919,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $price-item-weight: normal; // $price-item-bottom-border: dotted 1px #ddd; -//// CTA area styles +// CTA area styles // $price-cta-bg: #f5f5f5; // $price-cta-align: center; @@ -882,24 +929,24 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Progress Bar Variables // -//// Progress bar height +// Progress bar height // $progress-bar-height: emCalc(25px); // $progress-bar-color: transparent; -//// Border styles +// Border styles // $progress-bar-border-color: darken(#fff, 20%); // $progress-bar-border-size: 1px; // $progress-bar-border-style: solid; // $progress-bar-border-radius: $global-radius; -//// Margin & padding +// Margin & padding // $progress-bar-pad: emCalc(2px); // $progress-bar-margin-bottom: emCalc(10px); -//// Meter colors +// Meter colors // $progress-meter-color: $primary-color; // $progress-meter-secondary-color: $secondary-color; @@ -910,12 +957,12 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Reveal Variables // -//// Reveal overlay. +// Reveal overlay. // $reveal-overlay-bg: rgba(#000, .45); // $reveal-overlay-bg-old: #000; -//// Modal itself. +// Modal itself. // $reveal-modal-bg: #fff; // $reveal-position-top: 50px; @@ -923,7 +970,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $reveal-modal-padding: emCalc(20px); // $reveal-box-shadow: 0 0 10px rgba(#000,.4); -//// Reveal close button +// Reveal close button // $reveal-close-font-size: emCalc(22px); // $reveal-close-top: emCalc(8px); @@ -931,63 +978,75 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $reveal-close-color: #aaa; // $reveal-close-weight: bold; -//// Modal border +// Modal border // $reveal-border-style: solid; // $reveal-border-width: 1px; // $reveal-border-color: #666; +// $reveal-modal-class: "reveal-modal"; +// $close-reveal-modal-class: "close-reveal-modal"; + // // Section Variables // -//// Padding and hover factor +// Padding and hover factor -// $section-padding: emCalc(15px); +// $section-title-padding: emCalc(15px); +// $section-content-padding: emCalc(15px); // $section-function-factor: 10%; -//// Titles +// Titles // $section-title-color: #333; // $section-title-bg: #efefef; // $section-title-bg-active: darken($section-title-bg, $section-function-factor); // $section-title-bg-active-tabs: #fff; +// $section-title-bg-hover: darken($section-title-bg, $section-function-factor/2); -//// Border size +// Border size // $section-border-size: 1px; // $section-border-style: solid; // $section-border-color: #ccc; -//// Color of the background and some size options +// Font controls + +// $section-font-size: emCalc(14px); + +// Control the color of the background and some size options // $section-content-bg: #fff; // $section-vertical-nav-min-width: emCalc(200px); // $section-vertical-tabs-title-width: emCalc(200px); // $section-bottom-margin: emCalc(20px); +// $title-selector: ".title"; +// $content-selector: ".content"; + // // Side Nav Variables // -//// Padding +// Padding // $side-nav-padding: emCalc(14px) 0; -//// List styles +// List styles // $side-nav-list-type: none; // $side-nav-list-position: inside; // $side-nav-list-margin: 0 0 emCalc(7px) 0; -//// Link styles +// Link styles // $side-nav-link-color: $primary-color; // $side-nav-link-color-active: lighten(#000, 30%); // $side-nav-font-size: emCalc(14px); // $side-nav-font-weight: bold; -//// Border styles +// Border styles // $side-nav-divider-size: 1px; // $side-nav-divider-style: solid; @@ -997,12 +1056,12 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Sub Nav Variables // -//// Margin and padding +// Margin and padding // $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px); // $sub-nav-list-padding-top: emCalc(4px); -//// Definition +// Definition // $sub-nav-font-size: emCalc(14px); // $sub-nav-font-color: #999; @@ -1010,26 +1069,26 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $sub-nav-text-decoration: none; // $sub-nav-border-radius: 1000px; -//// Active item styles +// Active item styles // $sub-nav-active-font-weight: bold; // $sub-nav-active-bg: $primary-color; // $sub-nav-active-color: #fff; // $sub-nav-active-padding: emCalc(3px) emCalc(9px); -// $sub-nav-active-cursor: default; +// $sub-nav-active-cursor: $cursor-default-value; // // Switch Variables // -//// Border styles and background colors for the switch container +// Border styles and background colors for the switch container // $switch-border-color: darken(#fff, 20%); // $switch-border-style: solid; // $switch-border-width: 1px; // $switch-bg: #fff; -//// Switch heights for our default classes +// Switch heights for our default classes // $switch-height-tny: 22px; // $switch-height-sml: 28px; @@ -1037,7 +1096,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $switch-height-lrg: 44px; // $switch-bottom-margin: emCalc(20px); -//// Font sizes for our classes. +// Font sizes for our classes. // $switch-font-size-tny: 11px; // $switch-font-size-sml: 12px; @@ -1045,7 +1104,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $switch-font-size-lrg: 17px; // $switch-label-side-padding: 6px; -//// Switch-paddle +// Switch-paddle // $switch-paddle-bg: #fff; // $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%); @@ -1057,7 +1116,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $switch-positive-color: lighten($success-color, 50%); // $switch-negative-color: #f5f5f5; -//// Outline Style for tabbing through switches +// Outline Style for tabbing through switches // $switch-label-outline: 1px dotted #888; @@ -1065,18 +1124,18 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Table Variables // -//// Background color for the table and even rows +// Background color for the table and even rows // $table-bg: #fff; // $table-even-row-bg: #f9f9f9; -//// Table cell border style +// Table cell border style // $table-border-style: solid; // $table-border-size: 1px; // $table-border-color: #ddd; -//// Table head styles +// Table head styles // $table-head-bg: #f5f5f5; // $table-head-font-size: emCalc(14px); @@ -1084,14 +1143,14 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $table-head-font-weight: bold; // $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px); -//// Row padding and font styles +// Row padding and font styles // $table-row-padding: emCalc(9px) emCalc(10px); // $table-row-font-size: emCalc(14px); // $table-row-font-color: #222; // $table-line-height: emCalc(18px); -//// Display and margin of tables +// Display and margin of tables // $table-display: table-cell; // $table-margin-bottom: emCalc(20px); @@ -1100,7 +1159,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // Image Thumbnail Variables // -//// Border styles +// Border styles // $thumb-border-style: solid; // $thumb-border-width: 4px; @@ -1108,7 +1167,7 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $thumb-box-shadow: 0 0 0 1px rgba(#000,.2); // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5); -//// Radius and transition speed for thumbs +// Radius and transition speed for thumbs // $thumb-radius: $global-radius; // $thumb-transition-speed: 200ms; @@ -1136,3 +1195,75 @@ $medium-screen: emCalc(960px); //allows for half of 1920 without going responsiv // $tooltip-font-size-sml: emCalc(14px); // $tooltip-radius: $global-radius; // $tooltip-pip-size: 5px; + +// +// Top Bar Variables +// + +// Background color for the top bar + +$topbar-bg: $primary-color; + +// Height and margin + +$topbar-height: 45px; +// $topbar-margin-bottom: emCalc(30px); + +// Control Input height for top bar + +// $topbar-input-height: 2.45em; + +// Controlling the styles for the title in the top bar + +// $topbar-title-weight: bold; +// $topbar-title-font-size: emCalc(17px); + +// Style the top bar dropdown elements + +$topbar-dropdown-bg: darken($topbar-bg, 5%); +// $topbar-dropdown-link-color: #fff; +$topbar-dropdown-link-bg: lighten($topbar-bg, 5%); +// $topbar-dropdown-toggle-size: 5px; +// $topbar-dropdown-toggle-color: #fff; +// $topbar-dropdown-toggle-alpha: 0.5; + +// Set the link colors and styles for top-level nav + +// $topbar-link-color: #fff; +// $topbar-link-color-hover: #fff; +// $topbar-link-color-active: #fff; +// $topbar-link-weight: bold; +// $topbar-link-font-size: emCalc(13px); +// $topbar-link-hover-lightness: -30%; // Darken by 30% +$topbar-link-bg-hover: darken($topbar-bg, 3%); +$topbar-link-bg-active: darken($topbar-bg, 3%); + +// $topbar-dropdown-label-color: #555; +// $topbar-dropdown-label-text-transform: uppercase; +// $topbar-dropdown-label-font-weight: bold; +// $topbar-dropdown-label-font-size: emCalc(10px); + +// Top menu icon styles + +// $topbar-menu-link-transform: uppercase; +// $topbar-menu-link-font-size: emCalc(13px); +// $topbar-menu-link-weight: bold; +// $topbar-menu-link-color: #fff; +// $topbar-menu-icon-color: #fff; +$topbar-menu-link-color-toggled: #eee; +$topbar-menu-icon-color-toggled: #eee; + +// Transitions and breakpoint styles + +// $topbar-transition-speed: 300ms; +// $topbar-breakpoint: 700px; // Change to 9999px for always mobile layout +// $topbar-media-query: "only screen and (min-width: #{$topbar-breakpoint})"; + +// Divider Styles + +// $topbar-divider-border-bottom: solid 1px lighten($topbar-bg, 10%); +// $topbar-divider-border-top: solid 1px darken($topbar-bg, 10%); + +// Sticky Class + +// $topbar-sticky-class: ".sticky"; diff --git a/static/sass/normalize.scss b/static/sass/_normalize.scss similarity index 100% rename from static/sass/normalize.scss rename to static/sass/_normalize.scss diff --git a/static/sass/app.scss b/static/sass/app.scss index 2530e4f..d4575ac 100644 --- a/static/sass/app.scss +++ b/static/sass/app.scss @@ -1,14 +1,16 @@ -/// Global Foundation Settings -@import "settings"; //mainly foundation settings atm will merge with rangertbc/settings later +// Global Foundation Settings +@import "foundationSettings"; -/// List of Foundation components in import order used elsewhere +// Comment out this import if you don't want to use normalize +@import "normalize"; -// @import "foundation/components/global"; // *always required -// @import "foundation/components/grid"; +// Foundation Imports +@import "foundation/components/global"; // *always required +@import "foundation/components/grid"; // @import "foundation/components/visibility"; // @import "foundation/components/block-grid"; -// @import "foundation/components/type"; -// @import "foundation/components/buttons"; +@import "foundation/components/type"; +@import "foundation/components/buttons"; // @import "foundation/components/forms"; // *requires components/buttons // @import "foundation/components/custom-forms"; // *requires components/buttons, components/forms // @import "foundation/components/button-groups"; // *requires components/buttons @@ -16,7 +18,7 @@ // @import "foundation/components/split-buttons"; // *requires components/buttons // @import "foundation/components/flex-video"; // @import "foundation/components/section"; -// @import "foundation/components/top-bar"; // *requires components/grid +@import "foundation/components/top-bar"; // *requires components/grid // @import "foundation/components/orbit"; // @import "foundation/components/reveal"; // @import "foundation/components/joyride"; @@ -25,21 +27,182 @@ // @import "foundation/components/breadcrumbs"; // @import "foundation/components/keystrokes"; // @import "foundation/components/labels"; -// @import "foundation/components/inline-lists"; +@import "foundation/components/inline-lists"; // @import "foundation/components/pagination"; -// @import "foundation/components/panels"; +@import "foundation/components/panels"; // @import "foundation/components/pricing-tables"; // @import "foundation/components/progress-bars"; // @import "foundation/components/side-nav"; // @import "foundation/components/sub-nav"; // @import "foundation/components/switch"; // @import "foundation/components/magellan"; -// @import "foundation/components/tables"; +@import "foundation/components/tables"; // @import "foundation/components/thumbs"; // @import "foundation/components/tooltips"; // @import "foundation/components/dropdown"; -/// Custom Site Settings -@import "rangertbc/base"; // Currently imports all components +// VoltaicIdeas Imports +$set: 'pelican-red'; +@import "voltaicideas/pelican-red/icons"; // icon fonts -/// Icon Fonts (TODO once Finalized) +@import "compass/css3/box-shadow"; +@import "compass/css3/border-radius"; +@import "compass/css3/text-shadow"; + +html{ height: 100%; } +body{ height: 100%; } + +//// Topbar fixes and media queries + +// Fix topbar .hover issue +.top-bar { + margin-bottom: 0; + #searchInput { + width: 100%; + } +} +.top-bar-section ul li.hover > a { background: $topbar-link-bg-hover; color: $topbar-link-color-hover; } +@media #{$topbar-media-query} { + .top-bar{ + @include box-shadow( 0 2px 2px rgba( 50, 50, 50, 0.4 ) ); + .dropdown{ + @include box-shadow( 0 2px 2px rgba( 50, 50, 50, 0.4 ) ); + } + .name h1 a{ + color: darken( $primary-color, 4% ); + @include text-shadow( 0px 1px 0px rgba( 0, 0, 0, 0.3 ) ); + &:hover { + color: #fff; + } + } + } +} + +//// Component Styles +.social-area { + li a:not(.button) { + padding: 0 10px; + } +} +#mainFooter { + font-size: 0.8em; + .no-bullet { + margin-left: 0; + } +} + +// Wiki Styling +#mw-content { + padding: 0 0.6em; + margin-bottom: 1.25em; + article { + background-color: #fff; + padding: 0.5em 0.5em 0.5em 0.8em; + @include box-shadow( 0 0 0.5em rgba( 50, 50, 50, 0.4 ) ); + @include border-radius( 2px ); + } + a{ + word-wrap: break-word; + &.new { + color: $alert-color; + } + } + #mw-content-header { + h1 { + border-bottom: 1px solid darken( $secondary-color, 10% ) + } + } + #mw-content-text { + #toc { + margin-left: 1em; + float: right; + @extend .columns; + @extend .large-3; + font-size: 0.9em; + #toctitle { + font-size: 0.8em; + margin-left: 1em; + position: relative; + h2 {border: none;} + .toctoggle { + position: absolute; + right: 0; + top: 1em; + } + } + + ul { @extend .no-bullet; margin-left: 1em; } + } + .mw-editsection{ + float: right; + a{ + color: $secondary-color; + &:hover { + color: darken( $secondary-color, 10% ); + } + } + } + h2 { border-bottom: 1px solid darken( $secondary-color, 10% ) } + pre { + background-color: #f5f2f0; + margin: 0.5em 0; + padding: 1em; + overflow: auto; + } + + //History page + #pagehistory { + .selected {border: 1px solid darken( $secondary-color, 20% ); background-color: $secondary-color; } + } + + //Edit page + #editform{ + textarea{ + resize: vertical; + height: 400px; + } + } + + } + #catlinks { + @include border-radius( 3px ); + @include panel( darken( #fff, 5% ), emCalc( 7px ) ); + margin-bottom: 0; + ul { + display: inline; + margin-left: 0.5em; + li { display: inline-block; margin-right: 0.5em; } + } + } + .catlinks-allhidden{ + display: none; + } +} +@media #{$small} { + #content-actions { + .inline-list { + li { + width: auto; + margin-left: 15px; + a { color: $primary-color; } + } + .selected a{ color: darken( $secondary-color, 10% ); } + } + } + #mw-content { + } +} + +//// Print Visibility styling +.printfooter, #siteSub{ + display: none; +} +@media print{ + body { padding-top: 0 !important; } + .printfooter, #siteSub{ + display: block; + } + #footerPlaces, #footerIcons, .top-bar, .editsection, .toctoggle, #content-actions, #messageArea, .mw-editsection{ + display: none; + } +} diff --git a/static/sass/icons.scss b/static/sass/icons.scss deleted file mode 100644 index 7acd5ab..0000000 --- a/static/sass/icons.scss +++ /dev/null @@ -1,813 +0,0 @@ -// -// Sass Icon Fonts -// - -// Main File icons.scss -// Version: 0.2 -// Created By: Andrew Senetar -// Date: May, 19 2013 -// Used: Font Awesome Styles, Foundation Icon Fonts Scss as Starting; animation from Fontello - -@import "iconSettings"; - -@include face(#{$set}); //@font-face - -//// global icon styles (from Foundation Icons + Font Awesome) - -[class*="#{$classPrefix}"] { - background-image: none; - background-position: 0% 0%; - background-repeat: repeat; - display: inline; - height: auto; - width: auto; - vertical-align: baseline; - line-height: 1; - margin-top: 0; - speak: none; - font-family: '#{$set}'; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - text-decoration: inherit; - -webkit-font-smoothing: antialiased; -} - -[class*="#{$classPrefix}"]:before { - text-decoration: inherit; - display: inline-block; - speak: none; -} - -//// Icon borders (from Font Awesome) - -[class*="border #{$classPrefix}"] { - border: solid 1px $iconBorderColor; - padding: .2em .25em .15em; - @include border-radius(3px); -} - -//// Icon sizes (from Font Awesome) - -[class*="large #{$classPrefix}"]:before { - vertical-align: -10%; - font-size: 1.333em; -} - -[class*="huge #{$classPrefix}"]:before { - vertical-align: -17%; - font-size: 1.75em; -} - -[class*="2x #{$classPrefix}"] { - font-size: 2em; - & .border { - border-width: 2px; - @include border-radius(4px); - } -} - -[class*="3x #{$classPrefix}"] { - font-size: 3em; - & .border { - border-width: 3px; - @include border-radius(5px); - } -} - -[class*="4x #{$classPrefix}"] { - font-size: 4em; - & .border { - border-width: 4px; - @include border-radius(6px); - } -} - -[class*="5x #{$classPrefix}"] { - font-size: 5em; - & .border { - border-width: 5px; - @include border-radius(7px); - } -} - -//// Colors (from Font Awesome) - -[class*="muted #{$classPrefix}"]{ - color: $iconMuted; -} - -[class*="light #{$classPrefix}"]{ - color: $iconLight; -} - -[class*="dark #{$classPrefix}"]{ - color: $iconDark; -} - -//// Fixes - -//// makes sure icons active on rollover in links (from Font Awesome) - -a [class*="#{$classPrefix}"]:before { - display: inline; -} - -//// Animation for Spinners (from Fontello) - -@include keyframes(spin){ - 0%{ - @include transform(rotate(0deg)); - } - 100%{ - @include transform(rotate(359deg)); - } -} - -.animate-spin{ - @include animation(spin 2s infinite linear); -} - -//// Actual Icons - -@include i-class('duckduckgo','a15'); -@include i-class('aim','a16'); -@include i-class('delicious','a17'); -@include i-class('paypal-1','a18'); -@include i-class('flattr-1','a19'); -@include i-class('android','a1a'); -@include i-class('eventful','a1b'); -@include i-class('smashmag','a1c'); -@include i-class('gplus-2','a1d'); -@include i-class('plus','816'); -@include i-class('plus-1','936'); -@include i-class('wikipedia','a1e'); -@include i-class('lanyrd','a1f'); -@include i-class('minus','819'); -@include i-class('minus-1','938'); -@include i-class('calendar-2','a20'); -@include i-class('stumbleupon-1','a21'); -@include i-class('fivehundredpx','a22'); -@include i-class('pinterest-1','a23'); -@include i-class('bitcoin','a24'); -@include i-class('w3c','a25'); -@include i-class('foursquare','a26'); -@include i-class('html5','a27'); -@include i-class('ie','a28'); -@include i-class('call','a29'); -@include i-class('grooveshark','a2a'); -@include i-class('ninetyninedesigns','a2b'); -@include i-class('forrst','a2c'); -@include i-class('digg','a2d'); -@include i-class('spotify-1','a2e'); -@include i-class('reddit','a2f'); -@include i-class('guest','a30'); -@include i-class('gowalla','a31'); -@include i-class('at','a9d'); -@include i-class('appstore','a32'); -@include i-class('blogger','a33'); -@include i-class('cc-1','a34'); -@include i-class('dribbble-1','a35'); -@include i-class('evernote-1','a36'); -@include i-class('flickr-1','a37'); -@include i-class('google','a38'); -@include i-class('viadeo','a39'); -@include i-class('instapaper','a3a'); -@include i-class('weibo','a3b'); -@include i-class('klout','a3c'); -@include i-class('linkedin-2','a3d'); -@include i-class('meetup','a3e'); -@include i-class('vk','a3f'); -@include i-class('plancast','a40'); -@include i-class('disqus','a41'); -@include i-class('rss-2','a42'); -@include i-class('skype-1','a43'); -@include i-class('twitter-2','a44'); -@include i-class('youtube','a45'); -@include i-class('vimeo-1','a46'); -@include i-class('windows','a47'); -@include i-class('xing','a48'); -@include i-class('yahoo','a49'); -@include i-class('chrome','a4a'); -@include i-class('email','a4b'); -@include i-class('macstore','a4c'); -@include i-class('myspace','a4d'); -@include i-class('podcast','a4e'); -@include i-class('amazon','a4f'); -@include i-class('steam','a50'); -@include i-class('cloudapp','a51'); -@include i-class('dropbox-1','a52'); -@include i-class('ebay','a53'); -@include i-class('facebook-2','a54'); -@include i-class('github-2','a55'); -@include i-class('googleplay','a57'); -@include i-class('itunes','a58'); -@include i-class('plurk','a59'); -@include i-class('songkick','a5a'); -@include i-class('lastfm-1','a5b'); -@include i-class('gmail','a5c'); -@include i-class('pinboard','a5d'); -@include i-class('openid','a5e'); -@include i-class('quora','a5f'); -@include i-class('soundcloud-1','a60'); -@include i-class('tumblr-1','a61'); -@include i-class('eventasaurus','a62'); -@include i-class('wordpress','a63'); -@include i-class('yelp','a64'); -@include i-class('intensedebate','a65'); -@include i-class('eventbrite','a66'); -@include i-class('scribd','a67'); -@include i-class('posterous','a68'); -@include i-class('stripe','a69'); -@include i-class('pilcrow','a9c'); -@include i-class('opentable','a6a'); -@include i-class('cart','a6b'); -@include i-class('print-2','a6c'); -@include i-class('angellist','a6d'); -@include i-class('instagram-1','a6e'); -@include i-class('dwolla','a6f'); -@include i-class('appnet','a70'); -@include i-class('statusnet','a71'); -@include i-class('acrobat','a72'); -@include i-class('drupal','a73'); -@include i-class('buffer','a74'); -@include i-class('pocket','a75'); -@include i-class('github-circled-2','a56'); -@include i-class('bitbucket','a76'); -@include i-class('lego','a77'); -@include i-class('login-2','a78'); -@include i-class('stackoverflow','a79'); -@include i-class('hackernews','a7a'); -@include i-class('lkdto','a7b'); -@include i-class('info','81e'); -@include i-class('left-thin','88c'); -@include i-class('left-1','997'); -@include i-class('up-thin','88e'); -@include i-class('up-1','999'); -@include i-class('right-thin','88d'); -@include i-class('right-1','998'); -@include i-class('down-thin','88b'); -@include i-class('down-1','996'); -@include i-class('level-up','893'); -@include i-class('level-down','892'); -@include i-class('switch','896'); -@include i-class('infinity','8c2'); -@include i-class('plus-squared','818'); -@include i-class('minus-squared','81b'); -@include i-class('home-1','93c'); -@include i-class('home','821'); -@include i-class('keyboard','83a'); -@include i-class('erase','8c3'); -@include i-class('pause-1','9aa'); -@include i-class('pause','899'); -@include i-class('fast-fw','9af'); -@include i-class('fast-forward','89d'); -@include i-class('fast-backward','89e'); -@include i-class('fast-bw','9b0'); -@include i-class('to-end-1','9ab'); -@include i-class('to-end','89b'); -@include i-class('to-start','89c'); -@include i-class('to-start-1','9ad'); -@include i-class('hourglass','863'); -@include i-class('stop','898'); -@include i-class('stop-1','9a9'); -@include i-class('up-dir','886'); -@include i-class('up-dir-1','987'); -@include i-class('play-1','9a7'); -@include i-class('play','897'); -@include i-class('right-dir','885'); -@include i-class('right-dir-1','989'); -@include i-class('down-dir','883'); -@include i-class('down-dir-1','986'); -@include i-class('left-dir','884'); -@include i-class('left-dir-1','988'); -@include i-class('adjust','867'); -@include i-class('cloud-1','9bb'); -@include i-class('cloud','8b2'); -@include i-class('umbrella','9bd'); -@include i-class('star','808'); -@include i-class('star-1','923'); -@include i-class('star-empty','809'); -@include i-class('star-empty-1','924'); -@include i-class('check-1','9df'); -@include i-class('cup','846'); -@include i-class('left-hand','99b'); -@include i-class('up-hand','99c'); -@include i-class('right-hand','99a'); -@include i-class('down-hand','99d'); -@include i-class('menu','811'); -@include i-class('th-list','92f'); -@include i-class('moon','8b5'); -@include i-class('heart-empty-1','922'); -@include i-class('heart-empty','807'); -@include i-class('heart-1','921'); -@include i-class('heart','806'); -@include i-class('note','800'); -@include i-class('music-1','91d'); -@include i-class('note-beamed','801'); -@include i-class('layout','810'); -@include i-class('th','92e'); -@include i-class('flag-1','949'); -@include i-class('flag','82a'); -@include i-class('tools','856'); -@include i-class('cog','855'); -@include i-class('cog-1','96e'); -@include i-class('attention','83e'); -@include i-class('attention-1','95f'); -@include i-class('flash','8b4'); -@include i-class('flash-1','9bc'); -@include i-class('record','89a'); -@include i-class('cloud-thunder','8b3'); -@include i-class('cog-alt','96f'); -@include i-class('scissors','9d3'); -@include i-class('tape','8c8'); -@include i-class('flight','8b6'); -@include i-class('flight-1','9be'); -@include i-class('mail','805'); -@include i-class('mail-1','91f'); -@include i-class('edit','956'); -@include i-class('pencil','836'); -@include i-class('pencil-1','955'); -@include i-class('feather','837'); -@include i-class('check','812'); -@include i-class('ok','930'); -@include i-class('ok-circle','931'); -@include i-class('cancel','813'); -@include i-class('cancel-1','933'); -@include i-class('cancel-circled','814'); -@include i-class('cancel-circle','934'); -@include i-class('asterisk','9e3'); -@include i-class('cancel-squared','815'); -@include i-class('help','81c'); -@include i-class('attention-circle','960'); -@include i-class('quote','833'); -@include i-class('plus-circled','817'); -@include i-class('plus-circle','937'); -@include i-class('minus-circled','81a'); -@include i-class('minus-circle','939'); -@include i-class('right','881'); -@include i-class('direction','844'); -@include i-class('forward-1','951'); -@include i-class('forward','832'); -@include i-class('ccw-1','9a3'); -@include i-class('ccw','88f'); -@include i-class('cw','890'); -@include i-class('cw-1','9a2'); -@include i-class('left','880'); -@include i-class('up','882'); -@include i-class('down','87f'); -@include i-class('resize-vertical','97f'); -@include i-class('resize-horizontal','980'); -@include i-class('eject','9b1'); -@include i-class('list-add','8a6'); -@include i-class('list','8a5'); -@include i-class('left-bold','888'); -@include i-class('right-bold','889'); -@include i-class('up-bold','88a'); -@include i-class('down-bold','887'); -@include i-class('user-add','80c'); -@include i-class('star-half','925'); -@include i-class('ok-circle2','932'); -@include i-class('cancel-circle2','935'); -@include i-class('help-circle','93a'); -@include i-class('help-circled','81d'); -@include i-class('info-circle','93b'); -@include i-class('info-circled','81f'); -@include i-class('th-large','92d'); -@include i-class('eye','826'); -@include i-class('eye-1','943'); -@include i-class('eye-off','944'); -@include i-class('tag-1','945'); -@include i-class('tag','827'); -@include i-class('tags','946'); -@include i-class('camera-alt','92c'); -@include i-class('upload-cloud','82f'); -@include i-class('reply','830'); -@include i-class('reply-all','831'); -@include i-class('code','834'); -@include i-class('export','835'); -@include i-class('export-1','954'); -@include i-class('print','838'); -@include i-class('print-1','957'); -@include i-class('retweet-1','958'); -@include i-class('retweet','839'); -@include i-class('comment-1','959'); -@include i-class('comment','83b'); -@include i-class('chat','83c'); -@include i-class('chat-1','95a'); -@include i-class('vcard','840'); -@include i-class('address','841'); -@include i-class('location-1','961'); -@include i-class('location','842'); -@include i-class('map','843'); -@include i-class('compass','845'); -@include i-class('trash-1','962'); -@include i-class('trash','847'); -@include i-class('doc','848'); -@include i-class('doc-text-inv','84c'); -@include i-class('docs','849'); -@include i-class('doc-landscape','84a'); -@include i-class('archive','851'); -@include i-class('rss','853'); -@include i-class('share','857'); -@include i-class('basket','859'); -@include i-class('basket-1','971'); -@include i-class('shareable','858'); -@include i-class('login-1','973'); -@include i-class('login','85c'); -@include i-class('logout-1','974'); -@include i-class('logout','85d'); -@include i-class('volume','861'); -@include i-class('resize-full','869'); -@include i-class('resize-full-1','97c'); -@include i-class('resize-small','86a'); -@include i-class('resize-small-1','97e'); -@include i-class('popup','86b'); -@include i-class('publish','86c'); -@include i-class('window','86d'); -@include i-class('arrow-combo','86e'); -@include i-class('zoom-in','982'); -@include i-class('zoom-out','983'); -@include i-class('chart-pie','8c4'); -@include i-class('language','8ca'); -@include i-class('air','8ce'); -@include i-class('database','8d3'); -@include i-class('drive','8d4'); -@include i-class('bucket','8d5'); -@include i-class('thermometer','8d6'); -@include i-class('down-circled','86f'); -@include i-class('down-circle2','984'); -@include i-class('left-circled','870'); -@include i-class('right-circled','871'); -@include i-class('up-circled','872'); -@include i-class('up-circle2','985'); -@include i-class('down-open','873'); -@include i-class('down-open-1','98a'); -@include i-class('left-open-1','98b'); -@include i-class('left-open','874'); -@include i-class('right-open-1','98c'); -@include i-class('right-open','875'); -@include i-class('up-open','876'); -@include i-class('up-open-1','98d'); -@include i-class('arrows-cw','9a4'); -@include i-class('down-open-mini','877'); -@include i-class('play-circle2','9a8'); -@include i-class('left-open-mini','878'); -@include i-class('right-open-mini','879'); -@include i-class('to-end-alt','9ac'); -@include i-class('up-open-mini','87a'); -@include i-class('to-start-alt','9ae'); -@include i-class('down-open-big','87b'); -@include i-class('left-open-big','87c'); -@include i-class('right-open-big','87d'); -@include i-class('up-open-big','87e'); -@include i-class('progress-0','89f'); -@include i-class('progress-1','8a0'); -@include i-class('progress-2','8a1'); -@include i-class('progress-3','8a2'); -@include i-class('back-in-time','8aa'); -@include i-class('network','8ad'); -@include i-class('inbox-1','9b9'); -@include i-class('inbox','8af'); -@include i-class('install','8b0'); -@include i-class('font','9c1'); -@include i-class('bold','9c2'); -@include i-class('italic','9c3'); -@include i-class('text-height','9c4'); -@include i-class('text-width','9c5'); -@include i-class('align-left','9c6'); -@include i-class('align-center','9c7'); -@include i-class('align-right','9c8'); -@include i-class('align-justify','9c9'); -@include i-class('list-1','9ca'); -@include i-class('indent-left','9cb'); -@include i-class('indent-right','9cc'); -@include i-class('lifebuoy','8b9'); -@include i-class('mouse','8ba'); -@include i-class('dot','8bd'); -@include i-class('dot-2','8be'); -@include i-class('dot-3','8bf'); -@include i-class('off','9d7'); -@include i-class('suitcase','8bc'); -@include i-class('road','9d8'); -@include i-class('list-alt','9d9'); -@include i-class('flow-cascade','8d8'); -@include i-class('flow-branch','8d9'); -@include i-class('qrcode','9da'); -@include i-class('flow-tree','8da'); -@include i-class('barcode','9db'); -@include i-class('flow-line','8db'); -@include i-class('ajust','9dd'); -@include i-class('tint','9de'); -@include i-class('flow-parallel','8dc'); -@include i-class('brush','8c0'); -@include i-class('paper-plane','8b7'); -@include i-class('magnet-1','9e6'); -@include i-class('magnet','8c1'); -@include i-class('gauge','8de'); -@include i-class('traffic-cone','8df'); -@include i-class('cc','8e0'); -@include i-class('cc-by','8e1'); -@include i-class('cc-nc','8e2'); -@include i-class('cc-nc-eu','8e3'); -@include i-class('cc-nc-jp','8e4'); -@include i-class('cc-sa','8e5'); -@include i-class('cc-nd','8e6'); -@include i-class('cc-pd','8e7'); -@include i-class('cc-zero','8e8'); -@include i-class('cc-share','8e9'); -@include i-class('cc-remix','8ea'); -@include i-class('spin1','aa3'); -@include i-class('spin2','aa2'); -@include i-class('spin3','aa1'); -@include i-class('spin4','aa0'); -@include i-class('spin5','a9e'); -@include i-class('spin6','a9f'); -@include i-class('firefox','aa4'); -@include i-class('chrome-1','aa5'); -@include i-class('opera','aa6'); -@include i-class('ie-1','aa7'); -@include i-class('move','981'); -@include i-class('link-ext','93e'); -@include i-class('check-empty','9e0'); -@include i-class('bookmark-empty','948'); -@include i-class('phone-squared','96c'); -@include i-class('twitter-1','a0a'); -@include i-class('facebook-1','a0c'); -@include i-class('github-circled-1','a07'); -@include i-class('rss-1','96a'); -@include i-class('hdd','9eb'); -@include i-class('certificate','9ed'); -@include i-class('left-circled-1','99e'); -@include i-class('right-circled-1','99f'); -@include i-class('up-circled-1','9a0'); -@include i-class('down-circled-1','9a1'); -@include i-class('tasks','9ee'); -@include i-class('filter','9ef'); -@include i-class('resize-full-alt','97d'); -@include i-class('beaker','9f0'); -@include i-class('docs-1','964'); -@include i-class('blank','a13'); -@include i-class('menu-1','96d'); -@include i-class('list-bullet','9cd'); -@include i-class('list-numbered','9ce'); -@include i-class('strike','9cf'); -@include i-class('underline','9d0'); -@include i-class('table','9d1'); -@include i-class('magic','9f1'); -@include i-class('pinterest-circled-1','a0f'); -@include i-class('pinterest-squared','a10'); -@include i-class('gplus-squared','a11'); -@include i-class('gplus-1','a12'); -@include i-class('money','9f3'); -@include i-class('columns','9d2'); -@include i-class('sort','9f4'); -@include i-class('sort-down','9f5'); -@include i-class('sort-up','9f6'); -@include i-class('mail-alt','920'); -@include i-class('linkedin-1','a0e'); -@include i-class('gauge-1','9f8'); -@include i-class('comment-empty','95b'); -@include i-class('chat-empty','95c'); -@include i-class('sitemap','9f9'); -@include i-class('paste','9d4'); -@include i-class('lightbulb','97a'); -@include i-class('exchange','9a6'); -@include i-class('download-cloud','94e'); -@include i-class('upload-cloud-1','94f'); -@include i-class('user-md','9fe'); -@include i-class('stethoscope','9ff'); -@include i-class('suitcase-1','9d6'); -@include i-class('bell-alt','95e'); -@include i-class('coffee','9fb'); -@include i-class('food','9fc'); -@include i-class('doc-alt','965'); -@include i-class('building','a05'); -@include i-class('hospital','a04'); -@include i-class('ambulance','a00'); -@include i-class('medkit','a01'); -@include i-class('fighter-jet','9bf'); -@include i-class('beer','9fd'); -@include i-class('h-sigh','a02'); -@include i-class('plus-squared-1','a03'); -@include i-class('angle-double-left','992'); -@include i-class('angle-double-right','993'); -@include i-class('angle-double-up','994'); -@include i-class('angle-double-down','995'); -@include i-class('angle-left','98e'); -@include i-class('angle-right','98f'); -@include i-class('angle-up','990'); -@include i-class('angle-down','991'); -@include i-class('desktop','9b5'); -@include i-class('laptop','9b6'); -@include i-class('tablet','9b7'); -@include i-class('mobile-1','9b8'); -@include i-class('circle-empty','9e2'); -@include i-class('quote-left','952'); -@include i-class('quote-right','953'); -@include i-class('spinner','9fa'); -@include i-class('circle','9e1'); -@include i-class('reply-1','950'); -@include i-class('github-1','a08'); -@include i-class('folder-empty','968'); -@include i-class('folder-open-empty','969'); -@include i-class('github-squared','a06'); -@include i-class('facebook-3','a7c'); -@include i-class('github','8eb'); -@include i-class('facebook-rect','a7d'); -@include i-class('github-circled','8ec'); -@include i-class('twitter-3','a7e'); -@include i-class('twitter-bird','a7f'); -@include i-class('flickr','8ed'); -@include i-class('flickr-circled','8ee'); -@include i-class('twitter-squared','a09'); -@include i-class('icq','a88'); -@include i-class('yandex','a89'); -@include i-class('yandex-rect','a8a'); -@include i-class('vimeo','8ef'); -@include i-class('github-text','a85'); -@include i-class('vimeo-circled','8f0'); -@include i-class('github-3','a86'); -@include i-class('facebook-squared-1','a0b'); -@include i-class('googleplus-rect','a84'); -@include i-class('twitter','8f1'); -@include i-class('vkontakte-rect','a8b'); -@include i-class('twitter-circled','8f2'); -@include i-class('skype-2','a87'); -@include i-class('facebook','8f3'); -@include i-class('odnoklassniki','a8c'); -@include i-class('linkedin-squared','a0d'); -@include i-class('odnoklassniki-rect','a8d'); -@include i-class('facebook-circled','8f4'); -@include i-class('vimeo-rect','a81'); -@include i-class('facebook-squared','8f5'); -@include i-class('gplus','8f6'); -@include i-class('vimeo-2','a80'); -@include i-class('tumblr-rect','a83'); -@include i-class('gplus-circled','8f7'); -@include i-class('tumblr-2','a82'); -@include i-class('friendfeed','a8e'); -@include i-class('pinterest','8f8'); -@include i-class('friendfeed-rect','a8f'); -@include i-class('pinterest-circled','8f9'); -@include i-class('blogger-1','a90'); -@include i-class('tumblr','8fa'); -@include i-class('blogger-rect','a91'); -@include i-class('deviantart','a92'); -@include i-class('tumblr-circled','8fb'); -@include i-class('jabber','a93'); -@include i-class('lastfm-2','a94'); -@include i-class('linkedin','8fc'); -@include i-class('lastfm-rect','a95'); -@include i-class('linkedin-circled','8fd'); -@include i-class('linkedin-3','a96'); -@include i-class('linkedin-rect','a97'); -@include i-class('dribbble','8fe'); -@include i-class('dribbble-circled','8ff'); -@include i-class('picasa-1','a98'); -@include i-class('wordpress-1','a99'); -@include i-class('stumbleupon','900'); -@include i-class('instagram-2','a9a'); -@include i-class('instagram-filled','a9b'); -@include i-class('stumbleupon-circled','901'); -@include i-class('lastfm','902'); -@include i-class('lastfm-circled','903'); -@include i-class('rdio','904'); -@include i-class('rdio-circled','905'); -@include i-class('spotify','906'); -@include i-class('spotify-circled','907'); -@include i-class('qq','908'); -@include i-class('instagram','909'); -@include i-class('dropbox','90a'); -@include i-class('evernote','90b'); -@include i-class('flattr','90c'); -@include i-class('skype','90d'); -@include i-class('skype-circled','90e'); -@include i-class('renren','90f'); -@include i-class('sina-weibo','910'); -@include i-class('paypal','911'); -@include i-class('picasa','912'); -@include i-class('soundcloud','913'); -@include i-class('mixi','914'); -@include i-class('behance','915'); -@include i-class('google-circles','916'); -@include i-class('vkontakte','917'); -@include i-class('smashing','918'); -@include i-class('db-shape','91a'); -@include i-class('sweden','919'); -@include i-class('logo-db','91b'); -@include i-class('picture','80e'); -@include i-class('picture-1','92a'); -@include i-class('globe','8b1'); -@include i-class('globe-1','9ba'); -@include i-class('leaf-1','9c0'); -@include i-class('leaf','8b8'); -@include i-class('lemon','a14'); -@include i-class('glass','91c'); -@include i-class('gift','9e4'); -@include i-class('graduation-cap','8c9'); -@include i-class('mic','85e'); -@include i-class('videocam','929'); -@include i-class('headphones','978'); -@include i-class('palette','8a4'); -@include i-class('ticket','8cb'); -@include i-class('video-1','928'); -@include i-class('video','80d'); -@include i-class('target','8a3'); -@include i-class('target-1','9b2'); -@include i-class('music','802'); -@include i-class('trophy','8a8'); -@include i-class('award','9b4'); -@include i-class('thumbs-up','82b'); -@include i-class('thumbs-up-1','94a'); -@include i-class('thumbs-down','82c'); -@include i-class('thumbs-down-1','94b'); -@include i-class('bag','85a'); -@include i-class('user','80a'); -@include i-class('user-1','926'); -@include i-class('users-1','927'); -@include i-class('users','80b'); -@include i-class('lamp','864'); -@include i-class('alert','83f'); -@include i-class('water','8cc'); -@include i-class('droplet','8cd'); -@include i-class('credit-card','8cf'); -@include i-class('credit-card-1','9e8'); -@include i-class('monitor','8ab'); -@include i-class('briefcase-1','9d5'); -@include i-class('briefcase','8bb'); -@include i-class('floppy-1','9e9'); -@include i-class('floppy','8d0'); -@include i-class('cd','8ae'); -@include i-class('folder','850'); -@include i-class('folder-1','966'); -@include i-class('folder-open','967'); -@include i-class('doc-1','963'); -@include i-class('doc-text','84b'); -@include i-class('calendar-1','972'); -@include i-class('calendar','85b'); -@include i-class('chart-line','8c5'); -@include i-class('chart-bar-1','9e7'); -@include i-class('chart-bar','8c6'); -@include i-class('clipboard','8d1'); -@include i-class('pin','942'); -@include i-class('attach-1','93f'); -@include i-class('attach','823'); -@include i-class('bookmarks','829'); -@include i-class('book','84f'); -@include i-class('book-1','9dc'); -@include i-class('book-open','84e'); -@include i-class('phone','854'); -@include i-class('phone-1','96b'); -@include i-class('megaphone','8d2'); -@include i-class('megaphone-1','9ea'); -@include i-class('upload','82e'); -@include i-class('upload-1','94d'); -@include i-class('download-1','94c'); -@include i-class('download','82d'); -@include i-class('box','852'); -@include i-class('newspaper','84d'); -@include i-class('mobile','8ac'); -@include i-class('signal','8a7'); -@include i-class('signal-1','9b3'); -@include i-class('camera-1','92b'); -@include i-class('camera','80f'); -@include i-class('shuffle-1','9a5'); -@include i-class('shuffle','894'); -@include i-class('loop','895'); -@include i-class('arrows-ccw','891'); -@include i-class('light-down','865'); -@include i-class('light-up','866'); -@include i-class('mute','85f'); -@include i-class('volume-off','975'); -@include i-class('volume-down','976'); -@include i-class('volume-up','977'); -@include i-class('sound','860'); -@include i-class('battery','8a9'); -@include i-class('search','803'); -@include i-class('search-1','91e'); -@include i-class('key','8d7'); -@include i-class('key-1','9ec'); -@include i-class('lock','824'); -@include i-class('lock-1','940'); -@include i-class('lock-open-1','941'); -@include i-class('lock-open','825'); -@include i-class('bell-1','95d'); -@include i-class('bell','83d'); -@include i-class('bookmark','828'); -@include i-class('bookmark-1','947'); -@include i-class('link-1','93d'); -@include i-class('link','822'); -@include i-class('back','820'); -@include i-class('fire','9e5'); -@include i-class('flashlight','804'); -@include i-class('wrench','970'); -@include i-class('hammer','9f7'); -@include i-class('chart-area','8c7'); -@include i-class('clock-1','979'); -@include i-class('clock','862'); -@include i-class('rocket','8dd'); -@include i-class('truck','9f2'); -@include i-class('block','868'); -@include i-class('block-1','97b'); diff --git a/static/sass/icons_ie7.scss b/static/sass/icons_ie7.scss deleted file mode 100644 index d3a17c5..0000000 --- a/static/sass/icons_ie7.scss +++ /dev/null @@ -1,694 +0,0 @@ -// -// Sass Icon Fonts -// - -// IE Icons icons_ie7.scss -// Version: 0.2 -// Created By: Andrew Senetar -// Date: May, 19 2013 -// Used: Font Awesome Styles, Foundation Icon Fonts Scss as Starting; animation from Fontello - -@import "iconSettings"; - -//// Actual Icons - -@include ie-class(duckduckgo,a15); -@include ie-class(aim,a16); -@include ie-class(delicious,a17); -@include ie-class(paypal-1,a18); -@include ie-class(flattr-1,a19); -@include ie-class(android,a1a); -@include ie-class(eventful,a1b); -@include ie-class(smashmag,a1c); -@include ie-class(gplus-2,a1d); -@include ie-class(plus,816); -@include ie-class(plus-1,936); -@include ie-class(wikipedia,a1e); -@include ie-class(lanyrd,a1f); -@include ie-class(minus,819); -@include ie-class(minus-1,938); -@include ie-class(calendar-2,a20); -@include ie-class(stumbleupon-1,a21); -@include ie-class(fivehundredpx,a22); -@include ie-class(pinterest-1,a23); -@include ie-class(bitcoin,a24); -@include ie-class(w3c,a25); -@include ie-class(foursquare,a26); -@include ie-class(html5,a27); -@include ie-class(ie,a28); -@include ie-class(call,a29); -@include ie-class(rooveshark,a2a); -@include ie-class(ninetyninedesigns,a2b); -@include ie-class(forrst,a2c); -@include ie-class(digg,a2d); -@include ie-class(spotify-1,a2e); -@include ie-class(reddit,a2f); -@include ie-class(guest,a30); -@include ie-class(gowalla,a31); -@include ie-class(at,a9d); -@include ie-class(appstore,a32); -@include ie-class(blogger,a33); -@include ie-class(cc-1,a34); -@include ie-class(dribbble-1,a35); -@include ie-class(evernote-1,a36); -@include ie-class(flickr-1,a37); -@include ie-class(google,a38); -@include ie-class(viadeo,a39); -@include ie-class(instapaper,a3a); -@include ie-class(weibo,a3b); -@include ie-class(klout,a3c); -@include ie-class(linkedin-2,a3d); -@include ie-class(meetup,a3e); -@include ie-class(vk,a3f); -@include ie-class(plancast,a40); -@include ie-class(disqus,a41); -@include ie-class(rss-2,a42); -@include ie-class(skype-1,a43); -@include ie-class(twitter-2,a44); -@include ie-class(youtube,a45); -@include ie-class(vimeo-1,a46); -@include ie-class(windows,a47); -@include ie-class(xing,a48); -@include ie-class(yahoo,a49); -@include ie-class(chrome,a4a); -@include ie-class(email,a4b); -@include ie-class(macstore,a4c); -@include ie-class(myspace,a4d); -@include ie-class(podcast,a4e); -@include ie-class(amazon,a4f); -@include ie-class(steam,a50); -@include ie-class(cloudapp,a51); -@include ie-class(dropbox-1,a52); -@include ie-class(ebay,a53); -@include ie-class(facebook-2,a54); -@include ie-class(github-2,a55); -@include ie-class(googleplay,a57); -@include ie-class(itunes,a58); -@include ie-class(plurk,a59); -@include ie-class(songkick,a5a); -@include ie-class(lastfm-1,a5b); -@include ie-class(gmail,a5c); -@include ie-class(pinboard,a5d); -@include ie-class(openid,a5e); -@include ie-class(quora,a5f); -@include ie-class(soundcloud-1,a60); -@include ie-class(tumblr-1,a61); -@include ie-class(eventasaurus,a62); -@include ie-class(wordpress,a63); -@include ie-class(yelp,a64); -@include ie-class(intensedebate,a65); -@include ie-class(eventbrite,a66); -@include ie-class(scribd,a67); -@include ie-class(posterous,a68); -@include ie-class(stripe,a69); -@include ie-class(pilcrow,a9c); -@include ie-class(opentable,a6a); -@include ie-class(cart,a6b); -@include ie-class(print-2,a6c); -@include ie-class(angellist,a6d); -@include ie-class(instagram-1,a6e); -@include ie-class(dwolla,a6f); -@include ie-class(appnet,a70); -@include ie-class(statusnet,a71); -@include ie-class(acrobat,a72); -@include ie-class(drupal,a73); -@include ie-class(buffer,a74); -@include ie-class(pocket,a75); -@include ie-class(github-circled-2,a56); -@include ie-class(bitbucket,a76); -@include ie-class(lego,a77); -@include ie-class(login-2,a78); -@include ie-class(stackoverflow,a79); -@include ie-class(hackernews,a7a); -@include ie-class(lkdto,a7b); -@include ie-class(info,81e); -@include ie-class(left-thin,88c); -@include ie-class(left-1,997); -@include ie-class(up-thin,88e); -@include ie-class(up-1,999); -@include ie-class(right-thin,88d); -@include ie-class(right-1,998); -@include ie-class(down-thin,88b); -@include ie-class(down-1,996); -@include ie-class(level-up,893); -@include ie-class(level-down,892); -@include ie-class(switch,896); -@include ie-class(infinity,8c2); -@include ie-class(plus-squared,818); -@include ie-class(minus-squared,81b); -@include ie-class(home-1,93c); -@include ie-class(home,821); -@include ie-class(keyboard,83a); -@include ie-class(erase,8c3); -@include ie-class(pause-1,9aa); -@include ie-class(pause,899); -@include ie-class(fast-fw,9af); -@include ie-class(fast-forward,89d); -@include ie-class(fast-backward,89e); -@include ie-class(fast-bw,9b0); -@include ie-class(to-end-1,9ab); -@include ie-class(to-end,89b); -@include ie-class(to-start,89c); -@include ie-class(to-start-1,9ad); -@include ie-class(hourglass,863); -@include ie-class(stop,898); -@include ie-class(stop-1,9a9); -@include ie-class(up-dir,886); -@include ie-class(up-dir-1,987); -@include ie-class(play-1,9a7); -@include ie-class(play,897); -@include ie-class(right-dir,885); -@include ie-class(right-dir-1,989); -@include ie-class(down-dir,883); -@include ie-class(down-dir-1,986); -@include ie-class(left-dir,884); -@include ie-class(left-dir-1,988); -@include ie-class(adjust,867); -@include ie-class(cloud-1,9bb); -@include ie-class(cloud,8b2); -@include ie-class(umbrella,9bd); -@include ie-class(star,808); -@include ie-class(star-1,923); -@include ie-class(star-empty,809); -@include ie-class(star-empty-1,924); -@include ie-class(check-1,9df); -@include ie-class(cup,846); -@include ie-class(left-hand,99b); -@include ie-class(up-hand,99c); -@include ie-class(right-hand,99a); -@include ie-class(down-hand,99d); -@include ie-class(menu,811); -@include ie-class(th-list,92f); -@include ie-class(moon,8b5); -@include ie-class(heart-empty-1,922); -@include ie-class(heart-empty,807); -@include ie-class(heart-1,921); -@include ie-class(heart,806); -@include ie-class(note,800); -@include ie-class(music-1,91d); -@include ie-class(note-beamed,801); -@include ie-class(layout,810); -@include ie-class(th,92e); -@include ie-class(flag-1,949); -@include ie-class(flag,82a); -@include ie-class(tools,856); -@include ie-class(cog,855); -@include ie-class(cog-1,96e); -@include ie-class(attention,83e); -@include ie-class(attention-1,95f); -@include ie-class(flash,8b4); -@include ie-class(flash-1,9bc); -@include ie-class(record,89a); -@include ie-class(cloud-thunder,8b3); -@include ie-class(cog-alt,96f); -@include ie-class(scissors,9d3); -@include ie-class(tape,8c8); -@include ie-class(flight,8b6); -@include ie-class(flight-1,9be); -@include ie-class(mail,805); -@include ie-class(mail-1,91f); -@include ie-class(edit,956); -@include ie-class(pencil,836); -@include ie-class(pencil-1,955); -@include ie-class(feather,837); -@include ie-class(check,812); -@include ie-class(ok,930); -@include ie-class(ok-circle,931); -@include ie-class(cancel,813); -@include ie-class(cancel-1,933); -@include ie-class(cancel-circled,814); -@include ie-class(cancel-circle,934); -@include ie-class(asterisk,9e3); -@include ie-class(cancel-squared,815); -@include ie-class(help,81c); -@include ie-class(attention-circle,960); -@include ie-class(quote,833); -@include ie-class(plus-circled,817); -@include ie-class(plus-circle,937); -@include ie-class(minus-circled,81a); -@include ie-class(minus-circle,939); -@include ie-class(right,881); -@include ie-class(direction,844); -@include ie-class(forward-1,951); -@include ie-class(forward,832); -@include ie-class(ccw-1,9a3); -@include ie-class(ccw,88f); -@include ie-class(cw,890); -@include ie-class(cw-1,9a2); -@include ie-class(left,880); -@include ie-class(up,882); -@include ie-class(down,87f); -@include ie-class(resize-vertical,97f); -@include ie-class(resize-horizontal,980); -@include ie-class(eject,9b1); -@include ie-class(list-add,8a6); -@include ie-class(list,8a5); -@include ie-class(left-bold,888); -@include ie-class(right-bold,889); -@include ie-class(up-bold,88a); -@include ie-class(down-bold,887); -@include ie-class(user-add,80c); -@include ie-class(star-half,925); -@include ie-class(ok-circle2,932); -@include ie-class(cancel-circle2,935); -@include ie-class(help-circle,93a); -@include ie-class(help-circled,81d); -@include ie-class(info-circle,93b); -@include ie-class(info-circled,81f); -@include ie-class(th-large,92d); -@include ie-class(eye,826); -@include ie-class(eye-1,943); -@include ie-class(eye-off,944); -@include ie-class(tag-1,945); -@include ie-class(tag,827); -@include ie-class(tags,946); -@include ie-class(camera-alt,92c); -@include ie-class(upload-cloud,82f); -@include ie-class(reply,830); -@include ie-class(reply-all,831); -@include ie-class(code,834); -@include ie-class(export,835); -@include ie-class(export-1,954); -@include ie-class(print,838); -@include ie-class(print-1,957); -@include ie-class(retweet-1,958); -@include ie-class(retweet,839); -@include ie-class(comment-1,959); -@include ie-class(comment,83b); -@include ie-class(chat,83c); -@include ie-class(chat-1,95a); -@include ie-class(vcard,840); -@include ie-class(address,841); -@include ie-class(location-1,961); -@include ie-class(location,842); -@include ie-class(map,843); -@include ie-class(compass,845); -@include ie-class(trash-1,962); -@include ie-class(trash,847); -@include ie-class(doc,848); -@include ie-class(doc-text-inv,84c); -@include ie-class(docs,849); -@include ie-class(doc-landscape,84a); -@include ie-class(archive,851); -@include ie-class(rss,853); -@include ie-class(share,857); -@include ie-class(basket,859); -@include ie-class(basket-1,971); -@include ie-class(shareable,858); -@include ie-class(login-1,973); -@include ie-class(login,85c); -@include ie-class(logout-1,974); -@include ie-class(logout,85d); -@include ie-class(volume,861); -@include ie-class(resize-full,869); -@include ie-class(resize-full-1,97c); -@include ie-class(resize-small,86a); -@include ie-class(resize-small-1,97e); -@include ie-class(popup,86b); -@include ie-class(publish,86c); -@include ie-class(window,86d); -@include ie-class(arrow-combo,86e); -@include ie-class(zoom-in,982); -@include ie-class(zoom-out,983); -@include ie-class(chart-pie,8c4); -@include ie-class(language,8ca); -@include ie-class(air,8ce); -@include ie-class(database,8d3); -@include ie-class(drive,8d4); -@include ie-class(bucket,8d5); -@include ie-class(thermometer,8d6); -@include ie-class(down-circled,86f); -@include ie-class(down-circle2,984); -@include ie-class(left-circled,870); -@include ie-class(right-circled,871); -@include ie-class(up-circled,872); -@include ie-class(up-circle2,985); -@include ie-class(down-open,873); -@include ie-class(down-open-1,98a); -@include ie-class(left-open-1,98b); -@include ie-class(left-open,874); -@include ie-class(right-open-1,98c); -@include ie-class(right-open,875); -@include ie-class(up-open,876); -@include ie-class(up-open-1,98d); -@include ie-class(arrows-cw,9a4); -@include ie-class(down-open-mini,877); -@include ie-class(play-circle2,9a8); -@include ie-class(left-open-mini,878); -@include ie-class(right-open-mini,879); -@include ie-class(to-end-alt,9ac); -@include ie-class(up-open-mini,87a); -@include ie-class(to-start-alt,9ae); -@include ie-class(down-open-big,87b); -@include ie-class(left-open-big,87c); -@include ie-class(right-open-big,87d); -@include ie-class(up-open-big,87e); -@include ie-class(progress-0,89f); -@include ie-class(progress-1,8a0); -@include ie-class(progress-2,8a1); -@include ie-class(progress-3,8a2); -@include ie-class(back-in-time,8aa); -@include ie-class(network,8ad); -@include ie-class(inbox-1,9b9); -@include ie-class(inbox,8af); -@include ie-class(install,8b0); -@include ie-class(font,9c1); -@include ie-class(bold,9c2); -@include ie-class(italic,9c3); -@include ie-class(text-height,9c4); -@include ie-class(text-width,9c5); -@include ie-class(align-left,9c6); -@include ie-class(align-center,9c7); -@include ie-class(align-right,9c8); -@include ie-class(align-justify,9c9); -@include ie-class(list-1,9ca); -@include ie-class(indent-left,9cb); -@include ie-class(indent-right,9cc); -@include ie-class(lifebuoy,8b9); -@include ie-class(mouse,8ba); -@include ie-class(dot,8bd); -@include ie-class(dot-2,8be); -@include ie-class(dot-3,8bf); -@include ie-class(off,9d7); -@include ie-class(suitcase,8bc); -@include ie-class(road,9d8); -@include ie-class(list-alt,9d9); -@include ie-class(flow-cascade,8d8); -@include ie-class(flow-branch,8d9); -@include ie-class(qrcode,9da); -@include ie-class(flow-tree,8da); -@include ie-class(barcode,9db); -@include ie-class(flow-line,8db); -@include ie-class(ajust,9dd); -@include ie-class(tint,9de); -@include ie-class(flow-parallel,8dc); -@include ie-class(brush,8c0); -@include ie-class(paper-plane,8b7); -@include ie-class(magnet-1,9e6); -@include ie-class(magnet,8c1); -@include ie-class(gauge,8de); -@include ie-class(traffic-cone,8df); -@include ie-class(cc,8e0); -@include ie-class(cc-by,8e1); -@include ie-class(cc-nc,8e2); -@include ie-class(cc-nc-eu,8e3); -@include ie-class(cc-nc-jp,8e4); -@include ie-class(cc-sa,8e5); -@include ie-class(cc-nd,8e6); -@include ie-class(cc-pd,8e7); -@include ie-class(cc-zero,8e8); -@include ie-class(cc-share,8e9); -@include ie-class(cc-remix,8ea); -@include ie-class(spin1,aa3); -@include ie-class(spin2,aa2); -@include ie-class(spin3,aa1); -@include ie-class(spin4,aa0); -@include ie-class(spin5,a9e); -@include ie-class(spin6,a9f); -@include ie-class(firefox,aa4); -@include ie-class(chrome-1,aa5); -@include ie-class(opera,aa6); -@include ie-class(ie-1,aa7); -@include ie-class(move,981); -@include ie-class(link-ext,93e); -@include ie-class(check-empty,9e0); -@include ie-class(bookmark-empty,948); -@include ie-class(phone-squared,96c); -@include ie-class(twitter-1,a0a); -@include ie-class(facebook-1,a0c); -@include ie-class(github-circled-1,a07); -@include ie-class(rss-1,96a); -@include ie-class(hdd,9eb); -@include ie-class(certificate,9ed); -@include ie-class(left-circled-1,99e); -@include ie-class(right-circled-1,99f); -@include ie-class(up-circled-1,9a0); -@include ie-class(down-circled-1,9a1); -@include ie-class(tasks,9ee); -@include ie-class(filter,9ef); -@include ie-class(resize-full-alt,97d); -@include ie-class(beaker,9f0); -@include ie-class(docs-1,964); -@include ie-class(blank,a13); -@include ie-class(menu-1,96d); -@include ie-class(list-bullet,9cd); -@include ie-class(list-numbered,9ce); -@include ie-class(strike,9cf); -@include ie-class(underline,9d0); -@include ie-class(table,9d1); -@include ie-class(magic,9f1); -@include ie-class(pinterest-circled-1,a0f); -@include ie-class(pinterest-squared,a10); -@include ie-class(gplus-squared,a11); -@include ie-class(gplus-1,a12); -@include ie-class(money,9f3); -@include ie-class(columns,9d2); -@include ie-class(sort,9f4); -@include ie-class(sort-down,9f5); -@include ie-class(sort-up,9f6); -@include ie-class(mail-alt,920); -@include ie-class(linkedin-1,a0e); -@include ie-class(gauge-1,9f8); -@include ie-class(comment-empty,95b); -@include ie-class(chat-empty,95c); -@include ie-class(sitemap,9f9); -@include ie-class(paste,9d4); -@include ie-class(lightbulb,97a); -@include ie-class(exchange,9a6); -@include ie-class(download-cloud,94e); -@include ie-class(upload-cloud-1,94f); -@include ie-class(user-md,9fe); -@include ie-class(stethoscope,9ff); -@include ie-class(suitcase-1,9d6); -@include ie-class(bell-alt,95e); -@include ie-class(coffee,9fb); -@include ie-class(food,9fc); -@include ie-class(doc-alt,965); -@include ie-class(building,a05); -@include ie-class(hospital,a04); -@include ie-class(ambulance,a00); -@include ie-class(medkit,a01); -@include ie-class(fighter-jet,9bf); -@include ie-class(beer,9fd); -@include ie-class(h-sigh,a02); -@include ie-class(plus-squared-1,a03); -@include ie-class(angle-double-left,992); -@include ie-class(angle-double-right,993); -@include ie-class(angle-double-up,994); -@include ie-class(angle-double-down,995); -@include ie-class(angle-left,98e); -@include ie-class(angle-right,98f); -@include ie-class(angle-up,990); -@include ie-class(angle-down,991); -@include ie-class(desktop,9b5); -@include ie-class(laptop,9b6); -@include ie-class(tablet,9b7); -@include ie-class(mobile-1,9b8); -@include ie-class(circle-empty,9e2); -@include ie-class(quote-left,952); -@include ie-class(quote-right,953); -@include ie-class(spinner,9fa); -@include ie-class(circle,9e1); -@include ie-class(reply-1,950); -@include ie-class(github-1,a08); -@include ie-class(folder-empty,968); -@include ie-class(folder-open-empty,969); -@include ie-class(github-squared,a06); -@include ie-class(facebook-3,a7c); -@include ie-class(github,8eb); -@include ie-class(facebook-rect,a7d); -@include ie-class(github-circled,8ec); -@include ie-class(twitter-3,a7e); -@include ie-class(twitter-bird,a7f); -@include ie-class(flickr,8ed); -@include ie-class(flickr-circled,8ee); -@include ie-class(twitter-squared,a09); -@include ie-class(icq,a88); -@include ie-class(yandex,a89); -@include ie-class(yandex-rect,a8a); -@include ie-class(vimeo,8ef); -@include ie-class(github-text,a85); -@include ie-class(vimeo-circled,8f0); -@include ie-class(github-3,a86); -@include ie-class(facebook-squared-1,a0b); -@include ie-class(googleplus-rect,a84); -@include ie-class(twitter,8f1); -@include ie-class(vkontakte-rect,a8b); -@include ie-class(twitter-circled,8f2); -@include ie-class(skype-2,a87); -@include ie-class(facebook,8f3); -@include ie-class(odnoklassniki,a8c); -@include ie-class(linkedin-squared,a0d); -@include ie-class(odnoklassniki-rect,a8d); -@include ie-class(facebook-circled,8f4); -@include ie-class(vimeo-rect,a81); -@include ie-class(facebook-squared,8f5); -@include ie-class(gplus,8f6); -@include ie-class(vimeo-2,a80); -@include ie-class(tumblr-rect,a83); -@include ie-class(gplus-circled,8f7); -@include ie-class(tumblr-2,a82); -@include ie-class(friendfeed,a8e); -@include ie-class(pinterest,8f8); -@include ie-class(friendfeed-rect,a8f); -@include ie-class(pinterest-circled,8f9); -@include ie-class(blogger-1,a90); -@include ie-class(tumblr,8fa); -@include ie-class(blogger-rect,a91); -@include ie-class(deviantart,a92); -@include ie-class(tumblr-circled,8fb); -@include ie-class(jabber,a93); -@include ie-class(lastfm-2,a94); -@include ie-class(linkedin,8fc); -@include ie-class(lastfm-rect,a95); -@include ie-class(linkedin-circled,8fd); -@include ie-class(linkedin-3,a96); -@include ie-class(linkedin-rect,a97); -@include ie-class(dribbble,8fe); -@include ie-class(dribbble-circled,8ff); -@include ie-class(picasa-1,a98); -@include ie-class(wordpress-1,a99); -@include ie-class(stumbleupon,900); -@include ie-class(instagram-2,a9a); -@include ie-class(instagram-filled,a9b); -@include ie-class(stumbleupon-circled,901); -@include ie-class(lastfm,902); -@include ie-class(lastfm-circled,903); -@include ie-class(rdio,904); -@include ie-class(rdio-circled,905); -@include ie-class(spotify,906); -@include ie-class(spotify-circled,907); -@include ie-class(qq,908); -@include ie-class(instagram,909); -@include ie-class(dropbox,90a); -@include ie-class(evernote,90b); -@include ie-class(flattr,90c); -@include ie-class(skype,90d); -@include ie-class(skype-circled,90e); -@include ie-class(renren,90f); -@include ie-class(sina-weibo,910); -@include ie-class(paypal,911); -@include ie-class(picasa,912); -@include ie-class(soundcloud,913); -@include ie-class(mixi,914); -@include ie-class(behance,915); -@include ie-class(google-circles,916); -@include ie-class(vkontakte,917); -@include ie-class(smashing,918); -@include ie-class(db-shape,91a); -@include ie-class(sweden,919); -@include ie-class(logo-db,91b); -@include ie-class(picture,80e); -@include ie-class(picture-1,92a); -@include ie-class(globe,8b1); -@include ie-class(globe-1,9ba); -@include ie-class(leaf-1,9c0); -@include ie-class(leaf,8b8); -@include ie-class(lemon,a14); -@include ie-class(glass,91c); -@include ie-class(gift,9e4); -@include ie-class(graduation-cap,8c9); -@include ie-class(mic,85e); -@include ie-class(videocam,929); -@include ie-class(headphones,978); -@include ie-class(palette,8a4); -@include ie-class(ticket,8cb); -@include ie-class(video-1,928); -@include ie-class(video,80d); -@include ie-class(target,8a3); -@include ie-class(target-1,9b2); -@include ie-class(music,802); -@include ie-class(trophy,8a8); -@include ie-class(award,9b4); -@include ie-class(thumbs-up,82b); -@include ie-class(thumbs-up-1,94a); -@include ie-class(thumbs-down,82c); -@include ie-class(thumbs-down-1,94b); -@include ie-class(bag,85a); -@include ie-class(user,80a); -@include ie-class(user-1,926); -@include ie-class(users-1,927); -@include ie-class(users,80b); -@include ie-class(lamp,864); -@include ie-class(alert,83f); -@include ie-class(water,8cc); -@include ie-class(droplet,8cd); -@include ie-class(credit-card,8cf); -@include ie-class(credit-card-1,9e8); -@include ie-class(monitor,8ab); -@include ie-class(briefcase-1,9d5); -@include ie-class(briefcase,8bb); -@include ie-class(floppy-1,9e9); -@include ie-class(floppy,8d0); -@include ie-class(cd,8ae); -@include ie-class(folder,850); -@include ie-class(folder-1,966); -@include ie-class(folder-open,967); -@include ie-class(doc-1,963); -@include ie-class(doc-text,84b); -@include ie-class(calendar-1,972); -@include ie-class(calendar,85b); -@include ie-class(chart-line,8c5); -@include ie-class(chart-bar-1,9e7); -@include ie-class(chart-bar,8c6); -@include ie-class(clipboard,8d1); -@include ie-class(pin,942); -@include ie-class(attach-1,93f); -@include ie-class(attach,823); -@include ie-class(bookmarks,829); -@include ie-class(book,84f); -@include ie-class(book-1,9dc); -@include ie-class(book-open,84e); -@include ie-class(phone,854); -@include ie-class(phone-1,96b); -@include ie-class(megaphone,8d2); -@include ie-class(megaphone-1,9ea); -@include ie-class(upload,82e); -@include ie-class(upload-1,94d); -@include ie-class(download-1,94c); -@include ie-class(download,82d); -@include ie-class(box,852); -@include ie-class(newspaper,84d); -@include ie-class(mobile,8ac); -@include ie-class(signal,8a7); -@include ie-class(signal-1,9b3); -@include ie-class(camera-1,92b); -@include ie-class(camera,80f); -@include ie-class(shuffle-1,9a5); -@include ie-class(shuffle,894); -@include ie-class(loop,895); -@include ie-class(arrows-ccw,891); -@include ie-class(light-down,865); -@include ie-class(light-up,866); -@include ie-class(mute,85f); -@include ie-class(volume-off,975); -@include ie-class(volume-down,976); -@include ie-class(volume-up,977); -@include ie-class(sound,860); -@include ie-class(battery,8a9); -@include ie-class(search,803); -@include ie-class(search-1,91e); -@include ie-class(key,8d7); -@include ie-class(key-1,9ec); -@include ie-class(lock,824); -@include ie-class(lock-1,940); -@include ie-class(lock-open-1,941); -@include ie-class(lock-open,825); -@include ie-class(bell-1,95d); -@include ie-class(bell,83d); -@include ie-class(bookmark,828); -@include ie-class(bookmark-1,947); -@include ie-class(link-1,93d); -@include ie-class(link,822); -@include ie-class(back,820); -@include ie-class(fire,9e5); -@include ie-class(flashlight,804); -@include ie-class(wrench,970); -@include ie-class(hammer,9f7); -@include ie-class(chart-area,8c7); -@include ie-class(clock-1,979); -@include ie-class(clock,862); -@include ie-class(rocket,8dd); -@include ie-class(truck,9f2); -@include ie-class(block,868); -@include ie-class(block-1,97b); diff --git a/static/sass/rangertbc/_base.scss b/static/sass/rangertbc/_base.scss deleted file mode 100644 index 13aa390..0000000 --- a/static/sass/rangertbc/_base.scss +++ /dev/null @@ -1,130 +0,0 @@ -// -// RangerTBC Specific Styles -// - -// Base File _base.scss -// Version: 0.1 -// Created By: Andrew Senetar -// Date: May, 22 2013 -// Used: - -@import "rangertbc/settings"; //just to be reduntant and make sure the right one is loaded for now - -//// Global Mixins - -//// Global Styles - -//// Element Styles -body{ - height: 100%; - margin: 0; - overflow-y: scroll; - overflow-x: hidden; - background-color: $body-bg; -} - -.article { - & > article{ - background-color: darken($body-bg, 5%); - padding-top: $topbar-height + 15px; - padding-bottom: emCalc(15px); - @include box-shadow(2px 2px 5px rgba(0,0,0,0.2)); - header{ - background-color: #ffffff; - border-bottom: 1px solid $secondary-color; - h1{ - color: $primary-color; - @include text-shadow(2px 2px 2px rgba(0,0,0,0.3)); - } - time{ - color: darken($secondary-color,20%); - font-weight: bold; - line-height: emCalc(18px); - font-size: emCalc(18px); - padding-top: emCalc(10px); - paddting-bottom: emCalc(5px); - display: block; - text-align: right; - } - } - .content{ - padding-top: emCalc(10px); - background-color: #f5f5f5; - padding-left: emCalc(5px); - } - footer{ - background-color: #ffffff; - border-top: 1px solid $secondary-color; - padding-top: emCalc(7px); - padding-bottom: emCalc(10px); - color: darken($secondary-color, 20%); - border-bottom: solid 2px rgba(0,0,0,0.2); - a{ - color: rgba($primary-color, 0.6); - } - } - } - - & > aside{ - & >.row > .columns { - background-color: #f5f5f5; - @include box-shadow(2px 2px 5px rgba(0,0,0,0.2)); - & > div{ - - } - } - } -} - -.articleComments { - & > div { - background-color: #f5f5f5; - @include box-shadow(2px 2px 5px rgba(0,0,0,0.2)); - padding-top: emCalc(10px); - } -} - -// fixing the aside in small view -@media #{$small} { - .article > aside{ - padding-top: $topbar-height + 15px; //mediaquery to remove on small? - & >.row > .columns { - background-color: inherit; - padding-right: 0; - @include box-shadow(none); - & > div{ - @include box-shadow(2px 2px 5px rgba(0,0,0,0.2)); - @include panel(#f5f5f5); - } - } - } -} - -.articleInfo{ - h5 { - text-align: center; - } -} - -//custom footer -body #footer{ - color: rgba($primary-color, 0.4); - padding-top: emCalc(10px); - padding-bottom: emCalc(15px); - padding-right: emCalc(15px); - text-align: right; - a{ - color: inherit; - } - a:hover{ - color: rgba($primary-color, 0.8); - } -} - -//// Components - -@import "rangertbc/components/topbar"; // topbar requires nav for menu -@import "rangertbc/components/scrollbar"; // allows styling of window scrollbar (chrome only?) -//@import "rangertbc/components/global"; // global styles and mixins - -@import "rangertbc/components/print"; // print styles (LAST) \ No newline at end of file diff --git a/static/sass/rangertbc/_settings.scss b/static/sass/rangertbc/_settings.scss deleted file mode 100644 index b91e6c0..0000000 --- a/static/sass/rangertbc/_settings.scss +++ /dev/null @@ -1,50 +0,0 @@ -// -// RangerTBC Specific Styles -// - -// Settings File _settings.scss -// Version: 0.1 -// Created By: Andrew Senetar -// Date: May, 22 2013 -// Used: - -//// External Imports - -/// Compass (reason in comment) -@import "compass/css3/box-shadow"; // Used by topbar and ... -@import "compass/css3/border-radius"; // Used by ... -@import "compass/css3/text-shadow"; // Used by ... - -/// Foundation (reason in comment) -@import "foundation/components/global"; // Global Foundation (required for any foundation) -@import "foundation/components/grid"; // Foundation Grid (styles are used in layout using grid) -@import "foundation/components/type"; // The typography styles are nice -@import "foundation/components/clearing"; // Not sure by seems to help? -@import "foundation/components/panels"; - -//// Variables -$body-bg: #e5e5e5; - -/// Topbar (defaults shown) - -// Background color for the top bar -// $topbar-bg: rgba($primary-color,0.9); - -// Height and margin -$topbar-height: 45px; //referenced to setup body margin atm -// $topbar-margin-bottom: 0; - -//Shadow Color -// $topbar-shadow-color: rgba(50, 50, 50, 0.4); - -// Controlling the styles for the title in the top bar -// $topbar-title-weight: bold; -// $topbar-title-font-size: emCalc(17px); - -// Set the link colors and styles for top-level nav -// $topbar-link-color: #fff; -// $topbar-link-color-hover: #fff; -// $topbar-link-color-active: #fff; -// $topbar-link-weight: bold; -// $topbar-link-font-size: emCalc(13px); -// $topbar-link-hover-lightness: -10%; diff --git a/static/sass/rangertbc/components/_print.scss b/static/sass/rangertbc/components/_print.scss deleted file mode 100644 index 2e18db3..0000000 --- a/static/sass/rangertbc/components/_print.scss +++ /dev/null @@ -1,17 +0,0 @@ -// -// RangerTBC Style Components -// - -// Print Styles components/_print.scss -// Version: 0.1 -// Created By: Andrew Senetar -// Date: May, 22 2013 -// Used: - -//// Global Print Style -@media print { - // Hide iframes in .hide-on-print elements - .hide-on-print iframe{ - display: none; - } -} \ No newline at end of file diff --git a/static/sass/rangertbc/components/_topbar.scss b/static/sass/rangertbc/components/_topbar.scss deleted file mode 100644 index 66e70ff..0000000 --- a/static/sass/rangertbc/components/_topbar.scss +++ /dev/null @@ -1,123 +0,0 @@ -// -// RangerTBC Style Components -// - -// Topbar Component components/_topbar.scss -// Version: 0.1 -// Created By: Andrew Senetar -// Date: May, 22 2013 -// Used: Foundation Topbar as starting point - -//// Top Bar Variables - -// Background color for the top bar -$topbar-bg: rgba($primary-color,0.9) !default; - -// Height and margin -$topbar-height: 45px !default; -$topbar-margin-bottom: 0px !default; - -//Shadow Color -$topbar-shadow-color: rgba(50, 50, 50, 0.4) !default; - -// Controlling the styles for the title in the top bar -$topbar-title-weight: bold !default; -$topbar-title-font-size: emCalc(17px) !default; - -// Set the link colors and styles for top-level nav -$topbar-link-color: #fff !default; -$topbar-link-color-hover: #fff !default; -$topbar-link-color-active: #fff !default; -$topbar-link-weight: bold !default; -$topbar-link-font-size: emCalc(13px) !default; -$topbar-link-hover-lightness: -10% !default; // Darken by 10% - -//// Top Bar Style - -.top-bar { - overflow: hidden; - height: $topbar-height; - line-height: $topbar-height; - max-width: none; - background: $topbar-bg; - position: relative; - margin-bottom: $topbar-margin-bottom; - @include box-shadow(0 5px 5px $topbar-shadow-color); - - // Topbar Global list style - ul { - margin-bottom: 0; - list-style: none; - } - - .title-area { - float: left; - position: relative; - height: $topbar-height; - margin: 0; - line-height: $topbar-height; - font-size: $topbar-title-font-size; - margin: 0; - a { - font-weight: $topbar-title-weight; - color: $topbar-link-color; - width: auto; - display: block; - padding: 0 $topbar-height / 3; - &:hover{ - color: $topbar-link-color-hover; - } - &:active{ - color: $topbar-link-color-active; - } - } - } - - .social-area { - float: right; - width: auto; - height: auto; - display: inline; - li { - float: left; - a { - display: block; - color: $topbar-link-color; - height: $topbar-height; - line-height: $topbar-height; - width: 100%; - padding: 0 $topbar-height / 5; - font-size: $topbar-link-font-size; - font-weight: $topbar-link-weight; - &:hover { background: adjust-color($topbar-bg, $lightness: $topbar-link-hover-lightness); } - } - } - } -} - -/// Fixed Topbar (at end to override default position) - -[class="fixed top-bar"] { - width: 100%; - left: 0; - position: fixed; - top: 0; - margin-bottom: 0; - z-index: 99; -} - -/// Print Styles - -@media print{ - .top-bar{ - position: relative; // stop from appearing all over the place when fixed - .title-area { - i{ - display: none; // no need to show menu button - } - } - .social-area{ - display: none; // these icons are uesless as well - } - } -} \ No newline at end of file diff --git a/static/sass/rangertbc/components/_scrollbar.scss b/static/sass/voltaicideas/components/_scrollbar.scss similarity index 100% rename from static/sass/rangertbc/components/_scrollbar.scss rename to static/sass/voltaicideas/components/_scrollbar.scss diff --git a/static/sass/voltaicideas/pelican-red/_iconList.scss b/static/sass/voltaicideas/pelican-red/_iconList.scss new file mode 100644 index 0000000..41004b5 --- /dev/null +++ b/static/sass/voltaicideas/pelican-red/_iconList.scss @@ -0,0 +1,43 @@ +@include i-class('grooveshark','805'); +@include i-class('reddit','804'); +@include i-class('blogger','803'); +@include i-class('youtube','802'); +@include i-class('steam','801'); +@include i-class('tag','81a'); +@include i-class('vcard','817'); +@include i-class('language','806'); +@include i-class('dot-3','808'); +@include i-class('cc','826'); +@include i-class('cc-by','825'); +@include i-class('cc-nc','824'); +@include i-class('cc-nc-eu','823'); +@include i-class('cc-nc-jp','822'); +@include i-class('cc-sa','821'); +@include i-class('cc-nd','820'); +@include i-class('cc-pd','81f'); +@include i-class('cc-zero','81e'); +@include i-class('cc-share','81d'); +@include i-class('cc-remix','81c'); +@include i-class('github','80a'); +@include i-class('flickr','815'); +@include i-class('vimeo','80b'); +@include i-class('twitter','80e'); +@include i-class('facebook','80d'); +@include i-class('gplus','80c'); +@include i-class('pinterest','800'); +@include i-class('tumblr','809'); +@include i-class('linkedin','80f'); +@include i-class('dribbble','814'); +@include i-class('stumbleupon','816'); +@include i-class('lastfm','810'); +@include i-class('rdio','811'); +@include i-class('instagram','812'); +@include i-class('skype','813'); +@include i-class('picasa','818'); +@include i-class('soundcloud','819'); +@include i-class('newspaper','807'); +@include i-class('search','827'); +@include i-class('link','81b'); + +//Generated on Sat Jul 13 07:02:38 UTC 2013 + diff --git a/static/sass/_iconSettings.scss b/static/sass/voltaicideas/pelican-red/_iconSettings.scss similarity index 66% rename from static/sass/_iconSettings.scss rename to static/sass/voltaicideas/pelican-red/_iconSettings.scss index 0fae02d..9f2947f 100644 --- a/static/sass/_iconSettings.scss +++ b/static/sass/voltaicideas/pelican-red/_iconSettings.scss @@ -3,32 +3,33 @@ // // Settings File _iconSettings.scss -// Version: 0.2 +// Version: 0.3 // Created By: Andrew Senetar -// Date: May, 19 2013 +// Date: July, 13 2013 // Used: Font Awesome Styles, Foundation Icon Fonts Scss as Starting; animation from Fontello //// Compass imports used later in icons.scss @import "compass/css3/font-face"; @import "compass/css3/border-radius"; +@import "compass/css3/animation"; @import "compass/css3/transform"; -@import "animation"; //// Font and class variables -$classPrefix: "icon-"; // icon class prefix [prefix-][name] -$set: "fontello"; // font name +$classPrefix: "icon-" !default; // icon class prefix [prefix-][name] +$set: "fontello" !default; // font name //// Color Variables (from Font Awesome) -$iconBorderColor: #eee; -$iconMuted: #eee; -$iconLight: #fff; -$iconDark: #333; +$iconBorderColor: #eee !default; +$iconMuted: #eee !default; +$iconLight: #fff !default; +$iconDark: #333 !default; //// Mixin for creation of individual icon class -//// Use: @include i-class([name],[code]); (assumed to be working in the e[xxx] range) +//// Use: @include i-class([name],[code]); (assumes \exxx space since its imposible? to output +//// \#{$pua} in Sass appearntly @mixin i-class($name,$pua) { .#{$classPrefix}#{$name}:before { @@ -37,7 +38,7 @@ $iconDark: #333; } //// Mixin for creation of individual icon class for Internet Explorer -//// Use: @include i-class([name],[code]); (assumed to be working in the e[xxx] range) +//// Use: @include i-class([name],[code]); (again exxx range) @mixin ie-class($name,$pua) { .#{$classPrefix}#{$name} { diff --git a/static/sass/voltaicideas/pelican-red/_icons.scss b/static/sass/voltaicideas/pelican-red/_icons.scss new file mode 100644 index 0000000..0eaa51a --- /dev/null +++ b/static/sass/voltaicideas/pelican-red/_icons.scss @@ -0,0 +1,134 @@ +// +// Sass Icon Fonts +// + +// Main File icons.scss +// Version: 0.3 +// Created By: Andrew Senetar +// Date: July, 13 2013 +// Used: Font Awesome Styles, Foundation Icon Fonts Scss as Starting; animation from Fontello + +@import "voltaicideas/pelican-red/iconSettings"; + +@include face(#{$set}); //@font-face + +//// global icon styles (from Foundation Icons + Font Awesome) + +[class*="#{$classPrefix}"] { + background-image: none; + background-position: 0% 0%; + background-repeat: repeat; + display: inline; + height: auto; + width: auto; + vertical-align: baseline; + line-height: 1; + margin-top: 0; + speak: none; + font-family: '#{$set}'; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + text-decoration: inherit; + -webkit-font-smoothing: antialiased; +} + +[class*="#{$classPrefix}"]:before { + text-decoration: inherit; + display: inline-block; + speak: none; +} + +//// Icon borders (from Font Awesome) + +[class*="border #{$classPrefix}"] { + border: solid 1px $iconBorderColor; + padding: .2em .25em .15em; + @include border-radius(3px); +} + +//// Icon sizes (from Font Awesome) + +[class*="large #{$classPrefix}"]:before { + vertical-align: -10%; + font-size: 1.333em; +} + +[class*="huge #{$classPrefix}"]:before { + vertical-align: -17%; + font-size: 1.75em; +} + +[class*="2x #{$classPrefix}"] { + font-size: 2em; + & .border { + border-width: 2px; + @include border-radius(4px); + } +} + +[class*="3x #{$classPrefix}"] { + font-size: 3em; + & .border { + border-width: 3px; + @include border-radius(5px); + } +} + +[class*="4x #{$classPrefix}"] { + font-size: 4em; + & .border { + border-width: 4px; + @include border-radius(6px); + } +} + +[class*="5x #{$classPrefix}"] { + font-size: 5em; + & .border { + border-width: 5px; + @include border-radius(7px); + } +} + +//// Colors (from Font Awesome) + +[class*="muted #{$classPrefix}"]{ + color: $iconMuted; +} + +[class*="light #{$classPrefix}"]{ + color: $iconLight; +} + +[class*="dark #{$classPrefix}"]{ + color: $iconDark; +} + +//// Fixes + +//// makes sure icons active on rollover in links (from Font Awesome) + +a [class*="#{$classPrefix}"]:before { + display: inline; +} + +//// Animation for Spinners (from Fontello) + +@include keyframes(spin){ + 0%{ + @include transform(rotate(0deg)); + } + 100%{ + @include transform(rotate(359deg)); + } +} + +.animate-spin{ + @include animation(spin 2s infinite linear); +} + +//// Actual Icons +@import "voltaicideas/pelican-red/_iconList.scss" + diff --git a/utils/iconsCSStoSASS.sh b/utils/iconsCSStoSASS.sh new file mode 100755 index 0000000..2b69be8 --- /dev/null +++ b/utils/iconsCSStoSASS.sh @@ -0,0 +1,11 @@ +#!/bin/bash +SASS_PATH="../static/sass/voltaicideas/pelican-red/" +INPUT_FILE="${SASS_PATH}pelican-red-codes.css" +OUTPUT_FILE="${SASS_PATH}_iconList.scss" + +PREFIX="icon" + +sed -rn "s/^.${PREFIX}-(.*):before.*'\\\e(.*)'; \}.*/@include i-class('\1','\2'); /p" ${INPUT_FILE} > ${OUTPUT_FILE} +echo -en '\n\n//Generated on ' >> ${OUTPUT_FILE} +date -u >> ${OUTPUT_FILE} +echo '' >> ${OUTPUT_FILE}