jekyll-theme-stellar 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +63 -0
- data/README.md +132 -0
- data/_home_sections/1_introduction.md +21 -0
- data/_home_sections/2_first.md +32 -0
- data/_home_sections/3_second.md +40 -0
- data/_home_sections/4_get_started.md +18 -0
- data/_includes/footer.html +54 -0
- data/_includes/head.html +7 -0
- data/_includes/header.html +9 -0
- data/_includes/navigation.html +8 -0
- data/_includes/scripts.html +8 -0
- data/_layouts/default.html +34 -0
- data/_layouts/page.html +32 -0
- data/_layouts/post.html +5 -0
- data/_sass/base/_page.scss +51 -0
- data/_sass/base/_reset.scss +76 -0
- data/_sass/base/_typography.scss +216 -0
- data/_sass/components/_actions.scss +101 -0
- data/_sass/components/_box.scss +34 -0
- data/_sass/components/_button.scss +109 -0
- data/_sass/components/_features.scss +60 -0
- data/_sass/components/_form.scss +220 -0
- data/_sass/components/_icon.scss +130 -0
- data/_sass/components/_icons.scss +22 -0
- data/_sass/components/_image.scss +60 -0
- data/_sass/components/_list.scss +94 -0
- data/_sass/components/_row.scss +31 -0
- data/_sass/components/_section.scss +104 -0
- data/_sass/components/_spotlight.scss +93 -0
- data/_sass/components/_statistics.scss +108 -0
- data/_sass/components/_table.scss +114 -0
- data/_sass/layout/_footer.scss +60 -0
- data/_sass/layout/_header.scss +116 -0
- data/_sass/layout/_main.scss +99 -0
- data/_sass/layout/_nav.scss +96 -0
- data/_sass/layout/_wrapper.scss +21 -0
- data/_sass/libs/_breakpoints.scss +223 -0
- data/_sass/libs/_functions.scss +90 -0
- data/_sass/libs/_html-grid.scss +149 -0
- data/_sass/libs/_mixins.scss +63 -0
- data/_sass/libs/_vars.scss +60 -0
- data/_sass/libs/_vendor.scss +376 -0
- data/_sass/main.scss +70 -0
- data/_sass/noscript.scss +28 -0
- data/assets/css/font-awesome.min.css +4 -0
- data/assets/css/images/overlay.png +0 -0
- data/assets/css/main.css +3764 -0
- data/assets/css/noscript.css +18 -0
- data/assets/fonts/FontAwesome.otf +0 -0
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +2671 -0
- data/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/fontawesome-webfont.woff +0 -0
- data/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/images/logo.svg +16 -0
- data/assets/images/pic01.jpg +0 -0
- data/assets/images/pic02.jpg +0 -0
- data/assets/images/pic03.jpg +0 -0
- data/assets/images/pic04.jpg +0 -0
- data/assets/images/pic05.jpg +0 -0
- data/assets/images/pic06.jpg +0 -0
- data/assets/images/screenshot.jpg +0 -0
- data/assets/js/breakpoints.min.js +2 -0
- data/assets/js/browser.min.js +2 -0
- data/assets/js/jquery.min.js +2 -0
- data/assets/js/jquery.scrollex.min.js +2 -0
- data/assets/js/jquery.scrolly.min.js +2 -0
- data/assets/js/main.js +123 -0
- data/assets/js/util.js +587 -0
- metadata +155 -0
data/_sass/main.scss
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
@import 'libs/vars';
|
2
|
+
@import 'libs/functions';
|
3
|
+
@import 'libs/mixins';
|
4
|
+
@import 'libs/vendor';
|
5
|
+
@import 'libs/breakpoints';
|
6
|
+
@import 'libs/html-grid';
|
7
|
+
@import 'font-awesome.min.css';
|
8
|
+
@import 'https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400';
|
9
|
+
|
10
|
+
/*
|
11
|
+
Stellar by HTML5 UP
|
12
|
+
html5up.net | @ajlkn
|
13
|
+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
14
|
+
*/
|
15
|
+
|
16
|
+
// Breakpoints.
|
17
|
+
|
18
|
+
@include breakpoints((
|
19
|
+
xlarge: ( 1281px, 1680px ),
|
20
|
+
large: ( 981px, 1280px ),
|
21
|
+
medium: ( 737px, 980px ),
|
22
|
+
small: ( 481px, 736px ),
|
23
|
+
xsmall: ( 361px, 480px ),
|
24
|
+
xxsmall: ( null, 360px )
|
25
|
+
));
|
26
|
+
|
27
|
+
// Mixins.
|
28
|
+
|
29
|
+
@mixin color($p) {
|
30
|
+
@include color-typography($p);
|
31
|
+
@include color-box($p);
|
32
|
+
@include color-button($p);
|
33
|
+
@include color-form($p);
|
34
|
+
@include color-icon($p);
|
35
|
+
@include color-list($p);
|
36
|
+
@include color-section($p);
|
37
|
+
@include color-table($p);
|
38
|
+
@include color-spotlight($p);
|
39
|
+
}
|
40
|
+
|
41
|
+
// Base.
|
42
|
+
|
43
|
+
@import 'base/reset';
|
44
|
+
@import 'base/page';
|
45
|
+
@import 'base/typography';
|
46
|
+
|
47
|
+
// Component.
|
48
|
+
|
49
|
+
@import 'components/row';
|
50
|
+
@import 'components/box';
|
51
|
+
@import 'components/button';
|
52
|
+
@import 'components/form';
|
53
|
+
@import 'components/icon';
|
54
|
+
@import 'components/image';
|
55
|
+
@import 'components/list';
|
56
|
+
@import 'components/actions';
|
57
|
+
@import 'components/icons';
|
58
|
+
@import 'components/section';
|
59
|
+
@import 'components/table';
|
60
|
+
@import 'components/features';
|
61
|
+
@import 'components/statistics';
|
62
|
+
@import 'components/spotlight';
|
63
|
+
|
64
|
+
// Layout.
|
65
|
+
|
66
|
+
@import 'layout/header';
|
67
|
+
@import 'layout/nav';
|
68
|
+
@import 'layout/main';
|
69
|
+
@import 'layout/footer';
|
70
|
+
@import 'layout/wrapper';
|
data/_sass/noscript.scss
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
@import 'libs/vars';
|
2
|
+
@import 'libs/functions';
|
3
|
+
@import 'libs/mixins';
|
4
|
+
@import 'libs/vendor';
|
5
|
+
@import 'libs/breakpoints';
|
6
|
+
@import 'libs/html-grid';
|
7
|
+
|
8
|
+
/*
|
9
|
+
Stellar by HTML5 UP
|
10
|
+
html5up.net | @ajlkn
|
11
|
+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
12
|
+
*/
|
13
|
+
|
14
|
+
/* Header */
|
15
|
+
|
16
|
+
#header {
|
17
|
+
body.is-preload & {
|
18
|
+
&.alt {
|
19
|
+
> * {
|
20
|
+
opacity: 1;
|
21
|
+
}
|
22
|
+
|
23
|
+
.logo {
|
24
|
+
@include vendor('transform', 'none');
|
25
|
+
}
|
26
|
+
}
|
27
|
+
}
|
28
|
+
}
|
@@ -0,0 +1,4 @@
|
|
1
|
+
/*!
|
2
|
+
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
|
3
|
+
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4
|
+
*/@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
|
Binary file
|
data/assets/css/main.css
ADDED
@@ -0,0 +1,3764 @@
|
|
1
|
+
@import url(font-awesome.min.css);
|
2
|
+
@import "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400";
|
3
|
+
|
4
|
+
/*
|
5
|
+
Stellar by HTML5 UP
|
6
|
+
html5up.net | @ajlkn
|
7
|
+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
8
|
+
*/
|
9
|
+
|
10
|
+
html, body, div, span, applet, object,
|
11
|
+
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
|
12
|
+
pre, a, abbr, acronym, address, big, cite,
|
13
|
+
code, del, dfn, em, img, ins, kbd, q, s, samp,
|
14
|
+
small, strike, strong, sub, sup, tt, var, b,
|
15
|
+
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
|
16
|
+
form, label, legend, table, caption, tbody,
|
17
|
+
tfoot, thead, tr, th, td, article, aside,
|
18
|
+
canvas, details, embed, figure, figcaption,
|
19
|
+
footer, header, hgroup, menu, nav, output, ruby,
|
20
|
+
section, summary, time, mark, audio, video {
|
21
|
+
margin: 0;
|
22
|
+
padding: 0;
|
23
|
+
border: 0;
|
24
|
+
font-size: 100%;
|
25
|
+
font: inherit;
|
26
|
+
vertical-align: baseline;}
|
27
|
+
|
28
|
+
article, aside, details, figcaption, figure,
|
29
|
+
footer, header, hgroup, menu, nav, section {
|
30
|
+
display: block;}
|
31
|
+
|
32
|
+
body {
|
33
|
+
line-height: 1;
|
34
|
+
}
|
35
|
+
|
36
|
+
ol, ul {
|
37
|
+
list-style: none;
|
38
|
+
}
|
39
|
+
|
40
|
+
blockquote, q {
|
41
|
+
quotes: none;
|
42
|
+
}
|
43
|
+
|
44
|
+
blockquote:before, blockquote:after, q:before, q:after {
|
45
|
+
content: '';
|
46
|
+
content: none;
|
47
|
+
}
|
48
|
+
|
49
|
+
table {
|
50
|
+
border-collapse: collapse;
|
51
|
+
border-spacing: 0;
|
52
|
+
}
|
53
|
+
|
54
|
+
body {
|
55
|
+
-webkit-text-size-adjust: none;
|
56
|
+
}
|
57
|
+
|
58
|
+
mark {
|
59
|
+
background-color: transparent;
|
60
|
+
color: inherit;
|
61
|
+
}
|
62
|
+
|
63
|
+
input::-moz-focus-inner {
|
64
|
+
border: 0;
|
65
|
+
padding: 0;
|
66
|
+
}
|
67
|
+
|
68
|
+
input, select, textarea {
|
69
|
+
-moz-appearance: none;
|
70
|
+
-webkit-appearance: none;
|
71
|
+
-ms-appearance: none;
|
72
|
+
appearance: none;
|
73
|
+
}
|
74
|
+
|
75
|
+
/* Basic */
|
76
|
+
|
77
|
+
@-ms-viewport {
|
78
|
+
width: device-width;
|
79
|
+
}
|
80
|
+
|
81
|
+
body {
|
82
|
+
-ms-overflow-style: scrollbar;
|
83
|
+
}
|
84
|
+
|
85
|
+
@media screen and (max-width: 480px) {
|
86
|
+
|
87
|
+
html, body {
|
88
|
+
min-width: 320px;
|
89
|
+
}
|
90
|
+
|
91
|
+
}
|
92
|
+
|
93
|
+
html {
|
94
|
+
box-sizing: border-box;
|
95
|
+
}
|
96
|
+
|
97
|
+
*, *:before, *:after {
|
98
|
+
box-sizing: inherit;
|
99
|
+
}
|
100
|
+
|
101
|
+
body {
|
102
|
+
background-color: #935d8c;
|
103
|
+
background-image: url("images/overlay.png"), -moz-linear-gradient(45deg, #e37682 15%, #5f4d93 85%);
|
104
|
+
background-image: url("images/overlay.png"), -webkit-linear-gradient(45deg, #e37682 15%, #5f4d93 85%);
|
105
|
+
background-image: url("images/overlay.png"), -ms-linear-gradient(45deg, #e37682 15%, #5f4d93 85%);
|
106
|
+
background-image: url("images/overlay.png"), linear-gradient(45deg, #e37682 15%, #5f4d93 85%);
|
107
|
+
}
|
108
|
+
|
109
|
+
body.is-preload *, body.is-preload *:before, body.is-preload *:after {
|
110
|
+
-moz-animation: none !important;
|
111
|
+
-webkit-animation: none !important;
|
112
|
+
-ms-animation: none !important;
|
113
|
+
animation: none !important;
|
114
|
+
-moz-transition: none !important;
|
115
|
+
-webkit-transition: none !important;
|
116
|
+
-ms-transition: none !important;
|
117
|
+
transition: none !important;
|
118
|
+
}
|
119
|
+
|
120
|
+
/* Type */
|
121
|
+
|
122
|
+
body {
|
123
|
+
background-color: #935d8c;
|
124
|
+
color: rgba(255, 255, 255, 0.65);
|
125
|
+
}
|
126
|
+
|
127
|
+
body, input, select, textarea {
|
128
|
+
font-family: "Source Sans Pro", Helvetica, sans-serif;
|
129
|
+
font-size: 17pt;
|
130
|
+
font-weight: 300;
|
131
|
+
line-height: 1.65;
|
132
|
+
}
|
133
|
+
|
134
|
+
@media screen and (max-width: 1680px) {
|
135
|
+
|
136
|
+
body, input, select, textarea {
|
137
|
+
font-size: 14pt;
|
138
|
+
}
|
139
|
+
|
140
|
+
}
|
141
|
+
|
142
|
+
@media screen and (max-width: 1280px) {
|
143
|
+
|
144
|
+
body, input, select, textarea {
|
145
|
+
font-size: 12pt;
|
146
|
+
}
|
147
|
+
|
148
|
+
}
|
149
|
+
|
150
|
+
@media screen and (max-width: 360px) {
|
151
|
+
|
152
|
+
body, input, select, textarea {
|
153
|
+
font-size: 11pt;
|
154
|
+
}
|
155
|
+
|
156
|
+
}
|
157
|
+
|
158
|
+
a {
|
159
|
+
-moz-transition: color 0.2s ease, border-bottom 0.2s ease;
|
160
|
+
-webkit-transition: color 0.2s ease, border-bottom 0.2s ease;
|
161
|
+
-ms-transition: color 0.2s ease, border-bottom 0.2s ease;
|
162
|
+
transition: color 0.2s ease, border-bottom 0.2s ease;
|
163
|
+
text-decoration: none;
|
164
|
+
border-bottom: dotted 1px;
|
165
|
+
color: inherit;
|
166
|
+
}
|
167
|
+
|
168
|
+
a:hover {
|
169
|
+
border-bottom-color: transparent;
|
170
|
+
}
|
171
|
+
|
172
|
+
strong, b {
|
173
|
+
font-weight: 400;
|
174
|
+
}
|
175
|
+
|
176
|
+
em, i {
|
177
|
+
font-style: italic;
|
178
|
+
}
|
179
|
+
|
180
|
+
p {
|
181
|
+
margin: 0 0 2em 0;
|
182
|
+
}
|
183
|
+
|
184
|
+
p.content {
|
185
|
+
-moz-columns: 20em 2;
|
186
|
+
-webkit-columns: 20em 2;
|
187
|
+
-ms-columns: 20em 2;
|
188
|
+
columns: 20em 2;
|
189
|
+
-moz-column-gap: 2em;
|
190
|
+
-webkit-column-gap: 2em;
|
191
|
+
-ms-column-gap: 2em;
|
192
|
+
column-gap: 2em;
|
193
|
+
text-align: justify;
|
194
|
+
}
|
195
|
+
|
196
|
+
h1, h2, h3, h4, h5, h6 {
|
197
|
+
font-weight: 300;
|
198
|
+
line-height: 1.5;
|
199
|
+
margin: 0 0 0.7em 0;
|
200
|
+
letter-spacing: -0.025em;
|
201
|
+
}
|
202
|
+
|
203
|
+
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
|
204
|
+
color: inherit;
|
205
|
+
text-decoration: none;
|
206
|
+
}
|
207
|
+
|
208
|
+
h1 {
|
209
|
+
font-size: 2.5em;
|
210
|
+
line-height: 1.2;
|
211
|
+
}
|
212
|
+
|
213
|
+
h2 {
|
214
|
+
font-size: 1.5em;
|
215
|
+
}
|
216
|
+
|
217
|
+
h3 {
|
218
|
+
font-size: 1.25em;
|
219
|
+
}
|
220
|
+
|
221
|
+
h4 {
|
222
|
+
font-size: 1.1em;
|
223
|
+
}
|
224
|
+
|
225
|
+
h5 {
|
226
|
+
font-size: 0.9em;
|
227
|
+
}
|
228
|
+
|
229
|
+
h6 {
|
230
|
+
font-size: 0.7em;
|
231
|
+
}
|
232
|
+
|
233
|
+
@media screen and (max-width: 736px) {
|
234
|
+
|
235
|
+
h1 {
|
236
|
+
font-size: 2em;
|
237
|
+
}
|
238
|
+
|
239
|
+
}
|
240
|
+
|
241
|
+
sub {
|
242
|
+
font-size: 0.8em;
|
243
|
+
position: relative;
|
244
|
+
top: 0.5em;
|
245
|
+
}
|
246
|
+
|
247
|
+
sup {
|
248
|
+
font-size: 0.8em;
|
249
|
+
position: relative;
|
250
|
+
top: -0.5em;
|
251
|
+
}
|
252
|
+
|
253
|
+
blockquote {
|
254
|
+
border-left: solid 4px;
|
255
|
+
font-style: italic;
|
256
|
+
margin: 0 0 2em 0;
|
257
|
+
padding: 0.5em 0 0.5em 2em;
|
258
|
+
}
|
259
|
+
|
260
|
+
code {
|
261
|
+
border-radius: 8px;
|
262
|
+
border: solid 1px;
|
263
|
+
font-family: "Courier New", monospace;
|
264
|
+
font-size: 0.9em;
|
265
|
+
margin: 0 0.25em;
|
266
|
+
padding: 0.25em 0.65em;
|
267
|
+
}
|
268
|
+
|
269
|
+
pre {
|
270
|
+
-webkit-overflow-scrolling: touch;
|
271
|
+
font-family: "Courier New", monospace;
|
272
|
+
font-size: 0.9em;
|
273
|
+
margin: 0 0 2em 0;
|
274
|
+
}
|
275
|
+
|
276
|
+
pre code {
|
277
|
+
display: block;
|
278
|
+
line-height: 1.75;
|
279
|
+
padding: 1em 1.5em;
|
280
|
+
overflow-x: auto;
|
281
|
+
}
|
282
|
+
|
283
|
+
hr {
|
284
|
+
border: 0;
|
285
|
+
border-bottom: solid 1px;
|
286
|
+
margin: 2em 0;
|
287
|
+
}
|
288
|
+
|
289
|
+
hr.major {
|
290
|
+
margin: 3em 0;
|
291
|
+
}
|
292
|
+
|
293
|
+
.align-left {
|
294
|
+
text-align: left;
|
295
|
+
}
|
296
|
+
|
297
|
+
.align-center {
|
298
|
+
text-align: center;
|
299
|
+
}
|
300
|
+
|
301
|
+
.align-right {
|
302
|
+
text-align: right;
|
303
|
+
}
|
304
|
+
|
305
|
+
input, select, textarea {
|
306
|
+
color: #ffffff;
|
307
|
+
}
|
308
|
+
|
309
|
+
a:hover {
|
310
|
+
color: #ffffff;
|
311
|
+
}
|
312
|
+
|
313
|
+
strong, b {
|
314
|
+
color: #ffffff;
|
315
|
+
}
|
316
|
+
|
317
|
+
h1, h2, h3, h4, h5, h6 {
|
318
|
+
color: #ffffff;
|
319
|
+
}
|
320
|
+
|
321
|
+
blockquote {
|
322
|
+
border-left-color: rgba(255, 255, 255, 0.35);
|
323
|
+
}
|
324
|
+
|
325
|
+
code {
|
326
|
+
background: rgba(255, 255, 255, 0.075);
|
327
|
+
border-color: rgba(255, 255, 255, 0.35);
|
328
|
+
}
|
329
|
+
|
330
|
+
hr {
|
331
|
+
border-bottom-color: rgba(255, 255, 255, 0.35);
|
332
|
+
}
|
333
|
+
|
334
|
+
/* Row */
|
335
|
+
|
336
|
+
.row {
|
337
|
+
display: flex;
|
338
|
+
flex-wrap: wrap;
|
339
|
+
box-sizing: border-box;
|
340
|
+
align-items: stretch;
|
341
|
+
}
|
342
|
+
|
343
|
+
.row > * {
|
344
|
+
box-sizing: border-box;
|
345
|
+
}
|
346
|
+
|
347
|
+
.row.gtr-uniform > * > :last-child {
|
348
|
+
margin-bottom: 0;
|
349
|
+
}
|
350
|
+
|
351
|
+
.row.aln-left {
|
352
|
+
justify-content: flex-start;
|
353
|
+
}
|
354
|
+
|
355
|
+
.row.aln-center {
|
356
|
+
justify-content: center;
|
357
|
+
}
|
358
|
+
|
359
|
+
.row.aln-right {
|
360
|
+
justify-content: flex-end;
|
361
|
+
}
|
362
|
+
|
363
|
+
.row.aln-top {
|
364
|
+
align-items: flex-start;
|
365
|
+
}
|
366
|
+
|
367
|
+
.row.aln-middle {
|
368
|
+
align-items: center;
|
369
|
+
}
|
370
|
+
|
371
|
+
.row.aln-bottom {
|
372
|
+
align-items: flex-end;
|
373
|
+
}
|
374
|
+
|
375
|
+
.row > .imp {
|
376
|
+
order: -1;
|
377
|
+
}
|
378
|
+
|
379
|
+
.row > .col-1 {
|
380
|
+
width: 8.3333333333%;
|
381
|
+
}
|
382
|
+
|
383
|
+
.row > .off-1 {
|
384
|
+
margin-left: 8.3333333333%;
|
385
|
+
}
|
386
|
+
|
387
|
+
.row > .col-2 {
|
388
|
+
width: 16.6666666667%;
|
389
|
+
}
|
390
|
+
|
391
|
+
.row > .off-2 {
|
392
|
+
margin-left: 16.6666666667%;
|
393
|
+
}
|
394
|
+
|
395
|
+
.row > .col-3 {
|
396
|
+
width: 25%;
|
397
|
+
}
|
398
|
+
|
399
|
+
.row > .off-3 {
|
400
|
+
margin-left: 25%;
|
401
|
+
}
|
402
|
+
|
403
|
+
.row > .col-4 {
|
404
|
+
width: 33.3333333333%;
|
405
|
+
}
|
406
|
+
|
407
|
+
.row > .off-4 {
|
408
|
+
margin-left: 33.3333333333%;
|
409
|
+
}
|
410
|
+
|
411
|
+
.row > .col-5 {
|
412
|
+
width: 41.6666666667%;
|
413
|
+
}
|
414
|
+
|
415
|
+
.row > .off-5 {
|
416
|
+
margin-left: 41.6666666667%;
|
417
|
+
}
|
418
|
+
|
419
|
+
.row > .col-6 {
|
420
|
+
width: 50%;
|
421
|
+
}
|
422
|
+
|
423
|
+
.row > .off-6 {
|
424
|
+
margin-left: 50%;
|
425
|
+
}
|
426
|
+
|
427
|
+
.row > .col-7 {
|
428
|
+
width: 58.3333333333%;
|
429
|
+
}
|
430
|
+
|
431
|
+
.row > .off-7 {
|
432
|
+
margin-left: 58.3333333333%;
|
433
|
+
}
|
434
|
+
|
435
|
+
.row > .col-8 {
|
436
|
+
width: 66.6666666667%;
|
437
|
+
}
|
438
|
+
|
439
|
+
.row > .off-8 {
|
440
|
+
margin-left: 66.6666666667%;
|
441
|
+
}
|
442
|
+
|
443
|
+
.row > .col-9 {
|
444
|
+
width: 75%;
|
445
|
+
}
|
446
|
+
|
447
|
+
.row > .off-9 {
|
448
|
+
margin-left: 75%;
|
449
|
+
}
|
450
|
+
|
451
|
+
.row > .col-10 {
|
452
|
+
width: 83.3333333333%;
|
453
|
+
}
|
454
|
+
|
455
|
+
.row > .off-10 {
|
456
|
+
margin-left: 83.3333333333%;
|
457
|
+
}
|
458
|
+
|
459
|
+
.row > .col-11 {
|
460
|
+
width: 91.6666666667%;
|
461
|
+
}
|
462
|
+
|
463
|
+
.row > .off-11 {
|
464
|
+
margin-left: 91.6666666667%;
|
465
|
+
}
|
466
|
+
|
467
|
+
.row > .col-12 {
|
468
|
+
width: 100%;
|
469
|
+
}
|
470
|
+
|
471
|
+
.row > .off-12 {
|
472
|
+
margin-left: 100%;
|
473
|
+
}
|
474
|
+
|
475
|
+
.row.gtr-0 {
|
476
|
+
margin-top: 0;
|
477
|
+
margin-left: 0em;
|
478
|
+
}
|
479
|
+
|
480
|
+
.row.gtr-0 > * {
|
481
|
+
padding: 0 0 0 0em;
|
482
|
+
}
|
483
|
+
|
484
|
+
.row.gtr-0.gtr-uniform {
|
485
|
+
margin-top: 0em;
|
486
|
+
}
|
487
|
+
|
488
|
+
.row.gtr-0.gtr-uniform > * {
|
489
|
+
padding-top: 0em;
|
490
|
+
}
|
491
|
+
|
492
|
+
.row.gtr-25 {
|
493
|
+
margin-top: 0;
|
494
|
+
margin-left: -0.375em;
|
495
|
+
}
|
496
|
+
|
497
|
+
.row.gtr-25 > * {
|
498
|
+
padding: 0 0 0 0.375em;
|
499
|
+
}
|
500
|
+
|
501
|
+
.row.gtr-25.gtr-uniform {
|
502
|
+
margin-top: -0.375em;
|
503
|
+
}
|
504
|
+
|
505
|
+
.row.gtr-25.gtr-uniform > * {
|
506
|
+
padding-top: 0.375em;
|
507
|
+
}
|
508
|
+
|
509
|
+
.row.gtr-50 {
|
510
|
+
margin-top: 0;
|
511
|
+
margin-left: -0.75em;
|
512
|
+
}
|
513
|
+
|
514
|
+
.row.gtr-50 > * {
|
515
|
+
padding: 0 0 0 0.75em;
|
516
|
+
}
|
517
|
+
|
518
|
+
.row.gtr-50.gtr-uniform {
|
519
|
+
margin-top: -0.75em;
|
520
|
+
}
|
521
|
+
|
522
|
+
.row.gtr-50.gtr-uniform > * {
|
523
|
+
padding-top: 0.75em;
|
524
|
+
}
|
525
|
+
|
526
|
+
.row {
|
527
|
+
margin-top: 0;
|
528
|
+
margin-left: -1.5em;
|
529
|
+
}
|
530
|
+
|
531
|
+
.row > * {
|
532
|
+
padding: 0 0 0 1.5em;
|
533
|
+
}
|
534
|
+
|
535
|
+
.row.gtr-uniform {
|
536
|
+
margin-top: -1.5em;
|
537
|
+
}
|
538
|
+
|
539
|
+
.row.gtr-uniform > * {
|
540
|
+
padding-top: 1.5em;
|
541
|
+
}
|
542
|
+
|
543
|
+
.row.gtr-150 {
|
544
|
+
margin-top: 0;
|
545
|
+
margin-left: -2.25em;
|
546
|
+
}
|
547
|
+
|
548
|
+
.row.gtr-150 > * {
|
549
|
+
padding: 0 0 0 2.25em;
|
550
|
+
}
|
551
|
+
|
552
|
+
.row.gtr-150.gtr-uniform {
|
553
|
+
margin-top: -2.25em;
|
554
|
+
}
|
555
|
+
|
556
|
+
.row.gtr-150.gtr-uniform > * {
|
557
|
+
padding-top: 2.25em;
|
558
|
+
}
|
559
|
+
|
560
|
+
.row.gtr-200 {
|
561
|
+
margin-top: 0;
|
562
|
+
margin-left: -3em;
|
563
|
+
}
|
564
|
+
|
565
|
+
.row.gtr-200 > * {
|
566
|
+
padding: 0 0 0 3em;
|
567
|
+
}
|
568
|
+
|
569
|
+
.row.gtr-200.gtr-uniform {
|
570
|
+
margin-top: -3em;
|
571
|
+
}
|
572
|
+
|
573
|
+
.row.gtr-200.gtr-uniform > * {
|
574
|
+
padding-top: 3em;
|
575
|
+
}
|
576
|
+
|
577
|
+
@media screen and (max-width: 1680px) {
|
578
|
+
|
579
|
+
.row {
|
580
|
+
display: flex;
|
581
|
+
flex-wrap: wrap;
|
582
|
+
box-sizing: border-box;
|
583
|
+
align-items: stretch;
|
584
|
+
}
|
585
|
+
|
586
|
+
.row > * {
|
587
|
+
box-sizing: border-box;
|
588
|
+
}
|
589
|
+
|
590
|
+
.row.gtr-uniform > * > :last-child {
|
591
|
+
margin-bottom: 0;
|
592
|
+
}
|
593
|
+
|
594
|
+
.row.aln-left {
|
595
|
+
justify-content: flex-start;
|
596
|
+
}
|
597
|
+
|
598
|
+
.row.aln-center {
|
599
|
+
justify-content: center;
|
600
|
+
}
|
601
|
+
|
602
|
+
.row.aln-right {
|
603
|
+
justify-content: flex-end;
|
604
|
+
}
|
605
|
+
|
606
|
+
.row.aln-top {
|
607
|
+
align-items: flex-start;
|
608
|
+
}
|
609
|
+
|
610
|
+
.row.aln-middle {
|
611
|
+
align-items: center;
|
612
|
+
}
|
613
|
+
|
614
|
+
.row.aln-bottom {
|
615
|
+
align-items: flex-end;
|
616
|
+
}
|
617
|
+
|
618
|
+
.row > .imp-xlarge {
|
619
|
+
order: -1;
|
620
|
+
}
|
621
|
+
|
622
|
+
.row > .col-1-xlarge {
|
623
|
+
width: 8.3333333333%;
|
624
|
+
}
|
625
|
+
|
626
|
+
.row > .off-1-xlarge {
|
627
|
+
margin-left: 8.3333333333%;
|
628
|
+
}
|
629
|
+
|
630
|
+
.row > .col-2-xlarge {
|
631
|
+
width: 16.6666666667%;
|
632
|
+
}
|
633
|
+
|
634
|
+
.row > .off-2-xlarge {
|
635
|
+
margin-left: 16.6666666667%;
|
636
|
+
}
|
637
|
+
|
638
|
+
.row > .col-3-xlarge {
|
639
|
+
width: 25%;
|
640
|
+
}
|
641
|
+
|
642
|
+
.row > .off-3-xlarge {
|
643
|
+
margin-left: 25%;
|
644
|
+
}
|
645
|
+
|
646
|
+
.row > .col-4-xlarge {
|
647
|
+
width: 33.3333333333%;
|
648
|
+
}
|
649
|
+
|
650
|
+
.row > .off-4-xlarge {
|
651
|
+
margin-left: 33.3333333333%;
|
652
|
+
}
|
653
|
+
|
654
|
+
.row > .col-5-xlarge {
|
655
|
+
width: 41.6666666667%;
|
656
|
+
}
|
657
|
+
|
658
|
+
.row > .off-5-xlarge {
|
659
|
+
margin-left: 41.6666666667%;
|
660
|
+
}
|
661
|
+
|
662
|
+
.row > .col-6-xlarge {
|
663
|
+
width: 50%;
|
664
|
+
}
|
665
|
+
|
666
|
+
.row > .off-6-xlarge {
|
667
|
+
margin-left: 50%;
|
668
|
+
}
|
669
|
+
|
670
|
+
.row > .col-7-xlarge {
|
671
|
+
width: 58.3333333333%;
|
672
|
+
}
|
673
|
+
|
674
|
+
.row > .off-7-xlarge {
|
675
|
+
margin-left: 58.3333333333%;
|
676
|
+
}
|
677
|
+
|
678
|
+
.row > .col-8-xlarge {
|
679
|
+
width: 66.6666666667%;
|
680
|
+
}
|
681
|
+
|
682
|
+
.row > .off-8-xlarge {
|
683
|
+
margin-left: 66.6666666667%;
|
684
|
+
}
|
685
|
+
|
686
|
+
.row > .col-9-xlarge {
|
687
|
+
width: 75%;
|
688
|
+
}
|
689
|
+
|
690
|
+
.row > .off-9-xlarge {
|
691
|
+
margin-left: 75%;
|
692
|
+
}
|
693
|
+
|
694
|
+
.row > .col-10-xlarge {
|
695
|
+
width: 83.3333333333%;
|
696
|
+
}
|
697
|
+
|
698
|
+
.row > .off-10-xlarge {
|
699
|
+
margin-left: 83.3333333333%;
|
700
|
+
}
|
701
|
+
|
702
|
+
.row > .col-11-xlarge {
|
703
|
+
width: 91.6666666667%;
|
704
|
+
}
|
705
|
+
|
706
|
+
.row > .off-11-xlarge {
|
707
|
+
margin-left: 91.6666666667%;
|
708
|
+
}
|
709
|
+
|
710
|
+
.row > .col-12-xlarge {
|
711
|
+
width: 100%;
|
712
|
+
}
|
713
|
+
|
714
|
+
.row > .off-12-xlarge {
|
715
|
+
margin-left: 100%;
|
716
|
+
}
|
717
|
+
|
718
|
+
.row.gtr-0 {
|
719
|
+
margin-top: 0;
|
720
|
+
margin-left: 0em;
|
721
|
+
}
|
722
|
+
|
723
|
+
.row.gtr-0 > * {
|
724
|
+
padding: 0 0 0 0em;
|
725
|
+
}
|
726
|
+
|
727
|
+
.row.gtr-0.gtr-uniform {
|
728
|
+
margin-top: 0em;
|
729
|
+
}
|
730
|
+
|
731
|
+
.row.gtr-0.gtr-uniform > * {
|
732
|
+
padding-top: 0em;
|
733
|
+
}
|
734
|
+
|
735
|
+
.row.gtr-25 {
|
736
|
+
margin-top: 0;
|
737
|
+
margin-left: -0.375em;
|
738
|
+
}
|
739
|
+
|
740
|
+
.row.gtr-25 > * {
|
741
|
+
padding: 0 0 0 0.375em;
|
742
|
+
}
|
743
|
+
|
744
|
+
.row.gtr-25.gtr-uniform {
|
745
|
+
margin-top: -0.375em;
|
746
|
+
}
|
747
|
+
|
748
|
+
.row.gtr-25.gtr-uniform > * {
|
749
|
+
padding-top: 0.375em;
|
750
|
+
}
|
751
|
+
|
752
|
+
.row.gtr-50 {
|
753
|
+
margin-top: 0;
|
754
|
+
margin-left: -0.75em;
|
755
|
+
}
|
756
|
+
|
757
|
+
.row.gtr-50 > * {
|
758
|
+
padding: 0 0 0 0.75em;
|
759
|
+
}
|
760
|
+
|
761
|
+
.row.gtr-50.gtr-uniform {
|
762
|
+
margin-top: -0.75em;
|
763
|
+
}
|
764
|
+
|
765
|
+
.row.gtr-50.gtr-uniform > * {
|
766
|
+
padding-top: 0.75em;
|
767
|
+
}
|
768
|
+
|
769
|
+
.row {
|
770
|
+
margin-top: 0;
|
771
|
+
margin-left: -1.5em;
|
772
|
+
}
|
773
|
+
|
774
|
+
.row > * {
|
775
|
+
padding: 0 0 0 1.5em;
|
776
|
+
}
|
777
|
+
|
778
|
+
.row.gtr-uniform {
|
779
|
+
margin-top: -1.5em;
|
780
|
+
}
|
781
|
+
|
782
|
+
.row.gtr-uniform > * {
|
783
|
+
padding-top: 1.5em;
|
784
|
+
}
|
785
|
+
|
786
|
+
.row.gtr-150 {
|
787
|
+
margin-top: 0;
|
788
|
+
margin-left: -2.25em;
|
789
|
+
}
|
790
|
+
|
791
|
+
.row.gtr-150 > * {
|
792
|
+
padding: 0 0 0 2.25em;
|
793
|
+
}
|
794
|
+
|
795
|
+
.row.gtr-150.gtr-uniform {
|
796
|
+
margin-top: -2.25em;
|
797
|
+
}
|
798
|
+
|
799
|
+
.row.gtr-150.gtr-uniform > * {
|
800
|
+
padding-top: 2.25em;
|
801
|
+
}
|
802
|
+
|
803
|
+
.row.gtr-200 {
|
804
|
+
margin-top: 0;
|
805
|
+
margin-left: -3em;
|
806
|
+
}
|
807
|
+
|
808
|
+
.row.gtr-200 > * {
|
809
|
+
padding: 0 0 0 3em;
|
810
|
+
}
|
811
|
+
|
812
|
+
.row.gtr-200.gtr-uniform {
|
813
|
+
margin-top: -3em;
|
814
|
+
}
|
815
|
+
|
816
|
+
.row.gtr-200.gtr-uniform > * {
|
817
|
+
padding-top: 3em;
|
818
|
+
}
|
819
|
+
|
820
|
+
}
|
821
|
+
|
822
|
+
@media screen and (max-width: 1280px) {
|
823
|
+
|
824
|
+
.row {
|
825
|
+
display: flex;
|
826
|
+
flex-wrap: wrap;
|
827
|
+
box-sizing: border-box;
|
828
|
+
align-items: stretch;
|
829
|
+
}
|
830
|
+
|
831
|
+
.row > * {
|
832
|
+
box-sizing: border-box;
|
833
|
+
}
|
834
|
+
|
835
|
+
.row.gtr-uniform > * > :last-child {
|
836
|
+
margin-bottom: 0;
|
837
|
+
}
|
838
|
+
|
839
|
+
.row.aln-left {
|
840
|
+
justify-content: flex-start;
|
841
|
+
}
|
842
|
+
|
843
|
+
.row.aln-center {
|
844
|
+
justify-content: center;
|
845
|
+
}
|
846
|
+
|
847
|
+
.row.aln-right {
|
848
|
+
justify-content: flex-end;
|
849
|
+
}
|
850
|
+
|
851
|
+
.row.aln-top {
|
852
|
+
align-items: flex-start;
|
853
|
+
}
|
854
|
+
|
855
|
+
.row.aln-middle {
|
856
|
+
align-items: center;
|
857
|
+
}
|
858
|
+
|
859
|
+
.row.aln-bottom {
|
860
|
+
align-items: flex-end;
|
861
|
+
}
|
862
|
+
|
863
|
+
.row > .imp-large {
|
864
|
+
order: -1;
|
865
|
+
}
|
866
|
+
|
867
|
+
.row > .col-1-large {
|
868
|
+
width: 8.3333333333%;
|
869
|
+
}
|
870
|
+
|
871
|
+
.row > .off-1-large {
|
872
|
+
margin-left: 8.3333333333%;
|
873
|
+
}
|
874
|
+
|
875
|
+
.row > .col-2-large {
|
876
|
+
width: 16.6666666667%;
|
877
|
+
}
|
878
|
+
|
879
|
+
.row > .off-2-large {
|
880
|
+
margin-left: 16.6666666667%;
|
881
|
+
}
|
882
|
+
|
883
|
+
.row > .col-3-large {
|
884
|
+
width: 25%;
|
885
|
+
}
|
886
|
+
|
887
|
+
.row > .off-3-large {
|
888
|
+
margin-left: 25%;
|
889
|
+
}
|
890
|
+
|
891
|
+
.row > .col-4-large {
|
892
|
+
width: 33.3333333333%;
|
893
|
+
}
|
894
|
+
|
895
|
+
.row > .off-4-large {
|
896
|
+
margin-left: 33.3333333333%;
|
897
|
+
}
|
898
|
+
|
899
|
+
.row > .col-5-large {
|
900
|
+
width: 41.6666666667%;
|
901
|
+
}
|
902
|
+
|
903
|
+
.row > .off-5-large {
|
904
|
+
margin-left: 41.6666666667%;
|
905
|
+
}
|
906
|
+
|
907
|
+
.row > .col-6-large {
|
908
|
+
width: 50%;
|
909
|
+
}
|
910
|
+
|
911
|
+
.row > .off-6-large {
|
912
|
+
margin-left: 50%;
|
913
|
+
}
|
914
|
+
|
915
|
+
.row > .col-7-large {
|
916
|
+
width: 58.3333333333%;
|
917
|
+
}
|
918
|
+
|
919
|
+
.row > .off-7-large {
|
920
|
+
margin-left: 58.3333333333%;
|
921
|
+
}
|
922
|
+
|
923
|
+
.row > .col-8-large {
|
924
|
+
width: 66.6666666667%;
|
925
|
+
}
|
926
|
+
|
927
|
+
.row > .off-8-large {
|
928
|
+
margin-left: 66.6666666667%;
|
929
|
+
}
|
930
|
+
|
931
|
+
.row > .col-9-large {
|
932
|
+
width: 75%;
|
933
|
+
}
|
934
|
+
|
935
|
+
.row > .off-9-large {
|
936
|
+
margin-left: 75%;
|
937
|
+
}
|
938
|
+
|
939
|
+
.row > .col-10-large {
|
940
|
+
width: 83.3333333333%;
|
941
|
+
}
|
942
|
+
|
943
|
+
.row > .off-10-large {
|
944
|
+
margin-left: 83.3333333333%;
|
945
|
+
}
|
946
|
+
|
947
|
+
.row > .col-11-large {
|
948
|
+
width: 91.6666666667%;
|
949
|
+
}
|
950
|
+
|
951
|
+
.row > .off-11-large {
|
952
|
+
margin-left: 91.6666666667%;
|
953
|
+
}
|
954
|
+
|
955
|
+
.row > .col-12-large {
|
956
|
+
width: 100%;
|
957
|
+
}
|
958
|
+
|
959
|
+
.row > .off-12-large {
|
960
|
+
margin-left: 100%;
|
961
|
+
}
|
962
|
+
|
963
|
+
.row.gtr-0 {
|
964
|
+
margin-top: 0;
|
965
|
+
margin-left: 0em;
|
966
|
+
}
|
967
|
+
|
968
|
+
.row.gtr-0 > * {
|
969
|
+
padding: 0 0 0 0em;
|
970
|
+
}
|
971
|
+
|
972
|
+
.row.gtr-0.gtr-uniform {
|
973
|
+
margin-top: 0em;
|
974
|
+
}
|
975
|
+
|
976
|
+
.row.gtr-0.gtr-uniform > * {
|
977
|
+
padding-top: 0em;
|
978
|
+
}
|
979
|
+
|
980
|
+
.row.gtr-25 {
|
981
|
+
margin-top: 0;
|
982
|
+
margin-left: -0.375em;
|
983
|
+
}
|
984
|
+
|
985
|
+
.row.gtr-25 > * {
|
986
|
+
padding: 0 0 0 0.375em;
|
987
|
+
}
|
988
|
+
|
989
|
+
.row.gtr-25.gtr-uniform {
|
990
|
+
margin-top: -0.375em;
|
991
|
+
}
|
992
|
+
|
993
|
+
.row.gtr-25.gtr-uniform > * {
|
994
|
+
padding-top: 0.375em;
|
995
|
+
}
|
996
|
+
|
997
|
+
.row.gtr-50 {
|
998
|
+
margin-top: 0;
|
999
|
+
margin-left: -0.75em;
|
1000
|
+
}
|
1001
|
+
|
1002
|
+
.row.gtr-50 > * {
|
1003
|
+
padding: 0 0 0 0.75em;
|
1004
|
+
}
|
1005
|
+
|
1006
|
+
.row.gtr-50.gtr-uniform {
|
1007
|
+
margin-top: -0.75em;
|
1008
|
+
}
|
1009
|
+
|
1010
|
+
.row.gtr-50.gtr-uniform > * {
|
1011
|
+
padding-top: 0.75em;
|
1012
|
+
}
|
1013
|
+
|
1014
|
+
.row {
|
1015
|
+
margin-top: 0;
|
1016
|
+
margin-left: -1.5em;
|
1017
|
+
}
|
1018
|
+
|
1019
|
+
.row > * {
|
1020
|
+
padding: 0 0 0 1.5em;
|
1021
|
+
}
|
1022
|
+
|
1023
|
+
.row.gtr-uniform {
|
1024
|
+
margin-top: -1.5em;
|
1025
|
+
}
|
1026
|
+
|
1027
|
+
.row.gtr-uniform > * {
|
1028
|
+
padding-top: 1.5em;
|
1029
|
+
}
|
1030
|
+
|
1031
|
+
.row.gtr-150 {
|
1032
|
+
margin-top: 0;
|
1033
|
+
margin-left: -2.25em;
|
1034
|
+
}
|
1035
|
+
|
1036
|
+
.row.gtr-150 > * {
|
1037
|
+
padding: 0 0 0 2.25em;
|
1038
|
+
}
|
1039
|
+
|
1040
|
+
.row.gtr-150.gtr-uniform {
|
1041
|
+
margin-top: -2.25em;
|
1042
|
+
}
|
1043
|
+
|
1044
|
+
.row.gtr-150.gtr-uniform > * {
|
1045
|
+
padding-top: 2.25em;
|
1046
|
+
}
|
1047
|
+
|
1048
|
+
.row.gtr-200 {
|
1049
|
+
margin-top: 0;
|
1050
|
+
margin-left: -3em;
|
1051
|
+
}
|
1052
|
+
|
1053
|
+
.row.gtr-200 > * {
|
1054
|
+
padding: 0 0 0 3em;
|
1055
|
+
}
|
1056
|
+
|
1057
|
+
.row.gtr-200.gtr-uniform {
|
1058
|
+
margin-top: -3em;
|
1059
|
+
}
|
1060
|
+
|
1061
|
+
.row.gtr-200.gtr-uniform > * {
|
1062
|
+
padding-top: 3em;
|
1063
|
+
}
|
1064
|
+
|
1065
|
+
}
|
1066
|
+
|
1067
|
+
@media screen and (max-width: 980px) {
|
1068
|
+
|
1069
|
+
.row {
|
1070
|
+
display: flex;
|
1071
|
+
flex-wrap: wrap;
|
1072
|
+
box-sizing: border-box;
|
1073
|
+
align-items: stretch;
|
1074
|
+
}
|
1075
|
+
|
1076
|
+
.row > * {
|
1077
|
+
box-sizing: border-box;
|
1078
|
+
}
|
1079
|
+
|
1080
|
+
.row.gtr-uniform > * > :last-child {
|
1081
|
+
margin-bottom: 0;
|
1082
|
+
}
|
1083
|
+
|
1084
|
+
.row.aln-left {
|
1085
|
+
justify-content: flex-start;
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
.row.aln-center {
|
1089
|
+
justify-content: center;
|
1090
|
+
}
|
1091
|
+
|
1092
|
+
.row.aln-right {
|
1093
|
+
justify-content: flex-end;
|
1094
|
+
}
|
1095
|
+
|
1096
|
+
.row.aln-top {
|
1097
|
+
align-items: flex-start;
|
1098
|
+
}
|
1099
|
+
|
1100
|
+
.row.aln-middle {
|
1101
|
+
align-items: center;
|
1102
|
+
}
|
1103
|
+
|
1104
|
+
.row.aln-bottom {
|
1105
|
+
align-items: flex-end;
|
1106
|
+
}
|
1107
|
+
|
1108
|
+
.row > .imp-medium {
|
1109
|
+
order: -1;
|
1110
|
+
}
|
1111
|
+
|
1112
|
+
.row > .col-1-medium {
|
1113
|
+
width: 8.3333333333%;
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
.row > .off-1-medium {
|
1117
|
+
margin-left: 8.3333333333%;
|
1118
|
+
}
|
1119
|
+
|
1120
|
+
.row > .col-2-medium {
|
1121
|
+
width: 16.6666666667%;
|
1122
|
+
}
|
1123
|
+
|
1124
|
+
.row > .off-2-medium {
|
1125
|
+
margin-left: 16.6666666667%;
|
1126
|
+
}
|
1127
|
+
|
1128
|
+
.row > .col-3-medium {
|
1129
|
+
width: 25%;
|
1130
|
+
}
|
1131
|
+
|
1132
|
+
.row > .off-3-medium {
|
1133
|
+
margin-left: 25%;
|
1134
|
+
}
|
1135
|
+
|
1136
|
+
.row > .col-4-medium {
|
1137
|
+
width: 33.3333333333%;
|
1138
|
+
}
|
1139
|
+
|
1140
|
+
.row > .off-4-medium {
|
1141
|
+
margin-left: 33.3333333333%;
|
1142
|
+
}
|
1143
|
+
|
1144
|
+
.row > .col-5-medium {
|
1145
|
+
width: 41.6666666667%;
|
1146
|
+
}
|
1147
|
+
|
1148
|
+
.row > .off-5-medium {
|
1149
|
+
margin-left: 41.6666666667%;
|
1150
|
+
}
|
1151
|
+
|
1152
|
+
.row > .col-6-medium {
|
1153
|
+
width: 50%;
|
1154
|
+
}
|
1155
|
+
|
1156
|
+
.row > .off-6-medium {
|
1157
|
+
margin-left: 50%;
|
1158
|
+
}
|
1159
|
+
|
1160
|
+
.row > .col-7-medium {
|
1161
|
+
width: 58.3333333333%;
|
1162
|
+
}
|
1163
|
+
|
1164
|
+
.row > .off-7-medium {
|
1165
|
+
margin-left: 58.3333333333%;
|
1166
|
+
}
|
1167
|
+
|
1168
|
+
.row > .col-8-medium {
|
1169
|
+
width: 66.6666666667%;
|
1170
|
+
}
|
1171
|
+
|
1172
|
+
.row > .off-8-medium {
|
1173
|
+
margin-left: 66.6666666667%;
|
1174
|
+
}
|
1175
|
+
|
1176
|
+
.row > .col-9-medium {
|
1177
|
+
width: 75%;
|
1178
|
+
}
|
1179
|
+
|
1180
|
+
.row > .off-9-medium {
|
1181
|
+
margin-left: 75%;
|
1182
|
+
}
|
1183
|
+
|
1184
|
+
.row > .col-10-medium {
|
1185
|
+
width: 83.3333333333%;
|
1186
|
+
}
|
1187
|
+
|
1188
|
+
.row > .off-10-medium {
|
1189
|
+
margin-left: 83.3333333333%;
|
1190
|
+
}
|
1191
|
+
|
1192
|
+
.row > .col-11-medium {
|
1193
|
+
width: 91.6666666667%;
|
1194
|
+
}
|
1195
|
+
|
1196
|
+
.row > .off-11-medium {
|
1197
|
+
margin-left: 91.6666666667%;
|
1198
|
+
}
|
1199
|
+
|
1200
|
+
.row > .col-12-medium {
|
1201
|
+
width: 100%;
|
1202
|
+
}
|
1203
|
+
|
1204
|
+
.row > .off-12-medium {
|
1205
|
+
margin-left: 100%;
|
1206
|
+
}
|
1207
|
+
|
1208
|
+
.row.gtr-0 {
|
1209
|
+
margin-top: 0;
|
1210
|
+
margin-left: 0em;
|
1211
|
+
}
|
1212
|
+
|
1213
|
+
.row.gtr-0 > * {
|
1214
|
+
padding: 0 0 0 0em;
|
1215
|
+
}
|
1216
|
+
|
1217
|
+
.row.gtr-0.gtr-uniform {
|
1218
|
+
margin-top: 0em;
|
1219
|
+
}
|
1220
|
+
|
1221
|
+
.row.gtr-0.gtr-uniform > * {
|
1222
|
+
padding-top: 0em;
|
1223
|
+
}
|
1224
|
+
|
1225
|
+
.row.gtr-25 {
|
1226
|
+
margin-top: 0;
|
1227
|
+
margin-left: -0.375em;
|
1228
|
+
}
|
1229
|
+
|
1230
|
+
.row.gtr-25 > * {
|
1231
|
+
padding: 0 0 0 0.375em;
|
1232
|
+
}
|
1233
|
+
|
1234
|
+
.row.gtr-25.gtr-uniform {
|
1235
|
+
margin-top: -0.375em;
|
1236
|
+
}
|
1237
|
+
|
1238
|
+
.row.gtr-25.gtr-uniform > * {
|
1239
|
+
padding-top: 0.375em;
|
1240
|
+
}
|
1241
|
+
|
1242
|
+
.row.gtr-50 {
|
1243
|
+
margin-top: 0;
|
1244
|
+
margin-left: -0.75em;
|
1245
|
+
}
|
1246
|
+
|
1247
|
+
.row.gtr-50 > * {
|
1248
|
+
padding: 0 0 0 0.75em;
|
1249
|
+
}
|
1250
|
+
|
1251
|
+
.row.gtr-50.gtr-uniform {
|
1252
|
+
margin-top: -0.75em;
|
1253
|
+
}
|
1254
|
+
|
1255
|
+
.row.gtr-50.gtr-uniform > * {
|
1256
|
+
padding-top: 0.75em;
|
1257
|
+
}
|
1258
|
+
|
1259
|
+
.row {
|
1260
|
+
margin-top: 0;
|
1261
|
+
margin-left: -1.5em;
|
1262
|
+
}
|
1263
|
+
|
1264
|
+
.row > * {
|
1265
|
+
padding: 0 0 0 1.5em;
|
1266
|
+
}
|
1267
|
+
|
1268
|
+
.row.gtr-uniform {
|
1269
|
+
margin-top: -1.5em;
|
1270
|
+
}
|
1271
|
+
|
1272
|
+
.row.gtr-uniform > * {
|
1273
|
+
padding-top: 1.5em;
|
1274
|
+
}
|
1275
|
+
|
1276
|
+
.row.gtr-150 {
|
1277
|
+
margin-top: 0;
|
1278
|
+
margin-left: -2.25em;
|
1279
|
+
}
|
1280
|
+
|
1281
|
+
.row.gtr-150 > * {
|
1282
|
+
padding: 0 0 0 2.25em;
|
1283
|
+
}
|
1284
|
+
|
1285
|
+
.row.gtr-150.gtr-uniform {
|
1286
|
+
margin-top: -2.25em;
|
1287
|
+
}
|
1288
|
+
|
1289
|
+
.row.gtr-150.gtr-uniform > * {
|
1290
|
+
padding-top: 2.25em;
|
1291
|
+
}
|
1292
|
+
|
1293
|
+
.row.gtr-200 {
|
1294
|
+
margin-top: 0;
|
1295
|
+
margin-left: -3em;
|
1296
|
+
}
|
1297
|
+
|
1298
|
+
.row.gtr-200 > * {
|
1299
|
+
padding: 0 0 0 3em;
|
1300
|
+
}
|
1301
|
+
|
1302
|
+
.row.gtr-200.gtr-uniform {
|
1303
|
+
margin-top: -3em;
|
1304
|
+
}
|
1305
|
+
|
1306
|
+
.row.gtr-200.gtr-uniform > * {
|
1307
|
+
padding-top: 3em;
|
1308
|
+
}
|
1309
|
+
|
1310
|
+
}
|
1311
|
+
|
1312
|
+
@media screen and (max-width: 736px) {
|
1313
|
+
|
1314
|
+
.row {
|
1315
|
+
display: flex;
|
1316
|
+
flex-wrap: wrap;
|
1317
|
+
box-sizing: border-box;
|
1318
|
+
align-items: stretch;
|
1319
|
+
}
|
1320
|
+
|
1321
|
+
.row > * {
|
1322
|
+
box-sizing: border-box;
|
1323
|
+
}
|
1324
|
+
|
1325
|
+
.row.gtr-uniform > * > :last-child {
|
1326
|
+
margin-bottom: 0;
|
1327
|
+
}
|
1328
|
+
|
1329
|
+
.row.aln-left {
|
1330
|
+
justify-content: flex-start;
|
1331
|
+
}
|
1332
|
+
|
1333
|
+
.row.aln-center {
|
1334
|
+
justify-content: center;
|
1335
|
+
}
|
1336
|
+
|
1337
|
+
.row.aln-right {
|
1338
|
+
justify-content: flex-end;
|
1339
|
+
}
|
1340
|
+
|
1341
|
+
.row.aln-top {
|
1342
|
+
align-items: flex-start;
|
1343
|
+
}
|
1344
|
+
|
1345
|
+
.row.aln-middle {
|
1346
|
+
align-items: center;
|
1347
|
+
}
|
1348
|
+
|
1349
|
+
.row.aln-bottom {
|
1350
|
+
align-items: flex-end;
|
1351
|
+
}
|
1352
|
+
|
1353
|
+
.row > .imp-small {
|
1354
|
+
order: -1;
|
1355
|
+
}
|
1356
|
+
|
1357
|
+
.row > .col-1-small {
|
1358
|
+
width: 8.3333333333%;
|
1359
|
+
}
|
1360
|
+
|
1361
|
+
.row > .off-1-small {
|
1362
|
+
margin-left: 8.3333333333%;
|
1363
|
+
}
|
1364
|
+
|
1365
|
+
.row > .col-2-small {
|
1366
|
+
width: 16.6666666667%;
|
1367
|
+
}
|
1368
|
+
|
1369
|
+
.row > .off-2-small {
|
1370
|
+
margin-left: 16.6666666667%;
|
1371
|
+
}
|
1372
|
+
|
1373
|
+
.row > .col-3-small {
|
1374
|
+
width: 25%;
|
1375
|
+
}
|
1376
|
+
|
1377
|
+
.row > .off-3-small {
|
1378
|
+
margin-left: 25%;
|
1379
|
+
}
|
1380
|
+
|
1381
|
+
.row > .col-4-small {
|
1382
|
+
width: 33.3333333333%;
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
.row > .off-4-small {
|
1386
|
+
margin-left: 33.3333333333%;
|
1387
|
+
}
|
1388
|
+
|
1389
|
+
.row > .col-5-small {
|
1390
|
+
width: 41.6666666667%;
|
1391
|
+
}
|
1392
|
+
|
1393
|
+
.row > .off-5-small {
|
1394
|
+
margin-left: 41.6666666667%;
|
1395
|
+
}
|
1396
|
+
|
1397
|
+
.row > .col-6-small {
|
1398
|
+
width: 50%;
|
1399
|
+
}
|
1400
|
+
|
1401
|
+
.row > .off-6-small {
|
1402
|
+
margin-left: 50%;
|
1403
|
+
}
|
1404
|
+
|
1405
|
+
.row > .col-7-small {
|
1406
|
+
width: 58.3333333333%;
|
1407
|
+
}
|
1408
|
+
|
1409
|
+
.row > .off-7-small {
|
1410
|
+
margin-left: 58.3333333333%;
|
1411
|
+
}
|
1412
|
+
|
1413
|
+
.row > .col-8-small {
|
1414
|
+
width: 66.6666666667%;
|
1415
|
+
}
|
1416
|
+
|
1417
|
+
.row > .off-8-small {
|
1418
|
+
margin-left: 66.6666666667%;
|
1419
|
+
}
|
1420
|
+
|
1421
|
+
.row > .col-9-small {
|
1422
|
+
width: 75%;
|
1423
|
+
}
|
1424
|
+
|
1425
|
+
.row > .off-9-small {
|
1426
|
+
margin-left: 75%;
|
1427
|
+
}
|
1428
|
+
|
1429
|
+
.row > .col-10-small {
|
1430
|
+
width: 83.3333333333%;
|
1431
|
+
}
|
1432
|
+
|
1433
|
+
.row > .off-10-small {
|
1434
|
+
margin-left: 83.3333333333%;
|
1435
|
+
}
|
1436
|
+
|
1437
|
+
.row > .col-11-small {
|
1438
|
+
width: 91.6666666667%;
|
1439
|
+
}
|
1440
|
+
|
1441
|
+
.row > .off-11-small {
|
1442
|
+
margin-left: 91.6666666667%;
|
1443
|
+
}
|
1444
|
+
|
1445
|
+
.row > .col-12-small {
|
1446
|
+
width: 100%;
|
1447
|
+
}
|
1448
|
+
|
1449
|
+
.row > .off-12-small {
|
1450
|
+
margin-left: 100%;
|
1451
|
+
}
|
1452
|
+
|
1453
|
+
.row.gtr-0 {
|
1454
|
+
margin-top: 0;
|
1455
|
+
margin-left: 0em;
|
1456
|
+
}
|
1457
|
+
|
1458
|
+
.row.gtr-0 > * {
|
1459
|
+
padding: 0 0 0 0em;
|
1460
|
+
}
|
1461
|
+
|
1462
|
+
.row.gtr-0.gtr-uniform {
|
1463
|
+
margin-top: 0em;
|
1464
|
+
}
|
1465
|
+
|
1466
|
+
.row.gtr-0.gtr-uniform > * {
|
1467
|
+
padding-top: 0em;
|
1468
|
+
}
|
1469
|
+
|
1470
|
+
.row.gtr-25 {
|
1471
|
+
margin-top: 0;
|
1472
|
+
margin-left: -0.25em;
|
1473
|
+
}
|
1474
|
+
|
1475
|
+
.row.gtr-25 > * {
|
1476
|
+
padding: 0 0 0 0.25em;
|
1477
|
+
}
|
1478
|
+
|
1479
|
+
.row.gtr-25.gtr-uniform {
|
1480
|
+
margin-top: -0.25em;
|
1481
|
+
}
|
1482
|
+
|
1483
|
+
.row.gtr-25.gtr-uniform > * {
|
1484
|
+
padding-top: 0.25em;
|
1485
|
+
}
|
1486
|
+
|
1487
|
+
.row.gtr-50 {
|
1488
|
+
margin-top: 0;
|
1489
|
+
margin-left: -0.5em;
|
1490
|
+
}
|
1491
|
+
|
1492
|
+
.row.gtr-50 > * {
|
1493
|
+
padding: 0 0 0 0.5em;
|
1494
|
+
}
|
1495
|
+
|
1496
|
+
.row.gtr-50.gtr-uniform {
|
1497
|
+
margin-top: -0.5em;
|
1498
|
+
}
|
1499
|
+
|
1500
|
+
.row.gtr-50.gtr-uniform > * {
|
1501
|
+
padding-top: 0.5em;
|
1502
|
+
}
|
1503
|
+
|
1504
|
+
.row {
|
1505
|
+
margin-top: 0;
|
1506
|
+
margin-left: -1em;
|
1507
|
+
}
|
1508
|
+
|
1509
|
+
.row > * {
|
1510
|
+
padding: 0 0 0 1em;
|
1511
|
+
}
|
1512
|
+
|
1513
|
+
.row.gtr-uniform {
|
1514
|
+
margin-top: -1em;
|
1515
|
+
}
|
1516
|
+
|
1517
|
+
.row.gtr-uniform > * {
|
1518
|
+
padding-top: 1em;
|
1519
|
+
}
|
1520
|
+
|
1521
|
+
.row.gtr-150 {
|
1522
|
+
margin-top: 0;
|
1523
|
+
margin-left: -1.5em;
|
1524
|
+
}
|
1525
|
+
|
1526
|
+
.row.gtr-150 > * {
|
1527
|
+
padding: 0 0 0 1.5em;
|
1528
|
+
}
|
1529
|
+
|
1530
|
+
.row.gtr-150.gtr-uniform {
|
1531
|
+
margin-top: -1.5em;
|
1532
|
+
}
|
1533
|
+
|
1534
|
+
.row.gtr-150.gtr-uniform > * {
|
1535
|
+
padding-top: 1.5em;
|
1536
|
+
}
|
1537
|
+
|
1538
|
+
.row.gtr-200 {
|
1539
|
+
margin-top: 0;
|
1540
|
+
margin-left: -2em;
|
1541
|
+
}
|
1542
|
+
|
1543
|
+
.row.gtr-200 > * {
|
1544
|
+
padding: 0 0 0 2em;
|
1545
|
+
}
|
1546
|
+
|
1547
|
+
.row.gtr-200.gtr-uniform {
|
1548
|
+
margin-top: -2em;
|
1549
|
+
}
|
1550
|
+
|
1551
|
+
.row.gtr-200.gtr-uniform > * {
|
1552
|
+
padding-top: 2em;
|
1553
|
+
}
|
1554
|
+
|
1555
|
+
}
|
1556
|
+
|
1557
|
+
@media screen and (max-width: 480px) {
|
1558
|
+
|
1559
|
+
.row {
|
1560
|
+
display: flex;
|
1561
|
+
flex-wrap: wrap;
|
1562
|
+
box-sizing: border-box;
|
1563
|
+
align-items: stretch;
|
1564
|
+
}
|
1565
|
+
|
1566
|
+
.row > * {
|
1567
|
+
box-sizing: border-box;
|
1568
|
+
}
|
1569
|
+
|
1570
|
+
.row.gtr-uniform > * > :last-child {
|
1571
|
+
margin-bottom: 0;
|
1572
|
+
}
|
1573
|
+
|
1574
|
+
.row.aln-left {
|
1575
|
+
justify-content: flex-start;
|
1576
|
+
}
|
1577
|
+
|
1578
|
+
.row.aln-center {
|
1579
|
+
justify-content: center;
|
1580
|
+
}
|
1581
|
+
|
1582
|
+
.row.aln-right {
|
1583
|
+
justify-content: flex-end;
|
1584
|
+
}
|
1585
|
+
|
1586
|
+
.row.aln-top {
|
1587
|
+
align-items: flex-start;
|
1588
|
+
}
|
1589
|
+
|
1590
|
+
.row.aln-middle {
|
1591
|
+
align-items: center;
|
1592
|
+
}
|
1593
|
+
|
1594
|
+
.row.aln-bottom {
|
1595
|
+
align-items: flex-end;
|
1596
|
+
}
|
1597
|
+
|
1598
|
+
.row > .imp-xsmall {
|
1599
|
+
order: -1;
|
1600
|
+
}
|
1601
|
+
|
1602
|
+
.row > .col-1-xsmall {
|
1603
|
+
width: 8.3333333333%;
|
1604
|
+
}
|
1605
|
+
|
1606
|
+
.row > .off-1-xsmall {
|
1607
|
+
margin-left: 8.3333333333%;
|
1608
|
+
}
|
1609
|
+
|
1610
|
+
.row > .col-2-xsmall {
|
1611
|
+
width: 16.6666666667%;
|
1612
|
+
}
|
1613
|
+
|
1614
|
+
.row > .off-2-xsmall {
|
1615
|
+
margin-left: 16.6666666667%;
|
1616
|
+
}
|
1617
|
+
|
1618
|
+
.row > .col-3-xsmall {
|
1619
|
+
width: 25%;
|
1620
|
+
}
|
1621
|
+
|
1622
|
+
.row > .off-3-xsmall {
|
1623
|
+
margin-left: 25%;
|
1624
|
+
}
|
1625
|
+
|
1626
|
+
.row > .col-4-xsmall {
|
1627
|
+
width: 33.3333333333%;
|
1628
|
+
}
|
1629
|
+
|
1630
|
+
.row > .off-4-xsmall {
|
1631
|
+
margin-left: 33.3333333333%;
|
1632
|
+
}
|
1633
|
+
|
1634
|
+
.row > .col-5-xsmall {
|
1635
|
+
width: 41.6666666667%;
|
1636
|
+
}
|
1637
|
+
|
1638
|
+
.row > .off-5-xsmall {
|
1639
|
+
margin-left: 41.6666666667%;
|
1640
|
+
}
|
1641
|
+
|
1642
|
+
.row > .col-6-xsmall {
|
1643
|
+
width: 50%;
|
1644
|
+
}
|
1645
|
+
|
1646
|
+
.row > .off-6-xsmall {
|
1647
|
+
margin-left: 50%;
|
1648
|
+
}
|
1649
|
+
|
1650
|
+
.row > .col-7-xsmall {
|
1651
|
+
width: 58.3333333333%;
|
1652
|
+
}
|
1653
|
+
|
1654
|
+
.row > .off-7-xsmall {
|
1655
|
+
margin-left: 58.3333333333%;
|
1656
|
+
}
|
1657
|
+
|
1658
|
+
.row > .col-8-xsmall {
|
1659
|
+
width: 66.6666666667%;
|
1660
|
+
}
|
1661
|
+
|
1662
|
+
.row > .off-8-xsmall {
|
1663
|
+
margin-left: 66.6666666667%;
|
1664
|
+
}
|
1665
|
+
|
1666
|
+
.row > .col-9-xsmall {
|
1667
|
+
width: 75%;
|
1668
|
+
}
|
1669
|
+
|
1670
|
+
.row > .off-9-xsmall {
|
1671
|
+
margin-left: 75%;
|
1672
|
+
}
|
1673
|
+
|
1674
|
+
.row > .col-10-xsmall {
|
1675
|
+
width: 83.3333333333%;
|
1676
|
+
}
|
1677
|
+
|
1678
|
+
.row > .off-10-xsmall {
|
1679
|
+
margin-left: 83.3333333333%;
|
1680
|
+
}
|
1681
|
+
|
1682
|
+
.row > .col-11-xsmall {
|
1683
|
+
width: 91.6666666667%;
|
1684
|
+
}
|
1685
|
+
|
1686
|
+
.row > .off-11-xsmall {
|
1687
|
+
margin-left: 91.6666666667%;
|
1688
|
+
}
|
1689
|
+
|
1690
|
+
.row > .col-12-xsmall {
|
1691
|
+
width: 100%;
|
1692
|
+
}
|
1693
|
+
|
1694
|
+
.row > .off-12-xsmall {
|
1695
|
+
margin-left: 100%;
|
1696
|
+
}
|
1697
|
+
|
1698
|
+
.row.gtr-0 {
|
1699
|
+
margin-top: 0;
|
1700
|
+
margin-left: 0em;
|
1701
|
+
}
|
1702
|
+
|
1703
|
+
.row.gtr-0 > * {
|
1704
|
+
padding: 0 0 0 0em;
|
1705
|
+
}
|
1706
|
+
|
1707
|
+
.row.gtr-0.gtr-uniform {
|
1708
|
+
margin-top: 0em;
|
1709
|
+
}
|
1710
|
+
|
1711
|
+
.row.gtr-0.gtr-uniform > * {
|
1712
|
+
padding-top: 0em;
|
1713
|
+
}
|
1714
|
+
|
1715
|
+
.row.gtr-25 {
|
1716
|
+
margin-top: 0;
|
1717
|
+
margin-left: -0.3125em;
|
1718
|
+
}
|
1719
|
+
|
1720
|
+
.row.gtr-25 > * {
|
1721
|
+
padding: 0 0 0 0.3125em;
|
1722
|
+
}
|
1723
|
+
|
1724
|
+
.row.gtr-25.gtr-uniform {
|
1725
|
+
margin-top: -0.3125em;
|
1726
|
+
}
|
1727
|
+
|
1728
|
+
.row.gtr-25.gtr-uniform > * {
|
1729
|
+
padding-top: 0.3125em;
|
1730
|
+
}
|
1731
|
+
|
1732
|
+
.row.gtr-50 {
|
1733
|
+
margin-top: 0;
|
1734
|
+
margin-left: -0.625em;
|
1735
|
+
}
|
1736
|
+
|
1737
|
+
.row.gtr-50 > * {
|
1738
|
+
padding: 0 0 0 0.625em;
|
1739
|
+
}
|
1740
|
+
|
1741
|
+
.row.gtr-50.gtr-uniform {
|
1742
|
+
margin-top: -0.625em;
|
1743
|
+
}
|
1744
|
+
|
1745
|
+
.row.gtr-50.gtr-uniform > * {
|
1746
|
+
padding-top: 0.625em;
|
1747
|
+
}
|
1748
|
+
|
1749
|
+
.row {
|
1750
|
+
margin-top: 0;
|
1751
|
+
margin-left: -1.25em;
|
1752
|
+
}
|
1753
|
+
|
1754
|
+
.row > * {
|
1755
|
+
padding: 0 0 0 1.25em;
|
1756
|
+
}
|
1757
|
+
|
1758
|
+
.row.gtr-uniform {
|
1759
|
+
margin-top: -1.25em;
|
1760
|
+
}
|
1761
|
+
|
1762
|
+
.row.gtr-uniform > * {
|
1763
|
+
padding-top: 1.25em;
|
1764
|
+
}
|
1765
|
+
|
1766
|
+
.row.gtr-150 {
|
1767
|
+
margin-top: 0;
|
1768
|
+
margin-left: -1.875em;
|
1769
|
+
}
|
1770
|
+
|
1771
|
+
.row.gtr-150 > * {
|
1772
|
+
padding: 0 0 0 1.875em;
|
1773
|
+
}
|
1774
|
+
|
1775
|
+
.row.gtr-150.gtr-uniform {
|
1776
|
+
margin-top: -1.875em;
|
1777
|
+
}
|
1778
|
+
|
1779
|
+
.row.gtr-150.gtr-uniform > * {
|
1780
|
+
padding-top: 1.875em;
|
1781
|
+
}
|
1782
|
+
|
1783
|
+
.row.gtr-200 {
|
1784
|
+
margin-top: 0;
|
1785
|
+
margin-left: -2.5em;
|
1786
|
+
}
|
1787
|
+
|
1788
|
+
.row.gtr-200 > * {
|
1789
|
+
padding: 0 0 0 2.5em;
|
1790
|
+
}
|
1791
|
+
|
1792
|
+
.row.gtr-200.gtr-uniform {
|
1793
|
+
margin-top: -2.5em;
|
1794
|
+
}
|
1795
|
+
|
1796
|
+
.row.gtr-200.gtr-uniform > * {
|
1797
|
+
padding-top: 2.5em;
|
1798
|
+
}
|
1799
|
+
|
1800
|
+
}
|
1801
|
+
|
1802
|
+
/* Box */
|
1803
|
+
|
1804
|
+
.box {
|
1805
|
+
border-radius: 8px;
|
1806
|
+
border: solid;
|
1807
|
+
margin-bottom: 2em;
|
1808
|
+
padding: 1.5em;
|
1809
|
+
}
|
1810
|
+
|
1811
|
+
.box > :last-child,
|
1812
|
+
.box > :last-child > :last-child,
|
1813
|
+
.box > :last-child > :last-child > :last-child {
|
1814
|
+
margin-bottom: 0;
|
1815
|
+
}
|
1816
|
+
|
1817
|
+
.box.alt {
|
1818
|
+
border: 0;
|
1819
|
+
border-radius: 0;
|
1820
|
+
padding: 0;
|
1821
|
+
}
|
1822
|
+
|
1823
|
+
.box {
|
1824
|
+
border-color: rgba(255, 255, 255, 0.35);
|
1825
|
+
}
|
1826
|
+
|
1827
|
+
/* Button */
|
1828
|
+
|
1829
|
+
input[type="submit"],
|
1830
|
+
input[type="reset"],
|
1831
|
+
input[type="button"],
|
1832
|
+
button,
|
1833
|
+
.button {
|
1834
|
+
-moz-appearance: none;
|
1835
|
+
-webkit-appearance: none;
|
1836
|
+
-ms-appearance: none;
|
1837
|
+
appearance: none;
|
1838
|
+
-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
1839
|
+
-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
1840
|
+
-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
1841
|
+
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
1842
|
+
border-radius: 8px;
|
1843
|
+
border: 0;
|
1844
|
+
cursor: pointer;
|
1845
|
+
display: inline-block;
|
1846
|
+
font-weight: 300;
|
1847
|
+
height: 2.75em;
|
1848
|
+
line-height: 2.75em;
|
1849
|
+
min-width: 9.25em;
|
1850
|
+
padding: 0 1.5em;
|
1851
|
+
text-align: center;
|
1852
|
+
text-decoration: none;
|
1853
|
+
white-space: nowrap;
|
1854
|
+
}
|
1855
|
+
|
1856
|
+
input[type="submit"].icon,
|
1857
|
+
input[type="reset"].icon,
|
1858
|
+
input[type="button"].icon,
|
1859
|
+
button.icon,
|
1860
|
+
.button.icon {
|
1861
|
+
padding-left: 1.35em;
|
1862
|
+
}
|
1863
|
+
|
1864
|
+
input[type="submit"].icon:before,
|
1865
|
+
input[type="reset"].icon:before,
|
1866
|
+
input[type="button"].icon:before,
|
1867
|
+
button.icon:before,
|
1868
|
+
.button.icon:before {
|
1869
|
+
margin-right: 0.5em;
|
1870
|
+
}
|
1871
|
+
|
1872
|
+
input[type="submit"].fit,
|
1873
|
+
input[type="reset"].fit,
|
1874
|
+
input[type="button"].fit,
|
1875
|
+
button.fit,
|
1876
|
+
.button.fit {
|
1877
|
+
width: 100%;
|
1878
|
+
}
|
1879
|
+
|
1880
|
+
input[type="submit"].small,
|
1881
|
+
input[type="reset"].small,
|
1882
|
+
input[type="button"].small,
|
1883
|
+
button.small,
|
1884
|
+
.button.small {
|
1885
|
+
font-size: 0.8em;
|
1886
|
+
}
|
1887
|
+
|
1888
|
+
input[type="submit"].large,
|
1889
|
+
input[type="reset"].large,
|
1890
|
+
input[type="button"].large,
|
1891
|
+
button.large,
|
1892
|
+
.button.large {
|
1893
|
+
font-size: 1.35em;
|
1894
|
+
}
|
1895
|
+
|
1896
|
+
input[type="submit"].disabled, input[type="submit"]:disabled,
|
1897
|
+
input[type="reset"].disabled,
|
1898
|
+
input[type="reset"]:disabled,
|
1899
|
+
input[type="button"].disabled,
|
1900
|
+
input[type="button"]:disabled,
|
1901
|
+
button.disabled,
|
1902
|
+
button:disabled,
|
1903
|
+
.button.disabled,
|
1904
|
+
.button:disabled {
|
1905
|
+
pointer-events: none;
|
1906
|
+
opacity: 0.25;
|
1907
|
+
}
|
1908
|
+
|
1909
|
+
@media screen and (max-width: 736px) {
|
1910
|
+
|
1911
|
+
input[type="submit"],
|
1912
|
+
input[type="reset"],
|
1913
|
+
input[type="button"],
|
1914
|
+
button,
|
1915
|
+
.button {
|
1916
|
+
min-width: 0;
|
1917
|
+
}
|
1918
|
+
|
1919
|
+
}
|
1920
|
+
|
1921
|
+
input[type="submit"],
|
1922
|
+
input[type="reset"],
|
1923
|
+
input[type="button"],
|
1924
|
+
button,
|
1925
|
+
.button {
|
1926
|
+
background-color: transparent;
|
1927
|
+
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
|
1928
|
+
color: #ffffff !important;
|
1929
|
+
}
|
1930
|
+
|
1931
|
+
input[type="submit"]:hover,
|
1932
|
+
input[type="reset"]:hover,
|
1933
|
+
input[type="button"]:hover,
|
1934
|
+
button:hover,
|
1935
|
+
.button:hover {
|
1936
|
+
background-color: rgba(255, 255, 255, 0.075);
|
1937
|
+
}
|
1938
|
+
|
1939
|
+
input[type="submit"]:active,
|
1940
|
+
input[type="reset"]:active,
|
1941
|
+
input[type="button"]:active,
|
1942
|
+
button:active,
|
1943
|
+
.button:active {
|
1944
|
+
background-color: rgba(255, 255, 255, 0.2);
|
1945
|
+
}
|
1946
|
+
|
1947
|
+
input[type="submit"].icon:before,
|
1948
|
+
input[type="reset"].icon:before,
|
1949
|
+
input[type="button"].icon:before,
|
1950
|
+
button.icon:before,
|
1951
|
+
.button.icon:before {
|
1952
|
+
color: rgba(255, 255, 255, 0.5);
|
1953
|
+
}
|
1954
|
+
|
1955
|
+
input[type="submit"].primary,
|
1956
|
+
input[type="reset"].primary,
|
1957
|
+
input[type="button"].primary,
|
1958
|
+
button.primary,
|
1959
|
+
.button.primary {
|
1960
|
+
background-color: #8cc9f0;
|
1961
|
+
color: #ffffff !important;
|
1962
|
+
box-shadow: none;
|
1963
|
+
}
|
1964
|
+
|
1965
|
+
input[type="submit"].primary:hover,
|
1966
|
+
input[type="reset"].primary:hover,
|
1967
|
+
input[type="button"].primary:hover,
|
1968
|
+
button.primary:hover,
|
1969
|
+
.button.primary:hover {
|
1970
|
+
background-color: #9acff2;
|
1971
|
+
}
|
1972
|
+
|
1973
|
+
input[type="submit"].primary:active,
|
1974
|
+
input[type="reset"].primary:active,
|
1975
|
+
input[type="button"].primary:active,
|
1976
|
+
button.primary:active,
|
1977
|
+
.button.primary:active {
|
1978
|
+
background-color: #7ec3ee;
|
1979
|
+
}
|
1980
|
+
|
1981
|
+
input[type="submit"].primary.icon:before,
|
1982
|
+
input[type="reset"].primary.icon:before,
|
1983
|
+
input[type="button"].primary.icon:before,
|
1984
|
+
button.primary.icon:before,
|
1985
|
+
.button.primary.icon:before {
|
1986
|
+
color: #ffffff !important;
|
1987
|
+
}
|
1988
|
+
|
1989
|
+
/* Form */
|
1990
|
+
|
1991
|
+
form {
|
1992
|
+
margin: 0 0 2em 0;
|
1993
|
+
}
|
1994
|
+
|
1995
|
+
label {
|
1996
|
+
display: block;
|
1997
|
+
font-size: 0.9em;
|
1998
|
+
font-weight: 400;
|
1999
|
+
margin: 0 0 1em 0;
|
2000
|
+
}
|
2001
|
+
|
2002
|
+
input[type="text"],
|
2003
|
+
input[type="password"],
|
2004
|
+
input[type="email"],
|
2005
|
+
select,
|
2006
|
+
textarea {
|
2007
|
+
-moz-appearance: none;
|
2008
|
+
-webkit-appearance: none;
|
2009
|
+
-ms-appearance: none;
|
2010
|
+
appearance: none;
|
2011
|
+
border-radius: 8px;
|
2012
|
+
border: solid 1px;
|
2013
|
+
color: inherit;
|
2014
|
+
display: block;
|
2015
|
+
outline: 0;
|
2016
|
+
padding: 0 1em;
|
2017
|
+
text-decoration: none;
|
2018
|
+
width: 100%;
|
2019
|
+
}
|
2020
|
+
|
2021
|
+
input[type="text"]:invalid,
|
2022
|
+
input[type="password"]:invalid,
|
2023
|
+
input[type="email"]:invalid,
|
2024
|
+
select:invalid,
|
2025
|
+
textarea:invalid {
|
2026
|
+
box-shadow: none;
|
2027
|
+
}
|
2028
|
+
|
2029
|
+
select {
|
2030
|
+
background-size: 1.25rem;
|
2031
|
+
background-repeat: no-repeat;
|
2032
|
+
background-position: calc(100% - 1rem) center;
|
2033
|
+
height: 2.75em;
|
2034
|
+
padding-right: 2.75em;
|
2035
|
+
text-overflow: ellipsis;
|
2036
|
+
}
|
2037
|
+
|
2038
|
+
select:focus::-ms-value {
|
2039
|
+
background-color: transparent;
|
2040
|
+
}
|
2041
|
+
|
2042
|
+
select::-ms-expand {
|
2043
|
+
display: none;
|
2044
|
+
}
|
2045
|
+
|
2046
|
+
input[type="text"],
|
2047
|
+
input[type="password"],
|
2048
|
+
input[type="email"],
|
2049
|
+
select {
|
2050
|
+
height: 2.75em;
|
2051
|
+
}
|
2052
|
+
|
2053
|
+
textarea {
|
2054
|
+
padding: 0.75em 1em;
|
2055
|
+
}
|
2056
|
+
|
2057
|
+
input[type="checkbox"],
|
2058
|
+
input[type="radio"] {
|
2059
|
+
-moz-appearance: none;
|
2060
|
+
-webkit-appearance: none;
|
2061
|
+
-ms-appearance: none;
|
2062
|
+
appearance: none;
|
2063
|
+
display: block;
|
2064
|
+
float: left;
|
2065
|
+
margin-right: -2em;
|
2066
|
+
opacity: 0;
|
2067
|
+
width: 1em;
|
2068
|
+
z-index: -1;
|
2069
|
+
}
|
2070
|
+
|
2071
|
+
input[type="checkbox"] + label,
|
2072
|
+
input[type="radio"] + label {
|
2073
|
+
text-decoration: none;
|
2074
|
+
cursor: pointer;
|
2075
|
+
display: inline-block;
|
2076
|
+
font-size: 1em;
|
2077
|
+
font-weight: 300;
|
2078
|
+
padding-left: 2.4em;
|
2079
|
+
padding-right: 0.75em;
|
2080
|
+
position: relative;
|
2081
|
+
}
|
2082
|
+
|
2083
|
+
input[type="checkbox"] + label:before,
|
2084
|
+
input[type="radio"] + label:before {
|
2085
|
+
-moz-osx-font-smoothing: grayscale;
|
2086
|
+
-webkit-font-smoothing: antialiased;
|
2087
|
+
font-family: FontAwesome;
|
2088
|
+
font-style: normal;
|
2089
|
+
font-weight: normal;
|
2090
|
+
text-transform: none !important;
|
2091
|
+
}
|
2092
|
+
|
2093
|
+
input[type="checkbox"] + label:before,
|
2094
|
+
input[type="radio"] + label:before {
|
2095
|
+
border-radius: 8px;
|
2096
|
+
border: solid 1px;
|
2097
|
+
content: '';
|
2098
|
+
display: inline-block;
|
2099
|
+
height: 1.65em;
|
2100
|
+
left: 0;
|
2101
|
+
line-height: 1.58125em;
|
2102
|
+
position: absolute;
|
2103
|
+
text-align: center;
|
2104
|
+
top: 0;
|
2105
|
+
width: 1.65em;
|
2106
|
+
}
|
2107
|
+
|
2108
|
+
input[type="checkbox"]:checked + label:before,
|
2109
|
+
input[type="radio"]:checked + label:before {
|
2110
|
+
content: '\f00c';
|
2111
|
+
}
|
2112
|
+
|
2113
|
+
input[type="checkbox"] + label:before {
|
2114
|
+
border-radius: 8px;
|
2115
|
+
}
|
2116
|
+
|
2117
|
+
input[type="radio"] + label:before {
|
2118
|
+
border-radius: 100%;
|
2119
|
+
}
|
2120
|
+
|
2121
|
+
::-webkit-input-placeholder {
|
2122
|
+
opacity: 1.0;
|
2123
|
+
}
|
2124
|
+
|
2125
|
+
:-moz-placeholder {
|
2126
|
+
opacity: 1.0;
|
2127
|
+
}
|
2128
|
+
|
2129
|
+
::-moz-placeholder {
|
2130
|
+
opacity: 1.0;
|
2131
|
+
}
|
2132
|
+
|
2133
|
+
:-ms-input-placeholder {
|
2134
|
+
opacity: 1.0;
|
2135
|
+
}
|
2136
|
+
|
2137
|
+
label {
|
2138
|
+
color: #ffffff;
|
2139
|
+
}
|
2140
|
+
|
2141
|
+
input[type="text"],
|
2142
|
+
input[type="password"],
|
2143
|
+
input[type="email"],
|
2144
|
+
select,
|
2145
|
+
textarea {
|
2146
|
+
background-color: rgba(255, 255, 255, 0.075);
|
2147
|
+
border-color: rgba(255, 255, 255, 0.35);
|
2148
|
+
}
|
2149
|
+
|
2150
|
+
input[type="text"]:focus,
|
2151
|
+
input[type="password"]:focus,
|
2152
|
+
input[type="email"]:focus,
|
2153
|
+
select:focus,
|
2154
|
+
textarea:focus {
|
2155
|
+
border-color: #8cc9f0;
|
2156
|
+
box-shadow: 0 0 0 1px #8cc9f0;
|
2157
|
+
}
|
2158
|
+
|
2159
|
+
select {
|
2160
|
+
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='rgba(255, 255, 255, 0.35)' /%3E%3C/svg%3E");
|
2161
|
+
}
|
2162
|
+
|
2163
|
+
select option {
|
2164
|
+
color: #ffffff;
|
2165
|
+
background: #935d8c;
|
2166
|
+
}
|
2167
|
+
|
2168
|
+
input[type="checkbox"] + label,
|
2169
|
+
input[type="radio"] + label {
|
2170
|
+
color: rgba(255, 255, 255, 0.65);
|
2171
|
+
}
|
2172
|
+
|
2173
|
+
input[type="checkbox"] + label:before,
|
2174
|
+
input[type="radio"] + label:before {
|
2175
|
+
background: rgba(255, 255, 255, 0.075);
|
2176
|
+
border-color: rgba(255, 255, 255, 0.35);
|
2177
|
+
}
|
2178
|
+
|
2179
|
+
input[type="checkbox"]:checked + label:before,
|
2180
|
+
input[type="radio"]:checked + label:before {
|
2181
|
+
background-color: #ffffff;
|
2182
|
+
border-color: #ffffff;
|
2183
|
+
color: #935d8c;
|
2184
|
+
}
|
2185
|
+
|
2186
|
+
input[type="checkbox"]:focus + label:before,
|
2187
|
+
input[type="radio"]:focus + label:before {
|
2188
|
+
border-color: #8cc9f0;
|
2189
|
+
box-shadow: 0 0 0 1px #8cc9f0;
|
2190
|
+
}
|
2191
|
+
|
2192
|
+
::-webkit-input-placeholder {
|
2193
|
+
color: rgba(255, 255, 255, 0.5) !important;
|
2194
|
+
}
|
2195
|
+
|
2196
|
+
:-moz-placeholder {
|
2197
|
+
color: rgba(255, 255, 255, 0.5) !important;
|
2198
|
+
}
|
2199
|
+
|
2200
|
+
::-moz-placeholder {
|
2201
|
+
color: rgba(255, 255, 255, 0.5) !important;
|
2202
|
+
}
|
2203
|
+
|
2204
|
+
:-ms-input-placeholder {
|
2205
|
+
color: rgba(255, 255, 255, 0.5) !important;
|
2206
|
+
}
|
2207
|
+
|
2208
|
+
.formerize-placeholder {
|
2209
|
+
color: rgba(255, 255, 255, 0.5) !important;
|
2210
|
+
}
|
2211
|
+
|
2212
|
+
/* Icon */
|
2213
|
+
|
2214
|
+
.icon {
|
2215
|
+
text-decoration: none;
|
2216
|
+
-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
2217
|
+
-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
2218
|
+
-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
2219
|
+
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
2220
|
+
border-bottom: none;
|
2221
|
+
position: relative;
|
2222
|
+
}
|
2223
|
+
|
2224
|
+
.icon:before {
|
2225
|
+
-moz-osx-font-smoothing: grayscale;
|
2226
|
+
-webkit-font-smoothing: antialiased;
|
2227
|
+
font-family: FontAwesome;
|
2228
|
+
font-style: normal;
|
2229
|
+
font-weight: normal;
|
2230
|
+
text-transform: none !important;
|
2231
|
+
}
|
2232
|
+
|
2233
|
+
.icon > .label {
|
2234
|
+
display: none;
|
2235
|
+
}
|
2236
|
+
|
2237
|
+
.icon.major {
|
2238
|
+
border: solid 1px;
|
2239
|
+
display: inline-block;
|
2240
|
+
border-radius: 100%;
|
2241
|
+
padding: 0.65em;
|
2242
|
+
margin: 0 0 2em 0;
|
2243
|
+
cursor: default;
|
2244
|
+
}
|
2245
|
+
|
2246
|
+
.icon.major:before {
|
2247
|
+
display: inline-block;
|
2248
|
+
font-size: 6.25rem;
|
2249
|
+
width: 2.25em;
|
2250
|
+
height: 2.25em;
|
2251
|
+
line-height: 2.2em;
|
2252
|
+
border-radius: 100%;
|
2253
|
+
border: solid 1px;
|
2254
|
+
text-align: center;
|
2255
|
+
}
|
2256
|
+
|
2257
|
+
.icon.alt {
|
2258
|
+
display: inline-block;
|
2259
|
+
border: solid 1px;
|
2260
|
+
border-radius: 100%;
|
2261
|
+
}
|
2262
|
+
|
2263
|
+
.icon.alt:before {
|
2264
|
+
display: block;
|
2265
|
+
font-size: 1.25em;
|
2266
|
+
width: 2em;
|
2267
|
+
height: 2em;
|
2268
|
+
text-align: center;
|
2269
|
+
line-height: 2em;
|
2270
|
+
}
|
2271
|
+
|
2272
|
+
.icon.style1 {
|
2273
|
+
color: #efa8b0;
|
2274
|
+
}
|
2275
|
+
|
2276
|
+
.icon.style2 {
|
2277
|
+
color: #c79cc8;
|
2278
|
+
}
|
2279
|
+
|
2280
|
+
.icon.style3 {
|
2281
|
+
color: #a89cc8;
|
2282
|
+
}
|
2283
|
+
|
2284
|
+
.icon.style4 {
|
2285
|
+
color: #9bb2e1;
|
2286
|
+
}
|
2287
|
+
|
2288
|
+
.icon.style5 {
|
2289
|
+
color: #8cc9f0;
|
2290
|
+
}
|
2291
|
+
|
2292
|
+
@media screen and (max-width: 1680px) {
|
2293
|
+
|
2294
|
+
.icon.major:before {
|
2295
|
+
font-size: 5.5rem;
|
2296
|
+
}
|
2297
|
+
|
2298
|
+
}
|
2299
|
+
|
2300
|
+
@media screen and (max-width: 1280px) {
|
2301
|
+
|
2302
|
+
.icon.major:before {
|
2303
|
+
font-size: 4.75rem;
|
2304
|
+
}
|
2305
|
+
|
2306
|
+
}
|
2307
|
+
|
2308
|
+
@media screen and (max-width: 736px) {
|
2309
|
+
|
2310
|
+
.icon.major {
|
2311
|
+
margin: 0 0 1.5em 0;
|
2312
|
+
padding: 0.35em;
|
2313
|
+
}
|
2314
|
+
|
2315
|
+
.icon.major:before {
|
2316
|
+
font-size: 3.5rem;
|
2317
|
+
}
|
2318
|
+
|
2319
|
+
}
|
2320
|
+
|
2321
|
+
.icon.major {
|
2322
|
+
border-color: rgba(255, 255, 255, 0.35);
|
2323
|
+
}
|
2324
|
+
|
2325
|
+
.icon.major:before {
|
2326
|
+
border-color: rgba(255, 255, 255, 0.35);
|
2327
|
+
}
|
2328
|
+
|
2329
|
+
.icon.alt {
|
2330
|
+
border-color: rgba(255, 255, 255, 0.35);
|
2331
|
+
color: #ffffff;
|
2332
|
+
}
|
2333
|
+
|
2334
|
+
.icon.alt:hover {
|
2335
|
+
background-color: rgba(255, 255, 255, 0.075);
|
2336
|
+
}
|
2337
|
+
|
2338
|
+
.icon.alt:active {
|
2339
|
+
background-color: rgba(255, 255, 255, 0.2);
|
2340
|
+
}
|
2341
|
+
|
2342
|
+
/* Image */
|
2343
|
+
|
2344
|
+
.image {
|
2345
|
+
border-radius: 8px;
|
2346
|
+
border: 0;
|
2347
|
+
display: inline-block;
|
2348
|
+
position: relative;
|
2349
|
+
}
|
2350
|
+
|
2351
|
+
.image img {
|
2352
|
+
border-radius: 8px;
|
2353
|
+
display: block;
|
2354
|
+
}
|
2355
|
+
|
2356
|
+
.image.left, .image.right {
|
2357
|
+
max-width: 40%;
|
2358
|
+
}
|
2359
|
+
|
2360
|
+
.image.left img, .image.right img {
|
2361
|
+
width: 100%;
|
2362
|
+
}
|
2363
|
+
|
2364
|
+
.image.left {
|
2365
|
+
float: left;
|
2366
|
+
margin: 0 1.5em 1em 0;
|
2367
|
+
top: 0.25em;
|
2368
|
+
}
|
2369
|
+
|
2370
|
+
.image.right {
|
2371
|
+
float: right;
|
2372
|
+
margin: 0 0 1em 1.5em;
|
2373
|
+
top: 0.25em;
|
2374
|
+
}
|
2375
|
+
|
2376
|
+
.image.fit {
|
2377
|
+
display: block;
|
2378
|
+
margin: 0 0 2em 0;
|
2379
|
+
width: 100%;
|
2380
|
+
}
|
2381
|
+
|
2382
|
+
.image.fit img {
|
2383
|
+
width: 100%;
|
2384
|
+
}
|
2385
|
+
|
2386
|
+
.image.main {
|
2387
|
+
display: block;
|
2388
|
+
margin: 0 0 3em 0;
|
2389
|
+
width: 100%;
|
2390
|
+
}
|
2391
|
+
|
2392
|
+
.image.main img {
|
2393
|
+
width: 100%;
|
2394
|
+
}
|
2395
|
+
|
2396
|
+
/* List */
|
2397
|
+
|
2398
|
+
ol {
|
2399
|
+
list-style: decimal;
|
2400
|
+
margin: 0 0 2em 0;
|
2401
|
+
padding-left: 1.25em;
|
2402
|
+
}
|
2403
|
+
|
2404
|
+
ol li {
|
2405
|
+
padding-left: 0.25em;
|
2406
|
+
}
|
2407
|
+
|
2408
|
+
ul {
|
2409
|
+
list-style: disc;
|
2410
|
+
margin: 0 0 2em 0;
|
2411
|
+
padding-left: 1em;
|
2412
|
+
}
|
2413
|
+
|
2414
|
+
ul li {
|
2415
|
+
padding-left: 0.5em;
|
2416
|
+
}
|
2417
|
+
|
2418
|
+
ul.alt {
|
2419
|
+
list-style: none;
|
2420
|
+
padding-left: 0;
|
2421
|
+
}
|
2422
|
+
|
2423
|
+
ul.alt li {
|
2424
|
+
border-top: solid 1px;
|
2425
|
+
padding: 0.5em 0;
|
2426
|
+
}
|
2427
|
+
|
2428
|
+
ul.alt li:first-child {
|
2429
|
+
border-top: 0;
|
2430
|
+
padding-top: 0;
|
2431
|
+
}
|
2432
|
+
|
2433
|
+
dl {
|
2434
|
+
margin: 0 0 2em 0;
|
2435
|
+
}
|
2436
|
+
|
2437
|
+
dl dt {
|
2438
|
+
display: block;
|
2439
|
+
font-weight: 400;
|
2440
|
+
margin: 0 0 1em 0;
|
2441
|
+
}
|
2442
|
+
|
2443
|
+
dl dd {
|
2444
|
+
margin-left: 2em;
|
2445
|
+
}
|
2446
|
+
|
2447
|
+
dl.alt dt {
|
2448
|
+
display: block;
|
2449
|
+
width: 3em;
|
2450
|
+
margin: 0;
|
2451
|
+
clear: left;
|
2452
|
+
float: left;
|
2453
|
+
}
|
2454
|
+
|
2455
|
+
dl.alt dd {
|
2456
|
+
margin: 0 0 0.85em 5.5em;
|
2457
|
+
}
|
2458
|
+
|
2459
|
+
dl.alt:after {
|
2460
|
+
content: '';
|
2461
|
+
display: block;
|
2462
|
+
clear: both;
|
2463
|
+
}
|
2464
|
+
|
2465
|
+
ul.alt li {
|
2466
|
+
border-top-color: rgba(255, 255, 255, 0.35);
|
2467
|
+
}
|
2468
|
+
|
2469
|
+
dl dt {
|
2470
|
+
color: #ffffff;
|
2471
|
+
}
|
2472
|
+
|
2473
|
+
/* Actions */
|
2474
|
+
|
2475
|
+
ul.actions {
|
2476
|
+
display: -moz-flex;
|
2477
|
+
display: -webkit-flex;
|
2478
|
+
display: -ms-flex;
|
2479
|
+
display: flex;
|
2480
|
+
cursor: default;
|
2481
|
+
list-style: none;
|
2482
|
+
margin-left: -1em;
|
2483
|
+
padding-left: 0;
|
2484
|
+
}
|
2485
|
+
|
2486
|
+
ul.actions li {
|
2487
|
+
padding: 0 0 0 1em;
|
2488
|
+
vertical-align: middle;
|
2489
|
+
}
|
2490
|
+
|
2491
|
+
ul.actions.special {
|
2492
|
+
-moz-justify-content: center;
|
2493
|
+
-webkit-justify-content: center;
|
2494
|
+
-ms-justify-content: center;
|
2495
|
+
justify-content: center;
|
2496
|
+
width: 100%;
|
2497
|
+
margin-left: 0;
|
2498
|
+
}
|
2499
|
+
|
2500
|
+
ul.actions.special li:first-child {
|
2501
|
+
padding-left: 0;
|
2502
|
+
}
|
2503
|
+
|
2504
|
+
ul.actions.stacked {
|
2505
|
+
-moz-flex-direction: column;
|
2506
|
+
-webkit-flex-direction: column;
|
2507
|
+
-ms-flex-direction: column;
|
2508
|
+
flex-direction: column;
|
2509
|
+
margin-left: 0;
|
2510
|
+
}
|
2511
|
+
|
2512
|
+
ul.actions.stacked li {
|
2513
|
+
padding: 1.3em 0 0 0;
|
2514
|
+
}
|
2515
|
+
|
2516
|
+
ul.actions.stacked li:first-child {
|
2517
|
+
padding-top: 0;
|
2518
|
+
}
|
2519
|
+
|
2520
|
+
ul.actions.fit {
|
2521
|
+
width: calc(100% + 1em);
|
2522
|
+
}
|
2523
|
+
|
2524
|
+
ul.actions.fit li {
|
2525
|
+
-moz-flex-grow: 1;
|
2526
|
+
-webkit-flex-grow: 1;
|
2527
|
+
-ms-flex-grow: 1;
|
2528
|
+
flex-grow: 1;
|
2529
|
+
-moz-flex-shrink: 1;
|
2530
|
+
-webkit-flex-shrink: 1;
|
2531
|
+
-ms-flex-shrink: 1;
|
2532
|
+
flex-shrink: 1;
|
2533
|
+
width: 100%;
|
2534
|
+
}
|
2535
|
+
|
2536
|
+
ul.actions.fit li > * {
|
2537
|
+
width: 100%;
|
2538
|
+
}
|
2539
|
+
|
2540
|
+
ul.actions.fit.stacked {
|
2541
|
+
width: 100%;
|
2542
|
+
}
|
2543
|
+
|
2544
|
+
@media screen and (max-width: 480px) {
|
2545
|
+
|
2546
|
+
ul.actions:not(.fixed) {
|
2547
|
+
-moz-flex-direction: column;
|
2548
|
+
-webkit-flex-direction: column;
|
2549
|
+
-ms-flex-direction: column;
|
2550
|
+
flex-direction: column;
|
2551
|
+
margin-left: 0;
|
2552
|
+
width: 100% !important;
|
2553
|
+
}
|
2554
|
+
|
2555
|
+
ul.actions:not(.fixed) li {
|
2556
|
+
-moz-flex-grow: 1;
|
2557
|
+
-webkit-flex-grow: 1;
|
2558
|
+
-ms-flex-grow: 1;
|
2559
|
+
flex-grow: 1;
|
2560
|
+
-moz-flex-shrink: 1;
|
2561
|
+
-webkit-flex-shrink: 1;
|
2562
|
+
-ms-flex-shrink: 1;
|
2563
|
+
flex-shrink: 1;
|
2564
|
+
padding: 1em 0 0 0;
|
2565
|
+
text-align: center;
|
2566
|
+
width: 100%;
|
2567
|
+
}
|
2568
|
+
|
2569
|
+
ul.actions:not(.fixed) li > * {
|
2570
|
+
width: 100%;
|
2571
|
+
}
|
2572
|
+
|
2573
|
+
ul.actions:not(.fixed) li:first-child {
|
2574
|
+
padding-top: 0;
|
2575
|
+
}
|
2576
|
+
|
2577
|
+
ul.actions:not(.fixed) li input[type="submit"],
|
2578
|
+
ul.actions:not(.fixed) li input[type="reset"],
|
2579
|
+
ul.actions:not(.fixed) li input[type="button"],
|
2580
|
+
ul.actions:not(.fixed) li button,
|
2581
|
+
ul.actions:not(.fixed) li .button {
|
2582
|
+
width: 100%;
|
2583
|
+
}
|
2584
|
+
|
2585
|
+
ul.actions:not(.fixed) li input[type="submit"].icon:before,
|
2586
|
+
ul.actions:not(.fixed) li input[type="reset"].icon:before,
|
2587
|
+
ul.actions:not(.fixed) li input[type="button"].icon:before,
|
2588
|
+
ul.actions:not(.fixed) li button.icon:before,
|
2589
|
+
ul.actions:not(.fixed) li .button.icon:before {
|
2590
|
+
margin-left: -0.5rem;
|
2591
|
+
}
|
2592
|
+
|
2593
|
+
}
|
2594
|
+
|
2595
|
+
/* Icons */
|
2596
|
+
|
2597
|
+
ul.icons {
|
2598
|
+
cursor: default;
|
2599
|
+
list-style: none;
|
2600
|
+
padding-left: 0;
|
2601
|
+
}
|
2602
|
+
|
2603
|
+
ul.icons li {
|
2604
|
+
display: inline-block;
|
2605
|
+
padding: 0 0.65em 0 0;
|
2606
|
+
}
|
2607
|
+
|
2608
|
+
ul.icons li:last-child {
|
2609
|
+
padding-right: 0 !important;
|
2610
|
+
}
|
2611
|
+
|
2612
|
+
/* Section/Article */
|
2613
|
+
|
2614
|
+
section.special, article.special {
|
2615
|
+
text-align: center;
|
2616
|
+
}
|
2617
|
+
|
2618
|
+
header.major {
|
2619
|
+
margin-bottom: 3em;
|
2620
|
+
}
|
2621
|
+
|
2622
|
+
header.major h2 {
|
2623
|
+
font-size: 2em;
|
2624
|
+
}
|
2625
|
+
|
2626
|
+
header.major h2:after {
|
2627
|
+
display: block;
|
2628
|
+
content: '';
|
2629
|
+
width: 3.25em;
|
2630
|
+
height: 2px;
|
2631
|
+
margin: 0.7em 0 1em 0;
|
2632
|
+
border-radius: 2px;
|
2633
|
+
}
|
2634
|
+
|
2635
|
+
section.special header.major h2:after, article.special header.major h2:after {
|
2636
|
+
margin-left: auto;
|
2637
|
+
margin-right: auto;
|
2638
|
+
}
|
2639
|
+
|
2640
|
+
header.major p {
|
2641
|
+
font-size: 1.25em;
|
2642
|
+
letter-spacing: -0.025em;
|
2643
|
+
}
|
2644
|
+
|
2645
|
+
header.major.special {
|
2646
|
+
text-align: center;
|
2647
|
+
}
|
2648
|
+
|
2649
|
+
header.major.special h2:after {
|
2650
|
+
margin-left: auto;
|
2651
|
+
margin-right: auto;
|
2652
|
+
}
|
2653
|
+
|
2654
|
+
footer.major {
|
2655
|
+
margin-top: 3em;
|
2656
|
+
}
|
2657
|
+
|
2658
|
+
@media screen and (max-width: 736px) {
|
2659
|
+
|
2660
|
+
header.major {
|
2661
|
+
margin-bottom: 0;
|
2662
|
+
}
|
2663
|
+
|
2664
|
+
header.major h2 {
|
2665
|
+
font-size: 1.5em;
|
2666
|
+
}
|
2667
|
+
|
2668
|
+
header.major p {
|
2669
|
+
font-size: 1em;
|
2670
|
+
letter-spacing: 0;
|
2671
|
+
}
|
2672
|
+
|
2673
|
+
header.major p br {
|
2674
|
+
display: none;
|
2675
|
+
}
|
2676
|
+
|
2677
|
+
footer.major {
|
2678
|
+
margin-top: 0;
|
2679
|
+
}
|
2680
|
+
|
2681
|
+
}
|
2682
|
+
|
2683
|
+
header.major h2:after {
|
2684
|
+
background-color: rgba(255, 255, 255, 0.35);
|
2685
|
+
}
|
2686
|
+
|
2687
|
+
/* Table */
|
2688
|
+
|
2689
|
+
.table-wrapper {
|
2690
|
+
-webkit-overflow-scrolling: touch;
|
2691
|
+
overflow-x: auto;
|
2692
|
+
}
|
2693
|
+
|
2694
|
+
table {
|
2695
|
+
margin: 0 0 2em 0;
|
2696
|
+
width: 100%;
|
2697
|
+
}
|
2698
|
+
|
2699
|
+
table tbody tr {
|
2700
|
+
border: solid 1px;
|
2701
|
+
border-left: 0;
|
2702
|
+
border-right: 0;
|
2703
|
+
}
|
2704
|
+
|
2705
|
+
table td {
|
2706
|
+
padding: 0.75em 0.75em;
|
2707
|
+
}
|
2708
|
+
|
2709
|
+
table th {
|
2710
|
+
font-size: 0.9em;
|
2711
|
+
font-weight: 400;
|
2712
|
+
padding: 0 0.75em 0.75em 0.75em;
|
2713
|
+
text-align: left;
|
2714
|
+
}
|
2715
|
+
|
2716
|
+
table thead {
|
2717
|
+
border-bottom: solid 2px;
|
2718
|
+
}
|
2719
|
+
|
2720
|
+
table tfoot {
|
2721
|
+
border-top: solid 2px;
|
2722
|
+
}
|
2723
|
+
|
2724
|
+
table.alt {
|
2725
|
+
border-collapse: separate;
|
2726
|
+
}
|
2727
|
+
|
2728
|
+
table.alt tbody tr td {
|
2729
|
+
border: solid 1px;
|
2730
|
+
border-left-width: 0;
|
2731
|
+
border-top-width: 0;
|
2732
|
+
}
|
2733
|
+
|
2734
|
+
table.alt tbody tr td:first-child {
|
2735
|
+
border-left-width: 1px;
|
2736
|
+
}
|
2737
|
+
|
2738
|
+
table.alt tbody tr:first-child td {
|
2739
|
+
border-top-width: 1px;
|
2740
|
+
}
|
2741
|
+
|
2742
|
+
table.alt thead {
|
2743
|
+
border-bottom: 0;
|
2744
|
+
}
|
2745
|
+
|
2746
|
+
table.alt tfoot {
|
2747
|
+
border-top: 0;
|
2748
|
+
}
|
2749
|
+
|
2750
|
+
table tbody tr {
|
2751
|
+
border-color: rgba(255, 255, 255, 0.35);
|
2752
|
+
}
|
2753
|
+
|
2754
|
+
table tbody tr:nth-child(2n + 1) {
|
2755
|
+
background-color: rgba(255, 255, 255, 0.075);
|
2756
|
+
}
|
2757
|
+
|
2758
|
+
table th {
|
2759
|
+
color: #ffffff;
|
2760
|
+
}
|
2761
|
+
|
2762
|
+
table thead {
|
2763
|
+
border-bottom-color: rgba(255, 255, 255, 0.35);
|
2764
|
+
}
|
2765
|
+
|
2766
|
+
table tfoot {
|
2767
|
+
border-top-color: rgba(255, 255, 255, 0.35);
|
2768
|
+
}
|
2769
|
+
|
2770
|
+
table.alt tbody tr td {
|
2771
|
+
border-color: rgba(255, 255, 255, 0.35);
|
2772
|
+
}
|
2773
|
+
|
2774
|
+
/* Features */
|
2775
|
+
|
2776
|
+
.features {
|
2777
|
+
display: -moz-flex;
|
2778
|
+
display: -webkit-flex;
|
2779
|
+
display: -ms-flex;
|
2780
|
+
display: flex;
|
2781
|
+
-moz-flex-wrap: wrap;
|
2782
|
+
-webkit-flex-wrap: wrap;
|
2783
|
+
-ms-flex-wrap: wrap;
|
2784
|
+
flex-wrap: wrap;
|
2785
|
+
-moz-justify-content: center;
|
2786
|
+
-webkit-justify-content: center;
|
2787
|
+
-ms-justify-content: center;
|
2788
|
+
justify-content: center;
|
2789
|
+
width: calc(100% + 2em);
|
2790
|
+
margin: 0 0 3em -2em;
|
2791
|
+
padding: 0;
|
2792
|
+
list-style: none;
|
2793
|
+
}
|
2794
|
+
|
2795
|
+
.features li {
|
2796
|
+
width: calc(33.3333333333% - 2em);
|
2797
|
+
margin-left: 2em;
|
2798
|
+
margin-top: 3em;
|
2799
|
+
padding: 0;
|
2800
|
+
}
|
2801
|
+
|
2802
|
+
.features li:nth-child(1), .features li:nth-child(2), .features li:nth-child(3) {
|
2803
|
+
margin-top: 0;
|
2804
|
+
}
|
2805
|
+
|
2806
|
+
.features li > :last-child {
|
2807
|
+
margin-bottom: 0;
|
2808
|
+
}
|
2809
|
+
|
2810
|
+
@media screen and (max-width: 980px) {
|
2811
|
+
|
2812
|
+
.features li {
|
2813
|
+
width: calc(50% - 2em);
|
2814
|
+
}
|
2815
|
+
|
2816
|
+
.features li:nth-child(3) {
|
2817
|
+
margin-top: 3em;
|
2818
|
+
}
|
2819
|
+
|
2820
|
+
}
|
2821
|
+
|
2822
|
+
@media screen and (max-width: 736px) {
|
2823
|
+
|
2824
|
+
.features {
|
2825
|
+
width: 100%;
|
2826
|
+
margin: 0 0 2em 0;
|
2827
|
+
}
|
2828
|
+
|
2829
|
+
.features li {
|
2830
|
+
width: 100%;
|
2831
|
+
margin-left: 0;
|
2832
|
+
margin-top: 2em;
|
2833
|
+
}
|
2834
|
+
|
2835
|
+
.features li:nth-child(2), .features li:nth-child(3) {
|
2836
|
+
margin-top: 2em;
|
2837
|
+
}
|
2838
|
+
|
2839
|
+
}
|
2840
|
+
|
2841
|
+
/* Statistics */
|
2842
|
+
|
2843
|
+
.statistics {
|
2844
|
+
display: -moz-flex;
|
2845
|
+
display: -webkit-flex;
|
2846
|
+
display: -ms-flex;
|
2847
|
+
display: flex;
|
2848
|
+
width: 100%;
|
2849
|
+
margin: 0 0 3em 0;
|
2850
|
+
padding: 0;
|
2851
|
+
list-style: none;
|
2852
|
+
cursor: default;
|
2853
|
+
}
|
2854
|
+
|
2855
|
+
.statistics li {
|
2856
|
+
-moz-flex: 1;
|
2857
|
+
-webkit-flex: 1;
|
2858
|
+
-ms-flex: 1;
|
2859
|
+
flex: 1;
|
2860
|
+
padding: 1.5em;
|
2861
|
+
color: #ffffff;
|
2862
|
+
text-align: center;
|
2863
|
+
}
|
2864
|
+
|
2865
|
+
.statistics li.style1 {
|
2866
|
+
background-color: #efa8b0;
|
2867
|
+
}
|
2868
|
+
|
2869
|
+
.statistics li.style2 {
|
2870
|
+
background-color: #c79cc8;
|
2871
|
+
}
|
2872
|
+
|
2873
|
+
.statistics li.style3 {
|
2874
|
+
background-color: #a89cc8;
|
2875
|
+
}
|
2876
|
+
|
2877
|
+
.statistics li.style4 {
|
2878
|
+
background-color: #9bb2e1;
|
2879
|
+
}
|
2880
|
+
|
2881
|
+
.statistics li.style5 {
|
2882
|
+
background-color: #8cc9f0;
|
2883
|
+
}
|
2884
|
+
|
2885
|
+
.statistics li strong, .statistics li b {
|
2886
|
+
display: block;
|
2887
|
+
font-size: 2em;
|
2888
|
+
line-height: 1.1;
|
2889
|
+
color: inherit !important;
|
2890
|
+
font-weight: 300;
|
2891
|
+
letter-spacing: -0.025em;
|
2892
|
+
}
|
2893
|
+
|
2894
|
+
.statistics li:first-child {
|
2895
|
+
border-top-left-radius: 8px;
|
2896
|
+
border-bottom-left-radius: 8px;
|
2897
|
+
}
|
2898
|
+
|
2899
|
+
.statistics li:last-child {
|
2900
|
+
border-top-right-radius: 8px;
|
2901
|
+
border-bottom-right-radius: 8px;
|
2902
|
+
}
|
2903
|
+
|
2904
|
+
.statistics li .icon {
|
2905
|
+
display: inline-block;
|
2906
|
+
}
|
2907
|
+
|
2908
|
+
.statistics li .icon:before {
|
2909
|
+
font-size: 2.75rem;
|
2910
|
+
line-height: 1.3;
|
2911
|
+
}
|
2912
|
+
|
2913
|
+
@media screen and (max-width: 980px) {
|
2914
|
+
|
2915
|
+
.statistics li strong, .statistics li b {
|
2916
|
+
font-size: 1.5em;
|
2917
|
+
}
|
2918
|
+
|
2919
|
+
}
|
2920
|
+
|
2921
|
+
@media screen and (max-width: 736px) {
|
2922
|
+
|
2923
|
+
.statistics {
|
2924
|
+
display: block;
|
2925
|
+
width: 20em;
|
2926
|
+
max-width: 100%;
|
2927
|
+
margin: 0 auto 2em auto;
|
2928
|
+
}
|
2929
|
+
|
2930
|
+
.statistics li:first-child {
|
2931
|
+
border-bottom-left-radius: 0;
|
2932
|
+
border-top-right-radius: 8px;
|
2933
|
+
}
|
2934
|
+
|
2935
|
+
.statistics li:last-child {
|
2936
|
+
border-top-right-radius: 0;
|
2937
|
+
border-bottom-left-radius: 8px;
|
2938
|
+
}
|
2939
|
+
|
2940
|
+
.statistics li .icon:before {
|
2941
|
+
font-size: 3.75rem;
|
2942
|
+
}
|
2943
|
+
|
2944
|
+
.statistics li strong, .statistics li b {
|
2945
|
+
font-size: 2.5em;
|
2946
|
+
}
|
2947
|
+
|
2948
|
+
}
|
2949
|
+
|
2950
|
+
/* Spotlight */
|
2951
|
+
|
2952
|
+
.spotlight {
|
2953
|
+
display: -moz-flex;
|
2954
|
+
display: -webkit-flex;
|
2955
|
+
display: -ms-flex;
|
2956
|
+
display: flex;
|
2957
|
+
-moz-align-items: center;
|
2958
|
+
-webkit-align-items: center;
|
2959
|
+
-ms-align-items: center;
|
2960
|
+
align-items: center;
|
2961
|
+
margin: 0 0 2em 0;
|
2962
|
+
}
|
2963
|
+
|
2964
|
+
.spotlight .content {
|
2965
|
+
-moz-flex: 1;
|
2966
|
+
-webkit-flex: 1;
|
2967
|
+
-ms-flex: 1;
|
2968
|
+
flex: 1;
|
2969
|
+
}
|
2970
|
+
|
2971
|
+
.spotlight .content > :last-child {
|
2972
|
+
margin-bottom: 0;
|
2973
|
+
}
|
2974
|
+
|
2975
|
+
.spotlight .content header.major {
|
2976
|
+
margin: 0 0 2em 0;
|
2977
|
+
}
|
2978
|
+
|
2979
|
+
.spotlight .image {
|
2980
|
+
display: inline-block;
|
2981
|
+
margin-left: 4em;
|
2982
|
+
padding: 0.65em;
|
2983
|
+
border-radius: 100%;
|
2984
|
+
border: solid 1px;
|
2985
|
+
}
|
2986
|
+
|
2987
|
+
.spotlight .image img {
|
2988
|
+
display: block;
|
2989
|
+
border-radius: 100%;
|
2990
|
+
width: 16em;
|
2991
|
+
}
|
2992
|
+
|
2993
|
+
@media screen and (max-width: 980px) {
|
2994
|
+
|
2995
|
+
.spotlight {
|
2996
|
+
-moz-flex-direction: column-reverse;
|
2997
|
+
-webkit-flex-direction: column-reverse;
|
2998
|
+
-ms-flex-direction: column-reverse;
|
2999
|
+
flex-direction: column-reverse;
|
3000
|
+
text-align: center;
|
3001
|
+
}
|
3002
|
+
|
3003
|
+
.spotlight .content {
|
3004
|
+
-moz-flex: 0 1 auto;
|
3005
|
+
-webkit-flex: 0 1 auto;
|
3006
|
+
-ms-flex: 0 1 auto;
|
3007
|
+
flex: 0 1 auto;
|
3008
|
+
width: 100%;
|
3009
|
+
}
|
3010
|
+
|
3011
|
+
.spotlight .content header.major h2:after {
|
3012
|
+
margin-left: auto;
|
3013
|
+
margin-right: auto;
|
3014
|
+
}
|
3015
|
+
|
3016
|
+
.spotlight .content .actions {
|
3017
|
+
-moz-justify-content: center;
|
3018
|
+
-webkit-justify-content: center;
|
3019
|
+
-ms-justify-content: center;
|
3020
|
+
justify-content: center;
|
3021
|
+
width: calc(100% + 1em);
|
3022
|
+
}
|
3023
|
+
|
3024
|
+
.spotlight .image {
|
3025
|
+
-moz-flex: 0 1 auto;
|
3026
|
+
-webkit-flex: 0 1 auto;
|
3027
|
+
-ms-flex: 0 1 auto;
|
3028
|
+
flex: 0 1 auto;
|
3029
|
+
margin-left: 0;
|
3030
|
+
margin-bottom: 2em;
|
3031
|
+
}
|
3032
|
+
|
3033
|
+
}
|
3034
|
+
|
3035
|
+
@media screen and (max-width: 736px) {
|
3036
|
+
|
3037
|
+
.spotlight .image {
|
3038
|
+
padding: 0.35em;
|
3039
|
+
}
|
3040
|
+
|
3041
|
+
.spotlight .image img {
|
3042
|
+
width: 12em;
|
3043
|
+
}
|
3044
|
+
|
3045
|
+
}
|
3046
|
+
|
3047
|
+
.spotlight .image {
|
3048
|
+
border-color: rgba(255, 255, 255, 0.35);
|
3049
|
+
}
|
3050
|
+
|
3051
|
+
/* Header */
|
3052
|
+
|
3053
|
+
#header {
|
3054
|
+
padding: 5em 5em 1em 5em ;
|
3055
|
+
text-align: center;
|
3056
|
+
}
|
3057
|
+
|
3058
|
+
#header h1 {
|
3059
|
+
margin: 0 0 0.25em 0;
|
3060
|
+
}
|
3061
|
+
|
3062
|
+
#header p {
|
3063
|
+
font-size: 1.25em;
|
3064
|
+
letter-spacing: -0.025em;
|
3065
|
+
}
|
3066
|
+
|
3067
|
+
#header.alt {
|
3068
|
+
padding: 7em 5em 4em 5em ;
|
3069
|
+
}
|
3070
|
+
|
3071
|
+
#header.alt h1 {
|
3072
|
+
font-size: 3.25em;
|
3073
|
+
}
|
3074
|
+
|
3075
|
+
#header.alt > * {
|
3076
|
+
-moz-transition: opacity 3s ease;
|
3077
|
+
-webkit-transition: opacity 3s ease;
|
3078
|
+
-ms-transition: opacity 3s ease;
|
3079
|
+
transition: opacity 3s ease;
|
3080
|
+
-moz-transition-delay: 0.5s;
|
3081
|
+
-webkit-transition-delay: 0.5s;
|
3082
|
+
-ms-transition-delay: 0.5s;
|
3083
|
+
transition-delay: 0.5s;
|
3084
|
+
opacity: 1;
|
3085
|
+
}
|
3086
|
+
|
3087
|
+
#header.alt .logo {
|
3088
|
+
-moz-transition: opacity 1.25s ease, -moz-transform 0.5s ease;
|
3089
|
+
-webkit-transition: opacity 1.25s ease, -webkit-transform 0.5s ease;
|
3090
|
+
-ms-transition: opacity 1.25s ease, -ms-transform 0.5s ease;
|
3091
|
+
transition: opacity 1.25s ease, transform 0.5s ease;
|
3092
|
+
-moz-transition-delay: 0s;
|
3093
|
+
-webkit-transition-delay: 0s;
|
3094
|
+
-ms-transition-delay: 0s;
|
3095
|
+
transition-delay: 0s;
|
3096
|
+
display: block;
|
3097
|
+
margin: 0 0 1.5em 0;
|
3098
|
+
}
|
3099
|
+
|
3100
|
+
#header.alt .logo img {
|
3101
|
+
display: block;
|
3102
|
+
margin: 0 auto;
|
3103
|
+
max-width: 75%;
|
3104
|
+
}
|
3105
|
+
|
3106
|
+
@media screen and (max-width: 1280px) {
|
3107
|
+
|
3108
|
+
#header {
|
3109
|
+
padding: 4em 4em 0.1em 4em ;
|
3110
|
+
}
|
3111
|
+
|
3112
|
+
#header.alt {
|
3113
|
+
padding: 6em 4em 3em 4em ;
|
3114
|
+
}
|
3115
|
+
|
3116
|
+
}
|
3117
|
+
|
3118
|
+
@media screen and (max-width: 980px) {
|
3119
|
+
|
3120
|
+
#header {
|
3121
|
+
padding: 4em 3em 0.1em 3em ;
|
3122
|
+
}
|
3123
|
+
|
3124
|
+
#header.alt {
|
3125
|
+
padding: 5em 3em 2em 3em ;
|
3126
|
+
}
|
3127
|
+
|
3128
|
+
}
|
3129
|
+
|
3130
|
+
@media screen and (max-width: 736px) {
|
3131
|
+
|
3132
|
+
#header {
|
3133
|
+
padding: 3em 2em 0.1em 2em ;
|
3134
|
+
}
|
3135
|
+
|
3136
|
+
#header p {
|
3137
|
+
font-size: 1em;
|
3138
|
+
letter-spacing: 0;
|
3139
|
+
}
|
3140
|
+
|
3141
|
+
#header p br {
|
3142
|
+
display: none;
|
3143
|
+
}
|
3144
|
+
|
3145
|
+
#header.alt {
|
3146
|
+
padding: 4em 2em 1em 2em ;
|
3147
|
+
}
|
3148
|
+
|
3149
|
+
#header.alt h1 {
|
3150
|
+
font-size: 2.5em;
|
3151
|
+
}
|
3152
|
+
|
3153
|
+
}
|
3154
|
+
|
3155
|
+
@media screen and (max-width: 480px) {
|
3156
|
+
|
3157
|
+
#header {
|
3158
|
+
padding: 3em 1.5em 0.1em 1.5em ;
|
3159
|
+
}
|
3160
|
+
|
3161
|
+
#header.alt {
|
3162
|
+
padding: 4em 1.5em 1em 1.5em ;
|
3163
|
+
}
|
3164
|
+
|
3165
|
+
}
|
3166
|
+
|
3167
|
+
@media screen and (max-width: 360px) {
|
3168
|
+
|
3169
|
+
#header {
|
3170
|
+
padding: 2.5em 1em 0.1em 1em ;
|
3171
|
+
}
|
3172
|
+
|
3173
|
+
#header.alt {
|
3174
|
+
padding: 3.5em 1em 0.5em 1em ;
|
3175
|
+
}
|
3176
|
+
|
3177
|
+
}
|
3178
|
+
|
3179
|
+
body.is-preload #header.alt > * {
|
3180
|
+
opacity: 0;
|
3181
|
+
}
|
3182
|
+
|
3183
|
+
body.is-preload #header.alt .logo {
|
3184
|
+
-moz-transform: scale(0.8) rotate(-30deg);
|
3185
|
+
-webkit-transform: scale(0.8) rotate(-30deg);
|
3186
|
+
-ms-transform: scale(0.8) rotate(-30deg);
|
3187
|
+
transform: scale(0.8) rotate(-30deg);
|
3188
|
+
}
|
3189
|
+
|
3190
|
+
/* Nav */
|
3191
|
+
|
3192
|
+
#nav {
|
3193
|
+
-moz-transition: background-color 0.2s ease, border-top-left-radius 0.2s ease, border-top-right-radius 0.2s ease, padding 0.2s ease;
|
3194
|
+
-webkit-transition: background-color 0.2s ease, border-top-left-radius 0.2s ease, border-top-right-radius 0.2s ease, padding 0.2s ease;
|
3195
|
+
-ms-transition: background-color 0.2s ease, border-top-left-radius 0.2s ease, border-top-right-radius 0.2s ease, padding 0.2s ease;
|
3196
|
+
transition: background-color 0.2s ease, border-top-left-radius 0.2s ease, border-top-right-radius 0.2s ease, padding 0.2s ease;
|
3197
|
+
background-color: #ffffff;
|
3198
|
+
color: #636363;
|
3199
|
+
position: absolute;
|
3200
|
+
width: 64em;
|
3201
|
+
max-width: calc(100% - 4em);
|
3202
|
+
padding: 1em;
|
3203
|
+
background-color: #f7f7f7;
|
3204
|
+
border-top-left-radius: 0.25em;
|
3205
|
+
border-top-right-radius: 0.25em;
|
3206
|
+
cursor: default;
|
3207
|
+
text-align: center;
|
3208
|
+
}
|
3209
|
+
|
3210
|
+
#nav input, #nav select, #nav textarea {
|
3211
|
+
color: #636363;
|
3212
|
+
}
|
3213
|
+
|
3214
|
+
#nav a:hover {
|
3215
|
+
color: #636363;
|
3216
|
+
}
|
3217
|
+
|
3218
|
+
#nav strong, #nav b {
|
3219
|
+
color: #636363;
|
3220
|
+
}
|
3221
|
+
|
3222
|
+
#nav h1, #nav h2, #nav h3, #nav h4, #nav h5, #nav h6 {
|
3223
|
+
color: #636363;
|
3224
|
+
}
|
3225
|
+
|
3226
|
+
#nav blockquote {
|
3227
|
+
border-left-color: #dddddd;
|
3228
|
+
}
|
3229
|
+
|
3230
|
+
#nav code {
|
3231
|
+
background: rgba(222, 222, 222, 0.25);
|
3232
|
+
border-color: #dddddd;
|
3233
|
+
}
|
3234
|
+
|
3235
|
+
#nav hr {
|
3236
|
+
border-bottom-color: #dddddd;
|
3237
|
+
}
|
3238
|
+
|
3239
|
+
#nav + #main {
|
3240
|
+
padding-top: 4.25em;
|
3241
|
+
}
|
3242
|
+
|
3243
|
+
#nav ul {
|
3244
|
+
margin: 0;
|
3245
|
+
padding: 0;
|
3246
|
+
list-style: none;
|
3247
|
+
}
|
3248
|
+
|
3249
|
+
#nav ul li {
|
3250
|
+
-moz-transition: margin 0.2s ease;
|
3251
|
+
-webkit-transition: margin 0.2s ease;
|
3252
|
+
-ms-transition: margin 0.2s ease;
|
3253
|
+
transition: margin 0.2s ease;
|
3254
|
+
display: inline-block;
|
3255
|
+
margin: 0 0.35em;
|
3256
|
+
padding: 0;
|
3257
|
+
vertical-align: middle;
|
3258
|
+
}
|
3259
|
+
|
3260
|
+
#nav ul li a {
|
3261
|
+
-moz-transition: font-size 0.2s ease;
|
3262
|
+
-webkit-transition: font-size 0.2s ease;
|
3263
|
+
-ms-transition: font-size 0.2s ease;
|
3264
|
+
transition: font-size 0.2s ease;
|
3265
|
+
display: inline-block;
|
3266
|
+
height: 2.25em;
|
3267
|
+
line-height: 2.25em;
|
3268
|
+
padding: 0 1.25em;
|
3269
|
+
border: 0;
|
3270
|
+
border-radius: 8px;
|
3271
|
+
box-shadow: inset 0 0 0 1px transparent;
|
3272
|
+
}
|
3273
|
+
|
3274
|
+
#nav ul li a:hover {
|
3275
|
+
background-color: rgba(222, 222, 222, 0.25);
|
3276
|
+
}
|
3277
|
+
|
3278
|
+
#nav ul li a.active {
|
3279
|
+
background-color: #ffffff;
|
3280
|
+
box-shadow: none;
|
3281
|
+
}
|
3282
|
+
|
3283
|
+
#nav.alt {
|
3284
|
+
position: fixed;
|
3285
|
+
top: 0;
|
3286
|
+
padding: 0.5em 1em;
|
3287
|
+
background-color: rgba(247, 247, 247, 0.95);
|
3288
|
+
border-top-left-radius: 0;
|
3289
|
+
border-top-right-radius: 0;
|
3290
|
+
z-index: 10000;
|
3291
|
+
}
|
3292
|
+
|
3293
|
+
#nav.alt ul li {
|
3294
|
+
margin: 0 0.175em;
|
3295
|
+
}
|
3296
|
+
|
3297
|
+
#nav.alt ul li a {
|
3298
|
+
font-size: 0.9em;
|
3299
|
+
}
|
3300
|
+
|
3301
|
+
@media screen and (max-width: 736px) {
|
3302
|
+
|
3303
|
+
#nav {
|
3304
|
+
display: none;
|
3305
|
+
}
|
3306
|
+
|
3307
|
+
#nav + #main {
|
3308
|
+
padding-top: 0;
|
3309
|
+
}
|
3310
|
+
|
3311
|
+
}
|
3312
|
+
|
3313
|
+
/* Main */
|
3314
|
+
|
3315
|
+
#main {
|
3316
|
+
background-color: #ffffff;
|
3317
|
+
color: #636363;
|
3318
|
+
border-radius: 0.25em;
|
3319
|
+
}
|
3320
|
+
|
3321
|
+
#main input, #main select, #main textarea {
|
3322
|
+
color: #636363;
|
3323
|
+
}
|
3324
|
+
|
3325
|
+
#main a:hover {
|
3326
|
+
color: #636363;
|
3327
|
+
}
|
3328
|
+
|
3329
|
+
#main strong, #main b {
|
3330
|
+
color: #636363;
|
3331
|
+
}
|
3332
|
+
|
3333
|
+
#main h1, #main h2, #main h3, #main h4, #main h5, #main h6 {
|
3334
|
+
color: #636363;
|
3335
|
+
}
|
3336
|
+
|
3337
|
+
#main blockquote {
|
3338
|
+
border-left-color: #dddddd;
|
3339
|
+
}
|
3340
|
+
|
3341
|
+
#main code {
|
3342
|
+
background: rgba(222, 222, 222, 0.25);
|
3343
|
+
border-color: #dddddd;
|
3344
|
+
}
|
3345
|
+
|
3346
|
+
#main hr {
|
3347
|
+
border-bottom-color: #dddddd;
|
3348
|
+
}
|
3349
|
+
|
3350
|
+
#main .box {
|
3351
|
+
border-color: #dddddd;
|
3352
|
+
}
|
3353
|
+
|
3354
|
+
#main input[type="submit"],
|
3355
|
+
#main input[type="reset"],
|
3356
|
+
#main input[type="button"],
|
3357
|
+
#main button,
|
3358
|
+
#main .button {
|
3359
|
+
background-color: transparent;
|
3360
|
+
box-shadow: inset 0 0 0 1px #dddddd;
|
3361
|
+
color: #636363 !important;
|
3362
|
+
}
|
3363
|
+
|
3364
|
+
#main input[type="submit"]:hover,
|
3365
|
+
#main input[type="reset"]:hover,
|
3366
|
+
#main input[type="button"]:hover,
|
3367
|
+
#main button:hover,
|
3368
|
+
#main .button:hover {
|
3369
|
+
background-color: rgba(222, 222, 222, 0.25);
|
3370
|
+
}
|
3371
|
+
|
3372
|
+
#main input[type="submit"]:active,
|
3373
|
+
#main input[type="reset"]:active,
|
3374
|
+
#main input[type="button"]:active,
|
3375
|
+
#main button:active,
|
3376
|
+
#main .button:active {
|
3377
|
+
background-color: rgba(222, 222, 222, 0.5);
|
3378
|
+
}
|
3379
|
+
|
3380
|
+
#main input[type="submit"].icon:before,
|
3381
|
+
#main input[type="reset"].icon:before,
|
3382
|
+
#main input[type="button"].icon:before,
|
3383
|
+
#main button.icon:before,
|
3384
|
+
#main .button.icon:before {
|
3385
|
+
color: rgba(99, 99, 99, 0.25);
|
3386
|
+
}
|
3387
|
+
|
3388
|
+
#main input[type="submit"].primary,
|
3389
|
+
#main input[type="reset"].primary,
|
3390
|
+
#main input[type="button"].primary,
|
3391
|
+
#main button.primary,
|
3392
|
+
#main .button.primary {
|
3393
|
+
background-color: #8cc9f0;
|
3394
|
+
color: #ffffff !important;
|
3395
|
+
box-shadow: none;
|
3396
|
+
}
|
3397
|
+
|
3398
|
+
#main input[type="submit"].primary:hover,
|
3399
|
+
#main input[type="reset"].primary:hover,
|
3400
|
+
#main input[type="button"].primary:hover,
|
3401
|
+
#main button.primary:hover,
|
3402
|
+
#main .button.primary:hover {
|
3403
|
+
background-color: #9acff2;
|
3404
|
+
}
|
3405
|
+
|
3406
|
+
#main input[type="submit"].primary:active,
|
3407
|
+
#main input[type="reset"].primary:active,
|
3408
|
+
#main input[type="button"].primary:active,
|
3409
|
+
#main button.primary:active,
|
3410
|
+
#main .button.primary:active {
|
3411
|
+
background-color: #7ec3ee;
|
3412
|
+
}
|
3413
|
+
|
3414
|
+
#main input[type="submit"].primary.icon:before,
|
3415
|
+
#main input[type="reset"].primary.icon:before,
|
3416
|
+
#main input[type="button"].primary.icon:before,
|
3417
|
+
#main button.primary.icon:before,
|
3418
|
+
#main .button.primary.icon:before {
|
3419
|
+
color: #ffffff !important;
|
3420
|
+
}
|
3421
|
+
|
3422
|
+
#main label {
|
3423
|
+
color: #636363;
|
3424
|
+
}
|
3425
|
+
|
3426
|
+
#main input[type="text"],
|
3427
|
+
#main input[type="password"],
|
3428
|
+
#main input[type="email"],
|
3429
|
+
#main select,
|
3430
|
+
#main textarea {
|
3431
|
+
background-color: rgba(222, 222, 222, 0.25);
|
3432
|
+
border-color: #dddddd;
|
3433
|
+
}
|
3434
|
+
|
3435
|
+
#main input[type="text"]:focus,
|
3436
|
+
#main input[type="password"]:focus,
|
3437
|
+
#main input[type="email"]:focus,
|
3438
|
+
#main select:focus,
|
3439
|
+
#main textarea:focus {
|
3440
|
+
border-color: #8cc9f0;
|
3441
|
+
box-shadow: 0 0 0 1px #8cc9f0;
|
3442
|
+
}
|
3443
|
+
|
3444
|
+
#main select {
|
3445
|
+
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%23dddddd' /%3E%3C/svg%3E");
|
3446
|
+
}
|
3447
|
+
|
3448
|
+
#main select option {
|
3449
|
+
color: #636363;
|
3450
|
+
background: #ffffff;
|
3451
|
+
}
|
3452
|
+
|
3453
|
+
#main input[type="checkbox"] + label,
|
3454
|
+
#main input[type="radio"] + label {
|
3455
|
+
color: #636363;
|
3456
|
+
}
|
3457
|
+
|
3458
|
+
#main input[type="checkbox"] + label:before,
|
3459
|
+
#main input[type="radio"] + label:before {
|
3460
|
+
background: rgba(222, 222, 222, 0.25);
|
3461
|
+
border-color: #dddddd;
|
3462
|
+
}
|
3463
|
+
|
3464
|
+
#main input[type="checkbox"]:checked + label:before,
|
3465
|
+
#main input[type="radio"]:checked + label:before {
|
3466
|
+
background-color: #636363;
|
3467
|
+
border-color: #636363;
|
3468
|
+
color: #ffffff;
|
3469
|
+
}
|
3470
|
+
|
3471
|
+
#main input[type="checkbox"]:focus + label:before,
|
3472
|
+
#main input[type="radio"]:focus + label:before {
|
3473
|
+
border-color: #8cc9f0;
|
3474
|
+
box-shadow: 0 0 0 1px #8cc9f0;
|
3475
|
+
}
|
3476
|
+
|
3477
|
+
#main ::-webkit-input-placeholder {
|
3478
|
+
color: rgba(99, 99, 99, 0.25) !important;
|
3479
|
+
}
|
3480
|
+
|
3481
|
+
#main :-moz-placeholder {
|
3482
|
+
color: rgba(99, 99, 99, 0.25) !important;
|
3483
|
+
}
|
3484
|
+
|
3485
|
+
#main ::-moz-placeholder {
|
3486
|
+
color: rgba(99, 99, 99, 0.25) !important;
|
3487
|
+
}
|
3488
|
+
|
3489
|
+
#main :-ms-input-placeholder {
|
3490
|
+
color: rgba(99, 99, 99, 0.25) !important;
|
3491
|
+
}
|
3492
|
+
|
3493
|
+
#main .formerize-placeholder {
|
3494
|
+
color: rgba(99, 99, 99, 0.25) !important;
|
3495
|
+
}
|
3496
|
+
|
3497
|
+
#main .icon.major {
|
3498
|
+
border-color: #dddddd;
|
3499
|
+
}
|
3500
|
+
|
3501
|
+
#main .icon.major:before {
|
3502
|
+
border-color: #dddddd;
|
3503
|
+
}
|
3504
|
+
|
3505
|
+
#main .icon.alt {
|
3506
|
+
border-color: #dddddd;
|
3507
|
+
color: #636363;
|
3508
|
+
}
|
3509
|
+
|
3510
|
+
#main .icon.alt:hover {
|
3511
|
+
background-color: rgba(222, 222, 222, 0.25);
|
3512
|
+
}
|
3513
|
+
|
3514
|
+
#main .icon.alt:active {
|
3515
|
+
background-color: rgba(222, 222, 222, 0.5);
|
3516
|
+
}
|
3517
|
+
|
3518
|
+
#main ul.alt li {
|
3519
|
+
border-top-color: #dddddd;
|
3520
|
+
}
|
3521
|
+
|
3522
|
+
#main dl dt {
|
3523
|
+
color: #636363;
|
3524
|
+
}
|
3525
|
+
|
3526
|
+
#main header.major h2:after {
|
3527
|
+
background-color: #dddddd;
|
3528
|
+
background-image: -moz-linear-gradient(90deg, #efa8b0, #a89cc8, #8cc9f0);
|
3529
|
+
background-image: -webkit-linear-gradient(90deg, #efa8b0, #a89cc8, #8cc9f0);
|
3530
|
+
background-image: -ms-linear-gradient(90deg, #efa8b0, #a89cc8, #8cc9f0);
|
3531
|
+
background-image: linear-gradient(90deg, #efa8b0, #a89cc8, #8cc9f0);
|
3532
|
+
}
|
3533
|
+
|
3534
|
+
#main table tbody tr {
|
3535
|
+
border-color: #dddddd;
|
3536
|
+
}
|
3537
|
+
|
3538
|
+
#main table tbody tr:nth-child(2n + 1) {
|
3539
|
+
background-color: rgba(222, 222, 222, 0.25);
|
3540
|
+
}
|
3541
|
+
|
3542
|
+
#main table th {
|
3543
|
+
color: #636363;
|
3544
|
+
}
|
3545
|
+
|
3546
|
+
#main table thead {
|
3547
|
+
border-bottom-color: #dddddd;
|
3548
|
+
}
|
3549
|
+
|
3550
|
+
#main table tfoot {
|
3551
|
+
border-top-color: #dddddd;
|
3552
|
+
}
|
3553
|
+
|
3554
|
+
#main table.alt tbody tr td {
|
3555
|
+
border-color: #dddddd;
|
3556
|
+
}
|
3557
|
+
|
3558
|
+
#main .spotlight .image {
|
3559
|
+
border-color: #dddddd;
|
3560
|
+
}
|
3561
|
+
|
3562
|
+
#main > .main {
|
3563
|
+
padding: 5em 5em 3em 5em ;
|
3564
|
+
border-top: solid 1px #dddddd;
|
3565
|
+
}
|
3566
|
+
|
3567
|
+
#main > .main:first-child {
|
3568
|
+
border-top: 0;
|
3569
|
+
}
|
3570
|
+
|
3571
|
+
#main > .main > .image.main:first-child {
|
3572
|
+
margin: -5em 0 5em -5em;
|
3573
|
+
width: calc(100% + 10em);
|
3574
|
+
border-top-right-radius: 0.25em;
|
3575
|
+
border-top-left-radius: 0.25em;
|
3576
|
+
border-bottom-right-radius: 0;
|
3577
|
+
border-bottom-left-radius: 0;
|
3578
|
+
}
|
3579
|
+
|
3580
|
+
#main > .main > .image.main:first-child img {
|
3581
|
+
border-top-right-radius: 0.25em;
|
3582
|
+
border-top-left-radius: 0.25em;
|
3583
|
+
border-bottom-right-radius: 0;
|
3584
|
+
border-bottom-left-radius: 0;
|
3585
|
+
}
|
3586
|
+
|
3587
|
+
@media screen and (max-width: 1280px) {
|
3588
|
+
|
3589
|
+
#main > .main {
|
3590
|
+
padding: 4em 4em 2em 4em ;
|
3591
|
+
}
|
3592
|
+
|
3593
|
+
#main > .main > .image.main:first-child {
|
3594
|
+
margin: -4em 0 4em -4em;
|
3595
|
+
width: calc(100% + 8em);
|
3596
|
+
}
|
3597
|
+
|
3598
|
+
}
|
3599
|
+
|
3600
|
+
@media screen and (max-width: 980px) {
|
3601
|
+
|
3602
|
+
#main > .main {
|
3603
|
+
padding: 4em 3em 2em 3em ;
|
3604
|
+
}
|
3605
|
+
|
3606
|
+
#main > .main > .image.main:first-child {
|
3607
|
+
margin: -4em 0 4em -3em;
|
3608
|
+
width: calc(100% + 6em);
|
3609
|
+
}
|
3610
|
+
|
3611
|
+
}
|
3612
|
+
|
3613
|
+
@media screen and (max-width: 736px) {
|
3614
|
+
|
3615
|
+
#main > .main {
|
3616
|
+
padding: 3em 2em 1em 2em ;
|
3617
|
+
}
|
3618
|
+
|
3619
|
+
#main > .main > .image.main:first-child {
|
3620
|
+
margin: -3em 0 2em -2em;
|
3621
|
+
width: calc(100% + 4em);
|
3622
|
+
}
|
3623
|
+
|
3624
|
+
}
|
3625
|
+
|
3626
|
+
@media screen and (max-width: 480px) {
|
3627
|
+
|
3628
|
+
#main > .main {
|
3629
|
+
padding: 3em 1.5em 1em 1.5em ;
|
3630
|
+
}
|
3631
|
+
|
3632
|
+
#main > .main > .image.main:first-child {
|
3633
|
+
margin: -3em 0 1.5em -1.5em;
|
3634
|
+
width: calc(100% + 3em);
|
3635
|
+
}
|
3636
|
+
|
3637
|
+
}
|
3638
|
+
|
3639
|
+
@media screen and (max-width: 360px) {
|
3640
|
+
|
3641
|
+
#main {
|
3642
|
+
border-radius: 0;
|
3643
|
+
}
|
3644
|
+
|
3645
|
+
#main > .main {
|
3646
|
+
padding: 2.5em 1em 0.5em 1em ;
|
3647
|
+
}
|
3648
|
+
|
3649
|
+
#main > .main > .image.main:first-child {
|
3650
|
+
margin: -2.5em 0 1.5em -1em;
|
3651
|
+
width: calc(100% + 2em);
|
3652
|
+
border-radius: 0;
|
3653
|
+
}
|
3654
|
+
|
3655
|
+
#main > .main > .image.main:first-child img {
|
3656
|
+
border-radius: 0;
|
3657
|
+
}
|
3658
|
+
|
3659
|
+
}
|
3660
|
+
|
3661
|
+
/* Footer */
|
3662
|
+
|
3663
|
+
#footer {
|
3664
|
+
display: -moz-flex;
|
3665
|
+
display: -webkit-flex;
|
3666
|
+
display: -ms-flex;
|
3667
|
+
display: flex;
|
3668
|
+
-moz-flex-wrap: wrap;
|
3669
|
+
-webkit-flex-wrap: wrap;
|
3670
|
+
-ms-flex-wrap: wrap;
|
3671
|
+
flex-wrap: wrap;
|
3672
|
+
padding: 5em 5em 3em 5em ;
|
3673
|
+
width: calc(100% + 2em);
|
3674
|
+
margin: 0 0 3em -2em;
|
3675
|
+
}
|
3676
|
+
|
3677
|
+
#footer > * {
|
3678
|
+
width: calc(50% - 2em);
|
3679
|
+
margin-left: 2em;
|
3680
|
+
}
|
3681
|
+
|
3682
|
+
#footer .copyright {
|
3683
|
+
width: 100%;
|
3684
|
+
margin: 2.5em 0 2em 0;
|
3685
|
+
font-size: 0.8em;
|
3686
|
+
text-align: center;
|
3687
|
+
}
|
3688
|
+
|
3689
|
+
@media screen and (max-width: 1280px) {
|
3690
|
+
|
3691
|
+
#footer {
|
3692
|
+
padding: 4em 4em 2em 4em ;
|
3693
|
+
}
|
3694
|
+
|
3695
|
+
}
|
3696
|
+
|
3697
|
+
@media screen and (max-width: 980px) {
|
3698
|
+
|
3699
|
+
#footer {
|
3700
|
+
padding: 4em 3em 2em 3em ;
|
3701
|
+
display: block;
|
3702
|
+
margin: 0 0 3em 0;
|
3703
|
+
width: 100%;
|
3704
|
+
}
|
3705
|
+
|
3706
|
+
#footer > * {
|
3707
|
+
width: 100%;
|
3708
|
+
margin-left: 0;
|
3709
|
+
margin-bottom: 3em;
|
3710
|
+
}
|
3711
|
+
|
3712
|
+
#footer .copyright {
|
3713
|
+
text-align: left;
|
3714
|
+
}
|
3715
|
+
|
3716
|
+
}
|
3717
|
+
|
3718
|
+
@media screen and (max-width: 736px) {
|
3719
|
+
|
3720
|
+
#footer {
|
3721
|
+
padding: 3em 2em 1em 2em ;
|
3722
|
+
}
|
3723
|
+
|
3724
|
+
}
|
3725
|
+
|
3726
|
+
@media screen and (max-width: 480px) {
|
3727
|
+
|
3728
|
+
#footer {
|
3729
|
+
padding: 3em 1.5em 1em 1.5em ;
|
3730
|
+
}
|
3731
|
+
|
3732
|
+
}
|
3733
|
+
|
3734
|
+
@media screen and (max-width: 480px) {
|
3735
|
+
|
3736
|
+
#footer {
|
3737
|
+
padding: 2.5em 1em 0.5em 1em ;
|
3738
|
+
}
|
3739
|
+
|
3740
|
+
}
|
3741
|
+
|
3742
|
+
/* Wrapper */
|
3743
|
+
|
3744
|
+
#wrapper {
|
3745
|
+
width: 64em;
|
3746
|
+
max-width: calc(100% - 4em);
|
3747
|
+
margin: 0 auto;
|
3748
|
+
}
|
3749
|
+
|
3750
|
+
@media screen and (max-width: 480px) {
|
3751
|
+
|
3752
|
+
#wrapper {
|
3753
|
+
max-width: calc(100% - 2em);
|
3754
|
+
}
|
3755
|
+
|
3756
|
+
}
|
3757
|
+
|
3758
|
+
@media screen and (max-width: 360px) {
|
3759
|
+
|
3760
|
+
#wrapper {
|
3761
|
+
max-width: 100%;
|
3762
|
+
}
|
3763
|
+
|
3764
|
+
}
|