
© 2021 ALBINPRAVEEN. All rights reserved | Design by 53 | ALBINPRAVEEN
54 |├── .github └── workflows │ └── terraform.yml ├── README.md ├── css ├── fontAwesome.css └── style.css ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff └── fontawesome-webfont.woff2 ├── images └── bg.jpg ├── index.html └── js └── jquery-3.3.1.min.js /.github/workflows/terraform.yml: -------------------------------------------------------------------------------- 1 | # This workflow installs the latest version of Terraform CLI and configures the Terraform CLI configuration file 2 | # with an API token for Terraform Cloud (app.terraform.io). On pull request events, this workflow will run 3 | # `terraform init`, `terraform fmt`, and `terraform plan` (speculative plan via Terraform Cloud). On push events 4 | # to the main branch, `terraform apply` will be executed. 5 | # 6 | # Documentation for `hashicorp/setup-terraform` is located here: https://github.com/hashicorp/setup-terraform 7 | # 8 | # To use this workflow, you will need to complete the following setup steps. 9 | # 10 | # 1. Create a `main.tf` file in the root of this repository with the `remote` backend and one or more resources defined. 11 | # Example `main.tf`: 12 | # # The configuration for the `remote` backend. 13 | # terraform { 14 | # backend "remote" { 15 | # # The name of your Terraform Cloud organization. 16 | # organization = "example-organization" 17 | # 18 | # # The name of the Terraform Cloud workspace to store Terraform state files in. 19 | # workspaces { 20 | # name = "example-workspace" 21 | # } 22 | # } 23 | # } 24 | # 25 | # # An example resource that does nothing. 26 | # resource "null_resource" "example" { 27 | # triggers = { 28 | # value = "A example resource that does nothing!" 29 | # } 30 | # } 31 | # 32 | # 33 | # 2. Generate a Terraform Cloud user API token and store it as a GitHub secret (e.g. TF_API_TOKEN) on this repository. 34 | # Documentation: 35 | # - https://www.terraform.io/docs/cloud/users-teams-organizations/api-tokens.html 36 | # - https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets 37 | # 38 | # 3. Reference the GitHub secret in step using the `hashicorp/setup-terraform` GitHub Action. 39 | # Example: 40 | # - name: Setup Terraform 41 | # uses: hashicorp/setup-terraform@v1 42 | # with: 43 | # cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }} 44 | 45 | name: 'Terraform' 46 | 47 | on: 48 | push: 49 | branches: 50 | - main 51 | pull_request: 52 | 53 | jobs: 54 | terraform: 55 | name: 'Terraform' 56 | runs-on: ubuntu-latest 57 | environment: production 58 | 59 | # Use the Bash shell regardless whether the GitHub Actions runner is ubuntu-latest, macos-latest, or windows-latest 60 | defaults: 61 | run: 62 | shell: bash 63 | 64 | steps: 65 | # Checkout the repository to the GitHub Actions runner 66 | - name: Checkout 67 | uses: actions/checkout@v2 68 | 69 | # Install the latest version of Terraform CLI and configure the Terraform CLI configuration file with a Terraform Cloud user API token 70 | - name: Setup Terraform 71 | uses: hashicorp/setup-terraform@v1 72 | with: 73 | cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }} 74 | 75 | # Initialize a new or existing Terraform working directory by creating initial files, loading any remote state, downloading modules, etc. 76 | - name: Terraform Init 77 | run: terraform init 78 | 79 | # Checks that all Terraform configuration files adhere to a canonical format 80 | - name: Terraform Format 81 | run: terraform fmt -check 82 | 83 | # Generates an execution plan for Terraform 84 | - name: Terraform Plan 85 | run: terraform plan 86 | 87 | # On push to main, build or change infrastructure according to Terraform configuration files 88 | # Note: It is recommended to set up a required "strict" status check in your repository for "Terraform Cloud". See the documentation on "strict" required status checks for more information: https://help.github.com/en/github/administering-a-repository/types-of-required-status-checks 89 | - name: Terraform Apply 90 | if: github.ref == 'refs/heads/main' && github.event_name == 'push' 91 | run: terraform apply -auto-approve 92 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 404-error-page 2 | -------------------------------------------------------------------------------- /css/fontAwesome.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 | */ 5 | @font-face { 6 | font-family: 'FontAwesome'; 7 | src: url("../fonts/fontawesome-webfont.eot?v=4.7.0"); 8 | 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"); 9 | font-weight: normal; 10 | font-style: normal; } 11 | 12 | .fa { 13 | display: inline-block; 14 | font: normal normal normal 14px/1 FontAwesome; 15 | font-size: inherit; 16 | text-rendering: auto; 17 | -webkit-font-smoothing: antialiased; 18 | -moz-osx-font-smoothing: grayscale; } 19 | 20 | .fa-lg { 21 | font-size: 1.33333333em; 22 | line-height: .75em; 23 | vertical-align: -15%; } 24 | 25 | .fa-2x { 26 | font-size: 2em; } 27 | 28 | .fa-3x { 29 | font-size: 3em; } 30 | 31 | .fa-4x { 32 | font-size: 4em; } 33 | 34 | .fa-5x { 35 | font-size: 5em; } 36 | 37 | .fa-fw { 38 | width: 1.28571429em; 39 | text-align: center; } 40 | 41 | .fa-ul { 42 | padding-left: 0; 43 | margin-left: 2.14285714em; 44 | list-style-type: none; } 45 | 46 | .fa-ul > li { 47 | position: relative; } 48 | 49 | .fa-li { 50 | position: absolute; 51 | left: -2.14285714em; 52 | width: 2.14285714em; 53 | top: .14285714em; 54 | text-align: center; } 55 | 56 | .fa-li.fa-lg { 57 | left: -1.85714286em; } 58 | 59 | .fa-border { 60 | padding: .2em .25em .15em; 61 | border: solid .08em #eee; 62 | border-radius: .1em; } 63 | 64 | .fa-pull-left { 65 | float: left; } 66 | 67 | .fa-pull-right { 68 | float: right; } 69 | 70 | .fa.fa-pull-left { 71 | margin-right: .3em; } 72 | 73 | .fa.fa-pull-right { 74 | margin-left: .3em; } 75 | 76 | .pull-right { 77 | float: right; } 78 | 79 | .pull-left { 80 | float: left; } 81 | 82 | .fa.pull-left { 83 | margin-right: .3em; } 84 | 85 | .fa.pull-right { 86 | margin-left: .3em; } 87 | 88 | .fa-spin { 89 | -webkit-animation: fa-spin 2s infinite linear; 90 | animation: fa-spin 2s infinite linear; } 91 | 92 | .fa-pulse { 93 | -webkit-animation: fa-spin 1s infinite steps(8); 94 | animation: fa-spin 1s infinite steps(8); } 95 | 96 | @-webkit-keyframes fa-spin { 97 | 0% { 98 | transform: rotate(0deg); } 99 | 100% { 100 | transform: rotate(359deg); } } 101 | 102 | @keyframes fa-spin { 103 | 0% { 104 | transform: rotate(0deg); } 105 | 100% { 106 | transform: rotate(359deg); } } 107 | 108 | .fa-rotate-90 { 109 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; 110 | transform: rotate(90deg); } 111 | 112 | .fa-rotate-180 { 113 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; 114 | transform: rotate(180deg); } 115 | 116 | .fa-rotate-270 { 117 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; 118 | transform: rotate(270deg); } 119 | 120 | .fa-flip-horizontal { 121 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; 122 | transform: scale(-1, 1); } 123 | 124 | .fa-flip-vertical { 125 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; 126 | transform: scale(1, -1); } 127 | 128 | :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical { 129 | -webkit-filter: none; 130 | filter: none; } 131 | 132 | .fa-stack { 133 | position: relative; 134 | display: inline-block; 135 | width: 2em; 136 | height: 2em; 137 | line-height: 2em; 138 | vertical-align: middle; } 139 | 140 | .fa-stack-1x, .fa-stack-2x { 141 | position: absolute; 142 | left: 0; 143 | width: 100%; 144 | text-align: center; } 145 | 146 | .fa-stack-1x { 147 | line-height: inherit; } 148 | 149 | .fa-stack-2x { 150 | font-size: 2em; } 151 | 152 | .fa-inverse { 153 | color: #fff; } 154 | 155 | .fa-glass:before { 156 | content: "\f000"; } 157 | 158 | .fa-music:before { 159 | content: "\f001"; } 160 | 161 | .fa-search:before { 162 | content: "\f002"; } 163 | 164 | .fa-envelope-o:before { 165 | content: "\f003"; } 166 | 167 | .fa-heart:before { 168 | content: "\f004"; } 169 | 170 | .fa-star:before { 171 | content: "\f005"; } 172 | 173 | .fa-star-o:before { 174 | content: "\f006"; } 175 | 176 | .fa-user:before { 177 | content: "\f007"; } 178 | 179 | .fa-film:before { 180 | content: "\f008"; } 181 | 182 | .fa-th-large:before { 183 | content: "\f009"; } 184 | 185 | .fa-th:before { 186 | content: "\f00a"; } 187 | 188 | .fa-th-list:before { 189 | content: "\f00b"; } 190 | 191 | .fa-check:before { 192 | content: "\f00c"; } 193 | 194 | .fa-remove:before, .fa-close:before, .fa-times:before { 195 | content: "\f00d"; } 196 | 197 | .fa-search-plus:before { 198 | content: "\f00e"; } 199 | 200 | .fa-search-minus:before { 201 | content: "\f010"; } 202 | 203 | .fa-power-off:before { 204 | content: "\f011"; } 205 | 206 | .fa-signal:before { 207 | content: "\f012"; } 208 | 209 | .fa-gear:before, .fa-cog:before { 210 | content: "\f013"; } 211 | 212 | .fa-trash-o:before { 213 | content: "\f014"; } 214 | 215 | .fa-home:before { 216 | content: "\f015"; } 217 | 218 | .fa-file-o:before { 219 | content: "\f016"; } 220 | 221 | .fa-clock-o:before { 222 | content: "\f017"; } 223 | 224 | .fa-road:before { 225 | content: "\f018"; } 226 | 227 | .fa-download:before { 228 | content: "\f019"; } 229 | 230 | .fa-arrow-circle-o-down:before { 231 | content: "\f01a"; } 232 | 233 | .fa-arrow-circle-o-up:before { 234 | content: "\f01b"; } 235 | 236 | .fa-inbox:before { 237 | content: "\f01c"; } 238 | 239 | .fa-play-circle-o:before { 240 | content: "\f01d"; } 241 | 242 | .fa-rotate-right:before, .fa-repeat:before { 243 | content: "\f01e"; } 244 | 245 | .fa-refresh:before { 246 | content: "\f021"; } 247 | 248 | .fa-list-alt:before { 249 | content: "\f022"; } 250 | 251 | .fa-lock:before { 252 | content: "\f023"; } 253 | 254 | .fa-flag:before { 255 | content: "\f024"; } 256 | 257 | .fa-headphones:before { 258 | content: "\f025"; } 259 | 260 | .fa-volume-off:before { 261 | content: "\f026"; } 262 | 263 | .fa-volume-down:before { 264 | content: "\f027"; } 265 | 266 | .fa-volume-up:before { 267 | content: "\f028"; } 268 | 269 | .fa-qrcode:before { 270 | content: "\f029"; } 271 | 272 | .fa-barcode:before { 273 | content: "\f02a"; } 274 | 275 | .fa-tag:before { 276 | content: "\f02b"; } 277 | 278 | .fa-tags:before { 279 | content: "\f02c"; } 280 | 281 | .fa-book:before { 282 | content: "\f02d"; } 283 | 284 | .fa-bookmark:before { 285 | content: "\f02e"; } 286 | 287 | .fa-print:before { 288 | content: "\f02f"; } 289 | 290 | .fa-camera:before { 291 | content: "\f030"; } 292 | 293 | .fa-font:before { 294 | content: "\f031"; } 295 | 296 | .fa-bold:before { 297 | content: "\f032"; } 298 | 299 | .fa-italic:before { 300 | content: "\f033"; } 301 | 302 | .fa-text-height:before { 303 | content: "\f034"; } 304 | 305 | .fa-text-width:before { 306 | content: "\f035"; } 307 | 308 | .fa-align-left:before { 309 | content: "\f036"; } 310 | 311 | .fa-align-center:before { 312 | content: "\f037"; } 313 | 314 | .fa-align-right:before { 315 | content: "\f038"; } 316 | 317 | .fa-align-justify:before { 318 | content: "\f039"; } 319 | 320 | .fa-list:before { 321 | content: "\f03a"; } 322 | 323 | .fa-dedent:before, .fa-outdent:before { 324 | content: "\f03b"; } 325 | 326 | .fa-indent:before { 327 | content: "\f03c"; } 328 | 329 | .fa-video-camera:before { 330 | content: "\f03d"; } 331 | 332 | .fa-photo:before, .fa-image:before, .fa-picture-o:before { 333 | content: "\f03e"; } 334 | 335 | .fa-pencil:before { 336 | content: "\f040"; } 337 | 338 | .fa-map-marker:before { 339 | content: "\f041"; } 340 | 341 | .fa-adjust:before { 342 | content: "\f042"; } 343 | 344 | .fa-tint:before { 345 | content: "\f043"; } 346 | 347 | .fa-edit:before, .fa-pencil-square-o:before { 348 | content: "\f044"; } 349 | 350 | .fa-share-square-o:before { 351 | content: "\f045"; } 352 | 353 | .fa-check-square-o:before { 354 | content: "\f046"; } 355 | 356 | .fa-arrows:before { 357 | content: "\f047"; } 358 | 359 | .fa-step-backward:before { 360 | content: "\f048"; } 361 | 362 | .fa-fast-backward:before { 363 | content: "\f049"; } 364 | 365 | .fa-backward:before { 366 | content: "\f04a"; } 367 | 368 | .fa-play:before { 369 | content: "\f04b"; } 370 | 371 | .fa-pause:before { 372 | content: "\f04c"; } 373 | 374 | .fa-stop:before { 375 | content: "\f04d"; } 376 | 377 | .fa-forward:before { 378 | content: "\f04e"; } 379 | 380 | .fa-fast-forward:before { 381 | content: "\f050"; } 382 | 383 | .fa-step-forward:before { 384 | content: "\f051"; } 385 | 386 | .fa-eject:before { 387 | content: "\f052"; } 388 | 389 | .fa-chevron-left:before { 390 | content: "\f053"; } 391 | 392 | .fa-chevron-right:before { 393 | content: "\f054"; } 394 | 395 | .fa-plus-circle:before { 396 | content: "\f055"; } 397 | 398 | .fa-minus-circle:before { 399 | content: "\f056"; } 400 | 401 | .fa-times-circle:before { 402 | content: "\f057"; } 403 | 404 | .fa-check-circle:before { 405 | content: "\f058"; } 406 | 407 | .fa-question-circle:before { 408 | content: "\f059"; } 409 | 410 | .fa-info-circle:before { 411 | content: "\f05a"; } 412 | 413 | .fa-crosshairs:before { 414 | content: "\f05b"; } 415 | 416 | .fa-times-circle-o:before { 417 | content: "\f05c"; } 418 | 419 | .fa-check-circle-o:before { 420 | content: "\f05d"; } 421 | 422 | .fa-ban:before { 423 | content: "\f05e"; } 424 | 425 | .fa-arrow-left:before { 426 | content: "\f060"; } 427 | 428 | .fa-arrow-right:before { 429 | content: "\f061"; } 430 | 431 | .fa-arrow-up:before { 432 | content: "\f062"; } 433 | 434 | .fa-arrow-down:before { 435 | content: "\f063"; } 436 | 437 | .fa-mail-forward:before, .fa-share:before { 438 | content: "\f064"; } 439 | 440 | .fa-expand:before { 441 | content: "\f065"; } 442 | 443 | .fa-compress:before { 444 | content: "\f066"; } 445 | 446 | .fa-plus:before { 447 | content: "\f067"; } 448 | 449 | .fa-minus:before { 450 | content: "\f068"; } 451 | 452 | .fa-asterisk:before { 453 | content: "\f069"; } 454 | 455 | .fa-exclamation-circle:before { 456 | content: "\f06a"; } 457 | 458 | .fa-gift:before { 459 | content: "\f06b"; } 460 | 461 | .fa-leaf:before { 462 | content: "\f06c"; } 463 | 464 | .fa-fire:before { 465 | content: "\f06d"; } 466 | 467 | .fa-eye:before { 468 | content: "\f06e"; } 469 | 470 | .fa-eye-slash:before { 471 | content: "\f070"; } 472 | 473 | .fa-warning:before, .fa-exclamation-triangle:before { 474 | content: "\f071"; } 475 | 476 | .fa-plane:before { 477 | content: "\f072"; } 478 | 479 | .fa-calendar:before { 480 | content: "\f073"; } 481 | 482 | .fa-random:before { 483 | content: "\f074"; } 484 | 485 | .fa-comment:before { 486 | content: "\f075"; } 487 | 488 | .fa-magnet:before { 489 | content: "\f076"; } 490 | 491 | .fa-chevron-up:before { 492 | content: "\f077"; } 493 | 494 | .fa-chevron-down:before { 495 | content: "\f078"; } 496 | 497 | .fa-retweet:before { 498 | content: "\f079"; } 499 | 500 | .fa-shopping-cart:before { 501 | content: "\f07a"; } 502 | 503 | .fa-folder:before { 504 | content: "\f07b"; } 505 | 506 | .fa-folder-open:before { 507 | content: "\f07c"; } 508 | 509 | .fa-arrows-v:before { 510 | content: "\f07d"; } 511 | 512 | .fa-arrows-h:before { 513 | content: "\f07e"; } 514 | 515 | .fa-bar-chart-o:before, .fa-bar-chart:before { 516 | content: "\f080"; } 517 | 518 | .fa-twitter-square:before { 519 | content: "\f081"; } 520 | 521 | .fa-facebook-square:before { 522 | content: "\f082"; } 523 | 524 | .fa-camera-retro:before { 525 | content: "\f083"; } 526 | 527 | .fa-key:before { 528 | content: "\f084"; } 529 | 530 | .fa-gears:before, .fa-cogs:before { 531 | content: "\f085"; } 532 | 533 | .fa-comments:before { 534 | content: "\f086"; } 535 | 536 | .fa-thumbs-o-up:before { 537 | content: "\f087"; } 538 | 539 | .fa-thumbs-o-down:before { 540 | content: "\f088"; } 541 | 542 | .fa-star-half:before { 543 | content: "\f089"; } 544 | 545 | .fa-heart-o:before { 546 | content: "\f08a"; } 547 | 548 | .fa-sign-out:before { 549 | content: "\f08b"; } 550 | 551 | .fa-linkedin-square:before { 552 | content: "\f08c"; } 553 | 554 | .fa-thumb-tack:before { 555 | content: "\f08d"; } 556 | 557 | .fa-external-link:before { 558 | content: "\f08e"; } 559 | 560 | .fa-sign-in:before { 561 | content: "\f090"; } 562 | 563 | .fa-trophy:before { 564 | content: "\f091"; } 565 | 566 | .fa-github-square:before { 567 | content: "\f092"; } 568 | 569 | .fa-upload:before { 570 | content: "\f093"; } 571 | 572 | .fa-lemon-o:before { 573 | content: "\f094"; } 574 | 575 | .fa-phone:before { 576 | content: "\f095"; } 577 | 578 | .fa-square-o:before { 579 | content: "\f096"; } 580 | 581 | .fa-bookmark-o:before { 582 | content: "\f097"; } 583 | 584 | .fa-phone-square:before { 585 | content: "\f098"; } 586 | 587 | .fa-twitter:before { 588 | content: "\f099"; } 589 | 590 | .fa-facebook-f:before, .fa-facebook:before { 591 | content: "\f09a"; } 592 | 593 | .fa-github:before { 594 | content: "\f09b"; } 595 | 596 | .fa-unlock:before { 597 | content: "\f09c"; } 598 | 599 | .fa-credit-card:before { 600 | content: "\f09d"; } 601 | 602 | .fa-feed:before, .fa-rss:before { 603 | content: "\f09e"; } 604 | 605 | .fa-hdd-o:before { 606 | content: "\f0a0"; } 607 | 608 | .fa-bullhorn:before { 609 | content: "\f0a1"; } 610 | 611 | .fa-bell:before { 612 | content: "\f0f3"; } 613 | 614 | .fa-certificate:before { 615 | content: "\f0a3"; } 616 | 617 | .fa-hand-o-right:before { 618 | content: "\f0a4"; } 619 | 620 | .fa-hand-o-left:before { 621 | content: "\f0a5"; } 622 | 623 | .fa-hand-o-up:before { 624 | content: "\f0a6"; } 625 | 626 | .fa-hand-o-down:before { 627 | content: "\f0a7"; } 628 | 629 | .fa-arrow-circle-left:before { 630 | content: "\f0a8"; } 631 | 632 | .fa-arrow-circle-right:before { 633 | content: "\f0a9"; } 634 | 635 | .fa-arrow-circle-up:before { 636 | content: "\f0aa"; } 637 | 638 | .fa-arrow-circle-down:before { 639 | content: "\f0ab"; } 640 | 641 | .fa-globe:before { 642 | content: "\f0ac"; } 643 | 644 | .fa-wrench:before { 645 | content: "\f0ad"; } 646 | 647 | .fa-tasks:before { 648 | content: "\f0ae"; } 649 | 650 | .fa-filter:before { 651 | content: "\f0b0"; } 652 | 653 | .fa-briefcase:before { 654 | content: "\f0b1"; } 655 | 656 | .fa-arrows-alt:before { 657 | content: "\f0b2"; } 658 | 659 | .fa-group:before, .fa-users:before { 660 | content: "\f0c0"; } 661 | 662 | .fa-chain:before, .fa-link:before { 663 | content: "\f0c1"; } 664 | 665 | .fa-cloud:before { 666 | content: "\f0c2"; } 667 | 668 | .fa-flask:before { 669 | content: "\f0c3"; } 670 | 671 | .fa-cut:before, .fa-scissors:before { 672 | content: "\f0c4"; } 673 | 674 | .fa-copy:before, .fa-files-o:before { 675 | content: "\f0c5"; } 676 | 677 | .fa-paperclip:before { 678 | content: "\f0c6"; } 679 | 680 | .fa-save:before, .fa-floppy-o:before { 681 | content: "\f0c7"; } 682 | 683 | .fa-square:before { 684 | content: "\f0c8"; } 685 | 686 | .fa-navicon:before, .fa-reorder:before, .fa-bars:before { 687 | content: "\f0c9"; } 688 | 689 | .fa-list-ul:before { 690 | content: "\f0ca"; } 691 | 692 | .fa-list-ol:before { 693 | content: "\f0cb"; } 694 | 695 | .fa-strikethrough:before { 696 | content: "\f0cc"; } 697 | 698 | .fa-underline:before { 699 | content: "\f0cd"; } 700 | 701 | .fa-table:before { 702 | content: "\f0ce"; } 703 | 704 | .fa-magic:before { 705 | content: "\f0d0"; } 706 | 707 | .fa-truck:before { 708 | content: "\f0d1"; } 709 | 710 | .fa-pinterest:before { 711 | content: "\f0d2"; } 712 | 713 | .fa-pinterest-square:before { 714 | content: "\f0d3"; } 715 | 716 | .fa-google-plus-square:before { 717 | content: "\f0d4"; } 718 | 719 | .fa-google-plus:before { 720 | content: "\f0d5"; } 721 | 722 | .fa-money:before { 723 | content: "\f0d6"; } 724 | 725 | .fa-caret-down:before { 726 | content: "\f0d7"; } 727 | 728 | .fa-caret-up:before { 729 | content: "\f0d8"; } 730 | 731 | .fa-caret-left:before { 732 | content: "\f0d9"; } 733 | 734 | .fa-caret-right:before { 735 | content: "\f0da"; } 736 | 737 | .fa-columns:before { 738 | content: "\f0db"; } 739 | 740 | .fa-unsorted:before, .fa-sort:before { 741 | content: "\f0dc"; } 742 | 743 | .fa-sort-down:before, .fa-sort-desc:before { 744 | content: "\f0dd"; } 745 | 746 | .fa-sort-up:before, .fa-sort-asc:before { 747 | content: "\f0de"; } 748 | 749 | .fa-envelope:before { 750 | content: "\f0e0"; } 751 | 752 | .fa-linkedin:before { 753 | content: "\f0e1"; } 754 | 755 | .fa-rotate-left:before, .fa-undo:before { 756 | content: "\f0e2"; } 757 | 758 | .fa-legal:before, .fa-gavel:before { 759 | content: "\f0e3"; } 760 | 761 | .fa-dashboard:before, .fa-tachometer:before { 762 | content: "\f0e4"; } 763 | 764 | .fa-comment-o:before { 765 | content: "\f0e5"; } 766 | 767 | .fa-comments-o:before { 768 | content: "\f0e6"; } 769 | 770 | .fa-flash:before, .fa-bolt:before { 771 | content: "\f0e7"; } 772 | 773 | .fa-sitemap:before { 774 | content: "\f0e8"; } 775 | 776 | .fa-umbrella:before { 777 | content: "\f0e9"; } 778 | 779 | .fa-paste:before, .fa-clipboard:before { 780 | content: "\f0ea"; } 781 | 782 | .fa-lightbulb-o:before { 783 | content: "\f0eb"; } 784 | 785 | .fa-exchange:before { 786 | content: "\f0ec"; } 787 | 788 | .fa-cloud-download:before { 789 | content: "\f0ed"; } 790 | 791 | .fa-cloud-upload:before { 792 | content: "\f0ee"; } 793 | 794 | .fa-user-md:before { 795 | content: "\f0f0"; } 796 | 797 | .fa-stethoscope:before { 798 | content: "\f0f1"; } 799 | 800 | .fa-suitcase:before { 801 | content: "\f0f2"; } 802 | 803 | .fa-bell-o:before { 804 | content: "\f0a2"; } 805 | 806 | .fa-coffee:before { 807 | content: "\f0f4"; } 808 | 809 | .fa-cutlery:before { 810 | content: "\f0f5"; } 811 | 812 | .fa-file-text-o:before { 813 | content: "\f0f6"; } 814 | 815 | .fa-building-o:before { 816 | content: "\f0f7"; } 817 | 818 | .fa-hospital-o:before { 819 | content: "\f0f8"; } 820 | 821 | .fa-ambulance:before { 822 | content: "\f0f9"; } 823 | 824 | .fa-medkit:before { 825 | content: "\f0fa"; } 826 | 827 | .fa-fighter-jet:before { 828 | content: "\f0fb"; } 829 | 830 | .fa-beer:before { 831 | content: "\f0fc"; } 832 | 833 | .fa-h-square:before { 834 | content: "\f0fd"; } 835 | 836 | .fa-plus-square:before { 837 | content: "\f0fe"; } 838 | 839 | .fa-angle-double-left:before { 840 | content: "\f100"; } 841 | 842 | .fa-angle-double-right:before { 843 | content: "\f101"; } 844 | 845 | .fa-angle-double-up:before { 846 | content: "\f102"; } 847 | 848 | .fa-angle-double-down:before { 849 | content: "\f103"; } 850 | 851 | .fa-angle-left:before { 852 | content: "\f104"; } 853 | 854 | .fa-angle-right:before { 855 | content: "\f105"; } 856 | 857 | .fa-angle-up:before { 858 | content: "\f106"; } 859 | 860 | .fa-angle-down:before { 861 | content: "\f107"; } 862 | 863 | .fa-desktop:before { 864 | content: "\f108"; } 865 | 866 | .fa-laptop:before { 867 | content: "\f109"; } 868 | 869 | .fa-tablet:before { 870 | content: "\f10a"; } 871 | 872 | .fa-mobile-phone:before, .fa-mobile:before { 873 | content: "\f10b"; } 874 | 875 | .fa-circle-o:before { 876 | content: "\f10c"; } 877 | 878 | .fa-quote-left:before { 879 | content: "\f10d"; } 880 | 881 | .fa-quote-right:before { 882 | content: "\f10e"; } 883 | 884 | .fa-spinner:before { 885 | content: "\f110"; } 886 | 887 | .fa-circle:before { 888 | content: "\f111"; } 889 | 890 | .fa-mail-reply:before, .fa-reply:before { 891 | content: "\f112"; } 892 | 893 | .fa-github-alt:before { 894 | content: "\f113"; } 895 | 896 | .fa-folder-o:before { 897 | content: "\f114"; } 898 | 899 | .fa-folder-open-o:before { 900 | content: "\f115"; } 901 | 902 | .fa-smile-o:before { 903 | content: "\f118"; } 904 | 905 | .fa-frown-o:before { 906 | content: "\f119"; } 907 | 908 | .fa-meh-o:before { 909 | content: "\f11a"; } 910 | 911 | .fa-gamepad:before { 912 | content: "\f11b"; } 913 | 914 | .fa-keyboard-o:before { 915 | content: "\f11c"; } 916 | 917 | .fa-flag-o:before { 918 | content: "\f11d"; } 919 | 920 | .fa-flag-checkered:before { 921 | content: "\f11e"; } 922 | 923 | .fa-terminal:before { 924 | content: "\f120"; } 925 | 926 | .fa-code:before { 927 | content: "\f121"; } 928 | 929 | .fa-mail-reply-all:before, .fa-reply-all:before { 930 | content: "\f122"; } 931 | 932 | .fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before { 933 | content: "\f123"; } 934 | 935 | .fa-location-arrow:before { 936 | content: "\f124"; } 937 | 938 | .fa-crop:before { 939 | content: "\f125"; } 940 | 941 | .fa-code-fork:before { 942 | content: "\f126"; } 943 | 944 | .fa-unlink:before, .fa-chain-broken:before { 945 | content: "\f127"; } 946 | 947 | .fa-question:before { 948 | content: "\f128"; } 949 | 950 | .fa-info:before { 951 | content: "\f129"; } 952 | 953 | .fa-exclamation:before { 954 | content: "\f12a"; } 955 | 956 | .fa-superscript:before { 957 | content: "\f12b"; } 958 | 959 | .fa-subscript:before { 960 | content: "\f12c"; } 961 | 962 | .fa-eraser:before { 963 | content: "\f12d"; } 964 | 965 | .fa-puzzle-piece:before { 966 | content: "\f12e"; } 967 | 968 | .fa-microphone:before { 969 | content: "\f130"; } 970 | 971 | .fa-microphone-slash:before { 972 | content: "\f131"; } 973 | 974 | .fa-shield:before { 975 | content: "\f132"; } 976 | 977 | .fa-calendar-o:before { 978 | content: "\f133"; } 979 | 980 | .fa-fire-extinguisher:before { 981 | content: "\f134"; } 982 | 983 | .fa-rocket:before { 984 | content: "\f135"; } 985 | 986 | .fa-maxcdn:before { 987 | content: "\f136"; } 988 | 989 | .fa-chevron-circle-left:before { 990 | content: "\f137"; } 991 | 992 | .fa-chevron-circle-right:before { 993 | content: "\f138"; } 994 | 995 | .fa-chevron-circle-up:before { 996 | content: "\f139"; } 997 | 998 | .fa-chevron-circle-down:before { 999 | content: "\f13a"; } 1000 | 1001 | .fa-html5:before { 1002 | content: "\f13b"; } 1003 | 1004 | .fa-css3:before { 1005 | content: "\f13c"; } 1006 | 1007 | .fa-anchor:before { 1008 | content: "\f13d"; } 1009 | 1010 | .fa-unlock-alt:before { 1011 | content: "\f13e"; } 1012 | 1013 | .fa-bullseye:before { 1014 | content: "\f140"; } 1015 | 1016 | .fa-ellipsis-h:before { 1017 | content: "\f141"; } 1018 | 1019 | .fa-ellipsis-v:before { 1020 | content: "\f142"; } 1021 | 1022 | .fa-rss-square:before { 1023 | content: "\f143"; } 1024 | 1025 | .fa-play-circle:before { 1026 | content: "\f144"; } 1027 | 1028 | .fa-ticket:before { 1029 | content: "\f145"; } 1030 | 1031 | .fa-minus-square:before { 1032 | content: "\f146"; } 1033 | 1034 | .fa-minus-square-o:before { 1035 | content: "\f147"; } 1036 | 1037 | .fa-level-up:before { 1038 | content: "\f148"; } 1039 | 1040 | .fa-level-down:before { 1041 | content: "\f149"; } 1042 | 1043 | .fa-check-square:before { 1044 | content: "\f14a"; } 1045 | 1046 | .fa-pencil-square:before { 1047 | content: "\f14b"; } 1048 | 1049 | .fa-external-link-square:before { 1050 | content: "\f14c"; } 1051 | 1052 | .fa-share-square:before { 1053 | content: "\f14d"; } 1054 | 1055 | .fa-compass:before { 1056 | content: "\f14e"; } 1057 | 1058 | .fa-toggle-down:before, .fa-caret-square-o-down:before { 1059 | content: "\f150"; } 1060 | 1061 | .fa-toggle-up:before, .fa-caret-square-o-up:before { 1062 | content: "\f151"; } 1063 | 1064 | .fa-toggle-right:before, .fa-caret-square-o-right:before { 1065 | content: "\f152"; } 1066 | 1067 | .fa-euro:before, .fa-eur:before { 1068 | content: "\f153"; } 1069 | 1070 | .fa-gbp:before { 1071 | content: "\f154"; } 1072 | 1073 | .fa-dollar:before, .fa-usd:before { 1074 | content: "\f155"; } 1075 | 1076 | .fa-rupee:before, .fa-inr:before { 1077 | content: "\f156"; } 1078 | 1079 | .fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before { 1080 | content: "\f157"; } 1081 | 1082 | .fa-ruble:before, .fa-rouble:before, .fa-rub:before { 1083 | content: "\f158"; } 1084 | 1085 | .fa-won:before, .fa-krw:before { 1086 | content: "\f159"; } 1087 | 1088 | .fa-bitcoin:before, .fa-btc:before { 1089 | content: "\f15a"; } 1090 | 1091 | .fa-file:before { 1092 | content: "\f15b"; } 1093 | 1094 | .fa-file-text:before { 1095 | content: "\f15c"; } 1096 | 1097 | .fa-sort-alpha-asc:before { 1098 | content: "\f15d"; } 1099 | 1100 | .fa-sort-alpha-desc:before { 1101 | content: "\f15e"; } 1102 | 1103 | .fa-sort-amount-asc:before { 1104 | content: "\f160"; } 1105 | 1106 | .fa-sort-amount-desc:before { 1107 | content: "\f161"; } 1108 | 1109 | .fa-sort-numeric-asc:before { 1110 | content: "\f162"; } 1111 | 1112 | .fa-sort-numeric-desc:before { 1113 | content: "\f163"; } 1114 | 1115 | .fa-thumbs-up:before { 1116 | content: "\f164"; } 1117 | 1118 | .fa-thumbs-down:before { 1119 | content: "\f165"; } 1120 | 1121 | .fa-youtube-square:before { 1122 | content: "\f166"; } 1123 | 1124 | .fa-youtube:before { 1125 | content: "\f167"; } 1126 | 1127 | .fa-xing:before { 1128 | content: "\f168"; } 1129 | 1130 | .fa-xing-square:before { 1131 | content: "\f169"; } 1132 | 1133 | .fa-youtube-play:before { 1134 | content: "\f16a"; } 1135 | 1136 | .fa-dropbox:before { 1137 | content: "\f16b"; } 1138 | 1139 | .fa-stack-overflow:before { 1140 | content: "\f16c"; } 1141 | 1142 | .fa-instagram:before { 1143 | content: "\f16d"; } 1144 | 1145 | .fa-flickr:before { 1146 | content: "\f16e"; } 1147 | 1148 | .fa-adn:before { 1149 | content: "\f170"; } 1150 | 1151 | .fa-bitbucket:before { 1152 | content: "\f171"; } 1153 | 1154 | .fa-bitbucket-square:before { 1155 | content: "\f172"; } 1156 | 1157 | .fa-tumblr:before { 1158 | content: "\f173"; } 1159 | 1160 | .fa-tumblr-square:before { 1161 | content: "\f174"; } 1162 | 1163 | .fa-long-arrow-down:before { 1164 | content: "\f175"; } 1165 | 1166 | .fa-long-arrow-up:before { 1167 | content: "\f176"; } 1168 | 1169 | .fa-long-arrow-left:before { 1170 | content: "\f177"; } 1171 | 1172 | .fa-long-arrow-right:before { 1173 | content: "\f178"; } 1174 | 1175 | .fa-apple:before { 1176 | content: "\f179"; } 1177 | 1178 | .fa-windows:before { 1179 | content: "\f17a"; } 1180 | 1181 | .fa-android:before { 1182 | content: "\f17b"; } 1183 | 1184 | .fa-linux:before { 1185 | content: "\f17c"; } 1186 | 1187 | .fa-dribbble:before { 1188 | content: "\f17d"; } 1189 | 1190 | .fa-skype:before { 1191 | content: "\f17e"; } 1192 | 1193 | .fa-foursquare:before { 1194 | content: "\f180"; } 1195 | 1196 | .fa-trello:before { 1197 | content: "\f181"; } 1198 | 1199 | .fa-female:before { 1200 | content: "\f182"; } 1201 | 1202 | .fa-male:before { 1203 | content: "\f183"; } 1204 | 1205 | .fa-gittip:before, .fa-gratipay:before { 1206 | content: "\f184"; } 1207 | 1208 | .fa-sun-o:before { 1209 | content: "\f185"; } 1210 | 1211 | .fa-moon-o:before { 1212 | content: "\f186"; } 1213 | 1214 | .fa-archive:before { 1215 | content: "\f187"; } 1216 | 1217 | .fa-bug:before { 1218 | content: "\f188"; } 1219 | 1220 | .fa-vk:before { 1221 | content: "\f189"; } 1222 | 1223 | .fa-weibo:before { 1224 | content: "\f18a"; } 1225 | 1226 | .fa-renren:before { 1227 | content: "\f18b"; } 1228 | 1229 | .fa-pagelines:before { 1230 | content: "\f18c"; } 1231 | 1232 | .fa-stack-exchange:before { 1233 | content: "\f18d"; } 1234 | 1235 | .fa-arrow-circle-o-right:before { 1236 | content: "\f18e"; } 1237 | 1238 | .fa-arrow-circle-o-left:before { 1239 | content: "\f190"; } 1240 | 1241 | .fa-toggle-left:before, .fa-caret-square-o-left:before { 1242 | content: "\f191"; } 1243 | 1244 | .fa-dot-circle-o:before { 1245 | content: "\f192"; } 1246 | 1247 | .fa-wheelchair:before { 1248 | content: "\f193"; } 1249 | 1250 | .fa-vimeo-square:before { 1251 | content: "\f194"; } 1252 | 1253 | .fa-turkish-lira:before, .fa-try:before { 1254 | content: "\f195"; } 1255 | 1256 | .fa-plus-square-o:before { 1257 | content: "\f196"; } 1258 | 1259 | .fa-space-shuttle:before { 1260 | content: "\f197"; } 1261 | 1262 | .fa-slack:before { 1263 | content: "\f198"; } 1264 | 1265 | .fa-envelope-square:before { 1266 | content: "\f199"; } 1267 | 1268 | .fa-wordpress:before { 1269 | content: "\f19a"; } 1270 | 1271 | .fa-openid:before { 1272 | content: "\f19b"; } 1273 | 1274 | .fa-institution:before, .fa-bank:before, .fa-university:before { 1275 | content: "\f19c"; } 1276 | 1277 | .fa-mortar-board:before, .fa-graduation-cap:before { 1278 | content: "\f19d"; } 1279 | 1280 | .fa-yahoo:before { 1281 | content: "\f19e"; } 1282 | 1283 | .fa-google:before { 1284 | content: "\f1a0"; } 1285 | 1286 | .fa-reddit:before { 1287 | content: "\f1a1"; } 1288 | 1289 | .fa-reddit-square:before { 1290 | content: "\f1a2"; } 1291 | 1292 | .fa-stumbleupon-circle:before { 1293 | content: "\f1a3"; } 1294 | 1295 | .fa-stumbleupon:before { 1296 | content: "\f1a4"; } 1297 | 1298 | .fa-delicious:before { 1299 | content: "\f1a5"; } 1300 | 1301 | .fa-digg:before { 1302 | content: "\f1a6"; } 1303 | 1304 | .fa-pied-piper-pp:before { 1305 | content: "\f1a7"; } 1306 | 1307 | .fa-pied-piper-alt:before { 1308 | content: "\f1a8"; } 1309 | 1310 | .fa-drupal:before { 1311 | content: "\f1a9"; } 1312 | 1313 | .fa-joomla:before { 1314 | content: "\f1aa"; } 1315 | 1316 | .fa-language:before { 1317 | content: "\f1ab"; } 1318 | 1319 | .fa-fax:before { 1320 | content: "\f1ac"; } 1321 | 1322 | .fa-building:before { 1323 | content: "\f1ad"; } 1324 | 1325 | .fa-child:before { 1326 | content: "\f1ae"; } 1327 | 1328 | .fa-paw:before { 1329 | content: "\f1b0"; } 1330 | 1331 | .fa-spoon:before { 1332 | content: "\f1b1"; } 1333 | 1334 | .fa-cube:before { 1335 | content: "\f1b2"; } 1336 | 1337 | .fa-cubes:before { 1338 | content: "\f1b3"; } 1339 | 1340 | .fa-behance:before { 1341 | content: "\f1b4"; } 1342 | 1343 | .fa-behance-square:before { 1344 | content: "\f1b5"; } 1345 | 1346 | .fa-steam:before { 1347 | content: "\f1b6"; } 1348 | 1349 | .fa-steam-square:before { 1350 | content: "\f1b7"; } 1351 | 1352 | .fa-recycle:before { 1353 | content: "\f1b8"; } 1354 | 1355 | .fa-automobile:before, .fa-car:before { 1356 | content: "\f1b9"; } 1357 | 1358 | .fa-cab:before, .fa-taxi:before { 1359 | content: "\f1ba"; } 1360 | 1361 | .fa-tree:before { 1362 | content: "\f1bb"; } 1363 | 1364 | .fa-spotify:before { 1365 | content: "\f1bc"; } 1366 | 1367 | .fa-deviantart:before { 1368 | content: "\f1bd"; } 1369 | 1370 | .fa-soundcloud:before { 1371 | content: "\f1be"; } 1372 | 1373 | .fa-database:before { 1374 | content: "\f1c0"; } 1375 | 1376 | .fa-file-pdf-o:before { 1377 | content: "\f1c1"; } 1378 | 1379 | .fa-file-word-o:before { 1380 | content: "\f1c2"; } 1381 | 1382 | .fa-file-excel-o:before { 1383 | content: "\f1c3"; } 1384 | 1385 | .fa-file-powerpoint-o:before { 1386 | content: "\f1c4"; } 1387 | 1388 | .fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before { 1389 | content: "\f1c5"; } 1390 | 1391 | .fa-file-zip-o:before, .fa-file-archive-o:before { 1392 | content: "\f1c6"; } 1393 | 1394 | .fa-file-sound-o:before, .fa-file-audio-o:before { 1395 | content: "\f1c7"; } 1396 | 1397 | .fa-file-movie-o:before, .fa-file-video-o:before { 1398 | content: "\f1c8"; } 1399 | 1400 | .fa-file-code-o:before { 1401 | content: "\f1c9"; } 1402 | 1403 | .fa-vine:before { 1404 | content: "\f1ca"; } 1405 | 1406 | .fa-codepen:before { 1407 | content: "\f1cb"; } 1408 | 1409 | .fa-jsfiddle:before { 1410 | content: "\f1cc"; } 1411 | 1412 | .fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before { 1413 | content: "\f1cd"; } 1414 | 1415 | .fa-circle-o-notch:before { 1416 | content: "\f1ce"; } 1417 | 1418 | .fa-ra:before, .fa-resistance:before, .fa-rebel:before { 1419 | content: "\f1d0"; } 1420 | 1421 | .fa-ge:before, .fa-empire:before { 1422 | content: "\f1d1"; } 1423 | 1424 | .fa-git-square:before { 1425 | content: "\f1d2"; } 1426 | 1427 | .fa-git:before { 1428 | content: "\f1d3"; } 1429 | 1430 | .fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before { 1431 | content: "\f1d4"; } 1432 | 1433 | .fa-tencent-weibo:before { 1434 | content: "\f1d5"; } 1435 | 1436 | .fa-qq:before { 1437 | content: "\f1d6"; } 1438 | 1439 | .fa-wechat:before, .fa-weixin:before { 1440 | content: "\f1d7"; } 1441 | 1442 | .fa-send:before, .fa-paper-plane:before { 1443 | content: "\f1d8"; } 1444 | 1445 | .fa-send-o:before, .fa-paper-plane-o:before { 1446 | content: "\f1d9"; } 1447 | 1448 | .fa-history:before { 1449 | content: "\f1da"; } 1450 | 1451 | .fa-circle-thin:before { 1452 | content: "\f1db"; } 1453 | 1454 | .fa-header:before { 1455 | content: "\f1dc"; } 1456 | 1457 | .fa-paragraph:before { 1458 | content: "\f1dd"; } 1459 | 1460 | .fa-sliders:before { 1461 | content: "\f1de"; } 1462 | 1463 | .fa-share-alt:before { 1464 | content: "\f1e0"; } 1465 | 1466 | .fa-share-alt-square:before { 1467 | content: "\f1e1"; } 1468 | 1469 | .fa-bomb:before { 1470 | content: "\f1e2"; } 1471 | 1472 | .fa-soccer-ball-o:before, .fa-futbol-o:before { 1473 | content: "\f1e3"; } 1474 | 1475 | .fa-tty:before { 1476 | content: "\f1e4"; } 1477 | 1478 | .fa-binoculars:before { 1479 | content: "\f1e5"; } 1480 | 1481 | .fa-plug:before { 1482 | content: "\f1e6"; } 1483 | 1484 | .fa-slideshare:before { 1485 | content: "\f1e7"; } 1486 | 1487 | .fa-twitch:before { 1488 | content: "\f1e8"; } 1489 | 1490 | .fa-yelp:before { 1491 | content: "\f1e9"; } 1492 | 1493 | .fa-newspaper-o:before { 1494 | content: "\f1ea"; } 1495 | 1496 | .fa-wifi:before { 1497 | content: "\f1eb"; } 1498 | 1499 | .fa-calculator:before { 1500 | content: "\f1ec"; } 1501 | 1502 | .fa-paypal:before { 1503 | content: "\f1ed"; } 1504 | 1505 | .fa-google-wallet:before { 1506 | content: "\f1ee"; } 1507 | 1508 | .fa-cc-visa:before { 1509 | content: "\f1f0"; } 1510 | 1511 | .fa-cc-mastercard:before { 1512 | content: "\f1f1"; } 1513 | 1514 | .fa-cc-discover:before { 1515 | content: "\f1f2"; } 1516 | 1517 | .fa-cc-amex:before { 1518 | content: "\f1f3"; } 1519 | 1520 | .fa-cc-paypal:before { 1521 | content: "\f1f4"; } 1522 | 1523 | .fa-cc-stripe:before { 1524 | content: "\f1f5"; } 1525 | 1526 | .fa-bell-slash:before { 1527 | content: "\f1f6"; } 1528 | 1529 | .fa-bell-slash-o:before { 1530 | content: "\f1f7"; } 1531 | 1532 | .fa-trash:before { 1533 | content: "\f1f8"; } 1534 | 1535 | .fa-copyright:before { 1536 | content: "\f1f9"; } 1537 | 1538 | .fa-at:before { 1539 | content: "\f1fa"; } 1540 | 1541 | .fa-eyedropper:before { 1542 | content: "\f1fb"; } 1543 | 1544 | .fa-paint-brush:before { 1545 | content: "\f1fc"; } 1546 | 1547 | .fa-birthday-cake:before { 1548 | content: "\f1fd"; } 1549 | 1550 | .fa-area-chart:before { 1551 | content: "\f1fe"; } 1552 | 1553 | .fa-pie-chart:before { 1554 | content: "\f200"; } 1555 | 1556 | .fa-line-chart:before { 1557 | content: "\f201"; } 1558 | 1559 | .fa-lastfm:before { 1560 | content: "\f202"; } 1561 | 1562 | .fa-lastfm-square:before { 1563 | content: "\f203"; } 1564 | 1565 | .fa-toggle-off:before { 1566 | content: "\f204"; } 1567 | 1568 | .fa-toggle-on:before { 1569 | content: "\f205"; } 1570 | 1571 | .fa-bicycle:before { 1572 | content: "\f206"; } 1573 | 1574 | .fa-bus:before { 1575 | content: "\f207"; } 1576 | 1577 | .fa-ioxhost:before { 1578 | content: "\f208"; } 1579 | 1580 | .fa-angellist:before { 1581 | content: "\f209"; } 1582 | 1583 | .fa-cc:before { 1584 | content: "\f20a"; } 1585 | 1586 | .fa-shekel:before, .fa-sheqel:before, .fa-ils:before { 1587 | content: "\f20b"; } 1588 | 1589 | .fa-meanpath:before { 1590 | content: "\f20c"; } 1591 | 1592 | .fa-buysellads:before { 1593 | content: "\f20d"; } 1594 | 1595 | .fa-connectdevelop:before { 1596 | content: "\f20e"; } 1597 | 1598 | .fa-dashcube:before { 1599 | content: "\f210"; } 1600 | 1601 | .fa-forumbee:before { 1602 | content: "\f211"; } 1603 | 1604 | .fa-leanpub:before { 1605 | content: "\f212"; } 1606 | 1607 | .fa-sellsy:before { 1608 | content: "\f213"; } 1609 | 1610 | .fa-shirtsinbulk:before { 1611 | content: "\f214"; } 1612 | 1613 | .fa-simplybuilt:before { 1614 | content: "\f215"; } 1615 | 1616 | .fa-skyatlas:before { 1617 | content: "\f216"; } 1618 | 1619 | .fa-cart-plus:before { 1620 | content: "\f217"; } 1621 | 1622 | .fa-cart-arrow-down:before { 1623 | content: "\f218"; } 1624 | 1625 | .fa-diamond:before { 1626 | content: "\f219"; } 1627 | 1628 | .fa-ship:before { 1629 | content: "\f21a"; } 1630 | 1631 | .fa-user-secret:before { 1632 | content: "\f21b"; } 1633 | 1634 | .fa-motorcycle:before { 1635 | content: "\f21c"; } 1636 | 1637 | .fa-street-view:before { 1638 | content: "\f21d"; } 1639 | 1640 | .fa-heartbeat:before { 1641 | content: "\f21e"; } 1642 | 1643 | .fa-venus:before { 1644 | content: "\f221"; } 1645 | 1646 | .fa-mars:before { 1647 | content: "\f222"; } 1648 | 1649 | .fa-mercury:before { 1650 | content: "\f223"; } 1651 | 1652 | .fa-intersex:before, .fa-transgender:before { 1653 | content: "\f224"; } 1654 | 1655 | .fa-transgender-alt:before { 1656 | content: "\f225"; } 1657 | 1658 | .fa-venus-double:before { 1659 | content: "\f226"; } 1660 | 1661 | .fa-mars-double:before { 1662 | content: "\f227"; } 1663 | 1664 | .fa-venus-mars:before { 1665 | content: "\f228"; } 1666 | 1667 | .fa-mars-stroke:before { 1668 | content: "\f229"; } 1669 | 1670 | .fa-mars-stroke-v:before { 1671 | content: "\f22a"; } 1672 | 1673 | .fa-mars-stroke-h:before { 1674 | content: "\f22b"; } 1675 | 1676 | .fa-neuter:before { 1677 | content: "\f22c"; } 1678 | 1679 | .fa-genderless:before { 1680 | content: "\f22d"; } 1681 | 1682 | .fa-facebook-official:before { 1683 | content: "\f230"; } 1684 | 1685 | .fa-pinterest-p:before { 1686 | content: "\f231"; } 1687 | 1688 | .fa-whatsapp:before { 1689 | content: "\f232"; } 1690 | 1691 | .fa-server:before { 1692 | content: "\f233"; } 1693 | 1694 | .fa-user-plus:before { 1695 | content: "\f234"; } 1696 | 1697 | .fa-user-times:before { 1698 | content: "\f235"; } 1699 | 1700 | .fa-hotel:before, .fa-bed:before { 1701 | content: "\f236"; } 1702 | 1703 | .fa-viacoin:before { 1704 | content: "\f237"; } 1705 | 1706 | .fa-train:before { 1707 | content: "\f238"; } 1708 | 1709 | .fa-subway:before { 1710 | content: "\f239"; } 1711 | 1712 | .fa-medium:before { 1713 | content: "\f23a"; } 1714 | 1715 | .fa-yc:before, .fa-y-combinator:before { 1716 | content: "\f23b"; } 1717 | 1718 | .fa-optin-monster:before { 1719 | content: "\f23c"; } 1720 | 1721 | .fa-opencart:before { 1722 | content: "\f23d"; } 1723 | 1724 | .fa-expeditedssl:before { 1725 | content: "\f23e"; } 1726 | 1727 | .fa-battery-4:before, .fa-battery:before, .fa-battery-full:before { 1728 | content: "\f240"; } 1729 | 1730 | .fa-battery-3:before, .fa-battery-three-quarters:before { 1731 | content: "\f241"; } 1732 | 1733 | .fa-battery-2:before, .fa-battery-half:before { 1734 | content: "\f242"; } 1735 | 1736 | .fa-battery-1:before, .fa-battery-quarter:before { 1737 | content: "\f243"; } 1738 | 1739 | .fa-battery-0:before, .fa-battery-empty:before { 1740 | content: "\f244"; } 1741 | 1742 | .fa-mouse-pointer:before { 1743 | content: "\f245"; } 1744 | 1745 | .fa-i-cursor:before { 1746 | content: "\f246"; } 1747 | 1748 | .fa-object-group:before { 1749 | content: "\f247"; } 1750 | 1751 | .fa-object-ungroup:before { 1752 | content: "\f248"; } 1753 | 1754 | .fa-sticky-note:before { 1755 | content: "\f249"; } 1756 | 1757 | .fa-sticky-note-o:before { 1758 | content: "\f24a"; } 1759 | 1760 | .fa-cc-jcb:before { 1761 | content: "\f24b"; } 1762 | 1763 | .fa-cc-diners-club:before { 1764 | content: "\f24c"; } 1765 | 1766 | .fa-clone:before { 1767 | content: "\f24d"; } 1768 | 1769 | .fa-balance-scale:before { 1770 | content: "\f24e"; } 1771 | 1772 | .fa-hourglass-o:before { 1773 | content: "\f250"; } 1774 | 1775 | .fa-hourglass-1:before, .fa-hourglass-start:before { 1776 | content: "\f251"; } 1777 | 1778 | .fa-hourglass-2:before, .fa-hourglass-half:before { 1779 | content: "\f252"; } 1780 | 1781 | .fa-hourglass-3:before, .fa-hourglass-end:before { 1782 | content: "\f253"; } 1783 | 1784 | .fa-hourglass:before { 1785 | content: "\f254"; } 1786 | 1787 | .fa-hand-grab-o:before, .fa-hand-rock-o:before { 1788 | content: "\f255"; } 1789 | 1790 | .fa-hand-stop-o:before, .fa-hand-paper-o:before { 1791 | content: "\f256"; } 1792 | 1793 | .fa-hand-scissors-o:before { 1794 | content: "\f257"; } 1795 | 1796 | .fa-hand-lizard-o:before { 1797 | content: "\f258"; } 1798 | 1799 | .fa-hand-spock-o:before { 1800 | content: "\f259"; } 1801 | 1802 | .fa-hand-pointer-o:before { 1803 | content: "\f25a"; } 1804 | 1805 | .fa-hand-peace-o:before { 1806 | content: "\f25b"; } 1807 | 1808 | .fa-trademark:before { 1809 | content: "\f25c"; } 1810 | 1811 | .fa-registered:before { 1812 | content: "\f25d"; } 1813 | 1814 | .fa-creative-commons:before { 1815 | content: "\f25e"; } 1816 | 1817 | .fa-gg:before { 1818 | content: "\f260"; } 1819 | 1820 | .fa-gg-circle:before { 1821 | content: "\f261"; } 1822 | 1823 | .fa-tripadvisor:before { 1824 | content: "\f262"; } 1825 | 1826 | .fa-odnoklassniki:before { 1827 | content: "\f263"; } 1828 | 1829 | .fa-odnoklassniki-square:before { 1830 | content: "\f264"; } 1831 | 1832 | .fa-get-pocket:before { 1833 | content: "\f265"; } 1834 | 1835 | .fa-wikipedia-w:before { 1836 | content: "\f266"; } 1837 | 1838 | .fa-safari:before { 1839 | content: "\f267"; } 1840 | 1841 | .fa-chrome:before { 1842 | content: "\f268"; } 1843 | 1844 | .fa-firefox:before { 1845 | content: "\f269"; } 1846 | 1847 | .fa-opera:before { 1848 | content: "\f26a"; } 1849 | 1850 | .fa-internet-explorer:before { 1851 | content: "\f26b"; } 1852 | 1853 | .fa-tv:before, .fa-television:before { 1854 | content: "\f26c"; } 1855 | 1856 | .fa-contao:before { 1857 | content: "\f26d"; } 1858 | 1859 | .fa-500px:before { 1860 | content: "\f26e"; } 1861 | 1862 | .fa-amazon:before { 1863 | content: "\f270"; } 1864 | 1865 | .fa-calendar-plus-o:before { 1866 | content: "\f271"; } 1867 | 1868 | .fa-calendar-minus-o:before { 1869 | content: "\f272"; } 1870 | 1871 | .fa-calendar-times-o:before { 1872 | content: "\f273"; } 1873 | 1874 | .fa-calendar-check-o:before { 1875 | content: "\f274"; } 1876 | 1877 | .fa-industry:before { 1878 | content: "\f275"; } 1879 | 1880 | .fa-map-pin:before { 1881 | content: "\f276"; } 1882 | 1883 | .fa-map-signs:before { 1884 | content: "\f277"; } 1885 | 1886 | .fa-map-o:before { 1887 | content: "\f278"; } 1888 | 1889 | .fa-map:before { 1890 | content: "\f279"; } 1891 | 1892 | .fa-commenting:before { 1893 | content: "\f27a"; } 1894 | 1895 | .fa-commenting-o:before { 1896 | content: "\f27b"; } 1897 | 1898 | .fa-houzz:before { 1899 | content: "\f27c"; } 1900 | 1901 | .fa-vimeo:before { 1902 | content: "\f27d"; } 1903 | 1904 | .fa-black-tie:before { 1905 | content: "\f27e"; } 1906 | 1907 | .fa-fonticons:before { 1908 | content: "\f280"; } 1909 | 1910 | .fa-reddit-alien:before { 1911 | content: "\f281"; } 1912 | 1913 | .fa-edge:before { 1914 | content: "\f282"; } 1915 | 1916 | .fa-credit-card-alt:before { 1917 | content: "\f283"; } 1918 | 1919 | .fa-codiepie:before { 1920 | content: "\f284"; } 1921 | 1922 | .fa-modx:before { 1923 | content: "\f285"; } 1924 | 1925 | .fa-fort-awesome:before { 1926 | content: "\f286"; } 1927 | 1928 | .fa-usb:before { 1929 | content: "\f287"; } 1930 | 1931 | .fa-product-hunt:before { 1932 | content: "\f288"; } 1933 | 1934 | .fa-mixcloud:before { 1935 | content: "\f289"; } 1936 | 1937 | .fa-scribd:before { 1938 | content: "\f28a"; } 1939 | 1940 | .fa-pause-circle:before { 1941 | content: "\f28b"; } 1942 | 1943 | .fa-pause-circle-o:before { 1944 | content: "\f28c"; } 1945 | 1946 | .fa-stop-circle:before { 1947 | content: "\f28d"; } 1948 | 1949 | .fa-stop-circle-o:before { 1950 | content: "\f28e"; } 1951 | 1952 | .fa-shopping-bag:before { 1953 | content: "\f290"; } 1954 | 1955 | .fa-shopping-basket:before { 1956 | content: "\f291"; } 1957 | 1958 | .fa-hashtag:before { 1959 | content: "\f292"; } 1960 | 1961 | .fa-bluetooth:before { 1962 | content: "\f293"; } 1963 | 1964 | .fa-bluetooth-b:before { 1965 | content: "\f294"; } 1966 | 1967 | .fa-percent:before { 1968 | content: "\f295"; } 1969 | 1970 | .fa-gitlab:before { 1971 | content: "\f296"; } 1972 | 1973 | .fa-wpbeginner:before { 1974 | content: "\f297"; } 1975 | 1976 | .fa-wpforms:before { 1977 | content: "\f298"; } 1978 | 1979 | .fa-envira:before { 1980 | content: "\f299"; } 1981 | 1982 | .fa-universal-access:before { 1983 | content: "\f29a"; } 1984 | 1985 | .fa-wheelchair-alt:before { 1986 | content: "\f29b"; } 1987 | 1988 | .fa-question-circle-o:before { 1989 | content: "\f29c"; } 1990 | 1991 | .fa-blind:before { 1992 | content: "\f29d"; } 1993 | 1994 | .fa-audio-description:before { 1995 | content: "\f29e"; } 1996 | 1997 | .fa-volume-control-phone:before { 1998 | content: "\f2a0"; } 1999 | 2000 | .fa-braille:before { 2001 | content: "\f2a1"; } 2002 | 2003 | .fa-assistive-listening-systems:before { 2004 | content: "\f2a2"; } 2005 | 2006 | .fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before { 2007 | content: "\f2a3"; } 2008 | 2009 | .fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before { 2010 | content: "\f2a4"; } 2011 | 2012 | .fa-glide:before { 2013 | content: "\f2a5"; } 2014 | 2015 | .fa-glide-g:before { 2016 | content: "\f2a6"; } 2017 | 2018 | .fa-signing:before, .fa-sign-language:before { 2019 | content: "\f2a7"; } 2020 | 2021 | .fa-low-vision:before { 2022 | content: "\f2a8"; } 2023 | 2024 | .fa-viadeo:before { 2025 | content: "\f2a9"; } 2026 | 2027 | .fa-viadeo-square:before { 2028 | content: "\f2aa"; } 2029 | 2030 | .fa-snapchat:before { 2031 | content: "\f2ab"; } 2032 | 2033 | .fa-snapchat-ghost:before { 2034 | content: "\f2ac"; } 2035 | 2036 | .fa-snapchat-square:before { 2037 | content: "\f2ad"; } 2038 | 2039 | .fa-pied-piper:before { 2040 | content: "\f2ae"; } 2041 | 2042 | .fa-first-order:before { 2043 | content: "\f2b0"; } 2044 | 2045 | .fa-yoast:before { 2046 | content: "\f2b1"; } 2047 | 2048 | .fa-themeisle:before { 2049 | content: "\f2b2"; } 2050 | 2051 | .fa-google-plus-circle:before, .fa-google-plus-official:before { 2052 | content: "\f2b3"; } 2053 | 2054 | .fa-fa:before, .fa-font-awesome:before { 2055 | content: "\f2b4"; } 2056 | 2057 | .fa-handshake-o:before { 2058 | content: "\f2b5"; } 2059 | 2060 | .fa-envelope-open:before { 2061 | content: "\f2b6"; } 2062 | 2063 | .fa-envelope-open-o:before { 2064 | content: "\f2b7"; } 2065 | 2066 | .fa-linode:before { 2067 | content: "\f2b8"; } 2068 | 2069 | .fa-address-book:before { 2070 | content: "\f2b9"; } 2071 | 2072 | .fa-address-book-o:before { 2073 | content: "\f2ba"; } 2074 | 2075 | .fa-vcard:before, .fa-address-card:before { 2076 | content: "\f2bb"; } 2077 | 2078 | .fa-vcard-o:before, .fa-address-card-o:before { 2079 | content: "\f2bc"; } 2080 | 2081 | .fa-user-circle:before { 2082 | content: "\f2bd"; } 2083 | 2084 | .fa-user-circle-o:before { 2085 | content: "\f2be"; } 2086 | 2087 | .fa-user-o:before { 2088 | content: "\f2c0"; } 2089 | 2090 | .fa-id-badge:before { 2091 | content: "\f2c1"; } 2092 | 2093 | .fa-drivers-license:before, .fa-id-card:before { 2094 | content: "\f2c2"; } 2095 | 2096 | .fa-drivers-license-o:before, .fa-id-card-o:before { 2097 | content: "\f2c3"; } 2098 | 2099 | .fa-quora:before { 2100 | content: "\f2c4"; } 2101 | 2102 | .fa-free-code-camp:before { 2103 | content: "\f2c5"; } 2104 | 2105 | .fa-telegram:before { 2106 | content: "\f2c6"; } 2107 | 2108 | .fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before { 2109 | content: "\f2c7"; } 2110 | 2111 | .fa-thermometer-3:before, .fa-thermometer-three-quarters:before { 2112 | content: "\f2c8"; } 2113 | 2114 | .fa-thermometer-2:before, .fa-thermometer-half:before { 2115 | content: "\f2c9"; } 2116 | 2117 | .fa-thermometer-1:before, .fa-thermometer-quarter:before { 2118 | content: "\f2ca"; } 2119 | 2120 | .fa-thermometer-0:before, .fa-thermometer-empty:before { 2121 | content: "\f2cb"; } 2122 | 2123 | .fa-shower:before { 2124 | content: "\f2cc"; } 2125 | 2126 | .fa-bathtub:before, .fa-s15:before, .fa-bath:before { 2127 | content: "\f2cd"; } 2128 | 2129 | .fa-podcast:before { 2130 | content: "\f2ce"; } 2131 | 2132 | .fa-window-maximize:before { 2133 | content: "\f2d0"; } 2134 | 2135 | .fa-window-minimize:before { 2136 | content: "\f2d1"; } 2137 | 2138 | .fa-window-restore:before { 2139 | content: "\f2d2"; } 2140 | 2141 | .fa-times-rectangle:before, .fa-window-close:before { 2142 | content: "\f2d3"; } 2143 | 2144 | .fa-times-rectangle-o:before, .fa-window-close-o:before { 2145 | content: "\f2d4"; } 2146 | 2147 | .fa-bandcamp:before { 2148 | content: "\f2d5"; } 2149 | 2150 | .fa-grav:before { 2151 | content: "\f2d6"; } 2152 | 2153 | .fa-etsy:before { 2154 | content: "\f2d7"; } 2155 | 2156 | .fa-imdb:before { 2157 | content: "\f2d8"; } 2158 | 2159 | .fa-ravelry:before { 2160 | content: "\f2d9"; } 2161 | 2162 | .fa-eercast:before { 2163 | content: "\f2da"; } 2164 | 2165 | .fa-microchip:before { 2166 | content: "\f2db"; } 2167 | 2168 | .fa-snowflake-o:before { 2169 | content: "\f2dc"; } 2170 | 2171 | .fa-superpowers:before { 2172 | content: "\f2dd"; } 2173 | 2174 | .fa-wpexplorer:before { 2175 | content: "\f2de"; } 2176 | 2177 | .fa-meetup:before { 2178 | content: "\f2e0"; } 2179 | 2180 | .sr-only { 2181 | position: absolute; 2182 | width: 1px; 2183 | height: 1px; 2184 | padding: 0; 2185 | margin: -1px; 2186 | overflow: hidden; 2187 | clip: rect(0, 0, 0, 0); 2188 | border: 0; } 2189 | 2190 | .sr-only-focusable:active, .sr-only-focusable:focus { 2191 | position: static; 2192 | width: auto; 2193 | height: auto; 2194 | margin: 0; 2195 | overflow: visible; 2196 | clip: auto; } -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Author: W3layouts 3 | Author URL: http://w3layouts.com 4 | */ 5 | :root { 6 | --para-color: #555555; 7 | --theme-color: #fff; 8 | --theme-hover-color: #333; 9 | } 10 | 11 | html { 12 | scroll-behavior: smooth; 13 | } 14 | 15 | body, 16 | html { 17 | margin: 0; 18 | padding: 0; 19 | font-family: 'Work Sans', sans-serif; 20 | } 21 | 22 | * { 23 | box-sizing: border-box; 24 | } 25 | 26 | .d-grid { 27 | display: grid; 28 | } 29 | 30 | .d-flex { 31 | display: flex; 32 | display: -webkit-flex; 33 | } 34 | 35 | .text-center { 36 | text-align: center; 37 | } 38 | 39 | .text-left { 40 | text-align: left; 41 | } 42 | 43 | .text-right { 44 | text-align: right; 45 | } 46 | 47 | button, 48 | input, 49 | select { 50 | -webkit-appearance: none; 51 | outline: none; 52 | } 53 | 54 | button, 55 | .btn, 56 | select { 57 | cursor: pointer; 58 | } 59 | 60 | a { 61 | text-decoration: none; 62 | } 63 | 64 | iframe { 65 | border: none; 66 | } 67 | 68 | ul { 69 | margin: 0; 70 | padding: 0 71 | } 72 | 73 | h1, 74 | h2, 75 | h3, 76 | h4, 77 | h5, 78 | h6, 79 | p { 80 | margin: 0; 81 | padding: 0 82 | } 83 | 84 | p { 85 | color: #444; 86 | font-size: 16px; 87 | line-height: 24px; 88 | } 89 | 90 | .p-relative { 91 | position: relative; 92 | } 93 | 94 | .p-absolute { 95 | position: absolute; 96 | } 97 | 98 | .p-fixed { 99 | position: fixed; 100 | } 101 | 102 | .p-sticky { 103 | position: sticky; 104 | } 105 | 106 | .btn, 107 | button, 108 | .actionbg, 109 | input { 110 | border-radius: 4px; 111 | -webkit-border-radius: 4px; 112 | -moz-border-radius: 4px; 113 | -o-border-radius: 4px; 114 | -ms-border-radius: 4px; 115 | } 116 | 117 | .btn, 118 | button, 119 | .btn:hover, 120 | button:hover { 121 | transition: 0.5s ease; 122 | -webkit-transition: 0.5s ease; 123 | -o-transition: 0.5s ease; 124 | -ms-transition: 0.5s ease; 125 | -moz-transition: 0.5s ease; 126 | } 127 | 128 | /*-------------------- 129 | Page 130 | --------------------*/ 131 | .page { 132 | position: absolute; 133 | width: 100%; 134 | z-index: 1; 135 | overflow: hidden; 136 | box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 137 | } 138 | 139 | /*-------------------- 140 | Content 141 | --------------------*/ 142 | .content { 143 | text-align: center; 144 | display: grid; 145 | grid-template-rows: 1fr auto 1fr; 146 | min-height: 100vh; 147 | align-items: center; 148 | padding: 30px 15px; 149 | } 150 | 151 | .w3l-error-grid { 152 | margin: 0px auto; 153 | max-width: 850px; 154 | text-align: center; 155 | padding: 1em; 156 | } 157 | 158 | .content h1 { 159 | font-weight: 700; 160 | font-size: 175px; 161 | color: #eee; 162 | opacity: .4; 163 | } 164 | 165 | .content h2 { 166 | font-size: 30px; 167 | margin-bottom: 10px; 168 | color: #eee; 169 | font-weight: 500; 170 | } 171 | 172 | .content p { 173 | font-size: 16px; 174 | color: #ccc; 175 | line-height: 24px; 176 | margin-top: 10px; 177 | } 178 | 179 | .content a.home { 180 | display: inline-block; 181 | font-size: 16px; 182 | border: 2px solid #CDD4DE; 183 | padding: 12px 30px; 184 | border-radius: 4px; 185 | cursor: pointer; 186 | color: #CDD4DE; 187 | margin-top: 50px; 188 | } 189 | 190 | .content a.home:hover { 191 | background: rgba(152, 152, 152, 0.15); 192 | border: 2px solid #fff; 193 | background: #fff; 194 | color: #333; 195 | } 196 | 197 | .copy-right p { 198 | color: #aaa; 199 | } 200 | 201 | .copy-right p a { 202 | color: #fff; 203 | } 204 | 205 | .copy-right p a:hover { 206 | color: #888; 207 | } 208 | 209 | a.brand-logo { 210 | color: var(--theme-color); 211 | font-weight: 600; 212 | font-size: 35px; 213 | line-height: 40px; 214 | border: none; 215 | background: none; 216 | padding: 0px; 217 | text-transform: uppercase; 218 | } 219 | 220 | /*-------------------- 221 | Image 222 | --------------------*/ 223 | img { 224 | position: absolute; 225 | top: 0; 226 | left: 0; 227 | width: 100%; 228 | height: 100%; 229 | z-index: -1; 230 | transform: scale(1.1); 231 | } 232 | 233 | 234 | @media (max-width: 991px) { 235 | .content h1 { 236 | font-size: 120px; 237 | } 238 | } 239 | 240 | @media (max-width: 568px) {} 241 | 242 | @media (max-width: 440px) { 243 | .content { 244 | padding-bottom: 20px; 245 | padding-top: 20px; 246 | } 247 | 248 | a.brand-logo { 249 | font-size: 30px; 250 | line-height: 35px; 251 | } 252 | 253 | .content h1 { 254 | font-size: 100px; 255 | } 256 | 257 | .content p { 258 | font-size: 15px; 259 | } 260 | } -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/404-error-page/35d624ef6f4a051f366015366e8fe049495f0bee/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/404-error-page/35d624ef6f4a051f366015366e8fe049495f0bee/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/404-error-page/35d624ef6f4a051f366015366e8fe049495f0bee/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/404-error-page/35d624ef6f4a051f366015366e8fe049495f0bee/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/404-error-page/35d624ef6f4a051f366015366e8fe049495f0bee/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/404-error-page/35d624ef6f4a051f366015366e8fe049495f0bee/images/bg.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 |
9 |© 2021 ALBINPRAVEEN. All rights reserved | Design by 53 | ALBINPRAVEEN
54 |