├── CNAME ├── .last_build_id ├── images └── head.jpg ├── lazy ├── favicon.ico ├── images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── icon.png ├── index.html ├── css │ ├── font-awesome.min.css │ └── style.css └── js │ └── bootstrap.min.js ├── .gitignore ├── minderous ├── index.html ├── style.css └── main.js ├── lockpic.html ├── conlang └── index.html ├── admin └── index.html ├── index.html └── css └── milligram.css /CNAME: -------------------------------------------------------------------------------- 1 | oboard.ml -------------------------------------------------------------------------------- /.last_build_id: -------------------------------------------------------------------------------- 1 | 8748292612b15538d721b9a984ee701e -------------------------------------------------------------------------------- /images/head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oboard/oboard.github.io/master/images/head.jpg -------------------------------------------------------------------------------- /lazy/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oboard/oboard.github.io/master/lazy/favicon.ico -------------------------------------------------------------------------------- /lazy/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oboard/oboard.github.io/master/lazy/images/1.png -------------------------------------------------------------------------------- /lazy/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oboard/oboard.github.io/master/lazy/images/2.png -------------------------------------------------------------------------------- /lazy/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oboard/oboard.github.io/master/lazy/images/3.png -------------------------------------------------------------------------------- /lazy/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oboard/oboard.github.io/master/lazy/images/icon.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # 此 .gitignore 文件已由 Microsoft(R) Visual Studio 自动创建。 3 | ################################################################################ 4 | 5 | /.vs/oboard.github.io/config 6 | /.vs/slnx.sqlite 7 | /.vs/oboard.github.io/v16 8 | -------------------------------------------------------------------------------- /minderous/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Minderous 7 | 8 | 9 |

😌

