├── assets
├── css
│ ├── animate.css
│ ├── bootstrap.css
│ ├── bootstrap.css.map
│ ├── icomoon.css
│ ├── style.css
│ └── style.css.map
├── fonts
│ ├── bootstrap
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ └── icomoon
│ │ ├── icomoon.eot
│ │ ├── icomoon.svg
│ │ ├── icomoon.ttf
│ │ └── icomoon.woff
├── images
│ ├── img_bg_1_gradient.jpg
│ └── loader.gif
└── js
│ ├── bootstrap.min.js
│ ├── jquery.easing.1.3.js
│ ├── jquery.min.js
│ ├── jquery.waypoints.min.js
│ ├── main.js
│ ├── modernizr-2.6.2.min.js
│ ├── respond.min.js
│ └── simplyCountdown.js
├── footer.php
├── functions.php
├── header.php
├── index.php
├── launcher.php
├── markup
├── LICENSE.txt
├── README.txt
├── css
│ ├── animate.css
│ ├── bootstrap.css
│ ├── bootstrap.css.map
│ ├── icomoon.css
│ ├── style.css
│ └── style.css.map
├── fonts
│ ├── bootstrap
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ └── icomoon
│ │ ├── icomoon.eot
│ │ ├── icomoon.svg
│ │ ├── icomoon.ttf
│ │ └── icomoon.woff
├── images
│ ├── img_bg_1_gradient.jpg
│ └── loader.gif
├── index.html
├── js
│ ├── bootstrap.min.js
│ ├── jquery.easing.1.3.js
│ ├── jquery.min.js
│ ├── jquery.waypoints.min.js
│ ├── main.js
│ ├── modernizr-2.6.2.min.js
│ ├── respond.min.js
│ └── simplyCountdown.js
└── sass
│ ├── _bootstrap-compass.scss
│ ├── _bootstrap-mincer.scss
│ ├── _bootstrap-sprockets.scss
│ ├── bootstrap.scss
│ ├── bootstrap
│ ├── _alerts.scss
│ ├── _badges.scss
│ ├── _breadcrumbs.scss
│ ├── _button-groups.scss
│ ├── _buttons.scss
│ ├── _carousel.scss
│ ├── _close.scss
│ ├── _code.scss
│ ├── _component-animations.scss
│ ├── _dropdowns.scss
│ ├── _forms.scss
│ ├── _glyphicons.scss
│ ├── _grid.scss
│ ├── _input-groups.scss
│ ├── _jumbotron.scss
│ ├── _labels.scss
│ ├── _list-group.scss
│ ├── _media.scss
│ ├── _mixins.scss
│ ├── _modals.scss
│ ├── _navbar.scss
│ ├── _navs.scss
│ ├── _normalize.scss
│ ├── _pager.scss
│ ├── _pagination.scss
│ ├── _panels.scss
│ ├── _popovers.scss
│ ├── _print.scss
│ ├── _progress-bars.scss
│ ├── _responsive-embed.scss
│ ├── _responsive-utilities.scss
│ ├── _scaffolding.scss
│ ├── _tables.scss
│ ├── _theme.scss
│ ├── _thumbnails.scss
│ ├── _tooltip.scss
│ ├── _type.scss
│ ├── _utilities.scss
│ ├── _variables.scss
│ ├── _wells.scss
│ └── mixins
│ │ ├── _alerts.scss
│ │ ├── _background-variant.scss
│ │ ├── _border-radius.scss
│ │ ├── _buttons.scss
│ │ ├── _center-block.scss
│ │ ├── _clearfix.scss
│ │ ├── _forms.scss
│ │ ├── _gradients.scss
│ │ ├── _grid-framework.scss
│ │ ├── _grid.scss
│ │ ├── _hide-text.scss
│ │ ├── _image.scss
│ │ ├── _labels.scss
│ │ ├── _list-group.scss
│ │ ├── _nav-divider.scss
│ │ ├── _nav-vertical-align.scss
│ │ ├── _opacity.scss
│ │ ├── _pagination.scss
│ │ ├── _panels.scss
│ │ ├── _progress-bar.scss
│ │ ├── _reset-filter.scss
│ │ ├── _reset-text.scss
│ │ ├── _resize.scss
│ │ ├── _responsive-visibility.scss
│ │ ├── _size.scss
│ │ ├── _tab-focus.scss
│ │ ├── _table-row.scss
│ │ ├── _text-emphasis.scss
│ │ ├── _text-overflow.scss
│ │ └── _vendor-prefixes.scss
│ └── style.scss
├── style.css
└── testtemplate.php
/assets/css/icomoon.css:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: 'icomoon';
3 | src: url('../fonts/icomoon/icomoon.eot?zg8tpz');
4 | src: url('../fonts/icomoon/icomoon.eot?zg8tpz#iefix') format('embedded-opentype'),
5 | url('../fonts/icomoon/icomoon.ttf?zg8tpz') format('truetype'),
6 | url('../fonts/icomoon/icomoon.woff?zg8tpz') format('woff'),
7 | url('../fonts/icomoon/icomoon.svg?zg8tpz#icomoon') format('svg');
8 | font-weight: normal;
9 | font-style: normal;
10 | }
11 |
12 | [class^="icon-"], [class*=" icon-"] {
13 | /* use !important to prevent issues with browser extensions that change fonts */
14 | font-family: 'icomoon' !important;
15 | speak: none;
16 | font-style: normal;
17 | font-weight: normal;
18 | font-variant: normal;
19 | text-transform: none;
20 | line-height: 1;
21 |
22 | /* Better Font Rendering =========== */
23 | -webkit-font-smoothing: antialiased;
24 | -moz-osx-font-smoothing: grayscale;
25 | }
26 |
27 | .icon-twitter:before {
28 | content: "\f099";
29 | }
30 | .icon-facebook:before {
31 | content: "\f09a";
32 | }
33 | .icon-facebook-f:before {
34 | content: "\f09a";
35 | }
36 | .icon-pinterest-square:before {
37 | content: "\f0d3";
38 | }
39 | .icon-google-plus:before {
40 | content: "\f0d5";
41 | }
42 | .icon-linkedin:before {
43 | content: "\f0e1";
44 | }
45 | .icon-instagram:before {
46 | content: "\f16d";
47 | }
48 | .icon-apple:before {
49 | content: "\f179";
50 | }
51 | .icon-windows:before {
52 | content: "\f17a";
53 | }
54 | .icon-android:before {
55 | content: "\f17b";
56 | }
57 |
--------------------------------------------------------------------------------
/assets/css/style.css:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: 'icomoon';
3 | src: url("../fonts/icomoon/icomoon.eot?srf3rx");
4 | src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
5 | font-weight: normal;
6 | font-style: normal; }
7 | /* =======================================================
8 | *
9 | * Template Style
10 | *
11 | * ======================================================= */
12 | body {
13 | font-family: "Open Sans", Arial, sans-serif;
14 | font-weight: 400;
15 | font-size: 16px;
16 | line-height: 1.7;
17 | color: #828282;
18 | background: #fff; }
19 |
20 | #page {
21 | position: relative;
22 | overflow-x: hidden;
23 | width: 100%;
24 | height: 100%;
25 | -webkit-transition: 0.5s;
26 | -o-transition: 0.5s;
27 | transition: 0.5s; }
28 | .offcanvas #page {
29 | overflow: hidden;
30 | position: absolute; }
31 | .offcanvas #page:after {
32 | -webkit-transition: 2s;
33 | -o-transition: 2s;
34 | transition: 2s;
35 | position: absolute;
36 | top: 0;
37 | right: 0;
38 | bottom: 0;
39 | left: 0;
40 | z-index: 101;
41 | background: rgba(0, 0, 0, 0.7);
42 | content: ""; }
43 |
44 | a {
45 | color: #0bbbe6;
46 | -webkit-transition: 0.5s;
47 | -o-transition: 0.5s;
48 | transition: 0.5s; }
49 | a:hover, a:active, a:focus {
50 | color: #0bbbe6;
51 | outline: none;
52 | text-decoration: none; }
53 |
54 | p {
55 | margin-bottom: 20px; }
56 |
57 | h1, h2, h3, h4, h5, h6, figure {
58 | color: #000;
59 | font-family: "Open Sans", Arial, sans-serif;
60 | font-weight: 400;
61 | margin: 0 0 20px 0; }
62 |
63 | ::-webkit-selection {
64 | color: #fff;
65 | background: #0bbbe6; }
66 |
67 | ::-moz-selection {
68 | color: #fff;
69 | background: #0bbbe6; }
70 |
71 | ::selection {
72 | color: #fff;
73 | background: #0bbbe6; }
74 |
75 | #fh5co-aside {
76 | width: 38.2%;
77 | top: 0;
78 | left: 0;
79 | bottom: 0;
80 | position: fixed;
81 | height: 100%;
82 | z-index: 555;
83 | background-color: #0bbbe6;
84 | background-size: cover;
85 | background-repeat: no-repeat;
86 | background-position: center center; }
87 | @media screen and (max-width: 768px) {
88 | #fh5co-aside {
89 | width: 100%;
90 | position: relative;
91 | height: 200px; } }
92 | #fh5co-aside #fh5co-logo {
93 | padding-top: 20px; }
94 | #fh5co-aside #fh5co-logo a {
95 | font-weight: 800;
96 | letter-spacing: -3px;
97 | color: #fff; }
98 |
99 | #fh5co-main-content {
100 | margin-left: 38.1966%;
101 | position: relative;
102 | z-index: 999;
103 | min-height: 600px;
104 | padding-left: 70px;
105 | padding-right: 70px; }
106 | @media screen and (max-width: 768px) {
107 | #fh5co-main-content {
108 | margin-left: 0;
109 | padding-left: 15px;
110 | padding-right: 15px;
111 | padding-top: 30px;
112 | padding-bottom: 15px; } }
113 |
114 | .dt {
115 | display: table; }
116 | .dt .dtc {
117 | display: table-cell;
118 | vertical-align: middle; }
119 |
120 | .simply-countdown-one {
121 | margin-bottom: 30px;
122 | float: left;
123 | width: 100%; }
124 | .simply-countdown-one .simply-section {
125 | float: left;
126 | margin-right: 40px;
127 | margin-bottom: 10px;
128 | text-align: center; }
129 | .simply-countdown-one .simply-section:last-child {
130 | margin-right: 0; }
131 | .simply-countdown-one .simply-section .simply-amount {
132 | font-size: 100px;
133 | color: #1c1c1c;
134 | display: block;
135 | font-weight: 800;
136 | line-height: 100px; }
137 | @media screen and (max-width: 768px) {
138 | .simply-countdown-one .simply-section .simply-amount {
139 | font-size: 30px;
140 | line-height: 30px; } }
141 | .simply-countdown-one .simply-section .simply-word {
142 | display: block;
143 | text-align: left;
144 | font-weight: 700;
145 | color: #a7a7a7; }
146 |
147 | .fh5co-intro {
148 | margin-bottom: 30px;
149 | float: left;
150 | width: 100%;
151 | position: relative; }
152 | .fh5co-intro h2 {
153 | margin-bottom: 10px;
154 | font-size: 40px;
155 | font-weight: 800; }
156 | @media screen and (max-width: 768px) {
157 | .fh5co-intro h2 {
158 | font-size: 20px; } }
159 |
160 | #fh5co-subscribe {
161 | position: relative; }
162 | #fh5co-subscribe .form-group {
163 | float: left;
164 | width: 100%;
165 | position: relative; }
166 | #fh5co-subscribe .form-group .form-control {
167 | -webkit-border-radius: 100px;
168 | -moz-border-radius: 100px;
169 | -ms-border-radius: 100px;
170 | border-radius: 100px;
171 | -webkit-box-shadow: none !important;
172 | -moz-box-shadow: none !important;
173 | -ms-box-shadow: none !important;
174 | -o-box-shadow: none !important;
175 | box-shadow: none !important;
176 | padding-right: 150px;
177 | padding-left: 30px;
178 | border: none !important;
179 | background: #eeeeee;
180 | height: 72px;
181 | font-size: 18px; }
182 | #fh5co-subscribe .form-group .btn {
183 | width: 100px;
184 | position: absolute;
185 | right: 0;
186 | top: 0;
187 | font-weight: 700;
188 | height: 72px;
189 | font-size: 14px;
190 | color: #fff;
191 | border: none !important;
192 | background: #0bbbe6;
193 | color: #fff;
194 | text-transform: uppercase;
195 | border-top-right-radius: 100px;
196 | border-bottom-right-radius: 100px;
197 | -webkit-transition: 0.3s;
198 | -o-transition: 0.3s;
199 | transition: 0.3s; }
200 | #fh5co-subscribe .form-group .btn:hover, #fh5co-subscribe .form-group .btn:active, #fh5co-subscribe .form-group .btn:focus {
201 | outline: none;
202 | box-shadow: none !important;
203 | background: #2fcef5; }
204 | #fh5co-subscribe .form-group .tip {
205 | margin-top: 10px;
206 | margin-left: 30px;
207 | font-size: 12px;
208 | color: #bdbdbd; }
209 |
210 | .fh5co-loader {
211 | position: fixed;
212 | left: 0px;
213 | top: 0px;
214 | width: 100%;
215 | height: 100%;
216 | z-index: 9999;
217 | background: url(../images/loader.gif) center no-repeat #fff; }
218 |
219 | #fh5co-footer {
220 | position: absolute;
221 | bottom: 20px;
222 | left: 70px;
223 | right: 70px;
224 | padding-top: 50px; }
225 | @media screen and (max-width: 768px) {
226 | #fh5co-footer {
227 | left: 15px;
228 | right: 15px;
229 | position: relative; } }
230 | #fh5co-footer .fh5co-copyright {
231 | text-align: right; }
232 | @media screen and (max-width: 992px) {
233 | #fh5co-footer .fh5co-copyright {
234 | text-align: left; } }
235 | #fh5co-footer .fh5co-copyright p {
236 | font-size: 13px;
237 | color: #bfbfbf; }
238 | #fh5co-footer .fh5co-copyright p:last-child {
239 | margin-bottom: 0; }
240 |
241 | #fh5co-social {
242 | padding: 0;
243 | margin: 0; }
244 | #fh5co-social li {
245 | list-style: none;
246 | padding: 0;
247 | margin: 0 20px 10px 0;
248 | display: -moz-inline-stack;
249 | display: inline-block;
250 | zoom: 1;
251 | *display: inline; }
252 | #fh5co-social li:last-child {
253 | margin-right: 0; }
254 | #fh5co-social li a {
255 | font-size: 20px;
256 | color: #bfbfbf; }
257 | #fh5co-social li a:hover, #fh5co-social li a:active, #fh5co-social li a:focus {
258 | outline: none;
259 | color: #0bbbe6; }
260 |
261 | /*# sourceMappingURL=style.css.map */
262 |
--------------------------------------------------------------------------------
/assets/css/style.css.map:
--------------------------------------------------------------------------------
1 | {
2 | "version": 3,
3 | "mappings": "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",
4 | "sources": ["../sass/style.scss","../sass/bootstrap/mixins/_vendor-prefixes.scss","../sass/bootstrap/_variables.scss"],
5 | "names": [],
6 | "file": "style.css"
7 | }
--------------------------------------------------------------------------------
/assets/fonts/bootstrap/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LearnWithHasinHayder/launcher/5728847cd5726868e8924d6dce319dd108c98404/assets/fonts/bootstrap/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LearnWithHasinHayder/launcher/5728847cd5726868e8924d6dce319dd108c98404/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/assets/fonts/bootstrap/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LearnWithHasinHayder/launcher/5728847cd5726868e8924d6dce319dd108c98404/assets/fonts/bootstrap/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LearnWithHasinHayder/launcher/5728847cd5726868e8924d6dce319dd108c98404/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/assets/fonts/icomoon/icomoon.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LearnWithHasinHayder/launcher/5728847cd5726868e8924d6dce319dd108c98404/assets/fonts/icomoon/icomoon.eot
--------------------------------------------------------------------------------
/assets/fonts/icomoon/icomoon.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/assets/fonts/icomoon/icomoon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LearnWithHasinHayder/launcher/5728847cd5726868e8924d6dce319dd108c98404/assets/fonts/icomoon/icomoon.ttf
--------------------------------------------------------------------------------
/assets/fonts/icomoon/icomoon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LearnWithHasinHayder/launcher/5728847cd5726868e8924d6dce319dd108c98404/assets/fonts/icomoon/icomoon.woff
--------------------------------------------------------------------------------
/assets/images/img_bg_1_gradient.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LearnWithHasinHayder/launcher/5728847cd5726868e8924d6dce319dd108c98404/assets/images/img_bg_1_gradient.jpg
--------------------------------------------------------------------------------
/assets/images/loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/LearnWithHasinHayder/launcher/5728847cd5726868e8924d6dce319dd108c98404/assets/images/loader.gif
--------------------------------------------------------------------------------
/assets/js/main.js:
--------------------------------------------------------------------------------
1 | ;(function ($) {
2 |
3 | 'use strict';
4 |
5 | var isMobile = {
6 | Android: function() {
7 | return navigator.userAgent.match(/Android/i);
8 | },
9 | BlackBerry: function() {
10 | return navigator.userAgent.match(/BlackBerry/i);
11 | },
12 | iOS: function() {
13 | return navigator.userAgent.match(/iPhone|iPad|iPod/i);
14 | },
15 | Opera: function() {
16 | return navigator.userAgent.match(/Opera Mini/i);
17 | },
18 | Windows: function() {
19 | return navigator.userAgent.match(/IEMobile/i);
20 | },
21 | any: function() {
22 | return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
23 | }
24 | };
25 |
26 |
27 | var contentWayPoint = function() {
28 | var i = 0;
29 | $('.animate-box').waypoint( function( direction ) {
30 |
31 | if( direction === 'down' && !$(this.element).hasClass('animated-fast') ) {
32 |
33 | i++;
34 |
35 | $(this.element).addClass('item-animate');
36 | setTimeout(function(){
37 |
38 | $('body .animate-box.item-animate').each(function(k){
39 | var el = $(this);
40 | setTimeout( function () {
41 | var effect = el.data('animate-effect');
42 | if ( effect === 'fadeIn') {
43 | el.addClass('fadeIn animated-fast');
44 | } else if ( effect === 'fadeInLeft') {
45 | el.addClass('fadeInLeft animated-fast');
46 | } else if ( effect === 'fadeInRight') {
47 | el.addClass('fadeInRight animated-fast');
48 | } else {
49 | el.addClass('fadeInUp animated-fast');
50 | }
51 |
52 | el.removeClass('item-animate');
53 | }, k * 100, 'easeInOutExpo' );
54 | });
55 |
56 | }, 100);
57 |
58 | }
59 |
60 | } , { offset: '85%' } );
61 | };
62 |
63 |
64 |
65 | // Loading page
66 | var loaderPage = function() {
67 | $(".fh5co-loader").fadeOut("slow");
68 | };
69 |
70 |
71 | var screenHeight = function() {
72 |
73 | if ( $(window).width() > 768 && !isMobile.any() ) {
74 | $('.js-dt, .js-dtc').css('min-height', $(window).height());
75 | } else {
76 | $('.js-dt, .js-dtc').css('min-height', '');
77 | }
78 | $(window).resize(function(){
79 | if ( $(window).width() > 768 && !isMobile.any() ) {
80 | $('.js-dt, .js-dtc').css('min-height', $(window).height());
81 | } else {
82 | $('.js-dt, .js-dtc').css('min-height', '');
83 | }
84 | });
85 |
86 | };
87 |
88 | var countDown = function() {
89 |
90 | console.log(datedata);
91 | simplyCountdown('.simply-countdown-one', {
92 | year: datedata.year,
93 | month: datedata.month,
94 | day: datedata.day
95 | });
96 |
97 | };
98 |
99 |
100 |
101 | $(function(){
102 | contentWayPoint();
103 | loaderPage();
104 | screenHeight();
105 | countDown();
106 | });
107 |
108 |
109 |
110 | }(jQuery));
--------------------------------------------------------------------------------
/assets/js/respond.min.js:
--------------------------------------------------------------------------------
1 |
2 | /*! Respond.js v1.4.2: min/max-width media query polyfill * Copyright 2013 Scott Jehl
3 | * Licensed under https://github.com/scottjehl/Respond/blob/master/LICENSE-MIT
4 | * */
5 |
6 | !function(a){"use strict";a.matchMedia=a.matchMedia||function(a){var b,c=a.documentElement,d=c.firstElementChild||c.firstChild,e=a.createElement("body"),f=a.createElement("div");return f.id="mq-test-1",f.style.cssText="position:absolute;top:-100em",e.style.background="none",e.appendChild(f),function(a){return f.innerHTML='',c.insertBefore(e,d),b=42===f.offsetWidth,c.removeChild(e),{matches:b,media:a}}}(a.document)}(this),function(a){"use strict";function b(){u(!0)}var c={};a.respond=c,c.update=function(){};var d=[],e=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}(),f=function(a,b){var c=e();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))};if(c.ajax=f,c.queue=d,c.regex={media:/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/gi,urls:/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,findStyles:/@media *([^\{]+)\{([\S\s]+?)$/,only:/(only\s+)?([a-zA-Z]+)\s?/,minw:/\([\s]*min\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/,maxw:/\([\s]*max\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/},c.mediaQueriesSupported=a.matchMedia&&null!==a.matchMedia("only all")&&a.matchMedia("only all").matches,!c.mediaQueriesSupported){var g,h,i,j=a.document,k=j.documentElement,l=[],m=[],n=[],o={},p=30,q=j.getElementsByTagName("head")[0]||k,r=j.getElementsByTagName("base")[0],s=q.getElementsByTagName("link"),t=function(){var a,b=j.createElement("div"),c=j.body,d=k.style.fontSize,e=c&&c.style.fontSize,f=!1;return b.style.cssText="position:absolute;font-size:1em;width:1em",c||(c=f=j.createElement("body"),c.style.background="none"),k.style.fontSize="100%",c.style.fontSize="100%",c.appendChild(b),f&&k.insertBefore(c,k.firstChild),a=b.offsetWidth,f?k.removeChild(c):c.removeChild(b),k.style.fontSize=d,e&&(c.style.fontSize=e),a=i=parseFloat(a)},u=function(b){var c="clientWidth",d=k[c],e="CSS1Compat"===j.compatMode&&d||j.body[c]||d,f={},o=s[s.length-1],r=(new Date).getTime();if(b&&g&&p>r-g)return a.clearTimeout(h),h=a.setTimeout(u,p),void 0;g=r;for(var v in l)if(l.hasOwnProperty(v)){var w=l[v],x=w.minw,y=w.maxw,z=null===x,A=null===y,B="em";x&&(x=parseFloat(x)*(x.indexOf(B)>-1?i||t():1)),y&&(y=parseFloat(y)*(y.indexOf(B)>-1?i||t():1)),w.hasquery&&(z&&A||!(z||e>=x)||!(A||y>=e))||(f[w.media]||(f[w.media]=[]),f[w.media].push(m[w.rules]))}for(var C in n)n.hasOwnProperty(C)&&n[C]&&n[C].parentNode===q&&q.removeChild(n[C]);n.length=0;for(var D in f)if(f.hasOwnProperty(D)){var E=j.createElement("style"),F=f[D].join("\n");E.type="text/css",E.media=D,q.insertBefore(E,o.nextSibling),E.styleSheet?E.styleSheet.cssText=F:E.appendChild(j.createTextNode(F)),n.push(E)}},v=function(a,b,d){var e=a.replace(c.regex.keyframes,"").match(c.regex.media),f=e&&e.length||0;b=b.substring(0,b.lastIndexOf("/"));var g=function(a){return a.replace(c.regex.urls,"$1"+b+"$2$3")},h=!f&&d;b.length&&(b+="/"),h&&(f=1);for(var i=0;f>i;i++){var j,k,n,o;h?(j=d,m.push(g(a))):(j=e[i].match(c.regex.findStyles)&&RegExp.$1,m.push(RegExp.$2&&g(RegExp.$2))),n=j.split(","),o=n.length;for(var p=0;o>p;p++)k=n[p],l.push({media:k.split("(")[0].match(c.regex.only)&&RegExp.$2||"all",rules:m.length-1,hasquery:k.indexOf("(")>-1,minw:k.match(c.regex.minw)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:k.match(c.regex.maxw)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}u()},w=function(){if(d.length){var b=d.shift();f(b.href,function(c){v(c,b.href,b.media),o[b.href]=!0,a.setTimeout(function(){w()},0)})}},x=function(){for(var b=0;b
2 |