10 | 11 |
12 | 13 |
14 |
15 | 16 |
17 |
一些文本..
18 | 19 | -------------------------------------------------------------------------------- /minderous/style.css: -------------------------------------------------------------------------------- 1 | .box { 2 | height:50%; 3 | } 4 | 5 | #box1{ 6 | background-color: transparent; 7 | } 8 | 9 | #box2{ 10 | background-color: transparent; 11 | } 12 | 13 | 14 | #text{ 15 | float: left; 16 | } 17 | 18 | .t1{ 19 | visibility: collapse; 20 | } 21 | 22 | .t2{ 23 | visibility: visible; 24 | } 25 | 26 | 27 | 28 | #snackbar { 29 | visibility: hidden; 30 | min-width: 250px; 31 | margin-left: -125px; 32 | background-color: #333; 33 | color: #fff; 34 | text-align: center; 35 | border-radius: 2px; 36 | padding: 16px; 37 | position: fixed; 38 | z-index: 1; 39 | left: 50%; 40 | bottom: 30px; 41 | font-size: 17px; 42 | } 43 | 44 | #snackbar.show { 45 | visibility: visible; 46 | -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s; 47 | animation: fadein 0.5s, fadeout 0.5s 2.5s; 48 | } 49 | 50 | @-webkit-keyframes fadein { 51 | from {bottom: 0; opacity: 0;} 52 | to {bottom: 30px; opacity: 1;} 53 | } 54 | 55 | @keyframes fadein { 56 | from {bottom: 0; opacity: 0;} 57 | to {bottom: 30px; opacity: 1;} 58 | } 59 | 60 | @-webkit-keyframes fadeout { 61 | from {bottom: 30px; opacity: 1;} 62 | to {bottom: 0; opacity: 0;} 63 | } 64 | 65 | @keyframes fadeout { 66 | from {bottom: 30px; opacity: 1;} 67 | to {bottom: 0; opacity: 0;} 68 | } -------------------------------------------------------------------------------- /lockpic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 图片锁定 10 | 105 | 106 | 107 | 108 | 109 |
110 |
111 | 112 | 113 | 114 | 115 | 116 |
117 | 118 | 119 | -------------------------------------------------------------------------------- /minderous/main.js: -------------------------------------------------------------------------------- 1 | 2 | var level = 6; 3 | var index = 0; 4 | var rem = []; 5 | var lastT; 6 | 7 | window.onload = function () { 8 | level = request("level"); 9 | if (level == 0) level = 3; 10 | show(); 11 | } 12 | function tip() { 13 | var text = document.getElementById("text"); 14 | if (text.style.visibility.endsWith("visible")) { 15 | text.style.visibility = "collapse"; 16 | } else { 17 | text.style.visibility = "visible"; 18 | } 19 | } 20 | 21 | function request(paras) { 22 | var url = location.href; 23 | var paraString = url.substring(url.indexOf("?") + 1, url.length).split("&"); 24 | var paraObj = {} 25 | for (i = 0; j = paraString[i]; i++) { 26 | paraObj[j.substring(0, j.indexOf("=")).toLowerCase()] = j.substring(j.indexOf("=") + 1, j.length); 27 | } 28 | var returnValue = paraObj[paras.toLowerCase()]; 29 | if (typeof (returnValue) == "undefined") { 30 | return ""; 31 | } else { 32 | return returnValue; 33 | } 34 | } 35 | 36 | function r() { 37 | var box1 = document.getElementById("box1"); 38 | var box2 = document.getElementById("box2"); 39 | box1.style.backgroundColor = "transparent"; 40 | box2.style.backgroundColor = "transparent"; 41 | 42 | var text = document.getElementById("text"); 43 | text.textContent = rem.toString(); 44 | } 45 | 46 | function a() { 47 | var box1 = document.getElementById("box1"); 48 | var box2 = document.getElementById("box2"); 49 | box1.style.backgroundColor = "red"; 50 | lastT = setTimeout("r()", "300"); 51 | } 52 | 53 | function b() { 54 | var box1 = document.getElementById("box1"); 55 | var box2 = document.getElementById("box2"); 56 | box2.style.backgroundColor = "red"; 57 | lastT = setTimeout("r()", "300"); 58 | } 59 | function aa() { 60 | var box1 = document.getElementById("box1"); 61 | var box2 = document.getElementById("box2"); 62 | if (rem[0] == 0) { 63 | box1.style.backgroundColor = "green"; 64 | rem.splice(0, 1); 65 | } else { 66 | box1.style.backgroundColor = "red"; 67 | fail(); 68 | } 69 | check(); 70 | } 71 | 72 | function bb() { 73 | var box1 = document.getElementById("box1"); 74 | var box2 = document.getElementById("box2"); 75 | if (rem[0] == 1) { 76 | box2.style.backgroundColor = "green"; 77 | rem.splice(0, 1); 78 | } else { 79 | box2.style.backgroundColor = "red"; 80 | fail(); 81 | } 82 | check(); 83 | } 84 | 85 | function fail() { 86 | clearTimeout(lastT); 87 | showToast("失败!"); 88 | level--; 89 | setTimeout(function () { 90 | top.location = "index.html?level=" + level; 91 | reload(); 92 | }, 2000); 93 | 94 | // show(); 95 | } 96 | 97 | function check() { 98 | if (rem.length == 0) { 99 | clearTimeout(lastT); 100 | showToast("厉害!") 101 | 102 | setTimeout(function () { 103 | top.location = "index.html?level=" + level; 104 | reload(); 105 | }, 2000); 106 | 107 | // setTimeout("show()", "300"); 108 | } 109 | } 110 | 111 | function show() { 112 | rem = []; 113 | var i = 0; 114 | for (i = 0; i < level; i++) { 115 | var j = Math.round(Math.random()); 116 | rem.push(j); 117 | lastT = setTimeout("r();", 600 * i); 118 | if (!j) { 119 | lastT = setTimeout("a();", 600 * (i + 0.5)); 120 | } else { 121 | lastT = setTimeout("b();", 600 * (i + 0.5)); 122 | } 123 | } 124 | level++; 125 | } 126 | 127 | // function next() { 128 | // // if (index == 0) { 129 | // // rem = []; 130 | // // } 131 | // index++; 132 | // var text = document.getElementById("text"); 133 | // text.textContent = index.toString(); 134 | // if (index / 2 == (index / 2).toFixed()) { 135 | // r(); 136 | // } else { 137 | // var i = Math.round(Math.random()); 138 | // rem.push(i); 139 | // if (i) { 140 | // a(); 141 | // } else { 142 | // b(); 143 | // } 144 | // } 145 | // if (index > level) { 146 | // setTimeout("index = 0;", "300"); 147 | 148 | // level++; 149 | // level++; 150 | // } else { 151 | // setTimeout("next()", "300"); 152 | // } 153 | // } 154 | 155 | 156 | function showToast(text) { 157 | var x = document.getElementById("snackbar") 158 | x.textContent = text; 159 | x.className = "show"; 160 | setTimeout(function () { x.className = x.className.replace("show", ""); }, 3000); 161 | } -------------------------------------------------------------------------------- /lazy/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 咸鱼待办官方网站 9 | 10 | 11 | 12 | 13 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 36 | 37 | 38 | 39 |
40 | 41 |
42 |
43 | 44 | 55 | 56 |
57 |
58 | 59 | 60 | 61 |
62 |
63 |
64 | 84 |
85 |

咸鱼代办 LazyTodo

86 |

待办高效,计时轻松

87 | 立即下载 88 |
89 |
90 |
91 |
92 | 93 |
94 |
95 |
96 |

下载咸鱼代办

97 |

98 | 114 |
115 |
116 |
117 | 118 | 120 | 123 | 124 | 125 | 126 | 127 | -------------------------------------------------------------------------------- /conlang/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 造语管理系统 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 88 | 89 | 90 | 91 |
92 |
93 |
94 | 95 | 造语管理系统 96 | 97 |
98 |
99 |
100 |
101 |
102 |
103 | 111 | 112 | 120 | 121 | 129 | 130 | 136 |
137 |
138 | 139 |
140 |
141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 |
单词翻译1翻译2修改时间创建时间ID
156 |
157 |
158 | 159 | 160 | -------------------------------------------------------------------------------- /admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 主页管理系统 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 111 | 112 | 113 | 114 |
115 |
116 |
117 | 118 | 主页管理系统 119 | 120 |
121 |
122 |
123 |
124 |
125 |
126 | 134 | 152 | 153 | 159 |
160 |
161 | 162 |
163 |
164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 |
内容修改时间创建时间ID
177 |
178 |
179 | 180 | 181 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | oboard 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 122 | 123 | 199 | 200 | 201 | 242 | 243 | 245 | 250 | 251 | 252 | 253 | 254 | 255 |
256 | 257 |
欢迎来到一块小板子的主页
258 |
259 | 260 | 261 | 265 |
266 | 267 |
268 | 269 | 270 | 271 | 272 |
273 | 274 | 275 | 276 | 277 | 280 | 281 | 282 | 283 | -------------------------------------------------------------------------------- /css/milligram.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Milligram v1.4.0 3 | * https://milligram.io 4 | * 5 | * Copyright (c) 2020 CJ Patoilo 6 | * Licensed under the MIT license 7 | */ 8 | 9 | *, 10 | *:after, 11 | *:before { 12 | box-sizing: inherit; 13 | } 14 | 15 | html { 16 | box-sizing: border-box; 17 | font-size: 62.5%; 18 | } 19 | 20 | body { 21 | color: #606c76; 22 | font-family: 'Roboto', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; 23 | font-size: 1.6em; 24 | font-weight: 300; 25 | letter-spacing: .01em; 26 | line-height: 1.6; 27 | } 28 | 29 | blockquote { 30 | border-left: 0.3rem solid #d1d1d1; 31 | margin-left: 0; 32 | margin-right: 0; 33 | padding: 1rem 1.5rem; 34 | } 35 | 36 | blockquote *:last-child { 37 | margin-bottom: 0; 38 | } 39 | 40 | .button, 41 | button, 42 | input[type='button'], 43 | input[type='reset'], 44 | input[type='submit'] { 45 | background-color: #9b4dca; 46 | border: 0.1rem solid #9b4dca; 47 | border-radius: .4rem; 48 | color: #fff; 49 | cursor: pointer; 50 | display: inline-block; 51 | font-size: 1.1rem; 52 | font-weight: 700; 53 | height: 3.8rem; 54 | letter-spacing: .1rem; 55 | line-height: 3.8rem; 56 | padding: 0 3.0rem; 57 | text-align: center; 58 | text-decoration: none; 59 | text-transform: uppercase; 60 | white-space: nowrap; 61 | } 62 | 63 | .button:focus, .button:hover, 64 | button:focus, 65 | button:hover, 66 | input[type='button']:focus, 67 | input[type='button']:hover, 68 | input[type='reset']:focus, 69 | input[type='reset']:hover, 70 | input[type='submit']:focus, 71 | input[type='submit']:hover { 72 | background-color: #606c76; 73 | border-color: #606c76; 74 | color: #fff; 75 | outline: 0; 76 | } 77 | 78 | .button[disabled], 79 | button[disabled], 80 | input[type='button'][disabled], 81 | input[type='reset'][disabled], 82 | input[type='submit'][disabled] { 83 | cursor: default; 84 | opacity: .5; 85 | } 86 | 87 | .button[disabled]:focus, .button[disabled]:hover, 88 | button[disabled]:focus, 89 | button[disabled]:hover, 90 | input[type='button'][disabled]:focus, 91 | input[type='button'][disabled]:hover, 92 | input[type='reset'][disabled]:focus, 93 | input[type='reset'][disabled]:hover, 94 | input[type='submit'][disabled]:focus, 95 | input[type='submit'][disabled]:hover { 96 | background-color: #9b4dca; 97 | border-color: #9b4dca; 98 | } 99 | 100 | .button.button-outline, 101 | button.button-outline, 102 | input[type='button'].button-outline, 103 | input[type='reset'].button-outline, 104 | input[type='submit'].button-outline { 105 | background-color: transparent; 106 | color: #9b4dca; 107 | } 108 | 109 | .button.button-outline:focus, .button.button-outline:hover, 110 | button.button-outline:focus, 111 | button.button-outline:hover, 112 | input[type='button'].button-outline:focus, 113 | input[type='button'].button-outline:hover, 114 | input[type='reset'].button-outline:focus, 115 | input[type='reset'].button-outline:hover, 116 | input[type='submit'].button-outline:focus, 117 | input[type='submit'].button-outline:hover { 118 | background-color: transparent; 119 | border-color: #606c76; 120 | color: #606c76; 121 | } 122 | 123 | .button.button-outline[disabled]:focus, .button.button-outline[disabled]:hover, 124 | button.button-outline[disabled]:focus, 125 | button.button-outline[disabled]:hover, 126 | input[type='button'].button-outline[disabled]:focus, 127 | input[type='button'].button-outline[disabled]:hover, 128 | input[type='reset'].button-outline[disabled]:focus, 129 | input[type='reset'].button-outline[disabled]:hover, 130 | input[type='submit'].button-outline[disabled]:focus, 131 | input[type='submit'].button-outline[disabled]:hover { 132 | border-color: inherit; 133 | color: #9b4dca; 134 | } 135 | 136 | .button.button-clear, 137 | button.button-clear, 138 | input[type='button'].button-clear, 139 | input[type='reset'].button-clear, 140 | input[type='submit'].button-clear { 141 | background-color: transparent; 142 | border-color: transparent; 143 | color: #9b4dca; 144 | } 145 | 146 | .button.button-clear:focus, .button.button-clear:hover, 147 | button.button-clear:focus, 148 | button.button-clear:hover, 149 | input[type='button'].button-clear:focus, 150 | input[type='button'].button-clear:hover, 151 | input[type='reset'].button-clear:focus, 152 | input[type='reset'].button-clear:hover, 153 | input[type='submit'].button-clear:focus, 154 | input[type='submit'].button-clear:hover { 155 | background-color: transparent; 156 | border-color: transparent; 157 | color: #606c76; 158 | } 159 | 160 | .button.button-clear[disabled]:focus, .button.button-clear[disabled]:hover, 161 | button.button-clear[disabled]:focus, 162 | button.button-clear[disabled]:hover, 163 | input[type='button'].button-clear[disabled]:focus, 164 | input[type='button'].button-clear[disabled]:hover, 165 | input[type='reset'].button-clear[disabled]:focus, 166 | input[type='reset'].button-clear[disabled]:hover, 167 | input[type='submit'].button-clear[disabled]:focus, 168 | input[type='submit'].button-clear[disabled]:hover { 169 | color: #9b4dca; 170 | } 171 | 172 | code { 173 | background: #f4f5f6; 174 | border-radius: .4rem; 175 | font-size: 86%; 176 | margin: 0 .2rem; 177 | padding: .2rem .5rem; 178 | white-space: nowrap; 179 | } 180 | 181 | pre { 182 | background: #f4f5f6; 183 | border-left: 0.3rem solid #9b4dca; 184 | overflow-y: hidden; 185 | } 186 | 187 | pre > code { 188 | border-radius: 0; 189 | display: block; 190 | padding: 1rem 1.5rem; 191 | white-space: pre; 192 | } 193 | 194 | hr { 195 | border: 0; 196 | border-top: 0.1rem solid #f4f5f6; 197 | margin: 3.0rem 0; 198 | } 199 | 200 | input[type='color'], 201 | input[type='date'], 202 | input[type='datetime'], 203 | input[type='datetime-local'], 204 | input[type='email'], 205 | input[type='month'], 206 | input[type='number'], 207 | input[type='password'], 208 | input[type='search'], 209 | input[type='tel'], 210 | input[type='text'], 211 | input[type='url'], 212 | input[type='week'], 213 | input:not([type]), 214 | textarea, 215 | select { 216 | -webkit-appearance: none; 217 | background-color: transparent; 218 | border: 0.1rem solid #d1d1d1; 219 | border-radius: .4rem; 220 | box-shadow: none; 221 | box-sizing: inherit; 222 | height: 3.8rem; 223 | padding: .6rem 1.0rem .7rem; 224 | width: 100%; 225 | } 226 | 227 | input[type='color']:focus, 228 | input[type='date']:focus, 229 | input[type='datetime']:focus, 230 | input[type='datetime-local']:focus, 231 | input[type='email']:focus, 232 | input[type='month']:focus, 233 | input[type='number']:focus, 234 | input[type='password']:focus, 235 | input[type='search']:focus, 236 | input[type='tel']:focus, 237 | input[type='text']:focus, 238 | input[type='url']:focus, 239 | input[type='week']:focus, 240 | input:not([type]):focus, 241 | textarea:focus, 242 | select:focus { 243 | border-color: #9b4dca; 244 | outline: 0; 245 | } 246 | 247 | select { 248 | background: url('data:image/svg+xml;utf8,') center right no-repeat; 249 | padding-right: 3.0rem; 250 | } 251 | 252 | select:focus { 253 | background-image: url('data:image/svg+xml;utf8,'); 254 | } 255 | 256 | select[multiple] { 257 | background: none; 258 | height: auto; 259 | } 260 | 261 | textarea { 262 | min-height: 6.5rem; 263 | } 264 | 265 | label, 266 | legend { 267 | display: block; 268 | font-size: 1.6rem; 269 | font-weight: 700; 270 | margin-bottom: .5rem; 271 | } 272 | 273 | fieldset { 274 | border-width: 0; 275 | padding: 0; 276 | } 277 | 278 | input[type='checkbox'], 279 | input[type='radio'] { 280 | display: inline; 281 | } 282 | 283 | .label-inline { 284 | display: inline-block; 285 | font-weight: normal; 286 | margin-left: .5rem; 287 | } 288 | 289 | .container { 290 | margin: 0 auto; 291 | max-width: 112.0rem; 292 | padding: 0 2.0rem; 293 | position: relative; 294 | width: 100%; 295 | } 296 | 297 | .row { 298 | display: flex; 299 | flex-direction: column; 300 | padding: 0; 301 | width: 100%; 302 | } 303 | 304 | .row.row-no-padding { 305 | padding: 0; 306 | } 307 | 308 | .row.row-no-padding > .column { 309 | padding: 0; 310 | } 311 | 312 | .row.row-wrap { 313 | flex-wrap: wrap; 314 | } 315 | 316 | .row.row-top { 317 | align-items: flex-start; 318 | } 319 | 320 | .row.row-bottom { 321 | align-items: flex-end; 322 | } 323 | 324 | .row.row-center { 325 | align-items: center; 326 | } 327 | 328 | .row.row-stretch { 329 | align-items: stretch; 330 | } 331 | 332 | .row.row-baseline { 333 | align-items: baseline; 334 | } 335 | 336 | .row .column { 337 | display: block; 338 | flex: 1 1 auto; 339 | margin-left: 0; 340 | max-width: 100%; 341 | width: 100%; 342 | } 343 | 344 | .row .column.column-offset-10 { 345 | margin-left: 10%; 346 | } 347 | 348 | .row .column.column-offset-20 { 349 | margin-left: 20%; 350 | } 351 | 352 | .row .column.column-offset-25 { 353 | margin-left: 25%; 354 | } 355 | 356 | .row .column.column-offset-33, .row .column.column-offset-34 { 357 | margin-left: 33.3333%; 358 | } 359 | 360 | .row .column.column-offset-40 { 361 | margin-left: 40%; 362 | } 363 | 364 | .row .column.column-offset-50 { 365 | margin-left: 50%; 366 | } 367 | 368 | .row .column.column-offset-60 { 369 | margin-left: 60%; 370 | } 371 | 372 | .row .column.column-offset-66, .row .column.column-offset-67 { 373 | margin-left: 66.6666%; 374 | } 375 | 376 | .row .column.column-offset-75 { 377 | margin-left: 75%; 378 | } 379 | 380 | .row .column.column-offset-80 { 381 | margin-left: 80%; 382 | } 383 | 384 | .row .column.column-offset-90 { 385 | margin-left: 90%; 386 | } 387 | 388 | .row .column.column-10 { 389 | flex: 0 0 10%; 390 | max-width: 10%; 391 | } 392 | 393 | .row .column.column-20 { 394 | flex: 0 0 20%; 395 | max-width: 20%; 396 | } 397 | 398 | .row .column.column-25 { 399 | flex: 0 0 25%; 400 | max-width: 25%; 401 | } 402 | 403 | .row .column.column-33, .row .column.column-34 { 404 | flex: 0 0 33.3333%; 405 | max-width: 33.3333%; 406 | } 407 | 408 | .row .column.column-40 { 409 | flex: 0 0 40%; 410 | max-width: 40%; 411 | } 412 | 413 | .row .column.column-50 { 414 | flex: 0 0 50%; 415 | max-width: 50%; 416 | } 417 | 418 | .row .column.column-60 { 419 | flex: 0 0 60%; 420 | max-width: 60%; 421 | } 422 | 423 | .row .column.column-66, .row .column.column-67 { 424 | flex: 0 0 66.6666%; 425 | max-width: 66.6666%; 426 | } 427 | 428 | .row .column.column-75 { 429 | flex: 0 0 75%; 430 | max-width: 75%; 431 | } 432 | 433 | .row .column.column-80 { 434 | flex: 0 0 80%; 435 | max-width: 80%; 436 | } 437 | 438 | .row .column.column-90 { 439 | flex: 0 0 90%; 440 | max-width: 90%; 441 | } 442 | 443 | .row .column .column-top { 444 | align-self: flex-start; 445 | } 446 | 447 | .row .column .column-bottom { 448 | align-self: flex-end; 449 | } 450 | 451 | .row .column .column-center { 452 | align-self: center; 453 | } 454 | 455 | @media (min-width: 40rem) { 456 | .row { 457 | flex-direction: row; 458 | margin-left: -1.0rem; 459 | width: calc(100% + 2.0rem); 460 | } 461 | .row .column { 462 | margin-bottom: inherit; 463 | padding: 0 1.0rem; 464 | } 465 | } 466 | 467 | a { 468 | color: #9b4dca; 469 | text-decoration: none; 470 | } 471 | 472 | a:focus, a:hover { 473 | color: #606c76; 474 | } 475 | 476 | dl, 477 | ol, 478 | ul { 479 | list-style: none; 480 | margin-top: 0; 481 | padding-left: 0; 482 | } 483 | 484 | dl dl, 485 | dl ol, 486 | dl ul, 487 | ol dl, 488 | ol ol, 489 | ol ul, 490 | ul dl, 491 | ul ol, 492 | ul ul { 493 | font-size: 90%; 494 | margin: 1.5rem 0 1.5rem 3.0rem; 495 | } 496 | 497 | ol { 498 | list-style: decimal inside; 499 | } 500 | 501 | ul { 502 | list-style: circle inside; 503 | } 504 | 505 | .button, 506 | button, 507 | dd, 508 | dt, 509 | li { 510 | margin-bottom: 1.0rem; 511 | } 512 | 513 | fieldset, 514 | input, 515 | select, 516 | textarea { 517 | margin-bottom: 1.5rem; 518 | } 519 | 520 | blockquote, 521 | dl, 522 | figure, 523 | form, 524 | ol, 525 | p, 526 | pre, 527 | table, 528 | ul { 529 | margin-bottom: 2.5rem; 530 | } 531 | 532 | table { 533 | border-spacing: 0; 534 | display: block; 535 | overflow-x: auto; 536 | text-align: left; 537 | width: 100%; 538 | } 539 | 540 | td, 541 | th { 542 | border-bottom: 0.1rem solid #e1e1e1; 543 | padding: 1.2rem 1.5rem; 544 | } 545 | 546 | td:first-child, 547 | th:first-child { 548 | padding-left: 0; 549 | } 550 | 551 | td:last-child, 552 | th:last-child { 553 | padding-right: 0; 554 | } 555 | 556 | @media (min-width: 40rem) { 557 | table { 558 | display: table; 559 | overflow-x: initial; 560 | } 561 | } 562 | 563 | b, 564 | strong { 565 | font-weight: bold; 566 | } 567 | 568 | p { 569 | margin-top: 0; 570 | } 571 | 572 | h1, 573 | h2, 574 | h3, 575 | h4, 576 | h5, 577 | h6 { 578 | font-weight: 300; 579 | letter-spacing: -.1rem; 580 | margin-bottom: 2.0rem; 581 | margin-top: 0; 582 | } 583 | 584 | h1 { 585 | font-size: 4.6rem; 586 | line-height: 1.2; 587 | } 588 | 589 | h2 { 590 | font-size: 3.6rem; 591 | line-height: 1.25; 592 | } 593 | 594 | h3 { 595 | font-size: 2.8rem; 596 | line-height: 1.3; 597 | } 598 | 599 | h4 { 600 | font-size: 2.2rem; 601 | letter-spacing: -.08rem; 602 | line-height: 1.35; 603 | } 604 | 605 | h5 { 606 | font-size: 1.8rem; 607 | letter-spacing: -.05rem; 608 | line-height: 1.5; 609 | } 610 | 611 | h6 { 612 | font-size: 1.6rem; 613 | letter-spacing: 0; 614 | line-height: 1.4; 615 | } 616 | 617 | img { 618 | max-width: 100%; 619 | } 620 | 621 | .clearfix:after { 622 | clear: both; 623 | content: ' '; 624 | display: table; 625 | } 626 | 627 | .float-left { 628 | float: left; 629 | } 630 | 631 | .float-right { 632 | float: right; 633 | } 634 | 635 | /*# sourceMappingURL=milligram.css.map */ -------------------------------------------------------------------------------- /lazy/css/font-awesome.min.css: -------------------------------------------------------------------------------- 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} 5 | -------------------------------------------------------------------------------- /lazy/css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 0; 3 | margin: 0; 4 | background: #FFF; 5 | font-family: 'Open Sans', sans-serif; 6 | } 7 | 8 | body a { 9 | transition: 0.5s all; 10 | -webkit-transition: 0.5s all; 11 | -moz-transition: 0.5s all; 12 | -o-transition: 0.5s all; 13 | -ms-transition: 0.5s all; 14 | text-decoration: none; 15 | } 16 | 17 | body a:hover { 18 | text-decoration: none; 19 | transition: 0.5s all; 20 | -webkit-transition: 0.5s all; 21 | -moz-transition: 0.5s all; 22 | -o-transition: 0.5s all; 23 | -ms-transition: 0.5s all; 24 | } 25 | 26 | body a:focus, 27 | a:hover { 28 | text-decoration: none; 29 | } 30 | 31 | html { 32 | scroll-behavior: smooth; 33 | } 34 | 35 | input[type="button"], 36 | input[type="submit"] { 37 | transition: 0.5s all; 38 | -webkit-transition: 0.5s all; 39 | -moz-transition: 0.5s all; 40 | -o-transition: 0.5s all; 41 | -ms-transition: 0.5s all; 42 | } 43 | 44 | input[type="button"]:hover, 45 | input[type="submit"]:hover { 46 | transition: 0.5s all; 47 | -webkit-transition: 0.5s all; 48 | -moz-transition: 0.5s all; 49 | -o-transition: 0.5s all; 50 | -ms-transition: 0.5s all; 51 | } 52 | 53 | h1, 54 | h2, 55 | h3, 56 | h4, 57 | h5, 58 | h6 { 59 | margin: 0; 60 | padding: 0; 61 | font-family: 'Roboto', sans-serif; 62 | } 63 | 64 | p { 65 | margin: 0; 66 | padding: 0; 67 | font-size: 16px; 68 | letter-spacing: 1px; 69 | line-height: 1.9; 70 | font-family: 'Open Sans', sans-serif; 71 | } 72 | 73 | ul, 74 | ol { 75 | margin: 0; 76 | padding: 0; 77 | } 78 | 79 | label { 80 | margin: 0; 81 | } 82 | 83 | a:focus, 84 | a:hover { 85 | text-decoration: none; 86 | outline: none 87 | } 88 | 89 | 90 | /* //Reset Code */ 91 | 92 | .text-wh { 93 | color: #fff; 94 | } 95 | 96 | .text-li { 97 | color: #f8f9fa; 98 | } 99 | 100 | .text-black { 101 | color: #343a40; 102 | } 103 | 104 | .bg-li { 105 | background: #f8f9fa; 106 | } 107 | 108 | 109 | /* bottom-to-top */ 110 | 111 | a.move-top { 112 | width: 34px; 113 | height: 34px; 114 | background: url(../images/move-top.png) no-repeat 0px 0px; 115 | display: inline-block; 116 | } 117 | 118 | 119 | /* //bottom-to-top */ 120 | 121 | 122 | /* header */ 123 | 124 | 125 | /* navigation */ 126 | 127 | 128 | /* CSS Document */ 129 | 130 | .toggle-2, 131 | .toggle, 132 | [id^=drop] { 133 | display: none; 134 | } 135 | 136 | 137 | /* Giving a background-color to the nav container. */ 138 | 139 | nav { 140 | margin: 0; 141 | padding: 0; 142 | } 143 | 144 | #logo img { 145 | width: 50px; 146 | float: left; 147 | border-radius: 10px; 148 | } 149 | 150 | #logo a { 151 | float: left; 152 | display: initial; 153 | line-height: 50px; 154 | font-weight: 500; 155 | font-size: 25px; 156 | letter-spacing: 1px; 157 | color: #FFFFFF; 158 | text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06); 159 | padding: 0; 160 | text-transform: capitalize; 161 | } 162 | 163 | 164 | /* Since we'll have the "ul li" "float:left" 165 | * we need to add a clear after the container. */ 166 | 167 | nav:after { 168 | content: ""; 169 | display: table; 170 | clear: both; 171 | } 172 | 173 | 174 | /* Removing padding, margin and "list-style" from the "ul", 175 | * and adding "position:reltive" */ 176 | 177 | nav ul { 178 | float: right; 179 | padding: 0; 180 | margin: 0; 181 | list-style: none; 182 | position: relative; 183 | } 184 | 185 | 186 | /* Positioning the navigation items inline */ 187 | 188 | nav ul li { 189 | margin: 0px; 190 | display: inline-block; 191 | float: left; 192 | } 193 | 194 | 195 | /* Styling the links */ 196 | 197 | nav a { 198 | color: #fff; 199 | text-transform: uppercase; 200 | font-weight: 500; 201 | font-size: 14px; 202 | letter-spacing: 1px; 203 | padding: 0; 204 | display: inline-block; 205 | transition: 0.5s all; 206 | -webkit-transition: 0.5s all; 207 | -moz-transition: 0.5s all; 208 | -o-transition: 0.5s all; 209 | -ms-transition: 0.5s all; 210 | } 211 | 212 | nav ul li ul li:hover { 213 | background: #f8f9fa; 214 | } 215 | 216 | .menu li .drop-text:hover { 217 | color: #000; 218 | } 219 | 220 | 221 | /* Background color change on Hover */ 222 | 223 | .menu li.active a, 224 | .menu li a:hover { 225 | color: #fff; 226 | border-radius: 25px; 227 | transition: 0.5s all; 228 | -webkit-transition: 0.5s all; 229 | -moz-transition: 0.5s all; 230 | -o-transition: 0.5s all; 231 | -ms-transition: 0.5s all; 232 | } 233 | 234 | 235 | /* Hide Dropdowns by Default 236 | * and giving it a position of absolute */ 237 | 238 | nav ul ul { 239 | display: none; 240 | position: absolute; 241 | top: 24px; 242 | background: #fff; 243 | padding: 10px; 244 | border-radius: 4px; 245 | z-index: 9; 246 | /* has to be the same number as the "line-height" of "nav a" */ 247 | } 248 | 249 | 250 | /* Display Dropdowns on Hover */ 251 | 252 | nav ul li:hover>ul { 253 | display: inherit; 254 | } 255 | 256 | 257 | /* Fisrt Tier Dropdown */ 258 | 259 | nav ul ul li { 260 | width: 170px; 261 | float: none; 262 | display: list-item; 263 | position: relative; 264 | } 265 | 266 | nav ul ul li a { 267 | color: #333; 268 | padding: 5px 10px; 269 | display: block; 270 | } 271 | 272 | 273 | /* Second, Third and more Tiers 274 | * We move the 2nd and 3rd etc tier dropdowns to the left 275 | * by the amount of the width of the first tier. 276 | */ 277 | 278 | nav ul ul ul li { 279 | position: relative; 280 | top: -60px; 281 | /* has to be the same number as the "width" of "nav ul ul li" */ 282 | left: 170px; 283 | } 284 | 285 | 286 | /* Change ' +' in order to change the Dropdown symbol */ 287 | 288 | li>a:only-child:after { 289 | content: ''; 290 | } 291 | 292 | a.reqe-button { 293 | color: #fff; 294 | letter-spacing: 1px; 295 | border: 2px solid #fff; 296 | padding: 9px 20px; 297 | border-radius: 40px; 298 | font-size: 14px; 299 | display: inline; 300 | } 301 | 302 | 303 | /* Media Queries 304 | --------------------------------------------- */ 305 | 306 | @media(max-width: 800px) { 307 | nav a { 308 | font-size: 13px; 309 | } 310 | a.reqe-button { 311 | padding: 9px 14px; 312 | font-size: 13px; 313 | } 314 | } 315 | 316 | @media all and (max-width: 736px) { 317 | #logo { 318 | display: block; 319 | padding: 0; 320 | width: 100%; 321 | text-align: center; 322 | float: none; 323 | } 324 | nav { 325 | margin: 0; 326 | } 327 | /* Hide the navigation menu by default */ 328 | /* Also hide the */ 329 | .toggle+a, 330 | .menu { 331 | display: none; 332 | } 333 | /* Stylinf the toggle lable */ 334 | .toggle { 335 | display: block; 336 | padding: 8px 14px; 337 | font-size: 16px; 338 | text-decoration: none; 339 | border: none; 340 | float: right; 341 | background-color: #fff; 342 | color: #000; 343 | border-radius: 4px; 344 | letter-spacing: 1px; 345 | cursor: pointer; 346 | } 347 | .menu .toggle { 348 | float: none; 349 | text-align: center; 350 | margin: auto; 351 | width: 25%; 352 | padding: 5px; 353 | font-weight: normal; 354 | font-size: 16px; 355 | letter-spacing: 1px; 356 | } 357 | .toggle:hover { 358 | color: #0abebc; 359 | } 360 | /* Display Dropdown when clicked on Parent Lable */ 361 | [id^=drop]:checked+ul { 362 | display: block; 363 | background: #fff; 364 | padding: 15px 0; 365 | text-align: center; 366 | width: 100%; 367 | } 368 | /* Change menu item's width to 100% */ 369 | nav ul li { 370 | display: block; 371 | width: 100%; 372 | padding: 5px 0; 373 | } 374 | nav ul ul .toggle, 375 | nav ul ul a { 376 | padding: 0 40px; 377 | } 378 | nav ul ul ul a { 379 | padding: 0 80px; 380 | } 381 | nav a:hover, 382 | nav ul ul ul a { 383 | background-color: transparent; 384 | } 385 | nav ul li ul li .toggle, 386 | nav ul ul a, 387 | nav ul ul ul a { 388 | padding: 14px 20px; 389 | color: #FFF; 390 | font-size: 14px; 391 | } 392 | /* 393 | nav ul li ul li .toggle, 394 | nav ul ul a { 395 | background-color: #212121; 396 | } */ 397 | /* Hide Dropdowns by Default */ 398 | nav ul ul { 399 | float: none; 400 | position: static; 401 | color: #ffffff; 402 | /* has to be the same number as the "line-height" of "nav a" */ 403 | } 404 | /* Hide menus on hover */ 405 | nav ul ul li:hover>ul, 406 | nav ul li:hover>ul { 407 | display: none; 408 | } 409 | /* Fisrt Tier Dropdown */ 410 | nav ul ul li { 411 | display: block; 412 | width: 100%; 413 | padding: 0; 414 | } 415 | nav ul ul ul li { 416 | position: static; 417 | /* has to be the same number as the "width" of "nav ul ul li" */ 418 | } 419 | .menu li.active a, 420 | .menu li a:hover { 421 | color: #000; 422 | } 423 | nav a { 424 | color: #000; 425 | font-size: 14px; 426 | } 427 | a.reqe-button { 428 | padding: 9px 20px; 429 | border-color: #eeeeee; 430 | display: inline-block; 431 | color: #eeeeee; 432 | } 433 | } 434 | 435 | @media all and (max-width: 330px) { 436 | nav ul li { 437 | display: block; 438 | width: 94%; 439 | } 440 | } 441 | 442 | 443 | /*-- dropdown --*/ 444 | 445 | #demo { 446 | margin: 10px 0 0px 0; 447 | font-family: 'Lato', sans-serif; 448 | } 449 | 450 | #demo .wrapper { 451 | display: inline-block; 452 | position: relative; 453 | } 454 | 455 | #demo .parent { 456 | height: 100%; 457 | width: 100%; 458 | display: block; 459 | cursor: pointer; 460 | line-height: 30px; 461 | height: 30px; 462 | color: #fff; 463 | z-index: 2; 464 | position: relative; 465 | -webkit-transition: border-radius .1s linear, background .1s linear, z-index 0s linear; 466 | -webkit-transition-delay: .8s; 467 | text-align: center; 468 | font-family: 'Lato', sans-serif; 469 | color: #fff; 470 | text-transform: capitalize; 471 | font-weight: 500; 472 | font-size: 15px; 473 | letter-spacing: 1px; 474 | padding-left: 0; 475 | padding-right: 0; 476 | } 477 | 478 | #demo .parent:hover, 479 | #demo .content:hover~.parent { 480 | -webkit-transition-delay: 0s, 0s, 0s; 481 | } 482 | 483 | #demo .content:hover~.parent { 484 | border-bottom-left-radius: 0; 485 | border-bottom-right-radius: 0; 486 | z-index: 0; 487 | } 488 | 489 | #demo .content { 490 | position: absolute; 491 | top: 0; 492 | display: block; 493 | z-index: 1; 494 | height: 0; 495 | width: 150px; 496 | padding-top: 30px; 497 | -webkit-transition: height .5s ease; 498 | -webkit-transition-delay: .4s; 499 | } 500 | 501 | #demo .wrapper:active .content { 502 | height: 150px; 503 | z-index: 3; 504 | -webkit-transition-delay: 0s; 505 | } 506 | 507 | #demo .content:hover { 508 | height: 150px; 509 | z-index: 3; 510 | -webkit-transition-delay: 0s; 511 | } 512 | 513 | #demo .content ul { 514 | background: #fff; 515 | margin: 0; 516 | padding: 0; 517 | overflow: hidden; 518 | height: 100%; 519 | border-bottom-left-radius: 5px; 520 | border-bottom-right-radius: 5px; 521 | } 522 | 523 | #demo .content ul a { 524 | text-decoration: none; 525 | padding: 0; 526 | } 527 | 528 | #demo .content li:hover { 529 | background: #f8f9fa; 530 | } 531 | 532 | #demo .content li { 533 | list-style: none; 534 | text-align: left; 535 | color: #999; 536 | font-size: 16px; 537 | line-height: 30px; 538 | font-weight: 500; 539 | height: 40px; 540 | line-height: 40px; 541 | padding-left: 10px; 542 | border-top: 1px solid #eee; 543 | } 544 | 545 | #demo .content li:last-of-type { 546 | border-bottom-left-radius: 5px; 547 | border-bottom-right-radius: 5px; 548 | } 549 | 550 | 551 | /* //dropdown */ 552 | 553 | 554 | /* //navigation */ 555 | 556 | 557 | /* banner */ 558 | 559 | .main-header { 560 | background: #20c997; 561 | overflow: hidden; 562 | } 563 | 564 | .style-banner { 565 | padding: 12em 4em 12em 0; 566 | } 567 | 568 | .style-banner h1 { 569 | font-size: 46px; 570 | line-height: 1.3; 571 | letter-spacing: 1px; 572 | } 573 | 574 | 575 | /* image layers effect */ 576 | 577 | .effect-w3 { 578 | position: relative; 579 | width: 360px; 580 | height: 720px; 581 | margin-top: 2em; 582 | margin-bottom: 4em; 583 | transition: 0.5s; 584 | margin-left: 16em; 585 | } 586 | 587 | .effect-w3 img { 588 | position: absolute; 589 | transition: 0.5s; 590 | } 591 | 592 | 593 | /* //image layers effect */ 594 | 595 | 596 | /* //banner */ 597 | 598 | 599 | /* banner bottom */ 600 | 601 | .wthree_banner_bottom_grid_right h4 { 602 | font-size: 25px; 603 | color: #000; 604 | letter-spacing: 1px; 605 | } 606 | 607 | 608 | /* banner bottom */ 609 | 610 | .about { 611 | padding-top: 7em; 612 | } 613 | 614 | .aboutpic { 615 | max-width: 100%; 616 | height: 450px; 617 | } 618 | 619 | #section1 { 620 | background-color: #fcbe32; 621 | color: #FFFFFF; 622 | } 623 | 624 | #section2 { 625 | background-color: #e1eef6; 626 | color: #343a40; 627 | } 628 | 629 | #section3 { 630 | background-color: #ef9e9f; 631 | color: #FFFFFF; 632 | } 633 | 634 | #section4 { 635 | background-color: #004e66; 636 | color: #FFFFFF; 637 | } 638 | 639 | 640 | /* about */ 641 | 642 | h2.about-left-w3pvt-lau { 643 | font-size: 22px; 644 | letter-spacing: 1px; 645 | } 646 | 647 | 648 | /* //about */ 649 | 650 | 651 | /* stats */ 652 | 653 | .middlesection-w3pvt-lau { 654 | background: #0abebc; 655 | background-size: cover; 656 | -webkit-background-size: cover; 657 | -moz-background-size: cover; 658 | -o-background-size: cover; 659 | -ms-background-size: cover; 660 | } 661 | 662 | p.counter { 663 | color: #fff; 664 | font-size: 3.2em; 665 | font-weight: 800; 666 | } 667 | 668 | 669 | /* //stats */ 670 | 671 | 672 | /* services */ 673 | 674 | .about-in .card { 675 | padding: 2.5em .5em; 676 | border: 1px solid transparent; 677 | -webkit-transition: box-shadow 0.3s ease-in-out; 678 | -moz-transition: box-shadow 0.3s ease-in-out; 679 | -ms-transition: box-shadow 0.3s ease-in-out; 680 | -o-transition: box-shadow 0.3s ease-in-out; 681 | transition: box-shadow 0.3s ease-in-out; 682 | background: transparent; 683 | } 684 | 685 | .about-in .card:hover, 686 | .about-in .card.active { 687 | background: #fff; 688 | -webkit-box-shadow: 0px 0px 18.69px 2.31px rgba(204, 204, 223, 0.5); 689 | -moz-box-shadow: 0px 0px 18.69px 2.31px rgba(204, 204, 223, 0.5); 690 | box-shadow: 0px 0px 18.69px 2.31px rgba(204, 204, 223, 0.5); 691 | border-radius: 15px; 692 | } 693 | 694 | .about-in .card i { 695 | font-size: 34px; 696 | color: #fff; 697 | width: 75px; 698 | height: 75px; 699 | background: #1ccacd; 700 | border-radius: 50%; 701 | line-height: 2.2; 702 | } 703 | 704 | .about-in .card h5.card-title { 705 | font-size: 25px; 706 | letter-spacing: 1px; 707 | font-weight: 600; 708 | } 709 | 710 | p.title-para { 711 | width: 800px; 712 | } 713 | 714 | 715 | /* //services */ 716 | 717 | 718 | /* apps */ 719 | 720 | ul.apps-lists li { 721 | display: inline-block; 722 | min-width: 150px; 723 | max-width: 720px; 724 | } 725 | 726 | ul.apps-lists li a { 727 | background: #fff; 728 | color: #000; 729 | padding: 14px 20px; 730 | border-radius: 4px; 731 | box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.15); 732 | font-size: 17px; 733 | display: inline-block; 734 | } 735 | 736 | ul.apps-lists li a i { 737 | color: #1ccacd; 738 | } 739 | 740 | ul.apps-lists li a.active { 741 | background: #1ccacd; 742 | color: #fff; 743 | } 744 | 745 | ul.apps-lists li a.active i { 746 | color: #fff; 747 | } 748 | 749 | 750 | /* //apps */ 751 | 752 | 753 | /* pricing */ 754 | 755 | .w3ls-pricing.card { 756 | border: 0; 757 | border-radius: 0px; 758 | -webkit-box-shadow: 0 3px 0px 0 rgba(0, 0, 0, .08); 759 | box-shadow: 0 3px 0px 0 rgba(0, 0, 0, .08); 760 | transition: all .3s ease-in-out; 761 | padding: 2.25rem; 762 | position: relative; 763 | } 764 | 765 | .w3ls-pricing.card-header::after { 766 | content: ""; 767 | display: table; 768 | clear: both; 769 | } 770 | 771 | .w3ls-pricing.card:after, 772 | .service-active:after { 773 | content: ''; 774 | position: absolute; 775 | top: 0; 776 | left: 0; 777 | width: 0%; 778 | height: 5px; 779 | background-color: #1e2d3a; 780 | transition: 0.5s; 781 | } 782 | 783 | .w3ls-pricing.card { 784 | -webkit-box-shadow: 0 20px 35px 0 rgba(0, 0, 0, 0.08); 785 | box-shadow: 0 20px 35px 0 rgba(0, 0, 0, 0.08); 786 | } 787 | 788 | .w3ls-pricing.card:hover:after { 789 | width: 100%; 790 | } 791 | 792 | .w3ls-pricing.card.service-active:after { 793 | content: ''; 794 | position: absolute; 795 | top: 0; 796 | left: 0; 797 | width: 100%; 798 | height: 5px; 799 | background-color: #1e2d3a; 800 | transition: 0.5s; 801 | } 802 | 803 | .w3ls-pricing .card-header { 804 | background-color: white; 805 | padding-left: 2rem; 806 | border-bottom: 0px; 807 | } 808 | 809 | h4.price-title { 810 | font-size: 24px; 811 | letter-spacing: 1px; 812 | } 813 | 814 | .w3ls-pricing .card-block { 815 | padding-top: 0; 816 | } 817 | 818 | .list-group-item { 819 | color: #777; 820 | font-weight: 300; 821 | letter-spacing: 1px; 822 | } 823 | 824 | .list-group-item:first-child { 825 | border-top-left-radius: 0.25rem; 826 | border-top-right-radius: 0.25rem; 827 | border-top: none; 828 | } 829 | 830 | .list-group-item:last-child { 831 | border-bottom: none; 832 | } 833 | 834 | .display-2 { 835 | font-size: 4rem; 836 | letter-spacing: -6px; 837 | color: #1ccacd; 838 | } 839 | 840 | .display-2 .currency { 841 | font-size: 2.75rem; 842 | position: relative; 843 | font-weight: 600; 844 | top: -45px; 845 | letter-spacing: 0px; 846 | color: #ddd; 847 | } 848 | 849 | .display-2 .period { 850 | font-size: 1rem; 851 | color: #b3b3b3; 852 | letter-spacing: 0px; 853 | } 854 | 855 | .btn-gradient { 856 | background-color: #1e2d3a; 857 | color: #fff; 858 | transition: background .3s ease-in-out; 859 | box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, .2); 860 | } 861 | 862 | .btn-gradient:hover { 863 | color: white; 864 | background-color: #1ccacd; 865 | } 866 | 867 | .service-active, 868 | .service-active .card-header, 869 | .service-active .list-group-item { 870 | background: #1ccacd; 871 | } 872 | 873 | .service-active .btn-gradient:hover { 874 | color: #000; 875 | background-color: #fff; 876 | } 877 | 878 | .card-header.active .display-2, 879 | .card-header.active .display-2 .period, 880 | .card-block.active .list-group-item { 881 | color: #fff; 882 | } 883 | 884 | 885 | /* //pricing */ 886 | 887 | 888 | /* testimonails */ 889 | 890 | .download { 891 | background: #1ccacd; 892 | position: relative; 893 | overflow: hidden; 894 | z-index: 1; 895 | } 896 | 897 | .test-text-w3pvt p i { 898 | font-size: 20px; 899 | vertical-align: super; 900 | } 901 | 902 | .test-text-w3pvt h4 { 903 | letter-spacing: 1px 904 | } 905 | 906 | 907 | /* //testimonials */ 908 | 909 | 910 | /* team */ 911 | 912 | .team-grids { 913 | position: relative; 914 | overflow: hidden; 915 | z-index: 1; 916 | } 917 | 918 | .team-grids h4 { 919 | font-size: 1.1em; 920 | font-weight: 600; 921 | color: #fff; 922 | letter-spacing: 1px; 923 | } 924 | 925 | .team-grids h6 { 926 | font-size: 1em; 927 | color: #1ccacd; 928 | letter-spacing: 2px; 929 | } 930 | 931 | .social-icons-section a { 932 | color: #ccc; 933 | } 934 | 935 | .social-icons-section a:hover { 936 | color: #fff; 937 | } 938 | 939 | .team-info { 940 | position: absolute; 941 | bottom: -227px; 942 | margin: 0; 943 | background: rgba(0, 0, 0, 0.8); 944 | border-top: 2px solid #fff; 945 | padding: 1em 0; 946 | -webkit-transition: .5s all; 947 | transition: .5s all; 948 | -moz-transition: .5s all; 949 | width: 92%; 950 | text-align: center; 951 | } 952 | 953 | .team-grids:hover div.team-info { 954 | bottom: 0; 955 | } 956 | 957 | .social-icons-section, 958 | .team-grids h6 { 959 | margin-top: 0.5em; 960 | } 961 | 962 | .caption { 963 | padding: 0px; 964 | } 965 | 966 | .team-info .social-icons-section a { 967 | margin: 0em .5em; 968 | } 969 | 970 | 971 | /* team responsive */ 972 | 973 | @media(max-width:1080px) { 974 | .team-grids h4 { 975 | font-size: 1em; 976 | } 977 | .about_grids h3 { 978 | font-size: 22px; 979 | } 980 | .about-in .card { 981 | padding: 1.5em .5em; 982 | } 983 | } 984 | 985 | @media(max-width:1024px) { 986 | .team-info { 987 | width: 91%; 988 | } 989 | } 990 | 991 | @media(max-width:991px) { 992 | .team-info { 993 | width: 88%; 994 | } 995 | } 996 | 997 | @media(max-width:736px) { 998 | .team-info { 999 | width: 65%; 1000 | left: 95px; 1001 | } 1002 | } 1003 | 1004 | @media(max-width:480px) { 1005 | .team-info { 1006 | width: 76%; 1007 | left: 56px; 1008 | } 1009 | } 1010 | 1011 | @media(max-width:440px) { 1012 | .team-info { 1013 | width: 83%; 1014 | left: 36px; 1015 | } 1016 | } 1017 | 1018 | @media(max-width:414px) { 1019 | .team-info { 1020 | width: 89%; 1021 | left: 24px; 1022 | } 1023 | } 1024 | 1025 | @media(max-width:384px) { 1026 | .team-info { 1027 | width: 92%; 1028 | left: 14px; 1029 | } 1030 | } 1031 | 1032 | @media(max-width:320px) { 1033 | .team-info { 1034 | width: 90%; 1035 | left: 15px; 1036 | } 1037 | } 1038 | 1039 | 1040 | /* //team responsive */ 1041 | 1042 | 1043 | /* //team */ 1044 | 1045 | 1046 | /* newsletter */ 1047 | 1048 | h3.tittle { 1049 | font-size: 34px; 1050 | } 1051 | 1052 | p.sub-tittle { 1053 | max-width: 700px; 1054 | margin: 0 auto; 1055 | font-size: 15px; 1056 | } 1057 | 1058 | .n-right-w3ls input[type="submit"] { 1059 | background: #1ccacd; 1060 | border: none; 1061 | color: #fff; 1062 | font-size: 15px; 1063 | font-weight: 600; 1064 | letter-spacing: 2px; 1065 | cursor: pointer; 1066 | padding: 13px; 1067 | -webkit-transition: 0.5s all; 1068 | -moz-transition: 0.5s all; 1069 | -o-transition: 0.5s all; 1070 | -ms-transition: 0.5s all; 1071 | transition: 0.5s all; 1072 | } 1073 | 1074 | .n-right-w3ls input[type="submit"]:hover { 1075 | background: #000; 1076 | letter-spacing: 6px; 1077 | -webkit-transition: 0.5s all; 1078 | -moz-transition: 0.5s all; 1079 | -o-transition: 0.5s all; 1080 | -ms-transition: 0.5s all; 1081 | transition: 0.5s all; 1082 | } 1083 | 1084 | 1085 | /* //newsletter */ 1086 | 1087 | 1088 | /* contact */ 1089 | 1090 | h4.sec-title-w3 { 1091 | font-size: 26px; 1092 | letter-spacing: 1px; 1093 | } 1094 | 1095 | 1096 | /* contact form */ 1097 | 1098 | .main_grid_contact { 1099 | box-shadow: 0px 0px 15.69px 3.31px rgba(204, 204, 223, 0.44) 1100 | } 1101 | 1102 | .main_grid_contact input[type="text"], 1103 | .main_grid_contact input[type="email"], 1104 | .main_grid_contact textarea, 1105 | .n-right-w3ls input[type="email"], 1106 | .n-right-w3ls input[type="text"] { 1107 | outline: none; 1108 | padding: 12px 15px; 1109 | font-size: 15px; 1110 | color: #000; 1111 | width: 100%; 1112 | letter-spacing: 1px; 1113 | background: transparent; 1114 | border: 1px solid #1ccacd; 1115 | border-radius: 4px; 1116 | } 1117 | 1118 | .main_grid_contact textarea { 1119 | min-height: 12em; 1120 | resize: none; 1121 | } 1122 | 1123 | .main_grid_contact .input-group1 input[type="submit"] { 1124 | outline: none; 1125 | padding: 13px 0; 1126 | font-size: 15px; 1127 | margin-top: 2em; 1128 | color: #fff; 1129 | background: #1ccacd; 1130 | border: none; 1131 | letter-spacing: 2px; 1132 | cursor: pointer; 1133 | border-radius: 4px; 1134 | width: 32%; 1135 | margin: 1.5em auto 0; 1136 | -webkit-transition: 0.5s all; 1137 | -moz-transition: 0.5s all; 1138 | -o-transition: 0.5s all; 1139 | -ms-transition: 0.5s all; 1140 | transition: 0.5s all; 1141 | } 1142 | 1143 | .main_grid_contact .input-group1 input[type="submit"]:hover { 1144 | background: #343a40; 1145 | -webkit-transition: 0.5s all; 1146 | -moz-transition: 0.5s all; 1147 | -o-transition: 0.5s all; 1148 | -ms-transition: 0.5s all; 1149 | transition: 0.5s all; 1150 | } 1151 | 1152 | 1153 | /* //contact form */ 1154 | 1155 | 1156 | /* map */ 1157 | 1158 | .map { 1159 | padding: 0; 1160 | } 1161 | 1162 | .map iframe { 1163 | border: none; 1164 | width: 100%; 1165 | height: 100%; 1166 | } 1167 | 1168 | 1169 | /* //map */ 1170 | 1171 | 1172 | /* //contact */ 1173 | 1174 | 1175 | /* footer */ 1176 | 1177 | footer { 1178 | background: #f5f5f5; 1179 | } 1180 | 1181 | .address-grid i { 1182 | font-size: 40px; 1183 | color: #fff; 1184 | } 1185 | 1186 | 1187 | /* social-icons footer */ 1188 | 1189 | .w3l-footer ul li, 1190 | .payment-w3lsmk ul li { 1191 | display: inline-block; 1192 | } 1193 | 1194 | .w3l-footer ul li a i { 1195 | height: 40px; 1196 | width: 40px; 1197 | line-height: 2.5; 1198 | background: none; 1199 | border-radius: 50%; 1200 | background: #fff; 1201 | color: #000; 1202 | text-align: center; 1203 | transition: 0.5s all; 1204 | -webkit-transition: 0.5s all; 1205 | -moz-transition: 0.5s all; 1206 | -o-transition: 0.5s all; 1207 | -ms-transition: 0.5s all; 1208 | } 1209 | 1210 | .w3l-footer ul li a i.fa-facebook-f:hover { 1211 | background: #3b5998; 1212 | color: #fff; 1213 | border-color: #3b5998; 1214 | } 1215 | 1216 | .w3l-footer ul li a i.fa-twitter:hover { 1217 | background: #55acee; 1218 | color: #fff; 1219 | border-color: #55acee; 1220 | } 1221 | 1222 | .w3l-footer ul li a i.fa-dribbble:hover { 1223 | background: #f26522; 1224 | color: #fff; 1225 | border-color: #f26522; 1226 | } 1227 | 1228 | .w3l-footer ul li a i.fa-vk:hover { 1229 | background: #45668e; 1230 | color: #fff; 1231 | border-color: #45668e; 1232 | } 1233 | 1234 | 1235 | /* //social-icons footer */ 1236 | 1237 | 1238 | /* copyright */ 1239 | 1240 | p.copy-right-grids { 1241 | letter-spacing: 2px; 1242 | font-size: 15px; 1243 | } 1244 | 1245 | p.copy-right-grids a { 1246 | color: #000; 1247 | } 1248 | 1249 | p.copy-right-grids a:hover { 1250 | color: #fff; 1251 | } 1252 | 1253 | 1254 | /* //copyright */ 1255 | 1256 | 1257 | /* //footer */ 1258 | 1259 | 1260 | /* responsive */ 1261 | 1262 | @media(max-width: 1680px) {} 1263 | 1264 | @media(max-width: 1600px) {} 1265 | 1266 | @media(max-width: 1440px) { 1267 | .style-banner h1 { 1268 | font-size: 42px; 1269 | } 1270 | .effect-w3 { 1271 | margin-top: 2em; 1272 | margin-left: 12em; 1273 | } 1274 | .style-banner p { 1275 | font-size: 15px; 1276 | } 1277 | } 1278 | 1279 | @media(max-width: 1366px) { 1280 | .style-banner h1 { 1281 | font-size: 40px; 1282 | } 1283 | } 1284 | 1285 | @media(max-width: 1280px) { 1286 | .wthree_banner_bottom_grid_right h4 { 1287 | font-size: 23px; 1288 | } 1289 | p { 1290 | font-size: 15px; 1291 | } 1292 | .style-banner h1 { 1293 | font-size: 38px; 1294 | } 1295 | .style-banner { 1296 | padding: 15em 2em 0 6em; 1297 | } 1298 | .effect-w3 { 1299 | margin-top: 2em; 1300 | margin-left: 10em; 1301 | } 1302 | .about { 1303 | padding-left: 4em; 1304 | } 1305 | } 1306 | 1307 | @media(max-width: 1080px) { 1308 | /* contact */ 1309 | .main_grid_contact textarea { 1310 | min-height: 10em; 1311 | } 1312 | .main_grid_contact .input-group1 input[type="submit"] { 1313 | width: 38%; 1314 | } 1315 | .wthree_banner_bottom_grid_right { 1316 | padding-left: 0; 1317 | } 1318 | .effect-w3 { 1319 | margin-top: 2em; 1320 | margin-left: 6.5em; 1321 | margin-bottom: 4em; 1322 | } 1323 | .style-banner { 1324 | padding: 15em 2em 0 4em; 1325 | } 1326 | .style-banner h1 { 1327 | font-size: 35px; 1328 | } 1329 | .style-banner p { 1330 | font-size: 14px; 1331 | } 1332 | .about { 1333 | padding-top: 5em; 1334 | padding-left: 8em; 1335 | } 1336 | } 1337 | 1338 | @media(max-width: 1050px) { 1339 | p.counter { 1340 | font-size: 2.8em; 1341 | } 1342 | .style-banner { 1343 | padding: 12em 2em 0 6em; 1344 | } 1345 | } 1346 | 1347 | @media(max-width: 1024px) { 1348 | .wthree_banner_bottom_grid_right h4 { 1349 | font-size: 22px; 1350 | } 1351 | } 1352 | 1353 | @media(max-width: 991px) { 1354 | /* footer */ 1355 | .address-grid i { 1356 | font-size: 32px; 1357 | } 1358 | /* contact */ 1359 | .main_grid_contact .input-group1 input[type="submit"] { 1360 | width: 26%; 1361 | } 1362 | .map iframe { 1363 | height: 340px; 1364 | } 1365 | /* newsletter */ 1366 | h3.tittle { 1367 | font-size: 30px; 1368 | } 1369 | .d-flex.grids-w3 { 1370 | display: inherit !important; 1371 | } 1372 | .wthree_banner_bottom_grid_right { 1373 | padding-left: 1em; 1374 | } 1375 | ul.apps-lists li a { 1376 | font-size: 15px; 1377 | } 1378 | p.sub-tittle { 1379 | font-size: 14px; 1380 | } 1381 | .effect-w3 { 1382 | margin-top: 2em; 1383 | margin-left: 18em; 1384 | } 1385 | .style-banner { 1386 | padding: 0 9em 5em; 1387 | margin-top: 2em; 1388 | } 1389 | .navbar-light .navbar-toggler { 1390 | border-color: #fff; 1391 | border-radius: 0px; 1392 | background: #fff; 1393 | } 1394 | div#navbarSupportedContent { 1395 | background: rgba(0, 0, 0, 0.87); 1396 | padding: 1.5em 0; 1397 | } 1398 | .about { 1399 | padding-top: 3em; 1400 | padding-left: 0em; 1401 | } 1402 | .aboutleft { 1403 | width: 50%; 1404 | } 1405 | .aboutright { 1406 | width: 50%; 1407 | } 1408 | } 1409 | 1410 | @media(max-width: 900px) { 1411 | .effect-w3 { 1412 | margin-top: 2em; 1413 | margin-left: 16em; 1414 | } 1415 | } 1416 | 1417 | @media(max-width: 800px) { 1418 | .effect-w3 { 1419 | margin-left: 13em; 1420 | } 1421 | .style-banner { 1422 | padding: 2em 4em 4em; 1423 | } 1424 | } 1425 | 1426 | @media(max-width: 768px) { 1427 | .effect-w3 { 1428 | margin-left: 12em; 1429 | margin-bottom: 2em; 1430 | } 1431 | h3.tittle { 1432 | font-size: 27px; 1433 | } 1434 | } 1435 | 1436 | @media(max-width: 736px) { 1437 | .main_grid_contact .input-group1 input[type="submit"] { 1438 | width: 32%; 1439 | } 1440 | p { 1441 | font-size: 14px; 1442 | } 1443 | .aboutpic { 1444 | height: 327px; 1445 | } 1446 | } 1447 | 1448 | @media(max-width: 667px) { 1449 | .effect-w3 { 1450 | margin-left: 9em; 1451 | margin-top: 3em; 1452 | } 1453 | .style-banner { 1454 | margin-top: 2em; 1455 | } 1456 | } 1457 | 1458 | @media(max-width: 640px) { 1459 | .effect-w3 { 1460 | margin-left: 7.5em; 1461 | } 1462 | } 1463 | 1464 | @media(max-width: 600px) { 1465 | .effect-w3 { 1466 | margin-left: 6.5em; 1467 | } 1468 | } 1469 | 1470 | @media(max-width: 568px) { 1471 | /* footer */ 1472 | p.copy-right-grids { 1473 | letter-spacing: 1px; 1474 | } 1475 | .w3l-footer ul li a i { 1476 | height: 38px; 1477 | width: 38px; 1478 | line-height: 2.4; 1479 | } 1480 | #logo a { 1481 | font-size: 25px; 1482 | } 1483 | .effect-w3 { 1484 | margin-left: 5.5em; 1485 | margin-top: 1em; 1486 | } 1487 | .style-banner h1 { 1488 | font-size: 30px; 1489 | } 1490 | .style-banner p { 1491 | font-size: 13px; 1492 | } 1493 | .style-banner { 1494 | margin-top: 2em; 1495 | padding: 0 3em 3em; 1496 | } 1497 | } 1498 | 1499 | @media(max-width: 480px) { 1500 | /* contact */ 1501 | .map iframe { 1502 | height: 300px; 1503 | } 1504 | .main_grid_contact .input-group1 input[type="submit"] { 1505 | width: 36%; 1506 | } 1507 | #logo a { 1508 | font-size: 22px; 1509 | } 1510 | .navbar-light .navbar-toggler { 1511 | padding: 3px 8px; 1512 | } 1513 | .effect-w3 { 1514 | margin-left: 2.5em; 1515 | margin-top: 0em; 1516 | } 1517 | .style-banner h1 { 1518 | font-size: 28px; 1519 | } 1520 | .style-banner { 1521 | margin-top: 2em; 1522 | padding: 0 2em 3em; 1523 | } 1524 | .about { 1525 | padding-top: 2em; 1526 | } 1527 | .aboutpic { 1528 | height: 291px; 1529 | } 1530 | h3.tittle { 1531 | font-size: 23px; 1532 | } 1533 | } 1534 | 1535 | @media(max-width: 440px) { 1536 | /* contact */ 1537 | .main_grid_contact .input-group1 input[type="submit"] { 1538 | width: 42%; 1539 | } 1540 | h4.sec-title-w3 { 1541 | font-size: 24px; 1542 | } 1543 | .effect-w3 { 1544 | margin-left: 1.5em; 1545 | margin-top: 1em; 1546 | } 1547 | .style-banner { 1548 | margin-top: 2em; 1549 | } 1550 | .style-banner h1 { 1551 | font-size: 26px; 1552 | } 1553 | .aboutpic { 1554 | height: 245px; 1555 | } 1556 | h3.tittle { 1557 | font-size: 17px; 1558 | } 1559 | } 1560 | 1561 | @media(max-width: 414px) { 1562 | h2.about-left-w3pvt-lau { 1563 | font-size: 20px; 1564 | } 1565 | p.counter { 1566 | font-size: 2.5em; 1567 | } 1568 | .effect-w3 { 1569 | margin-left: 4em; 1570 | } 1571 | .effect-w3 img { 1572 | height: 500px; 1573 | } 1574 | .style-banner { 1575 | margin-top: -13em; 1576 | } 1577 | nav a { 1578 | font-size: 13px; 1579 | } 1580 | } 1581 | 1582 | @media(max-width: 384px) { 1583 | /* footer */ 1584 | .address-grid i { 1585 | font-size: 30px; 1586 | } 1587 | p { 1588 | font-size: 12px; 1589 | } 1590 | /* contact */ 1591 | .main_grid_contact textarea { 1592 | min-height: 8em; 1593 | } 1594 | .main_grid_contact input[type="text"], 1595 | .main_grid_contact input[type="email"], 1596 | .main_grid_contact textarea, 1597 | .n-right-w3ls input[type="email"], 1598 | .n-right-w3ls input[type="text"] { 1599 | padding: 11px 15px; 1600 | font-size: 14px; 1601 | } 1602 | .main_grid_contact .input-group1 input[type="submit"] { 1603 | width: 48%; 1604 | font-size: 14px; 1605 | } 1606 | .wthree_banner_bottom_grid_right h4 { 1607 | font-size: 20px; 1608 | } 1609 | p.sub-tittle { 1610 | font-size: 13px; 1611 | } 1612 | #logo a { 1613 | font-size: 22px; 1614 | letter-spacing: 0px; 1615 | } 1616 | .navbar-light .navbar-toggler { 1617 | padding: 2px 7px; 1618 | } 1619 | .effect-w3 { 1620 | margin-left: 3em; 1621 | margin-top: 1em; 1622 | } 1623 | .style-banner h1 { 1624 | font-size: 23px; 1625 | } 1626 | .style-banner { 1627 | margin-top: -13em; 1628 | } 1629 | .style-banner p { 1630 | margin-top: 1em !important; 1631 | } 1632 | .navbar-light .navbar-nav .nav-link, 1633 | a.reqe-button { 1634 | font-size: 13px; 1635 | } 1636 | .aboutpic { 1637 | height: 214px; 1638 | } 1639 | } 1640 | 1641 | @media(max-width: 375px) { 1642 | /* footer */ 1643 | .w3l-footer { 1644 | margin-top: 2em !important; 1645 | } 1646 | h2.about-left-w3pvt-lau { 1647 | font-size: 18px; 1648 | } 1649 | h4.sec-title-w3 { 1650 | font-size: 22px; 1651 | } 1652 | .effect-w3 { 1653 | margin-left: 4em; 1654 | } 1655 | .effect-w3 img { 1656 | height: 450px; 1657 | } 1658 | .style-banner { 1659 | margin-top: -16em; 1660 | } 1661 | } 1662 | 1663 | @media(max-width: 320px) { 1664 | /* contact */ 1665 | .map iframe { 1666 | height: 250px; 1667 | } 1668 | .form-w3ls.p-sm-5.p-4 { 1669 | padding: 1.5em .5em !important; 1670 | } 1671 | .main_grid_contact .input-group1 input[type="submit"] { 1672 | width: 56%; 1673 | padding: 12px 0; 1674 | } 1675 | /* newsletter */ 1676 | h3.tittle { 1677 | font-size: 14px; 1678 | } 1679 | .wthree_banner_bottom_grid_right { 1680 | padding: 0 .4em; 1681 | } 1682 | h2.about-left-w3pvt-lau { 1683 | font-size: 16px; 1684 | } 1685 | .w3layouts_stats_left.w3_counter_grid2 { 1686 | padding: 0 .5em; 1687 | } 1688 | p.counter { 1689 | font-size: 2.3em; 1690 | } 1691 | .about-in .card { 1692 | padding: .5em .5em; 1693 | } 1694 | .w3ls-pricing.card { 1695 | padding: 2rem 1rem; 1696 | } 1697 | .list-group-item { 1698 | font-size: 14px; 1699 | } 1700 | .effect-w3 { 1701 | margin-left: 2em; 1702 | margin-top: 1em; 1703 | } 1704 | #logo a { 1705 | font-size: 22px; 1706 | } 1707 | .style-banner { 1708 | margin-top: -16em; 1709 | padding: 0 1em 2em; 1710 | } 1711 | .menu .toggle { 1712 | width: 41%; 1713 | } 1714 | .about { 1715 | padding-top: 1em; 1716 | } 1717 | .aboutpic { 1718 | height: 167px; 1719 | } 1720 | } 1721 | 1722 | 1723 | /* //responsive */ -------------------------------------------------------------------------------- /lazy/js/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v4.5.2 (https://getbootstrap.com/) 3 | * Copyright 2011-2020 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 5 | */ 6 | !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery"),require("popper.js")):"function"==typeof define&&define.amd?define(["exports","jquery","popper.js"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap={},t.jQuery,t.Popper)}(this,(function(t,e,n){"use strict";function i(t,e){for(var n=0;n=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};a.jQueryDetection(),e.fn.emulateTransitionEnd=r,e.event.special[a.TRANSITION_END]={bindType:"transitionend",delegateType:"transitionend",handle:function(t){if(e(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var l="alert",c=e.fn[l],h=function(){function t(t){this._element=t}var n=t.prototype;return n.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},n.dispose=function(){e.removeData(this._element,"bs.alert"),this._element=null},n._getRootElement=function(t){var n=a.getSelectorFromElement(t),i=!1;return n&&(i=document.querySelector(n)),i||(i=e(t).closest(".alert")[0]),i},n._triggerCloseEvent=function(t){var n=e.Event("close.bs.alert");return e(t).trigger(n),n},n._removeElement=function(t){var n=this;if(e(t).removeClass("show"),e(t).hasClass("fade")){var i=a.getTransitionDurationFromElement(t);e(t).one(a.TRANSITION_END,(function(e){return n._destroyElement(t,e)})).emulateTransitionEnd(i)}else this._destroyElement(t)},n._destroyElement=function(t){e(t).detach().trigger("closed.bs.alert").remove()},t._jQueryInterface=function(n){return this.each((function(){var i=e(this),o=i.data("bs.alert");o||(o=new t(this),i.data("bs.alert",o)),"close"===n&&o[n](this)}))},t._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}}]),t}();e(document).on("click.bs.alert.data-api",'[data-dismiss="alert"]',h._handleDismiss(new h)),e.fn[l]=h._jQueryInterface,e.fn[l].Constructor=h,e.fn[l].noConflict=function(){return e.fn[l]=c,h._jQueryInterface};var u=e.fn.button,d=function(){function t(t){this._element=t}var n=t.prototype;return n.toggle=function(){var t=!0,n=!0,i=e(this._element).closest('[data-toggle="buttons"]')[0];if(i){var o=this._element.querySelector('input:not([type="hidden"])');if(o){if("radio"===o.type)if(o.checked&&this._element.classList.contains("active"))t=!1;else{var s=i.querySelector(".active");s&&e(s).removeClass("active")}t&&("checkbox"!==o.type&&"radio"!==o.type||(o.checked=!this._element.classList.contains("active")),e(o).trigger("change")),o.focus(),n=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(n&&this._element.setAttribute("aria-pressed",!this._element.classList.contains("active")),t&&e(this._element).toggleClass("active"))},n.dispose=function(){e.removeData(this._element,"bs.button"),this._element=null},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.button");i||(i=new t(this),e(this).data("bs.button",i)),"toggle"===n&&i[n]()}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}}]),t}();e(document).on("click.bs.button.data-api",'[data-toggle^="button"]',(function(t){var n=t.target,i=n;if(e(n).hasClass("btn")||(n=e(n).closest(".btn")[0]),!n||n.hasAttribute("disabled")||n.classList.contains("disabled"))t.preventDefault();else{var o=n.querySelector('input:not([type="hidden"])');if(o&&(o.hasAttribute("disabled")||o.classList.contains("disabled")))return void t.preventDefault();("LABEL"!==i.tagName||o&&"checkbox"!==o.type)&&d._jQueryInterface.call(e(n),"toggle")}})).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',(function(t){var n=e(t.target).closest(".btn")[0];e(n).toggleClass("focus",/^focus(in)?$/.test(t.type))})),e(window).on("load.bs.button.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-toggle="buttons"] .btn')),e=0,n=t.length;e0,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var n=t.prototype;return n.next=function(){this._isSliding||this._slide("next")},n.nextWhenVisible=function(){!document.hidden&&e(this._element).is(":visible")&&"hidden"!==e(this._element).css("visibility")&&this.next()},n.prev=function(){this._isSliding||this._slide("prev")},n.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(".carousel-item-next, .carousel-item-prev")&&(a.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},n.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},n.to=function(t){var n=this;this._activeElement=this._element.querySelector(".active.carousel-item");var i=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)e(this._element).one("slid.bs.carousel",(function(){return n.to(t)}));else{if(i===t)return this.pause(),void this.cycle();var o=t>i?"next":"prev";this._slide(o,this._items[t])}},n.dispose=function(){e(this._element).off(g),e.removeData(this._element,"bs.carousel"),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},n._getConfig=function(t){return t=s({},p,t),a.typeCheckConfig(f,t,_),t},n._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0&&this.prev(),e<0&&this.next()}},n._addEventListeners=function(){var t=this;this._config.keyboard&&e(this._element).on("keydown.bs.carousel",(function(e){return t._keydown(e)})),"hover"===this._config.pause&&e(this._element).on("mouseenter.bs.carousel",(function(e){return t.pause(e)})).on("mouseleave.bs.carousel",(function(e){return t.cycle(e)})),this._config.touch&&this._addTouchEventListeners()},n._addTouchEventListeners=function(){var t=this;if(this._touchSupported){var n=function(e){t._pointerEvent&&v[e.originalEvent.pointerType.toUpperCase()]?t.touchStartX=e.originalEvent.clientX:t._pointerEvent||(t.touchStartX=e.originalEvent.touches[0].clientX)},i=function(e){t._pointerEvent&&v[e.originalEvent.pointerType.toUpperCase()]&&(t.touchDeltaX=e.originalEvent.clientX-t.touchStartX),t._handleSwipe(),"hover"===t._config.pause&&(t.pause(),t.touchTimeout&&clearTimeout(t.touchTimeout),t.touchTimeout=setTimeout((function(e){return t.cycle(e)}),500+t._config.interval))};e(this._element.querySelectorAll(".carousel-item img")).on("dragstart.bs.carousel",(function(t){return t.preventDefault()})),this._pointerEvent?(e(this._element).on("pointerdown.bs.carousel",(function(t){return n(t)})),e(this._element).on("pointerup.bs.carousel",(function(t){return i(t)})),this._element.classList.add("pointer-event")):(e(this._element).on("touchstart.bs.carousel",(function(t){return n(t)})),e(this._element).on("touchmove.bs.carousel",(function(e){return function(e){e.originalEvent.touches&&e.originalEvent.touches.length>1?t.touchDeltaX=0:t.touchDeltaX=e.originalEvent.touches[0].clientX-t.touchStartX}(e)})),e(this._element).on("touchend.bs.carousel",(function(t){return i(t)})))}},n._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},n._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(".carousel-item")):[],this._items.indexOf(t)},n._getItemByDirection=function(t,e){var n="next"===t,i="prev"===t,o=this._getItemIndex(e),s=this._items.length-1;if((i&&0===o||n&&o===s)&&!this._config.wrap)return e;var r=(o+("prev"===t?-1:1))%this._items.length;return-1===r?this._items[this._items.length-1]:this._items[r]},n._triggerSlideEvent=function(t,n){var i=this._getItemIndex(t),o=this._getItemIndex(this._element.querySelector(".active.carousel-item")),s=e.Event("slide.bs.carousel",{relatedTarget:t,direction:n,from:o,to:i});return e(this._element).trigger(s),s},n._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var n=[].slice.call(this._indicatorsElement.querySelectorAll(".active"));e(n).removeClass("active");var i=this._indicatorsElement.children[this._getItemIndex(t)];i&&e(i).addClass("active")}},n._slide=function(t,n){var i,o,s,r=this,l=this._element.querySelector(".active.carousel-item"),c=this._getItemIndex(l),h=n||l&&this._getItemByDirection(t,l),u=this._getItemIndex(h),d=Boolean(this._interval);if("next"===t?(i="carousel-item-left",o="carousel-item-next",s="left"):(i="carousel-item-right",o="carousel-item-prev",s="right"),h&&e(h).hasClass("active"))this._isSliding=!1;else if(!this._triggerSlideEvent(h,s).isDefaultPrevented()&&l&&h){this._isSliding=!0,d&&this.pause(),this._setActiveIndicatorElement(h);var f=e.Event("slid.bs.carousel",{relatedTarget:h,direction:s,from:c,to:u});if(e(this._element).hasClass("slide")){e(h).addClass(o),a.reflow(h),e(l).addClass(i),e(h).addClass(i);var g=parseInt(h.getAttribute("data-interval"),10);g?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=g):this._config.interval=this._config.defaultInterval||this._config.interval;var m=a.getTransitionDurationFromElement(l);e(l).one(a.TRANSITION_END,(function(){e(h).removeClass(i+" "+o).addClass("active"),e(l).removeClass("active "+o+" "+i),r._isSliding=!1,setTimeout((function(){return e(r._element).trigger(f)}),0)})).emulateTransitionEnd(m)}else e(l).removeClass("active"),e(h).addClass("active"),this._isSliding=!1,e(this._element).trigger(f);d&&this.cycle()}},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.carousel"),o=s({},p,e(this).data());"object"==typeof n&&(o=s({},o,n));var r="string"==typeof n?n:o.slide;if(i||(i=new t(this,o),e(this).data("bs.carousel",i)),"number"==typeof n)i.to(n);else if("string"==typeof r){if("undefined"==typeof i[r])throw new TypeError('No method named "'+r+'"');i[r]()}else o.interval&&o.ride&&(i.pause(),i.cycle())}))},t._dataApiClickHandler=function(n){var i=a.getSelectorFromElement(this);if(i){var o=e(i)[0];if(o&&e(o).hasClass("carousel")){var r=s({},e(o).data(),e(this).data()),l=this.getAttribute("data-slide-to");l&&(r.interval=!1),t._jQueryInterface.call(e(o),r),l&&e(o).data("bs.carousel").to(l),n.preventDefault()}}},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return p}}]),t}();e(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",b._dataApiClickHandler),e(window).on("load.bs.carousel.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-ride="carousel"]')),n=0,i=t.length;n0&&(this._selector=r,this._triggerArray.push(s))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var n=t.prototype;return n.toggle=function(){e(this._element).hasClass("show")?this.hide():this.show()},n.show=function(){var n,i,o=this;if(!this._isTransitioning&&!e(this._element).hasClass("show")&&(this._parent&&0===(n=[].slice.call(this._parent.querySelectorAll(".show, .collapsing")).filter((function(t){return"string"==typeof o._config.parent?t.getAttribute("data-parent")===o._config.parent:t.classList.contains("collapse")}))).length&&(n=null),!(n&&(i=e(n).not(this._selector).data("bs.collapse"))&&i._isTransitioning))){var s=e.Event("show.bs.collapse");if(e(this._element).trigger(s),!s.isDefaultPrevented()){n&&(t._jQueryInterface.call(e(n).not(this._selector),"hide"),i||e(n).data("bs.collapse",null));var r=this._getDimension();e(this._element).removeClass("collapse").addClass("collapsing"),this._element.style[r]=0,this._triggerArray.length&&e(this._triggerArray).removeClass("collapsed").attr("aria-expanded",!0),this.setTransitioning(!0);var l="scroll"+(r[0].toUpperCase()+r.slice(1)),c=a.getTransitionDurationFromElement(this._element);e(this._element).one(a.TRANSITION_END,(function(){e(o._element).removeClass("collapsing").addClass("collapse show"),o._element.style[r]="",o.setTransitioning(!1),e(o._element).trigger("shown.bs.collapse")})).emulateTransitionEnd(c),this._element.style[r]=this._element[l]+"px"}}},n.hide=function(){var t=this;if(!this._isTransitioning&&e(this._element).hasClass("show")){var n=e.Event("hide.bs.collapse");if(e(this._element).trigger(n),!n.isDefaultPrevented()){var i=this._getDimension();this._element.style[i]=this._element.getBoundingClientRect()[i]+"px",a.reflow(this._element),e(this._element).addClass("collapsing").removeClass("collapse show");var o=this._triggerArray.length;if(o>0)for(var s=0;s0},i._getOffset=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=s({},e.offsets,t._config.offset(e.offsets,t._element)||{}),e}:e.offset=this._config.offset,e},i._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),s({},t,this._config.popperConfig)},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.dropdown");if(i||(i=new t(this,"object"==typeof n?n:null),e(this).data("bs.dropdown",i)),"string"==typeof n){if("undefined"==typeof i[n])throw new TypeError('No method named "'+n+'"');i[n]()}}))},t._clearMenus=function(n){if(!n||3!==n.which&&("keyup"!==n.type||9===n.which))for(var i=[].slice.call(document.querySelectorAll('[data-toggle="dropdown"]')),o=0,s=i.length;o0&&r--,40===n.which&&rdocument.documentElement.clientHeight;i||(this._element.style.overflowY="hidden"),this._element.classList.add("modal-static");var o=a.getTransitionDurationFromElement(this._dialog);e(this._element).off(a.TRANSITION_END),e(this._element).one(a.TRANSITION_END,(function(){t._element.classList.remove("modal-static"),i||e(t._element).one(a.TRANSITION_END,(function(){t._element.style.overflowY=""})).emulateTransitionEnd(t._element,o)})).emulateTransitionEnd(o),this._element.focus()}else this.hide()},n._showElement=function(t){var n=this,i=e(this._element).hasClass("fade"),o=this._dialog?this._dialog.querySelector(".modal-body"):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),e(this._dialog).hasClass("modal-dialog-scrollable")&&o?o.scrollTop=0:this._element.scrollTop=0,i&&a.reflow(this._element),e(this._element).addClass("show"),this._config.focus&&this._enforceFocus();var s=e.Event("shown.bs.modal",{relatedTarget:t}),r=function(){n._config.focus&&n._element.focus(),n._isTransitioning=!1,e(n._element).trigger(s)};if(i){var l=a.getTransitionDurationFromElement(this._dialog);e(this._dialog).one(a.TRANSITION_END,r).emulateTransitionEnd(l)}else r()},n._enforceFocus=function(){var t=this;e(document).off("focusin.bs.modal").on("focusin.bs.modal",(function(n){document!==n.target&&t._element!==n.target&&0===e(t._element).has(n.target).length&&t._element.focus()}))},n._setEscapeEvent=function(){var t=this;this._isShown?e(this._element).on("keydown.dismiss.bs.modal",(function(e){t._config.keyboard&&27===e.which?(e.preventDefault(),t.hide()):t._config.keyboard||27!==e.which||t._triggerBackdropTransition()})):this._isShown||e(this._element).off("keydown.dismiss.bs.modal")},n._setResizeEvent=function(){var t=this;this._isShown?e(window).on("resize.bs.modal",(function(e){return t.handleUpdate(e)})):e(window).off("resize.bs.modal")},n._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop((function(){e(document.body).removeClass("modal-open"),t._resetAdjustments(),t._resetScrollbar(),e(t._element).trigger("hidden.bs.modal")}))},n._removeBackdrop=function(){this._backdrop&&(e(this._backdrop).remove(),this._backdrop=null)},n._showBackdrop=function(t){var n=this,i=e(this._element).hasClass("fade")?"fade":"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className="modal-backdrop",i&&this._backdrop.classList.add(i),e(this._backdrop).appendTo(document.body),e(this._element).on("click.dismiss.bs.modal",(function(t){n._ignoreBackdropClick?n._ignoreBackdropClick=!1:t.target===t.currentTarget&&n._triggerBackdropTransition()})),i&&a.reflow(this._backdrop),e(this._backdrop).addClass("show"),!t)return;if(!i)return void t();var o=a.getTransitionDurationFromElement(this._backdrop);e(this._backdrop).one(a.TRANSITION_END,t).emulateTransitionEnd(o)}else if(!this._isShown&&this._backdrop){e(this._backdrop).removeClass("show");var s=function(){n._removeBackdrop(),t&&t()};if(e(this._element).hasClass("fade")){var r=a.getTransitionDurationFromElement(this._backdrop);e(this._backdrop).one(a.TRANSITION_END,s).emulateTransitionEnd(r)}else s()}else t&&t()},n._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},n._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},n._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(t.left+t.right)
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",sanitize:!0,sanitizeFn:null,whiteList:L,popperConfig:null},K={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},X=function(){function t(t,e){if("undefined"==typeof n)throw new TypeError("Bootstrap's tooltips require Popper.js (https://popper.js.org/)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var i=t.prototype;return i.enable=function(){this._isEnabled=!0},i.disable=function(){this._isEnabled=!1},i.toggleEnabled=function(){this._isEnabled=!this._isEnabled},i.toggle=function(t){if(this._isEnabled)if(t){var n=this.constructor.DATA_KEY,i=e(t.currentTarget).data(n);i||(i=new this.constructor(t.currentTarget,this._getDelegateConfig()),e(t.currentTarget).data(n,i)),i._activeTrigger.click=!i._activeTrigger.click,i._isWithActiveTrigger()?i._enter(null,i):i._leave(null,i)}else{if(e(this.getTipElement()).hasClass("show"))return void this._leave(null,this);this._enter(null,this)}},i.dispose=function(){clearTimeout(this._timeout),e.removeData(this.element,this.constructor.DATA_KEY),e(this.element).off(this.constructor.EVENT_KEY),e(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&e(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},i.show=function(){var t=this;if("none"===e(this.element).css("display"))throw new Error("Please use show on visible elements");var i=e.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){e(this.element).trigger(i);var o=a.findShadowRoot(this.element),s=e.contains(null!==o?o:this.element.ownerDocument.documentElement,this.element);if(i.isDefaultPrevented()||!s)return;var r=this.getTipElement(),l=a.getUID(this.constructor.NAME);r.setAttribute("id",l),this.element.setAttribute("aria-describedby",l),this.setContent(),this.config.animation&&e(r).addClass("fade");var c="function"==typeof this.config.placement?this.config.placement.call(this,r,this.element):this.config.placement,h=this._getAttachment(c);this.addAttachmentClass(h);var u=this._getContainer();e(r).data(this.constructor.DATA_KEY,this),e.contains(this.element.ownerDocument.documentElement,this.tip)||e(r).appendTo(u),e(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new n(this.element,r,this._getPopperConfig(h)),e(r).addClass("show"),"ontouchstart"in document.documentElement&&e(document.body).children().on("mouseover",null,e.noop);var d=function(){t.config.animation&&t._fixTransition();var n=t._hoverState;t._hoverState=null,e(t.element).trigger(t.constructor.Event.SHOWN),"out"===n&&t._leave(null,t)};if(e(this.tip).hasClass("fade")){var f=a.getTransitionDurationFromElement(this.tip);e(this.tip).one(a.TRANSITION_END,d).emulateTransitionEnd(f)}else d()}},i.hide=function(t){var n=this,i=this.getTipElement(),o=e.Event(this.constructor.Event.HIDE),s=function(){"show"!==n._hoverState&&i.parentNode&&i.parentNode.removeChild(i),n._cleanTipClass(),n.element.removeAttribute("aria-describedby"),e(n.element).trigger(n.constructor.Event.HIDDEN),null!==n._popper&&n._popper.destroy(),t&&t()};if(e(this.element).trigger(o),!o.isDefaultPrevented()){if(e(i).removeClass("show"),"ontouchstart"in document.documentElement&&e(document.body).children().off("mouseover",null,e.noop),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,e(this.tip).hasClass("fade")){var r=a.getTransitionDurationFromElement(i);e(i).one(a.TRANSITION_END,s).emulateTransitionEnd(r)}else s();this._hoverState=""}},i.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},i.isWithContent=function(){return Boolean(this.getTitle())},i.addAttachmentClass=function(t){e(this.getTipElement()).addClass("bs-tooltip-"+t)},i.getTipElement=function(){return this.tip=this.tip||e(this.config.template)[0],this.tip},i.setContent=function(){var t=this.getTipElement();this.setElementContent(e(t.querySelectorAll(".tooltip-inner")),this.getTitle()),e(t).removeClass("fade show")},i.setElementContent=function(t,n){"object"!=typeof n||!n.nodeType&&!n.jquery?this.config.html?(this.config.sanitize&&(n=Q(n,this.config.whiteList,this.config.sanitizeFn)),t.html(n)):t.text(n):this.config.html?e(n).parent().is(t)||t.empty().append(n):t.text(e(n).text())},i.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},i._getPopperConfig=function(t){var e=this;return s({},{placement:t,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}},this.config.popperConfig)},i._getOffset=function(){var t=this,e={};return"function"==typeof this.config.offset?e.fn=function(e){return e.offsets=s({},e.offsets,t.config.offset(e.offsets,t.element)||{}),e}:e.offset=this.config.offset,e},i._getContainer=function(){return!1===this.config.container?document.body:a.isElement(this.config.container)?e(this.config.container):e(document).find(this.config.container)},i._getAttachment=function(t){return V[t.toUpperCase()]},i._setListeners=function(){var t=this;this.config.trigger.split(" ").forEach((function(n){if("click"===n)e(t.element).on(t.constructor.Event.CLICK,t.config.selector,(function(e){return t.toggle(e)}));else if("manual"!==n){var i="hover"===n?t.constructor.Event.MOUSEENTER:t.constructor.Event.FOCUSIN,o="hover"===n?t.constructor.Event.MOUSELEAVE:t.constructor.Event.FOCUSOUT;e(t.element).on(i,t.config.selector,(function(e){return t._enter(e)})).on(o,t.config.selector,(function(e){return t._leave(e)}))}})),this._hideModalHandler=function(){t.element&&t.hide()},e(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=s({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},i._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},i._enter=function(t,n){var i=this.constructor.DATA_KEY;(n=n||e(t.currentTarget).data(i))||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),e(t.currentTarget).data(i,n)),t&&(n._activeTrigger["focusin"===t.type?"focus":"hover"]=!0),e(n.getTipElement()).hasClass("show")||"show"===n._hoverState?n._hoverState="show":(clearTimeout(n._timeout),n._hoverState="show",n.config.delay&&n.config.delay.show?n._timeout=setTimeout((function(){"show"===n._hoverState&&n.show()}),n.config.delay.show):n.show())},i._leave=function(t,n){var i=this.constructor.DATA_KEY;(n=n||e(t.currentTarget).data(i))||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),e(t.currentTarget).data(i,n)),t&&(n._activeTrigger["focusout"===t.type?"focus":"hover"]=!1),n._isWithActiveTrigger()||(clearTimeout(n._timeout),n._hoverState="out",n.config.delay&&n.config.delay.hide?n._timeout=setTimeout((function(){"out"===n._hoverState&&n.hide()}),n.config.delay.hide):n.hide())},i._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},i._getConfig=function(t){var n=e(this.element).data();return Object.keys(n).forEach((function(t){-1!==M.indexOf(t)&&delete n[t]})),"number"==typeof(t=s({},this.constructor.Default,n,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),a.typeCheckConfig(B,t,this.constructor.DefaultType),t.sanitize&&(t.template=Q(t.template,t.whiteList,t.sanitizeFn)),t},i._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},i._cleanTipClass=function(){var t=e(this.getTipElement()),n=t.attr("class").match(U);null!==n&&n.length&&t.removeClass(n.join(""))},i._handlePopperPlacementChange=function(t){this.tip=t.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},i._fixTransition=function(){var t=this.getTipElement(),n=this.config.animation;null===t.getAttribute("x-placement")&&(e(t).removeClass("fade"),this.config.animation=!1,this.hide(),this.show(),this.config.animation=n)},t._jQueryInterface=function(n){return this.each((function(){var i=e(this).data("bs.tooltip"),o="object"==typeof n&&n;if((i||!/dispose|hide/.test(n))&&(i||(i=new t(this,o),e(this).data("bs.tooltip",i)),"string"==typeof n)){if("undefined"==typeof i[n])throw new TypeError('No method named "'+n+'"');i[n]()}}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return z}},{key:"NAME",get:function(){return B}},{key:"DATA_KEY",get:function(){return"bs.tooltip"}},{key:"Event",get:function(){return K}},{key:"EVENT_KEY",get:function(){return".bs.tooltip"}},{key:"DefaultType",get:function(){return W}}]),t}();e.fn[B]=X._jQueryInterface,e.fn[B].Constructor=X,e.fn[B].noConflict=function(){return e.fn[B]=H,X._jQueryInterface};var Y="popover",$=e.fn[Y],J=new RegExp("(^|\\s)bs-popover\\S+","g"),G=s({},X.Default,{placement:"right",trigger:"click",content:"",template:''}),Z=s({},X.DefaultType,{content:"(string|element|function)"}),tt={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"},et=function(t){var n,i;function s(){return t.apply(this,arguments)||this}i=t,(n=s).prototype=Object.create(i.prototype),n.prototype.constructor=n,n.__proto__=i;var r=s.prototype;return r.isWithContent=function(){return this.getTitle()||this._getContent()},r.addAttachmentClass=function(t){e(this.getTipElement()).addClass("bs-popover-"+t)},r.getTipElement=function(){return this.tip=this.tip||e(this.config.template)[0],this.tip},r.setContent=function(){var t=e(this.getTipElement());this.setElementContent(t.find(".popover-header"),this.getTitle());var n=this._getContent();"function"==typeof n&&(n=n.call(this.element)),this.setElementContent(t.find(".popover-body"),n),t.removeClass("fade show")},r._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},r._cleanTipClass=function(){var t=e(this.getTipElement()),n=t.attr("class").match(J);null!==n&&n.length>0&&t.removeClass(n.join(""))},s._jQueryInterface=function(t){return this.each((function(){var n=e(this).data("bs.popover"),i="object"==typeof t?t:null;if((n||!/dispose|hide/.test(t))&&(n||(n=new s(this,i),e(this).data("bs.popover",n)),"string"==typeof t)){if("undefined"==typeof n[t])throw new TypeError('No method named "'+t+'"');n[t]()}}))},o(s,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"Default",get:function(){return G}},{key:"NAME",get:function(){return Y}},{key:"DATA_KEY",get:function(){return"bs.popover"}},{key:"Event",get:function(){return tt}},{key:"EVENT_KEY",get:function(){return".bs.popover"}},{key:"DefaultType",get:function(){return Z}}]),s}(X);e.fn[Y]=et._jQueryInterface,e.fn[Y].Constructor=et,e.fn[Y].noConflict=function(){return e.fn[Y]=$,et._jQueryInterface};var nt="scrollspy",it=e.fn[nt],ot={offset:10,method:"auto",target:""},st={offset:"number",method:"string",target:"(string|element)"},rt=function(){function t(t,n){var i=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(n),this._selector=this._config.target+" .nav-link,"+this._config.target+" .list-group-item,"+this._config.target+" .dropdown-item",this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,e(this._scrollElement).on("scroll.bs.scrollspy",(function(t){return i._process(t)})),this.refresh(),this._process()}var n=t.prototype;return n.refresh=function(){var t=this,n=this._scrollElement===this._scrollElement.window?"offset":"position",i="auto"===this._config.method?n:this._config.method,o="position"===i?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map((function(t){var n,s=a.getSelectorFromElement(t);if(s&&(n=document.querySelector(s)),n){var r=n.getBoundingClientRect();if(r.width||r.height)return[e(n)[i]().top+o,s]}return null})).filter((function(t){return t})).sort((function(t,e){return t[0]-e[0]})).forEach((function(e){t._offsets.push(e[0]),t._targets.push(e[1])}))},n.dispose=function(){e.removeData(this._element,"bs.scrollspy"),e(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},n._getConfig=function(t){if("string"!=typeof(t=s({},ot,"object"==typeof t&&t?t:{})).target&&a.isElement(t.target)){var n=e(t.target).attr("id");n||(n=a.getUID(nt),e(t.target).attr("id",n)),t.target="#"+n}return a.typeCheckConfig(nt,t,st),t},n._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},n._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},n._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},n._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;){this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t li > .active":".active";i=(i=e.makeArray(e(o).find(r)))[i.length-1]}var l=e.Event("hide.bs.tab",{relatedTarget:this._element}),c=e.Event("show.bs.tab",{relatedTarget:i});if(i&&e(i).trigger(l),e(this._element).trigger(c),!c.isDefaultPrevented()&&!l.isDefaultPrevented()){s&&(n=document.querySelector(s)),this._activate(this._element,o);var h=function(){var n=e.Event("hidden.bs.tab",{relatedTarget:t._element}),o=e.Event("shown.bs.tab",{relatedTarget:i});e(i).trigger(n),e(t._element).trigger(o)};n?this._activate(n,n.parentNode,h):h()}}},n.dispose=function(){e.removeData(this._element,"bs.tab"),this._element=null},n._activate=function(t,n,i){var o=this,s=(!n||"UL"!==n.nodeName&&"OL"!==n.nodeName?e(n).children(".active"):e(n).find("> li > .active"))[0],r=i&&s&&e(s).hasClass("fade"),l=function(){return o._transitionComplete(t,s,i)};if(s&&r){var c=a.getTransitionDurationFromElement(s);e(s).removeClass("show").one(a.TRANSITION_END,l).emulateTransitionEnd(c)}else l()},n._transitionComplete=function(t,n,i){if(n){e(n).removeClass("active");var o=e(n.parentNode).find("> .dropdown-menu .active")[0];o&&e(o).removeClass("active"),"tab"===n.getAttribute("role")&&n.setAttribute("aria-selected",!1)}if(e(t).addClass("active"),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),a.reflow(t),t.classList.contains("fade")&&t.classList.add("show"),t.parentNode&&e(t.parentNode).hasClass("dropdown-menu")){var s=e(t).closest(".dropdown")[0];if(s){var r=[].slice.call(s.querySelectorAll(".dropdown-toggle"));e(r).addClass("active")}t.setAttribute("aria-expanded",!0)}i&&i()},t._jQueryInterface=function(n){return this.each((function(){var i=e(this),o=i.data("bs.tab");if(o||(o=new t(this),i.data("bs.tab",o)),"string"==typeof n){if("undefined"==typeof o[n])throw new TypeError('No method named "'+n+'"');o[n]()}}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}}]),t}();e(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',(function(t){t.preventDefault(),lt._jQueryInterface.call(e(this),"show")})),e.fn.tab=lt._jQueryInterface,e.fn.tab.Constructor=lt,e.fn.tab.noConflict=function(){return e.fn.tab=at,lt._jQueryInterface};var ct=e.fn.toast,ht={animation:"boolean",autohide:"boolean",delay:"number"},ut={animation:!0,autohide:!0,delay:500},dt=function(){function t(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var n=t.prototype;return n.show=function(){var t=this,n=e.Event("show.bs.toast");if(e(this._element).trigger(n),!n.isDefaultPrevented()){this._clearTimeout(),this._config.animation&&this._element.classList.add("fade");var i=function(){t._element.classList.remove("showing"),t._element.classList.add("show"),e(t._element).trigger("shown.bs.toast"),t._config.autohide&&(t._timeout=setTimeout((function(){t.hide()}),t._config.delay))};if(this._element.classList.remove("hide"),a.reflow(this._element),this._element.classList.add("showing"),this._config.animation){var o=a.getTransitionDurationFromElement(this._element);e(this._element).one(a.TRANSITION_END,i).emulateTransitionEnd(o)}else i()}},n.hide=function(){if(this._element.classList.contains("show")){var t=e.Event("hide.bs.toast");e(this._element).trigger(t),t.isDefaultPrevented()||this._close()}},n.dispose=function(){this._clearTimeout(),this._element.classList.contains("show")&&this._element.classList.remove("show"),e(this._element).off("click.dismiss.bs.toast"),e.removeData(this._element,"bs.toast"),this._element=null,this._config=null},n._getConfig=function(t){return t=s({},ut,e(this._element).data(),"object"==typeof t&&t?t:{}),a.typeCheckConfig("toast",t,this.constructor.DefaultType),t},n._setListeners=function(){var t=this;e(this._element).on("click.dismiss.bs.toast",'[data-dismiss="toast"]',(function(){return t.hide()}))},n._close=function(){var t=this,n=function(){t._element.classList.add("hide"),e(t._element).trigger("hidden.bs.toast")};if(this._element.classList.remove("show"),this._config.animation){var i=a.getTransitionDurationFromElement(this._element);e(this._element).one(a.TRANSITION_END,n).emulateTransitionEnd(i)}else n()},n._clearTimeout=function(){clearTimeout(this._timeout),this._timeout=null},t._jQueryInterface=function(n){return this.each((function(){var i=e(this),o=i.data("bs.toast");if(o||(o=new t(this,"object"==typeof n&&n),i.data("bs.toast",o)),"string"==typeof n){if("undefined"==typeof o[n])throw new TypeError('No method named "'+n+'"');o[n](this)}}))},o(t,null,[{key:"VERSION",get:function(){return"4.5.2"}},{key:"DefaultType",get:function(){return ht}},{key:"Default",get:function(){return ut}}]),t}();e.fn.toast=dt._jQueryInterface,e.fn.toast.Constructor=dt,e.fn.toast.noConflict=function(){return e.fn.toast=ct,dt._jQueryInterface},t.Alert=h,t.Button=d,t.Carousel=b,t.Collapse=C,t.Dropdown=I,t.Modal=P,t.Popover=et,t.Scrollspy=rt,t.Tab=lt,t.Toast=dt,t.Tooltip=X,t.Util=a,Object.defineProperty(t,"__esModule",{value:!0})})); 7 | //# sourceMappingURL=bootstrap.min.js.map --------------------------------------------------------------------------------