├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── assets ├── css │ ├── font-awesome.min.css │ ├── ie8.css │ ├── ie9.css │ ├── images │ │ ├── bg.jpg │ │ ├── icon.ico │ │ ├── ie │ │ │ ├── footer.png │ │ │ └── footer.svg │ │ ├── overlay-pattern.png │ │ └── overlay.svg │ └── main.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── js │ └── ie │ │ ├── PIE.htc │ │ ├── html5shiv.js │ │ └── respond.min.js └── sass │ ├── ie8.scss │ ├── ie9.scss │ ├── libs │ ├── _functions.scss │ ├── _mixins.scss │ ├── _skel.scss │ └── _vars.scss │ └── main.scss └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | # Node rules: 2 | ## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 3 | .grunt 4 | 5 | ## Dependency directory 6 | ## Commenting this out is preferred by some people, see 7 | ## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git 8 | node_modules 9 | 10 | # Book build output 11 | _book 12 | 13 | # eBook build output 14 | *.epub 15 | *.mobi 16 | *.pdf 17 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | ismailtasdelen.me 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 İSMAİL TAŞDELEN 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit people to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ismailtasdelen.github.io - ismailtasdelen.me ✔️ 2 | -------------------------------------------------------------------------------- /assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.6.3 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.6.3');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.6.3#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-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"}.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 | -------------------------------------------------------------------------------- /assets/css/ie8.css: -------------------------------------------------------------------------------- 1 | /* 2 | Aerial by HTML5 UP 3 | html5up.net | @ajlkn 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Header */ 8 | 9 | #header nav a { 10 | position: relative; 11 | border: solid 1px #fff; 12 | border-radius: 100%; 13 | -ms-behavior: url("assets/js/ie/PIE.htc"); 14 | } 15 | 16 | #header nav a:before { 17 | border: 0; 18 | } 19 | 20 | /* Footer */ 21 | 22 | #footer { 23 | background-image: url("images/ie/footer.png"); 24 | background-position: bottom left; 25 | background-repeat: repeat-x; 26 | } -------------------------------------------------------------------------------- /assets/css/ie9.css: -------------------------------------------------------------------------------- 1 | /* 2 | Aerial by HTML5 UP 3 | html5up.net | @ajlkn 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Wrapper */ 8 | 9 | #wrapper { 10 | opacity: 1; 11 | } 12 | 13 | /* Overlay */ 14 | 15 | #overlay { 16 | opacity: 1; 17 | } 18 | 19 | /* Header */ 20 | 21 | #header { 22 | opacity: 1; 23 | } 24 | 25 | #header nav li { 26 | opacity: 1; 27 | } 28 | 29 | /* Footer */ 30 | 31 | #footer { 32 | background-image: url("images/ie/footer.svg"); 33 | } -------------------------------------------------------------------------------- /assets/css/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/website-template/html5-simple-personal-website/21d473ad6eee33c9118af420d6772abe436dd661/assets/css/images/bg.jpg -------------------------------------------------------------------------------- /assets/css/images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/website-template/html5-simple-personal-website/21d473ad6eee33c9118af420d6772abe436dd661/assets/css/images/icon.ico -------------------------------------------------------------------------------- /assets/css/images/ie/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/website-template/html5-simple-personal-website/21d473ad6eee33c9118af420d6772abe436dd661/assets/css/images/ie/footer.png -------------------------------------------------------------------------------- /assets/css/images/ie/footer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/css/images/overlay-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/website-template/html5-simple-personal-website/21d473ad6eee33c9118af420d6772abe436dd661/assets/css/images/overlay-pattern.png -------------------------------------------------------------------------------- /assets/css/images/overlay.svg: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,900"); 2 | @import url("font-awesome.min.css"); 3 | 4 | /* 5 | Aerial by HTML5 UP 6 | html5up.net | @ajlkn 7 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 8 | */ 9 | 10 | /* Reset */ 11 | 12 | html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { 13 | margin: 0; 14 | padding: 0; 15 | border: 0; 16 | font-size: 100%; 17 | font: inherit; 18 | vertical-align: baseline; 19 | } 20 | 21 | article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 22 | display: block; 23 | } 24 | 25 | body { 26 | line-height: 1; 27 | } 28 | 29 | ol, ul { 30 | list-style: none; 31 | } 32 | 33 | blockquote, q { 34 | quotes: none; 35 | } 36 | 37 | blockquote:before, blockquote:after, q:before, q:after { 38 | content: ''; 39 | content: none; 40 | } 41 | 42 | table { 43 | border-collapse: collapse; 44 | border-spacing: 0; 45 | } 46 | 47 | body { 48 | -webkit-text-size-adjust: none; 49 | } 50 | 51 | /* Box Model */ 52 | 53 | *, *:before, *:after { 54 | -moz-box-sizing: border-box; 55 | -webkit-box-sizing: border-box; 56 | box-sizing: border-box; 57 | } 58 | 59 | /* Basic */ 60 | 61 | body, input, select, textarea { 62 | color: #fff; 63 | font-family: 'Source Sans Pro', sans-serif; 64 | font-size: 15pt; 65 | font-weight: 300 !important; 66 | letter-spacing: -0.025em; 67 | line-height: 1.75em; 68 | } 69 | 70 | body { 71 | background: #fff; 72 | overflow: hidden; 73 | } 74 | 75 | body.loading * { 76 | -moz-animation: none !important; 77 | -webkit-animation: none !important; 78 | -ms-animation: none !important; 79 | animation: none !important; 80 | } 81 | 82 | a { 83 | -moz-transition: border-color 0.2s ease-in-out; 84 | -webkit-transition: border-color 0.2s ease-in-out; 85 | -ms-transition: border-color 0.2s ease-in-out; 86 | transition: border-color 0.2s ease-in-out; 87 | border-bottom: dotted 1px; 88 | color: inherit; 89 | outline: 0; 90 | text-decoration: none; 91 | } 92 | 93 | a:hover { 94 | border-color: transparent; 95 | } 96 | 97 | /* Icon */ 98 | 99 | .icon { 100 | text-decoration: none; 101 | position: relative; 102 | } 103 | 104 | .icon:before { 105 | -moz-osx-font-smoothing: grayscale; 106 | -webkit-font-smoothing: antialiased; 107 | font-family: FontAwesome; 108 | font-style: normal; 109 | font-weight: normal; 110 | text-transform: none !important; 111 | } 112 | 113 | .icon > .label { 114 | display: none; 115 | } 116 | 117 | /* Wrapper */ 118 | 119 | @-moz-keyframes wrapper { 120 | 0% { 121 | opacity: 0; 122 | } 123 | 124 | 100% { 125 | opacity: 1; 126 | } 127 | } 128 | 129 | @-webkit-keyframes wrapper { 130 | 0% { 131 | opacity: 0; 132 | } 133 | 134 | 100% { 135 | opacity: 1; 136 | } 137 | } 138 | 139 | @-ms-keyframes wrapper { 140 | 0% { 141 | opacity: 0; 142 | } 143 | 144 | 100% { 145 | opacity: 1; 146 | } 147 | } 148 | 149 | @keyframes wrapper { 150 | 0% { 151 | opacity: 0; 152 | } 153 | 154 | 100% { 155 | opacity: 1; 156 | } 157 | } 158 | 159 | #wrapper { 160 | -moz-animation: wrapper 3s forwards; 161 | -webkit-animation: wrapper 3s forwards; 162 | -ms-animation: wrapper 3s forwards; 163 | animation: wrapper 3s forwards; 164 | height: 100%; 165 | left: 0; 166 | opacity: 0; 167 | position: fixed; 168 | top: 0; 169 | width: 100%; 170 | } 171 | 172 | /* BG */ 173 | 174 | #bg { 175 | -moz-animation: bg 60s linear infinite; 176 | -webkit-animation: bg 60s linear infinite; 177 | -ms-animation: bg 60s linear infinite; 178 | animation: bg 60s linear infinite; 179 | -moz-backface-visibility: hidden; 180 | -webkit-backface-visibility: hidden; 181 | -ms-backface-visibility: hidden; 182 | backface-visibility: hidden; 183 | -moz-transform: translate3d(0,0,0); 184 | -webkit-transform: translate3d(0,0,0); 185 | -ms-transform: translate3d(0,0,0); 186 | transform: translate3d(0,0,0); 187 | /* Set your background with this */ 188 | 189 | background: #348cb2 url("images/bg.jpg") bottom left; 190 | background-repeat: repeat-x; 191 | height: 100%; 192 | left: 0; 193 | opacity: 1; 194 | position: fixed; 195 | top: 0; 196 | } 197 | 198 | @-moz-keyframes bg { 199 | 0% { 200 | -moz-transform: translate3d(0,0,0); 201 | -webkit-transform: translate3d(0,0,0); 202 | -ms-transform: translate3d(0,0,0); 203 | transform: translate3d(0,0,0); 204 | } 205 | 206 | 100% { 207 | -moz-transform: translate3d(-2250px,0,0); 208 | -webkit-transform: translate3d(-2250px,0,0); 209 | -ms-transform: translate3d(-2250px,0,0); 210 | transform: translate3d(-2250px,0,0); 211 | } 212 | } 213 | 214 | @-webkit-keyframes bg { 215 | 0% { 216 | -moz-transform: translate3d(0,0,0); 217 | -webkit-transform: translate3d(0,0,0); 218 | -ms-transform: translate3d(0,0,0); 219 | transform: translate3d(0,0,0); 220 | } 221 | 222 | 100% { 223 | -moz-transform: translate3d(-2250px,0,0); 224 | -webkit-transform: translate3d(-2250px,0,0); 225 | -ms-transform: translate3d(-2250px,0,0); 226 | transform: translate3d(-2250px,0,0); 227 | } 228 | } 229 | 230 | @-ms-keyframes bg { 231 | 0% { 232 | -moz-transform: translate3d(0,0,0); 233 | -webkit-transform: translate3d(0,0,0); 234 | -ms-transform: translate3d(0,0,0); 235 | transform: translate3d(0,0,0); 236 | } 237 | 238 | 100% { 239 | -moz-transform: translate3d(-2250px,0,0); 240 | -webkit-transform: translate3d(-2250px,0,0); 241 | -ms-transform: translate3d(-2250px,0,0); 242 | transform: translate3d(-2250px,0,0); 243 | } 244 | } 245 | 246 | @keyframes bg { 247 | 0% { 248 | -moz-transform: translate3d(0,0,0); 249 | -webkit-transform: translate3d(0,0,0); 250 | -ms-transform: translate3d(0,0,0); 251 | transform: translate3d(0,0,0); 252 | } 253 | 254 | 100% { 255 | -moz-transform: translate3d(-2250px,0,0); 256 | -webkit-transform: translate3d(-2250px,0,0); 257 | -ms-transform: translate3d(-2250px,0,0); 258 | transform: translate3d(-2250px,0,0); 259 | } 260 | } 261 | 262 | #bg { 263 | background-size: 2250px auto; 264 | width: 6750px; 265 | } 266 | 267 | /* Overlay */ 268 | 269 | @-moz-keyframes overlay { 270 | 0% { 271 | opacity: 0; 272 | } 273 | 274 | 100% { 275 | opacity: 1; 276 | } 277 | } 278 | 279 | @-webkit-keyframes overlay { 280 | 0% { 281 | opacity: 0; 282 | } 283 | 284 | 100% { 285 | opacity: 1; 286 | } 287 | } 288 | 289 | @-ms-keyframes overlay { 290 | 0% { 291 | opacity: 0; 292 | } 293 | 294 | 100% { 295 | opacity: 1; 296 | } 297 | } 298 | 299 | @keyframes overlay { 300 | 0% { 301 | opacity: 0; 302 | } 303 | 304 | 100% { 305 | opacity: 1; 306 | } 307 | } 308 | 309 | #overlay { 310 | -moz-animation: overlay 1.5s 1.5s forwards; 311 | -webkit-animation: overlay 1.5s 1.5s forwards; 312 | -ms-animation: overlay 1.5s 1.5s forwards; 313 | animation: overlay 1.5s 1.5s forwards; 314 | background-attachment: fixed, fixed; 315 | background-image: url("images/overlay-pattern.png"), url("images/overlay.svg"); 316 | background-position: top left, center center; 317 | background-repeat: repeat, no-repeat; 318 | background-size: auto, cover; 319 | height: 100%; 320 | left: 0; 321 | opacity: 0; 322 | position: fixed; 323 | top: 0; 324 | width: 100%; 325 | } 326 | 327 | /* Main */ 328 | 329 | #main { 330 | height: 100%; 331 | left: 0; 332 | position: fixed; 333 | text-align: center; 334 | top: 0; 335 | width: 100%; 336 | } 337 | 338 | #main:before { 339 | content: ''; 340 | display: inline-block; 341 | height: 100%; 342 | margin-right: 0; 343 | vertical-align: middle; 344 | width: 1px; 345 | } 346 | 347 | /* Header */ 348 | 349 | @-moz-keyframes header { 350 | 0% { 351 | -moz-transform: translate3d(0,1em,0); 352 | -webkit-transform: translate3d(0,1em,0); 353 | -ms-transform: translate3d(0,1em,0); 354 | transform: translate3d(0,1em,0); 355 | opacity: 0; 356 | } 357 | 358 | 100% { 359 | -moz-transform: translate3d(0,0,0); 360 | -webkit-transform: translate3d(0,0,0); 361 | -ms-transform: translate3d(0,0,0); 362 | transform: translate3d(0,0,0); 363 | opacity: 1; 364 | } 365 | } 366 | 367 | @-webkit-keyframes header { 368 | 0% { 369 | -moz-transform: translate3d(0,1em,0); 370 | -webkit-transform: translate3d(0,1em,0); 371 | -ms-transform: translate3d(0,1em,0); 372 | transform: translate3d(0,1em,0); 373 | opacity: 0; 374 | } 375 | 376 | 100% { 377 | -moz-transform: translate3d(0,0,0); 378 | -webkit-transform: translate3d(0,0,0); 379 | -ms-transform: translate3d(0,0,0); 380 | transform: translate3d(0,0,0); 381 | opacity: 1; 382 | } 383 | } 384 | 385 | @-ms-keyframes header { 386 | 0% { 387 | -moz-transform: translate3d(0,1em,0); 388 | -webkit-transform: translate3d(0,1em,0); 389 | -ms-transform: translate3d(0,1em,0); 390 | transform: translate3d(0,1em,0); 391 | opacity: 0; 392 | } 393 | 394 | 100% { 395 | -moz-transform: translate3d(0,0,0); 396 | -webkit-transform: translate3d(0,0,0); 397 | -ms-transform: translate3d(0,0,0); 398 | transform: translate3d(0,0,0); 399 | opacity: 1; 400 | } 401 | } 402 | 403 | @keyframes header { 404 | 0% { 405 | -moz-transform: translate3d(0,1em,0); 406 | -webkit-transform: translate3d(0,1em,0); 407 | -ms-transform: translate3d(0,1em,0); 408 | transform: translate3d(0,1em,0); 409 | opacity: 0; 410 | } 411 | 412 | 100% { 413 | -moz-transform: translate3d(0,0,0); 414 | -webkit-transform: translate3d(0,0,0); 415 | -ms-transform: translate3d(0,0,0); 416 | transform: translate3d(0,0,0); 417 | opacity: 1; 418 | } 419 | } 420 | 421 | @-moz-keyframes nav-icons { 422 | 0% { 423 | -moz-transform: translate3d(0,1em,0); 424 | -webkit-transform: translate3d(0,1em,0); 425 | -ms-transform: translate3d(0,1em,0); 426 | transform: translate3d(0,1em,0); 427 | opacity: 0; 428 | } 429 | 430 | 100% { 431 | -moz-transform: translate3d(0,0,0); 432 | -webkit-transform: translate3d(0,0,0); 433 | -ms-transform: translate3d(0,0,0); 434 | transform: translate3d(0,0,0); 435 | opacity: 1; 436 | } 437 | } 438 | 439 | @-webkit-keyframes nav-icons { 440 | 0% { 441 | -moz-transform: translate3d(0,1em,0); 442 | -webkit-transform: translate3d(0,1em,0); 443 | -ms-transform: translate3d(0,1em,0); 444 | transform: translate3d(0,1em,0); 445 | opacity: 0; 446 | } 447 | 448 | 100% { 449 | -moz-transform: translate3d(0,0,0); 450 | -webkit-transform: translate3d(0,0,0); 451 | -ms-transform: translate3d(0,0,0); 452 | transform: translate3d(0,0,0); 453 | opacity: 1; 454 | } 455 | } 456 | 457 | @-ms-keyframes nav-icons { 458 | 0% { 459 | -moz-transform: translate3d(0,1em,0); 460 | -webkit-transform: translate3d(0,1em,0); 461 | -ms-transform: translate3d(0,1em,0); 462 | transform: translate3d(0,1em,0); 463 | opacity: 0; 464 | } 465 | 466 | 100% { 467 | -moz-transform: translate3d(0,0,0); 468 | -webkit-transform: translate3d(0,0,0); 469 | -ms-transform: translate3d(0,0,0); 470 | transform: translate3d(0,0,0); 471 | opacity: 1; 472 | } 473 | } 474 | 475 | @keyframes nav-icons { 476 | 0% { 477 | -moz-transform: translate3d(0,1em,0); 478 | -webkit-transform: translate3d(0,1em,0); 479 | -ms-transform: translate3d(0,1em,0); 480 | transform: translate3d(0,1em,0); 481 | opacity: 0; 482 | } 483 | 484 | 100% { 485 | -moz-transform: translate3d(0,0,0); 486 | -webkit-transform: translate3d(0,0,0); 487 | -ms-transform: translate3d(0,0,0); 488 | transform: translate3d(0,0,0); 489 | opacity: 1; 490 | } 491 | } 492 | 493 | #header { 494 | -moz-animation: header 1s 2.25s forwards; 495 | -webkit-animation: header 1s 2.25s forwards; 496 | -ms-animation: header 1s 2.25s forwards; 497 | animation: header 1s 2.25s forwards; 498 | -moz-backface-visibility: hidden; 499 | -webkit-backface-visibility: hidden; 500 | -ms-backface-visibility: hidden; 501 | backface-visibility: hidden; 502 | -moz-transform: translate3d(0,0,0); 503 | -webkit-transform: translate3d(0,0,0); 504 | -ms-transform: translate3d(0,0,0); 505 | transform: translate3d(0,0,0); 506 | cursor: default; 507 | display: inline-block; 508 | opacity: 0; 509 | position: relative; 510 | text-align: center; 511 | top: -1em; 512 | vertical-align: middle; 513 | width: 90%; 514 | } 515 | 516 | #header h1 { 517 | font-size: 4.35em; 518 | font-weight: 900; 519 | letter-spacing: -0.035em; 520 | line-height: 1em; 521 | } 522 | 523 | #header p { 524 | font-size: 1.25em; 525 | margin: 0.75em 0 0.25em 0; 526 | opacity: 0.75; 527 | } 528 | 529 | #header nav { 530 | margin: 1.5em 0 0 0; 531 | } 532 | 533 | #header nav li { 534 | -moz-animation: nav-icons 0.5s ease-in-out forwards; 535 | -webkit-animation: nav-icons 0.5s ease-in-out forwards; 536 | -ms-animation: nav-icons 0.5s ease-in-out forwards; 537 | animation: nav-icons 0.5s ease-in-out forwards; 538 | -moz-backface-visibility: hidden; 539 | -webkit-backface-visibility: hidden; 540 | -ms-backface-visibility: hidden; 541 | backface-visibility: hidden; 542 | -moz-transform: translate3d(0,0,0); 543 | -webkit-transform: translate3d(0,0,0); 544 | -ms-transform: translate3d(0,0,0); 545 | transform: translate3d(0,0,0); 546 | display: inline-block; 547 | height: 5.35em; 548 | line-height: 5.885em; 549 | opacity: 0; 550 | position: relative; 551 | top: 0; 552 | width: 5.35em; 553 | } 554 | 555 | #header nav li:nth-child(1) { 556 | -moz-animation-delay: 2.5s; 557 | -webkit-animation-delay: 2.5s; 558 | -ms-animation-delay: 2.5s; 559 | animation-delay: 2.5s; 560 | } 561 | 562 | #header nav li:nth-child(2) { 563 | -moz-animation-delay: 2.75s; 564 | -webkit-animation-delay: 2.75s; 565 | -ms-animation-delay: 2.75s; 566 | animation-delay: 2.75s; 567 | } 568 | 569 | #header nav li:nth-child(3) { 570 | -moz-animation-delay: 3s; 571 | -webkit-animation-delay: 3s; 572 | -ms-animation-delay: 3s; 573 | animation-delay: 3s; 574 | } 575 | 576 | #header nav li:nth-child(4) { 577 | -moz-animation-delay: 3.25s; 578 | -webkit-animation-delay: 3.25s; 579 | -ms-animation-delay: 3.25s; 580 | animation-delay: 3.25s; 581 | } 582 | 583 | #header nav li:nth-child(5) { 584 | -moz-animation-delay: 3.5s; 585 | -webkit-animation-delay: 3.5s; 586 | -ms-animation-delay: 3.5s; 587 | animation-delay: 3.5s; 588 | } 589 | 590 | #header nav li:nth-child(6) { 591 | -moz-animation-delay: 3.75s; 592 | -webkit-animation-delay: 3.75s; 593 | -ms-animation-delay: 3.75s; 594 | animation-delay: 3.75s; 595 | } 596 | 597 | #header nav li:nth-child(7) { 598 | -moz-animation-delay: 4s; 599 | -webkit-animation-delay: 4s; 600 | -ms-animation-delay: 4s; 601 | animation-delay: 4s; 602 | } 603 | 604 | #header nav li:nth-child(8) { 605 | -moz-animation-delay: 4.25s; 606 | -webkit-animation-delay: 4.25s; 607 | -ms-animation-delay: 4.25s; 608 | animation-delay: 4.25s; 609 | } 610 | 611 | #header nav li:nth-child(9) { 612 | -moz-animation-delay: 4.5s; 613 | -webkit-animation-delay: 4.5s; 614 | -ms-animation-delay: 4.5s; 615 | animation-delay: 4.5s; 616 | } 617 | 618 | #header nav li:nth-child(10) { 619 | -moz-animation-delay: 4.75s; 620 | -webkit-animation-delay: 4.75s; 621 | -ms-animation-delay: 4.75s; 622 | animation-delay: 4.75s; 623 | } 624 | 625 | #header nav a { 626 | -webkit-tap-highlight-color: transparent; 627 | -webkit-touch-callout: none; 628 | border: 0; 629 | display: inline-block; 630 | } 631 | 632 | #header nav a:before { 633 | -moz-transition: all 0.2s ease-in-out; 634 | -webkit-transition: all 0.2s ease-in-out; 635 | -ms-transition: all 0.2s ease-in-out; 636 | transition: all 0.2s ease-in-out; 637 | border-radius: 100%; 638 | border: solid 1px #fff; 639 | display: block; 640 | font-size: 1.75em; 641 | height: 2.5em; 642 | line-height: 2.5em; 643 | position: relative; 644 | text-align: center; 645 | top: 0; 646 | width: 2.5em; 647 | } 648 | 649 | #header nav a:hover { 650 | font-size: 1.1em; 651 | } 652 | 653 | #header nav a:hover:before { 654 | background-color: rgba(255, 255, 255, 0.175); 655 | color: #fff; 656 | } 657 | 658 | #header nav a:active { 659 | font-size: 0.95em; 660 | background: none; 661 | } 662 | 663 | #header nav a:active:before { 664 | background-color: rgba(255, 255, 255, 0.35); 665 | color: #fff; 666 | } 667 | 668 | #header nav a span { 669 | display: none; 670 | } 671 | 672 | /* Footer */ 673 | 674 | #footer { 675 | background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5) 75%); 676 | background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5) 75%); 677 | background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5) 75%); 678 | background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5) 75%); 679 | bottom: 0; 680 | cursor: default; 681 | height: 6em; 682 | left: 0; 683 | line-height: 8em; 684 | position: absolute; 685 | text-align: center; 686 | width: 100%; 687 | } 688 | 689 | /* Wide */ 690 | 691 | @media screen and (max-width: 1680px) { 692 | 693 | /* Basic */ 694 | 695 | body, input, select, textarea { 696 | font-size: 13pt; 697 | } 698 | 699 | /* BG */ 700 | 701 | @-moz-keyframes bg { 702 | 0% { 703 | -moz-transform: translate3d(0,0,0); 704 | -webkit-transform: translate3d(0,0,0); 705 | -ms-transform: translate3d(0,0,0); 706 | transform: translate3d(0,0,0); 707 | } 708 | 709 | 100% { 710 | -moz-transform: translate3d(-1500px,0,0); 711 | -webkit-transform: translate3d(-1500px,0,0); 712 | -ms-transform: translate3d(-1500px,0,0); 713 | transform: translate3d(-1500px,0,0); 714 | } 715 | 716 | } 717 | 718 | @-webkit-keyframes bg { 719 | 0% { 720 | -moz-transform: translate3d(0,0,0); 721 | -webkit-transform: translate3d(0,0,0); 722 | -ms-transform: translate3d(0,0,0); 723 | transform: translate3d(0,0,0); 724 | } 725 | 726 | 100% { 727 | -moz-transform: translate3d(-1500px,0,0); 728 | -webkit-transform: translate3d(-1500px,0,0); 729 | -ms-transform: translate3d(-1500px,0,0); 730 | transform: translate3d(-1500px,0,0); 731 | } 732 | } 733 | 734 | @-ms-keyframes bg { 735 | 0% { 736 | -moz-transform: translate3d(0,0,0); 737 | -webkit-transform: translate3d(0,0,0); 738 | -ms-transform: translate3d(0,0,0); 739 | transform: translate3d(0,0,0); 740 | } 741 | 742 | 100% { 743 | -moz-transform: translate3d(-1500px,0,0); 744 | -webkit-transform: translate3d(-1500px,0,0); 745 | -ms-transform: translate3d(-1500px,0,0); 746 | transform: translate3d(-1500px,0,0); 747 | } 748 | } 749 | 750 | @keyframes bg { 751 | 0% { 752 | -moz-transform: translate3d(0,0,0); 753 | -webkit-transform: translate3d(0,0,0); 754 | -ms-transform: translate3d(0,0,0); 755 | transform: translate3d(0,0,0); 756 | } 757 | 758 | 100% { 759 | -moz-transform: translate3d(-1500px,0,0); 760 | -webkit-transform: translate3d(-1500px,0,0); 761 | -ms-transform: translate3d(-1500px,0,0); 762 | transform: translate3d(-1500px,0,0); 763 | } 764 | } 765 | 766 | #bg { 767 | background-size: 1500px auto; 768 | width: 4500px; 769 | } } 770 | 771 | /* Normal */ 772 | 773 | @media screen and (max-width: 1280px) { 774 | 775 | /* Basic */ 776 | 777 | body, input, select, textarea { 778 | font-size: 12pt; 779 | } 780 | 781 | /* BG */ 782 | 783 | @-moz-keyframes bg { 784 | 0% { 785 | -moz-transform: translate3d(0,0,0); 786 | -webkit-transform: translate3d(0,0,0); 787 | -ms-transform: translate3d(0,0,0); 788 | transform: translate3d(0,0,0); 789 | } 790 | 791 | 100% { 792 | -moz-transform: translate3d(-750px,0,0); 793 | -webkit-transform: translate3d(-750px,0,0); 794 | -ms-transform: translate3d(-750px,0,0); 795 | transform: translate3d(-750px,0,0); 796 | } 797 | 798 | } 799 | 800 | @-webkit-keyframes bg { 801 | 0% { 802 | -moz-transform: translate3d(0,0,0); 803 | -webkit-transform: translate3d(0,0,0); 804 | -ms-transform: translate3d(0,0,0); 805 | transform: translate3d(0,0,0); 806 | } 807 | 808 | 100% { 809 | -moz-transform: translate3d(-750px,0,0); 810 | -webkit-transform: translate3d(-750px,0,0); 811 | -ms-transform: translate3d(-750px,0,0); 812 | transform: translate3d(-750px,0,0); 813 | } 814 | } 815 | 816 | @-ms-keyframes bg { 817 | 0% { 818 | -moz-transform: translate3d(0,0,0); 819 | -webkit-transform: translate3d(0,0,0); 820 | -ms-transform: translate3d(0,0,0); 821 | transform: translate3d(0,0,0); 822 | } 823 | 824 | 100% { 825 | -moz-transform: translate3d(-750px,0,0); 826 | -webkit-transform: translate3d(-750px,0,0); 827 | -ms-transform: translate3d(-750px,0,0); 828 | transform: translate3d(-750px,0,0); 829 | } 830 | } 831 | 832 | @keyframes bg { 833 | 0% { 834 | -moz-transform: translate3d(0,0,0); 835 | -webkit-transform: translate3d(0,0,0); 836 | -ms-transform: translate3d(0,0,0); 837 | transform: translate3d(0,0,0); 838 | } 839 | 840 | 100% { 841 | -moz-transform: translate3d(-750px,0,0); 842 | -webkit-transform: translate3d(-750px,0,0); 843 | -ms-transform: translate3d(-750px,0,0); 844 | transform: translate3d(-750px,0,0); 845 | } 846 | } 847 | 848 | #bg { 849 | background-size: 750px auto; 850 | width: 2250px; 851 | } } 852 | 853 | /* Mobile */ 854 | 855 | @media screen and (max-width: 736px) { 856 | 857 | /* Basic */ 858 | 859 | body { 860 | min-width: 320px; 861 | } 862 | 863 | body, input, select, textarea { 864 | font-size: 11pt; 865 | } 866 | 867 | /* BG */ 868 | 869 | @-moz-keyframes bg { 870 | 0% { 871 | -moz-transform: translate3d(0,0,0); 872 | -webkit-transform: translate3d(0,0,0); 873 | -ms-transform: translate3d(0,0,0); 874 | transform: translate3d(0,0,0); 875 | } 876 | 877 | 100% { 878 | -moz-transform: translate3d(-300px,0,0); 879 | -webkit-transform: translate3d(-300px,0,0); 880 | -ms-transform: translate3d(-300px,0,0); 881 | transform: translate3d(-300px,0,0); 882 | } 883 | 884 | } 885 | 886 | @-webkit-keyframes bg { 887 | 0% { 888 | -moz-transform: translate3d(0,0,0); 889 | -webkit-transform: translate3d(0,0,0); 890 | -ms-transform: translate3d(0,0,0); 891 | transform: translate3d(0,0,0); 892 | } 893 | 894 | 100% { 895 | -moz-transform: translate3d(-300px,0,0); 896 | -webkit-transform: translate3d(-300px,0,0); 897 | -ms-transform: translate3d(-300px,0,0); 898 | transform: translate3d(-300px,0,0); 899 | } 900 | } 901 | 902 | @-ms-keyframes bg { 903 | 0% { 904 | -moz-transform: translate3d(0,0,0); 905 | -webkit-transform: translate3d(0,0,0); 906 | -ms-transform: translate3d(0,0,0); 907 | transform: translate3d(0,0,0); 908 | } 909 | 910 | 100% { 911 | -moz-transform: translate3d(-300px,0,0); 912 | -webkit-transform: translate3d(-300px,0,0); 913 | -ms-transform: translate3d(-300px,0,0); 914 | transform: translate3d(-300px,0,0); 915 | } 916 | } 917 | 918 | @keyframes bg { 919 | 0% { 920 | -moz-transform: translate3d(0,0,0); 921 | -webkit-transform: translate3d(0,0,0); 922 | -ms-transform: translate3d(0,0,0); 923 | transform: translate3d(0,0,0); 924 | } 925 | 926 | 100% { 927 | -moz-transform: translate3d(-300px,0,0); 928 | -webkit-transform: translate3d(-300px,0,0); 929 | -ms-transform: translate3d(-300px,0,0); 930 | transform: translate3d(-300px,0,0); 931 | } 932 | } 933 | 934 | #bg { 935 | background-size: 300px auto; 936 | width: 900px; 937 | } 938 | 939 | /* Header */ 940 | 941 | #header h1 { 942 | font-size: 2.5em; 943 | } 944 | 945 | #header p { 946 | font-size: 1em; 947 | } 948 | 949 | #header nav { 950 | font-size: 1em; 951 | } 952 | 953 | #header nav a:hover { 954 | font-size: 1em; 955 | } 956 | 957 | #header nav a:active { 958 | font-size: 1em; 959 | } } 960 | 961 | /* Mobile (Portrait) */ 962 | 963 | @media screen and (max-width: 480px) { 964 | 965 | /* BG */ 966 | 967 | @-moz-keyframes bg { 968 | 0% { 969 | -moz-transform: translate3d(0,0,0); 970 | -webkit-transform: translate3d(0,0,0); 971 | -ms-transform: translate3d(0,0,0); 972 | transform: translate3d(0,0,0); 973 | } 974 | 975 | 100% { 976 | -moz-transform: translate3d(-412.5px,0,0); 977 | -webkit-transform: translate3d(-412.5px,0,0); 978 | -ms-transform: translate3d(-412.5px,0,0); 979 | transform: translate3d(-412.5px,0,0); 980 | } 981 | 982 | } 983 | 984 | @-webkit-keyframes bg { 985 | 0% { 986 | -moz-transform: translate3d(0,0,0); 987 | -webkit-transform: translate3d(0,0,0); 988 | -ms-transform: translate3d(0,0,0); 989 | transform: translate3d(0,0,0); 990 | } 991 | 992 | 100% { 993 | -moz-transform: translate3d(-412.5px,0,0); 994 | -webkit-transform: translate3d(-412.5px,0,0); 995 | -ms-transform: translate3d(-412.5px,0,0); 996 | transform: translate3d(-412.5px,0,0); 997 | } 998 | } 999 | 1000 | @-ms-keyframes bg { 1001 | 0% { 1002 | -moz-transform: translate3d(0,0,0); 1003 | -webkit-transform: translate3d(0,0,0); 1004 | -ms-transform: translate3d(0,0,0); 1005 | transform: translate3d(0,0,0); 1006 | } 1007 | 1008 | 100% { 1009 | -moz-transform: translate3d(-412.5px,0,0); 1010 | -webkit-transform: translate3d(-412.5px,0,0); 1011 | -ms-transform: translate3d(-412.5px,0,0); 1012 | transform: translate3d(-412.5px,0,0); 1013 | } 1014 | } 1015 | 1016 | @keyframes bg { 1017 | 0% { 1018 | -moz-transform: translate3d(0,0,0); 1019 | -webkit-transform: translate3d(0,0,0); 1020 | -ms-transform: translate3d(0,0,0); 1021 | transform: translate3d(0,0,0); 1022 | } 1023 | 1024 | 100% { 1025 | -moz-transform: translate3d(-412.5px,0,0); 1026 | -webkit-transform: translate3d(-412.5px,0,0); 1027 | -ms-transform: translate3d(-412.5px,0,0); 1028 | transform: translate3d(-412.5px,0,0); 1029 | } 1030 | } 1031 | 1032 | #bg { 1033 | background-size: 412.5px auto; 1034 | width: 1237.5px; 1035 | } 1036 | 1037 | /* Header */ 1038 | 1039 | #header nav { 1040 | padding: 0 1em; 1041 | } } -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/website-template/html5-simple-personal-website/21d473ad6eee33c9118af420d6772abe436dd661/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/website-template/html5-simple-personal-website/21d473ad6eee33c9118af420d6772abe436dd661/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/website-template/html5-simple-personal-website/21d473ad6eee33c9118af420d6772abe436dd661/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/website-template/html5-simple-personal-website/21d473ad6eee33c9118af420d6772abe436dd661/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/website-template/html5-simple-personal-website/21d473ad6eee33c9118af420d6772abe436dd661/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/js/ie/PIE.htc: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 96 | 97 | -------------------------------------------------------------------------------- /assets/js/ie/html5shiv.js: -------------------------------------------------------------------------------- 1 | /* 2 | HTML5 Shiv v3.6.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed 3 | */ 4 | (function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag(); 5 | a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/\w+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x"; 6 | c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode|| 7 | "undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup main mark meter nav output progress section summary time video",version:"3.6.2",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment(); 8 | for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d #mq-test-1 { width: 42px; }',c.insertBefore(e,d),b=42===f.offsetWidth,c.removeChild(e),{matches:b,media:a}}}(a.document)}(this),function(a){"use strict";function b(){v(!0)}var c={};a.respond=c,c.update=function(){};var d=[],e=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}(),f=function(a,b){var c=e();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))},g=function(a){return a.replace(c.regex.minmaxwh,"").match(c.regex.other)};if(c.ajax=f,c.queue=d,c.unsupportedmq=g,c.regex={media:/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/gi,comments:/\/\*[^*]*\*+([^/][^*]*\*+)*\//gi,urls:/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,findStyles:/@media *([^\{]+)\{([\S\s]+?)$/,only:/(only\s+)?([a-zA-Z]+)\s?/,minw:/\(\s*min\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/,maxw:/\(\s*max\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/,minmaxwh:/\(\s*m(in|ax)\-(height|width)\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/gi,other:/\([^\)]*\)/g},c.mediaQueriesSupported=a.matchMedia&&null!==a.matchMedia("only all")&&a.matchMedia("only all").matches,!c.mediaQueriesSupported){var h,i,j,k=a.document,l=k.documentElement,m=[],n=[],o=[],p={},q=30,r=k.getElementsByTagName("head")[0]||l,s=k.getElementsByTagName("base")[0],t=r.getElementsByTagName("link"),u=function(){var a,b=k.createElement("div"),c=k.body,d=l.style.fontSize,e=c&&c.style.fontSize,f=!1;return b.style.cssText="position:absolute;font-size:1em;width:1em",c||(c=f=k.createElement("body"),c.style.background="none"),l.style.fontSize="100%",c.style.fontSize="100%",c.appendChild(b),f&&l.insertBefore(c,l.firstChild),a=b.offsetWidth,f?l.removeChild(c):c.removeChild(b),l.style.fontSize=d,e&&(c.style.fontSize=e),a=j=parseFloat(a)},v=function(b){var c="clientWidth",d=l[c],e="CSS1Compat"===k.compatMode&&d||k.body[c]||d,f={},g=t[t.length-1],p=(new Date).getTime();if(b&&h&&q>p-h)return a.clearTimeout(i),i=a.setTimeout(v,q),void 0;h=p;for(var s in m)if(m.hasOwnProperty(s)){var w=m[s],x=w.minw,y=w.maxw,z=null===x,A=null===y,B="em";x&&(x=parseFloat(x)*(x.indexOf(B)>-1?j||u():1)),y&&(y=parseFloat(y)*(y.indexOf(B)>-1?j||u():1)),w.hasquery&&(z&&A||!(z||e>=x)||!(A||y>=e))||(f[w.media]||(f[w.media]=[]),f[w.media].push(n[w.rules]))}for(var C in o)o.hasOwnProperty(C)&&o[C]&&o[C].parentNode===r&&r.removeChild(o[C]);o.length=0;for(var D in f)if(f.hasOwnProperty(D)){var E=k.createElement("style"),F=f[D].join("\n");E.type="text/css",E.media=D,r.insertBefore(E,g.nextSibling),E.styleSheet?E.styleSheet.cssText=F:E.appendChild(k.createTextNode(F)),o.push(E)}},w=function(a,b,d){var e=a.replace(c.regex.comments,"").replace(c.regex.keyframes,"").match(c.regex.media),f=e&&e.length||0;b=b.substring(0,b.lastIndexOf("/"));var h=function(a){return a.replace(c.regex.urls,"$1"+b+"$2$3")},i=!f&&d;b.length&&(b+="/"),i&&(f=1);for(var j=0;f>j;j++){var k,l,o,p;i?(k=d,n.push(h(a))):(k=e[j].match(c.regex.findStyles)&&RegExp.$1,n.push(RegExp.$2&&h(RegExp.$2))),o=k.split(","),p=o.length;for(var q=0;p>q;q++)l=o[q],g(l)||m.push({media:l.split("(")[0].match(c.regex.only)&&RegExp.$2||"all",rules:n.length-1,hasquery:l.indexOf("(")>-1,minw:l.match(c.regex.minw)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:l.match(c.regex.maxw)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}v()},x=function(){if(d.length){var b=d.shift();f(b.href,function(c){w(c,b.href,b.media),p[b.href]=!0,a.setTimeout(function(){x()},0)})}},y=function(){for(var b=0;b', '%3E'); 55 | $svg: str-replace($svg, '&', '%26'); 56 | $svg: str-replace($svg, '#', '%23'); 57 | $svg: str-replace($svg, '{', '%7B'); 58 | $svg: str-replace($svg, '}', '%7D'); 59 | $svg: str-replace($svg, ';', '%3B'); 60 | 61 | @return url("data:image/svg+xml;charset=utf8,#{$svg}"); 62 | 63 | } 64 | 65 | /// Initializes base flexgrid classes. 66 | /// @param {string} $vertical-align Vertical alignment of cells. 67 | /// @param {string} $horizontal-align Horizontal alignment of cells. 68 | @mixin flexgrid-base($vertical-align: null, $horizontal-align: null) { 69 | 70 | // Grid. 71 | @include vendor('display', 'flex'); 72 | @include vendor('flex-wrap', 'wrap'); 73 | 74 | // Vertical alignment. 75 | @if ($vertical-align == top) { 76 | @include vendor('align-items', 'flex-start'); 77 | } 78 | @else if ($vertical-align == bottom) { 79 | @include vendor('align-items', 'flex-end'); 80 | } 81 | @else if ($vertical-align == center) { 82 | @include vendor('align-items', 'center'); 83 | } 84 | @else { 85 | @include vendor('align-items', 'stretch'); 86 | } 87 | 88 | // Horizontal alignment. 89 | @if ($horizontal-align != null) { 90 | text-align: $horizontal-align; 91 | } 92 | 93 | // Cells. 94 | > * { 95 | @include vendor('flex-shrink', '1'); 96 | @include vendor('flex-grow', '0'); 97 | } 98 | 99 | } 100 | 101 | /// Sets up flexgrid columns. 102 | /// @param {integer} $columns Columns. 103 | @mixin flexgrid-columns($columns) { 104 | 105 | > * { 106 | $cell-width: 100% / $columns; 107 | width: #{$cell-width}; 108 | } 109 | 110 | } 111 | 112 | /// Sets up flexgrid gutters. 113 | /// @param {integer} $columns Columns. 114 | /// @param {number} $gutters Gutters. 115 | @mixin flexgrid-gutters($columns, $gutters) { 116 | 117 | // Apply padding. 118 | > * { 119 | $cell-width: 100% / $columns; 120 | 121 | padding: ($gutters * 0.5); 122 | width: $cell-width; 123 | } 124 | 125 | } 126 | 127 | /// Sets up flexgrid gutters (flush). 128 | /// @param {integer} $columns Columns. 129 | /// @param {number} $gutters Gutters. 130 | @mixin flexgrid-gutters-flush($columns, $gutters) { 131 | 132 | // Apply padding. 133 | > * { 134 | $cell-width: 100% / $columns; 135 | $cell-width-pad: $gutters / $columns; 136 | 137 | padding: ($gutters * 0.5); 138 | width: calc(#{$cell-width} + #{$cell-width-pad}); 139 | } 140 | 141 | // Clear top/bottom gutters. 142 | > :nth-child(-n + #{$columns}) { 143 | padding-top: 0; 144 | } 145 | 146 | > :nth-last-child(-n + #{$columns}) { 147 | padding-bottom: 0; 148 | } 149 | 150 | // Clear left/right gutters. 151 | > :nth-child(#{$columns}n + 1) { 152 | padding-left: 0; 153 | } 154 | 155 | > :nth-child(#{$columns}n) { 156 | padding-right: 0; 157 | } 158 | 159 | // Adjust widths of leftmost and rightmost cells. 160 | > :nth-child(#{$columns}n + 1), 161 | > :nth-child(#{$columns}n) { 162 | $cell-width: 100% / $columns; 163 | $cell-width-pad: ($gutters / $columns) - ($gutters / 2); 164 | 165 | width: calc(#{$cell-width} + #{$cell-width-pad}); 166 | } 167 | 168 | } 169 | 170 | /// Reset flexgrid gutters (flush only). 171 | /// Used to override a previous set of flexgrid gutter classes. 172 | /// @param {integer} $columns Columns. 173 | /// @param {number} $gutters Gutters. 174 | /// @param {integer} $prev-columns Previous columns. 175 | @mixin flexgrid-gutters-flush-reset($columns, $gutters, $prev-columns) { 176 | 177 | // Apply padding. 178 | > * { 179 | $cell-width: 100% / $prev-columns; 180 | $cell-width-pad: $gutters / $prev-columns; 181 | 182 | padding: ($gutters * 0.5); 183 | width: calc(#{$cell-width} + #{$cell-width-pad}); 184 | } 185 | 186 | // Clear top/bottom gutters. 187 | > :nth-child(-n + #{$prev-columns}) { 188 | padding-top: ($gutters * 0.5); 189 | } 190 | 191 | > :nth-last-child(-n + #{$prev-columns}) { 192 | padding-bottom: ($gutters * 0.5); 193 | } 194 | 195 | // Clear left/right gutters. 196 | > :nth-child(#{$prev-columns}n + 1) { 197 | padding-left: ($gutters * 0.5); 198 | } 199 | 200 | > :nth-child(#{$prev-columns}n) { 201 | padding-right: ($gutters * 0.5); 202 | } 203 | 204 | // Adjust widths of leftmost and rightmost cells. 205 | > :nth-child(#{$prev-columns}n + 1), 206 | > :nth-child(#{$prev-columns}n) { 207 | $cell-width: 100% / $columns; 208 | $cell-width-pad: $gutters / $columns; 209 | 210 | padding: ($gutters * 0.5); 211 | width: calc(#{$cell-width} + #{$cell-width-pad}); 212 | } 213 | 214 | } 215 | 216 | /// Adds debug styles to current flexgrid element. 217 | @mixin flexgrid-debug() { 218 | 219 | box-shadow: 0 0 0 1px red; 220 | 221 | > * { 222 | box-shadow: inset 0 0 0 1px blue; 223 | position: relative; 224 | 225 | > * { 226 | position: relative; 227 | box-shadow: inset 0 0 0 1px green; 228 | } 229 | } 230 | 231 | } 232 | 233 | /// Initializes the current element as a flexgrid. 234 | /// @param {integer} $columns Columns (optional). 235 | /// @param {number} $gutters Gutters (optional). 236 | /// @param {bool} $flush If true, clears padding around the very edge of the grid. 237 | @mixin flexgrid($settings: ()) { 238 | 239 | // Settings. 240 | 241 | // Debug. 242 | $debug: false; 243 | 244 | @if (map-has-key($settings, 'debug')) { 245 | $debug: map-get($settings, 'debug'); 246 | } 247 | 248 | // Vertical align. 249 | $vertical-align: null; 250 | 251 | @if (map-has-key($settings, 'vertical-align')) { 252 | $vertical-align: map-get($settings, 'vertical-align'); 253 | } 254 | 255 | // Horizontal align. 256 | $horizontal-align: null; 257 | 258 | @if (map-has-key($settings, 'horizontal-align')) { 259 | $horizontal-align: map-get($settings, 'horizontal-align'); 260 | } 261 | 262 | // Columns. 263 | $columns: null; 264 | 265 | @if (map-has-key($settings, 'columns')) { 266 | $columns: map-get($settings, 'columns'); 267 | } 268 | 269 | // Gutters. 270 | $gutters: 0; 271 | 272 | @if (map-has-key($settings, 'gutters')) { 273 | $gutters: map-get($settings, 'gutters'); 274 | } 275 | 276 | // Flush. 277 | $flush: true; 278 | 279 | @if (map-has-key($settings, 'flush')) { 280 | $flush: map-get($settings, 'flush'); 281 | } 282 | 283 | // Initialize base grid. 284 | @include flexgrid-base($vertical-align, $horizontal-align); 285 | 286 | // Debug? 287 | @if ($debug) { 288 | @include flexgrid-debug; 289 | } 290 | 291 | // Columns specified? 292 | @if ($columns != null) { 293 | 294 | // Initialize columns. 295 | @include flexgrid-columns($columns); 296 | 297 | // Gutters specified? 298 | @if ($gutters > 0) { 299 | 300 | // Flush gutters? 301 | @if ($flush) { 302 | 303 | // Initialize gutters (flush). 304 | @include flexgrid-gutters-flush($columns, $gutters); 305 | 306 | } 307 | 308 | // Otherwise ... 309 | @else { 310 | 311 | // Initialize gutters. 312 | @include flexgrid-gutters($columns, $gutters); 313 | 314 | } 315 | 316 | } 317 | 318 | } 319 | 320 | } 321 | 322 | /// Resizes a previously-initialized grid. 323 | /// @param {integer} $columns Columns. 324 | /// @param {number} $gutters Gutters (optional). 325 | /// @param {list} $reset A list of previously-initialized grid columns (only if $flush is true). 326 | /// @param {bool} $flush If true, clears padding around the very edge of the grid. 327 | @mixin flexgrid-resize($settings: ()) { 328 | 329 | // Settings. 330 | 331 | // Columns. 332 | $columns: 1; 333 | 334 | @if (map-has-key($settings, 'columns')) { 335 | $columns: map-get($settings, 'columns'); 336 | } 337 | 338 | // Gutters. 339 | $gutters: 0; 340 | 341 | @if (map-has-key($settings, 'gutters')) { 342 | $gutters: map-get($settings, 'gutters'); 343 | } 344 | 345 | // Previous columns. 346 | $prev-columns: false; 347 | 348 | @if (map-has-key($settings, 'prev-columns')) { 349 | $prev-columns: map-get($settings, 'prev-columns'); 350 | } 351 | 352 | // Flush. 353 | $flush: true; 354 | 355 | @if (map-has-key($settings, 'flush')) { 356 | $flush: map-get($settings, 'flush'); 357 | } 358 | 359 | // Resize columns. 360 | @include flexgrid-columns($columns); 361 | 362 | // Gutters specified? 363 | @if ($gutters > 0) { 364 | 365 | // Flush gutters? 366 | @if ($flush) { 367 | 368 | // Previous columns specified? 369 | @if ($prev-columns) { 370 | 371 | // Convert to list if it isn't one already. 372 | @if (type-of($prev-columns) != list) { 373 | $prev-columns: ($prev-columns); 374 | } 375 | 376 | // Step through list of previous columns and reset them. 377 | @each $x in $prev-columns { 378 | @include flexgrid-gutters-flush-reset($columns, $gutters, $x); 379 | } 380 | 381 | } 382 | 383 | // Resize gutters (flush). 384 | @include flexgrid-gutters-flush($columns, $gutters); 385 | 386 | } 387 | 388 | // Otherwise ... 389 | @else { 390 | 391 | // Resize gutters. 392 | @include flexgrid-gutters($columns, $gutters); 393 | 394 | } 395 | 396 | } 397 | 398 | } -------------------------------------------------------------------------------- /assets/sass/libs/_skel.scss: -------------------------------------------------------------------------------- 1 | // skel.scss v3.0.2-dev | (c) skel.io | MIT licensed */ 2 | 3 | // Vars. 4 | 5 | /// Breakpoints. 6 | /// @var {list} 7 | $breakpoints: () !global; 8 | 9 | /// Vendor prefixes. 10 | /// @var {list} 11 | $vendor-prefixes: ( 12 | '-moz-', 13 | '-webkit-', 14 | '-ms-', 15 | '' 16 | ); 17 | 18 | /// Properties that should be vendorized. 19 | /// @var {list} 20 | $vendor-properties: ( 21 | 'align-content', 22 | 'align-items', 23 | 'align-self', 24 | 'animation', 25 | 'animation-delay', 26 | 'animation-direction', 27 | 'animation-duration', 28 | 'animation-fill-mode', 29 | 'animation-iteration-count', 30 | 'animation-name', 31 | 'animation-play-state', 32 | 'animation-timing-function', 33 | 'appearance', 34 | 'backface-visibility', 35 | 'box-sizing', 36 | 'filter', 37 | 'flex', 38 | 'flex-basis', 39 | 'flex-direction', 40 | 'flex-flow', 41 | 'flex-grow', 42 | 'flex-shrink', 43 | 'flex-wrap', 44 | 'justify-content', 45 | 'object-fit', 46 | 'object-position', 47 | 'order', 48 | 'perspective', 49 | 'pointer-events', 50 | 'transform', 51 | 'transform-origin', 52 | 'transform-style', 53 | 'transition', 54 | 'transition-delay', 55 | 'transition-duration', 56 | 'transition-property', 57 | 'transition-timing-function', 58 | 'user-select' 59 | ); 60 | 61 | /// Values that should be vendorized. 62 | /// @var {list} 63 | $vendor-values: ( 64 | 'filter', 65 | 'flex', 66 | 'linear-gradient', 67 | 'radial-gradient', 68 | 'transform' 69 | ); 70 | 71 | // Functions. 72 | 73 | /// Removes a specific item from a list. 74 | /// @author Hugo Giraudel 75 | /// @param {list} $list List. 76 | /// @param {integer} $index Index. 77 | /// @return {list} Updated list. 78 | @function remove-nth($list, $index) { 79 | 80 | $result: null; 81 | 82 | @if type-of($index) != number { 83 | @warn "$index: #{quote($index)} is not a number for `remove-nth`."; 84 | } 85 | @else if $index == 0 { 86 | @warn "List index 0 must be a non-zero integer for `remove-nth`."; 87 | } 88 | @else if abs($index) > length($list) { 89 | @warn "List index is #{$index} but list is only #{length($list)} item long for `remove-nth`."; 90 | } 91 | @else { 92 | 93 | $result: (); 94 | $index: if($index < 0, length($list) + $index + 1, $index); 95 | 96 | @for $i from 1 through length($list) { 97 | 98 | @if $i != $index { 99 | $result: append($result, nth($list, $i)); 100 | } 101 | 102 | } 103 | 104 | } 105 | 106 | @return $result; 107 | 108 | } 109 | 110 | /// Replaces a substring within another string. 111 | /// @author Hugo Giraudel 112 | /// @param {string} $string String. 113 | /// @param {string} $search Substring. 114 | /// @param {string} $replace Replacement. 115 | /// @return {string} Updated string. 116 | @function str-replace($string, $search, $replace: '') { 117 | 118 | $index: str-index($string, $search); 119 | 120 | @if $index { 121 | @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace); 122 | } 123 | 124 | @return $string; 125 | 126 | } 127 | 128 | /// Replaces a substring within each string in a list. 129 | /// @param {list} $strings List of strings. 130 | /// @param {string} $search Substring. 131 | /// @param {string} $replace Replacement. 132 | /// @return {list} Updated list of strings. 133 | @function str-replace-all($strings, $search, $replace: '') { 134 | 135 | @each $string in $strings { 136 | $strings: set-nth($strings, index($strings, $string), str-replace($string, $search, $replace)); 137 | } 138 | 139 | @return $strings; 140 | 141 | } 142 | 143 | /// Gets a value from a map. 144 | /// @author Hugo Giraudel 145 | /// @param {map} $map Map. 146 | /// @param {string} $keys Key(s). 147 | /// @return {string} Value. 148 | @function val($map, $keys...) { 149 | 150 | @if nth($keys, 1) == null { 151 | $keys: remove-nth($keys, 1); 152 | } 153 | 154 | @each $key in $keys { 155 | $map: map-get($map, $key); 156 | } 157 | 158 | @return $map; 159 | 160 | } 161 | 162 | // Mixins. 163 | 164 | /// Sets the global box model. 165 | /// @param {string} $model Model (default is content). 166 | @mixin boxModel($model: 'content') { 167 | 168 | $x: $model + '-box'; 169 | 170 | *, *:before, *:after { 171 | -moz-box-sizing: #{$x}; 172 | -webkit-box-sizing: #{$x}; 173 | box-sizing: #{$x}; 174 | } 175 | 176 | } 177 | 178 | /// Wraps @content in a @media block using a given breakpoint. 179 | /// @param {string} $breakpoint Breakpoint. 180 | /// @param {map} $queries Additional queries. 181 | @mixin breakpoint($breakpoint: null, $queries: null) { 182 | 183 | $query: 'screen'; 184 | 185 | // Breakpoint. 186 | @if $breakpoint and map-has-key($breakpoints, $breakpoint) { 187 | $query: $query + ' and ' + map-get($breakpoints, $breakpoint); 188 | } 189 | 190 | // Queries. 191 | @if $queries { 192 | @each $k, $v in $queries { 193 | $query: $query + ' and (' + $k + ':' + $v + ')'; 194 | } 195 | } 196 | 197 | @media #{$query} { 198 | @content; 199 | } 200 | 201 | } 202 | 203 | /// Wraps @content in a @media block targeting a specific orientation. 204 | /// @param {string} $orientation Orientation. 205 | @mixin orientation($orientation) { 206 | @media screen and (orientation: #{$orientation}) { 207 | @content; 208 | } 209 | } 210 | 211 | /// Utility mixin for containers. 212 | /// @param {mixed} $width Width. 213 | @mixin containers($width) { 214 | 215 | // Locked? 216 | $lock: false; 217 | 218 | @if length($width) == 2 { 219 | $width: nth($width, 1); 220 | $lock: true; 221 | } 222 | 223 | // Modifiers. 224 | .container.\31 25\25 { width: 100%; max-width: $width * 1.25; min-width: $width; } 225 | .container.\37 5\25 { width: $width * 0.75; } 226 | .container.\35 0\25 { width: $width * 0.5; } 227 | .container.\32 5\25 { width: $width * 0.25; } 228 | 229 | // Main class. 230 | .container { 231 | @if $lock { 232 | width: $width !important; 233 | } 234 | @else { 235 | width: $width; 236 | } 237 | } 238 | 239 | } 240 | 241 | /// Utility mixin for grid. 242 | /// @param {list} $gutters Column and row gutters (default is 40px). 243 | /// @param {string} $breakpointName Optional breakpoint name. 244 | @mixin grid($gutters: 40px, $breakpointName: null) { 245 | 246 | // Gutters. 247 | @include grid-gutters($gutters); 248 | @include grid-gutters($gutters, \32 00\25, 2); 249 | @include grid-gutters($gutters, \31 50\25, 1.5); 250 | @include grid-gutters($gutters, \35 0\25, 0.5); 251 | @include grid-gutters($gutters, \32 5\25, 0.25); 252 | 253 | // Cells. 254 | $x: ''; 255 | 256 | @if $breakpointName { 257 | $x: '\\28' + $breakpointName + '\\29'; 258 | } 259 | 260 | .\31 2u#{$x}, .\31 2u\24#{$x} { width: 100%; clear: none; margin-left: 0; } 261 | .\31 1u#{$x}, .\31 1u\24#{$x} { width: 91.6666666667%; clear: none; margin-left: 0; } 262 | .\31 0u#{$x}, .\31 0u\24#{$x} { width: 83.3333333333%; clear: none; margin-left: 0; } 263 | .\39 u#{$x}, .\39 u\24#{$x} { width: 75%; clear: none; margin-left: 0; } 264 | .\38 u#{$x}, .\38 u\24#{$x} { width: 66.6666666667%; clear: none; margin-left: 0; } 265 | .\37 u#{$x}, .\37 u\24#{$x} { width: 58.3333333333%; clear: none; margin-left: 0; } 266 | .\36 u#{$x}, .\36 u\24#{$x} { width: 50%; clear: none; margin-left: 0; } 267 | .\35 u#{$x}, .\35 u\24#{$x} { width: 41.6666666667%; clear: none; margin-left: 0; } 268 | .\34 u#{$x}, .\34 u\24#{$x} { width: 33.3333333333%; clear: none; margin-left: 0; } 269 | .\33 u#{$x}, .\33 u\24#{$x} { width: 25%; clear: none; margin-left: 0; } 270 | .\32 u#{$x}, .\32 u\24#{$x} { width: 16.6666666667%; clear: none; margin-left: 0; } 271 | .\31 u#{$x}, .\31 u\24#{$x} { width: 8.3333333333%; clear: none; margin-left: 0; } 272 | 273 | .\31 2u\24#{$x} + *, 274 | .\31 1u\24#{$x} + *, 275 | .\31 0u\24#{$x} + *, 276 | .\39 u\24#{$x} + *, 277 | .\38 u\24#{$x} + *, 278 | .\37 u\24#{$x} + *, 279 | .\36 u\24#{$x} + *, 280 | .\35 u\24#{$x} + *, 281 | .\34 u\24#{$x} + *, 282 | .\33 u\24#{$x} + *, 283 | .\32 u\24#{$x} + *, 284 | .\31 u\24#{$x} + * { 285 | clear: left; 286 | } 287 | 288 | .\-11u#{$x} { margin-left: 91.6666666667% } 289 | .\-10u#{$x} { margin-left: 83.3333333333% } 290 | .\-9u#{$x} { margin-left: 75% } 291 | .\-8u#{$x} { margin-left: 66.6666666667% } 292 | .\-7u#{$x} { margin-left: 58.3333333333% } 293 | .\-6u#{$x} { margin-left: 50% } 294 | .\-5u#{$x} { margin-left: 41.6666666667% } 295 | .\-4u#{$x} { margin-left: 33.3333333333% } 296 | .\-3u#{$x} { margin-left: 25% } 297 | .\-2u#{$x} { margin-left: 16.6666666667% } 298 | .\-1u#{$x} { margin-left: 8.3333333333% } 299 | 300 | } 301 | 302 | /// Utility mixin for grid. 303 | /// @param {list} $gutters Gutters. 304 | /// @param {string} $class Optional class name. 305 | /// @param {integer} $multiplier Multiplier (default is 1). 306 | @mixin grid-gutters($gutters, $class: null, $multiplier: 1) { 307 | 308 | // Expand gutters if it's not a list. 309 | @if length($gutters) == 1 { 310 | $gutters: ($gutters, 0); 311 | } 312 | 313 | // Get column and row gutter values. 314 | $c: nth($gutters, 1); 315 | $r: nth($gutters, 2); 316 | 317 | // Get class (if provided). 318 | $x: ''; 319 | 320 | @if $class { 321 | $x: '.' + $class; 322 | } 323 | 324 | // Default. 325 | .row#{$x} > * { padding: ($r * $multiplier) 0 0 ($c * $multiplier); } 326 | .row#{$x} { margin: ($r * $multiplier * -1) 0 -1px ($c * $multiplier * -1); } 327 | 328 | // Uniform. 329 | .row.uniform#{$x} > * { padding: ($c * $multiplier) 0 0 ($c * $multiplier); } 330 | .row.uniform#{$x} { margin: ($c * $multiplier * -1) 0 -1px ($c * $multiplier * -1); } 331 | 332 | } 333 | 334 | /// Wraps @content in vendorized keyframe blocks. 335 | /// @param {string} $name Name. 336 | @mixin keyframes($name) { 337 | 338 | @-moz-keyframes #{$name} { @content; } 339 | @-webkit-keyframes #{$name} { @content; } 340 | @-ms-keyframes #{$name} { @content; } 341 | @keyframes #{$name} { @content; } 342 | 343 | } 344 | 345 | /// 346 | /// Sets breakpoints. 347 | /// @param {map} $x Breakpoints. 348 | /// 349 | @mixin skel-breakpoints($x: ()) { 350 | $breakpoints: $x !global; 351 | } 352 | 353 | /// 354 | /// Initializes layout module. 355 | /// @param {map} config Config. 356 | /// 357 | @mixin skel-layout($config: ()) { 358 | 359 | // Config. 360 | $configPerBreakpoint: (); 361 | 362 | $z: map-get($config, 'breakpoints'); 363 | 364 | @if $z { 365 | $configPerBreakpoint: $z; 366 | } 367 | 368 | // Reset. 369 | $x: map-get($config, 'reset'); 370 | 371 | @if $x { 372 | 373 | /* Reset */ 374 | 375 | @include reset($x); 376 | 377 | } 378 | 379 | // Box model. 380 | $x: map-get($config, 'boxModel'); 381 | 382 | @if $x { 383 | 384 | /* Box Model */ 385 | 386 | @include boxModel($x); 387 | 388 | } 389 | 390 | // Containers. 391 | $containers: map-get($config, 'containers'); 392 | 393 | @if $containers { 394 | 395 | /* Containers */ 396 | 397 | .container { 398 | margin-left: auto; 399 | margin-right: auto; 400 | } 401 | 402 | // Use default is $containers is just "true". 403 | @if $containers == true { 404 | $containers: 960px; 405 | } 406 | 407 | // Apply base. 408 | @include containers($containers); 409 | 410 | // Apply per-breakpoint. 411 | @each $name in map-keys($breakpoints) { 412 | 413 | // Get/use breakpoint setting if it exists. 414 | $x: map-get($configPerBreakpoint, $name); 415 | 416 | // Per-breakpoint config exists? 417 | @if $x { 418 | $y: map-get($x, 'containers'); 419 | 420 | // Setting exists? Use it. 421 | @if $y { 422 | $containers: $y; 423 | } 424 | 425 | } 426 | 427 | // Create @media block. 428 | @media screen and #{map-get($breakpoints, $name)} { 429 | @include containers($containers); 430 | } 431 | 432 | } 433 | 434 | } 435 | 436 | // Grid. 437 | $grid: map-get($config, 'grid'); 438 | 439 | @if $grid { 440 | 441 | /* Grid */ 442 | 443 | // Use defaults if $grid is just "true". 444 | @if $grid == true { 445 | $grid: (); 446 | } 447 | 448 | // Sub-setting: Gutters. 449 | $grid-gutters: 40px; 450 | $x: map-get($grid, 'gutters'); 451 | 452 | @if $x { 453 | $grid-gutters: $x; 454 | } 455 | 456 | // Rows. 457 | .row { 458 | border-bottom: solid 1px transparent; 459 | -moz-box-sizing: border-box; 460 | -webkit-box-sizing: border-box; 461 | box-sizing: border-box; 462 | } 463 | 464 | .row > * { 465 | float: left; 466 | -moz-box-sizing: border-box; 467 | -webkit-box-sizing: border-box; 468 | box-sizing: border-box; 469 | } 470 | 471 | .row:after, .row:before { 472 | content: ''; 473 | display: block; 474 | clear: both; 475 | height: 0; 476 | } 477 | 478 | .row.uniform > * > :first-child { 479 | margin-top: 0; 480 | } 481 | 482 | .row.uniform > * > :last-child { 483 | margin-bottom: 0; 484 | } 485 | 486 | // Gutters (0%). 487 | @include grid-gutters($grid-gutters, \30 \25, 0); 488 | 489 | // Apply base. 490 | @include grid($grid-gutters); 491 | 492 | // Apply per-breakpoint. 493 | @each $name in map-keys($breakpoints) { 494 | 495 | // Get/use breakpoint setting if it exists. 496 | $x: map-get($configPerBreakpoint, $name); 497 | 498 | // Per-breakpoint config exists? 499 | @if $x { 500 | $y: map-get($x, 'grid'); 501 | 502 | // Setting exists? 503 | @if $y { 504 | 505 | // Sub-setting: Gutters. 506 | $x: map-get($y, 'gutters'); 507 | 508 | @if $x { 509 | $grid-gutters: $x; 510 | } 511 | 512 | } 513 | 514 | } 515 | 516 | // Create @media block. 517 | @media screen and #{map-get($breakpoints, $name)} { 518 | @include grid($grid-gutters, $name); 519 | } 520 | 521 | } 522 | 523 | } 524 | 525 | } 526 | 527 | /// Resets browser styles. 528 | /// @param {string} $mode Mode (default is 'normalize'). 529 | @mixin reset($mode: 'normalize') { 530 | 531 | @if $mode == 'normalize' { 532 | 533 | // normalize.css v3.0.2 | MIT License | git.io/normalize 534 | html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0} 535 | 536 | } 537 | @else if $mode == 'full' { 538 | 539 | // meyerweb.com/eric/tools/css/reset v2.0 | 20110126 | License: none (public domain) 540 | html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}body{-webkit-text-size-adjust:none} 541 | 542 | } 543 | 544 | } 545 | 546 | /// Vendorizes a declaration's property and/or value(s). 547 | /// @param {string} $property Property. 548 | /// @param {mixed} $value String/list of value(s). 549 | @mixin vendor($property, $value) { 550 | 551 | // Determine if property should expand. 552 | $expandProperty: index($vendor-properties, $property); 553 | 554 | // Determine if value should expand (and if so, add '-prefix-' placeholder). 555 | $expandValue: false; 556 | 557 | @each $x in $value { 558 | @each $y in $vendor-values { 559 | @if $y == str-slice($x, 1, str-length($y)) { 560 | 561 | $value: set-nth($value, index($value, $x), '-prefix-' + $x); 562 | $expandValue: true; 563 | 564 | } 565 | } 566 | } 567 | 568 | // Expand property? 569 | @if $expandProperty { 570 | @each $vendor in $vendor-prefixes { 571 | #{$vendor}#{$property}: #{str-replace-all($value, '-prefix-', $vendor)}; 572 | } 573 | } 574 | 575 | // Expand just the value? 576 | @elseif $expandValue { 577 | @each $vendor in $vendor-prefixes { 578 | #{$property}: #{str-replace-all($value, '-prefix-', $vendor)}; 579 | } 580 | } 581 | 582 | // Neither? Treat them as a normal declaration. 583 | @else { 584 | #{$property}: #{$value}; 585 | } 586 | 587 | } -------------------------------------------------------------------------------- /assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- 1 | // Misc. 2 | $misc: ( 3 | bg: #348cb2 url("images/bg.jpg") bottom left, 4 | bg-width: 1500px 5 | ); 6 | 7 | // Duration. 8 | $duration: ( 9 | bg: 60s, 10 | wrapper: 3s, 11 | overlay: 1.5s, 12 | header: 1s, 13 | nav-icons: 0.5s 14 | ); 15 | 16 | // Size. 17 | $size: ( 18 | nav-icon-wrapper: 5.35em, 19 | nav-icon: 1.75em 20 | ); 21 | 22 | // Font. 23 | $font: ( 24 | ); 25 | 26 | // Palette. 27 | $palette: ( 28 | bg: #fff, 29 | fg: #fff, 30 | 31 | nav-icon: ( 32 | hover-bg: rgba(255,255,255,0.175), 33 | hover-fg: #fff, 34 | active-bg: rgba(255,255,255,0.35), 35 | active-fg: #fff 36 | ) 37 | ); -------------------------------------------------------------------------------- /assets/sass/main.scss: -------------------------------------------------------------------------------- 1 | @import 'libs/vars'; 2 | @import 'libs/functions'; 3 | @import 'libs/mixins'; 4 | @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,900"); 5 | @import url("font-awesome.min.css"); 6 | 7 | /* 8 | Aerial by HTML5 UP 9 | html5up.net | @ajlkn 10 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 11 | */ 12 | 13 | @import "libs/skel"; 14 | 15 | @include skel-breakpoints(( 16 | wide: '(max-width: 1680px)', 17 | normal: '(max-width: 1280px)', 18 | mobile: '(max-width: 736px)', 19 | mobilep: '(max-width: 480px)' 20 | )); 21 | 22 | @include skel-layout(( 23 | reset: 'full', 24 | boxModel: 'border' 25 | )); 26 | 27 | @mixin bg($width) { 28 | @include keyframes('bg') { 29 | 0% { @include vendor('transform', 'translate3d(0,0,0)'); } 30 | 100% { @include vendor('transform', 'translate3d(#{$width * -1},0,0)'); } 31 | } 32 | 33 | #bg { 34 | background-size: $width auto; 35 | width: ($width * 3); 36 | } 37 | } 38 | 39 | $delay-wrapper: _duration(wrapper) - 1s; 40 | $delay-overlay: $delay-wrapper - 0.5s; 41 | $delay-header: $delay-overlay + _duration(overlay) - 0.75s; 42 | $delay-nav-icons: $delay-header + _duration(header) - 1s; 43 | $delay-nav-icon: 0.25s; 44 | 45 | /* Basic */ 46 | 47 | body, input, select, textarea { 48 | color: _palette(fg); 49 | font-family: 'Source Sans Pro', sans-serif; 50 | font-size: 15pt; 51 | font-weight: 300 !important; 52 | letter-spacing: -0.025em; 53 | line-height: 1.75em; 54 | } 55 | 56 | body { 57 | background: _palette(bg); 58 | overflow: hidden; 59 | 60 | &.loading{ 61 | * { 62 | @include vendor('animation', 'none !important'); 63 | } 64 | } 65 | } 66 | 67 | a { 68 | @include vendor('transition', 'border-color 0.2s ease-in-out'); 69 | border-bottom: dotted 1px; 70 | color: inherit; 71 | outline: 0; 72 | text-decoration: none; 73 | 74 | &:hover { 75 | border-color: transparent; 76 | } 77 | } 78 | 79 | /* Icon */ 80 | 81 | .icon { 82 | @include icon; 83 | position: relative; 84 | 85 | > .label { 86 | display: none; 87 | } 88 | } 89 | 90 | /* Wrapper */ 91 | 92 | @include keyframes('wrapper') { 93 | 0% { opacity: 0; } 94 | 100% { opacity: 1; } 95 | } 96 | 97 | #wrapper { 98 | @include vendor('animation', 'wrapper #{_duration(wrapper)} forwards'); 99 | height: 100%; 100 | left: 0; 101 | opacity: 0; 102 | position: fixed; 103 | top: 0; 104 | width: 100%; 105 | } 106 | 107 | /* BG */ 108 | 109 | #bg { 110 | @include vendor('animation', 'bg #{_duration(bg)} linear infinite'); 111 | @include vendor('backface-visibility', 'hidden'); 112 | @include vendor('transform', 'translate3d(0,0,0)'); 113 | 114 | /* Set your background with this */ 115 | background: _misc(bg); 116 | 117 | background-repeat: repeat-x; 118 | height: 100%; 119 | left: 0; 120 | opacity: 1; 121 | position: fixed; 122 | top: 0; 123 | } 124 | 125 | @include bg(_misc(bg-width) * 1.5); 126 | 127 | /* Overlay */ 128 | 129 | @include keyframes('overlay') { 130 | 0% { opacity: 0; } 131 | 100% { opacity: 1; } 132 | } 133 | 134 | #overlay { 135 | @include vendor('animation', 'overlay #{_duration(overlay)} #{$delay-overlay} forwards'); 136 | background-attachment: fixed, fixed; 137 | background-image: url('images/overlay-pattern.png'), url('images/overlay.svg'); 138 | background-position: top left, center center; 139 | background-repeat: repeat, no-repeat; 140 | background-size: auto, cover; 141 | height: 100%; 142 | left: 0; 143 | opacity: 0; 144 | position: fixed; 145 | top: 0; 146 | width: 100%; 147 | } 148 | 149 | /* Main */ 150 | 151 | #main { 152 | height: 100%; 153 | left: 0; 154 | position: fixed; 155 | text-align: center; 156 | top: 0; 157 | width: 100%; 158 | 159 | &:before { 160 | content: ''; 161 | display: inline-block; 162 | height: 100%; 163 | margin-right: 0; 164 | vertical-align: middle; 165 | width: 1px; 166 | } 167 | } 168 | 169 | /* Header */ 170 | 171 | @include keyframes('header') { 172 | 0% { @include vendor('transform', 'translate3d(0,1em,0)'); opacity: 0; } 173 | 100% { @include vendor('transform', 'translate3d(0,0,0)'); opacity: 1; } 174 | } 175 | 176 | @include keyframes('nav-icons') { 177 | 0% { @include vendor('transform', 'translate3d(0,1em,0)'); opacity: 0; } 178 | 100% { @include vendor('transform', 'translate3d(0,0,0)'); opacity: 1; } 179 | } 180 | 181 | #header { 182 | @include vendor('animation', 'header #{_duration(header)} #{$delay-header} forwards'); 183 | @include vendor('backface-visibility', 'hidden'); 184 | @include vendor('transform', 'translate3d(0,0,0)'); 185 | cursor: default; 186 | display: inline-block; 187 | opacity: 0; 188 | position: relative; 189 | text-align: center; 190 | top: -1em; 191 | vertical-align: middle; 192 | width: 90%; 193 | 194 | h1 { 195 | font-size: 4.35em; 196 | font-weight: 900; 197 | letter-spacing: -0.035em; 198 | line-height: 1em; 199 | } 200 | 201 | p { 202 | font-size: 1.25em; 203 | margin: 0.75em 0 0.25em 0; 204 | opacity: 0.75; 205 | } 206 | 207 | nav { 208 | margin: 1.5em 0 0 0; 209 | 210 | li { 211 | @include vendor('animation', 'nav-icons #{_duration(nav-icons)} ease-in-out forwards'); 212 | @include vendor('backface-visibility', 'hidden'); 213 | @include vendor('transform', 'translate3d(0,0,0)'); 214 | display: inline-block; 215 | height: _size(nav-icon-wrapper); 216 | line-height: _size(nav-icon-wrapper) * 1.1; 217 | opacity: 0; 218 | position: relative; 219 | top: 0; 220 | width: _size(nav-icon-wrapper); 221 | 222 | @for $x from 1 through 10 { 223 | &:nth-child(#{$x}) { 224 | @include vendor('animation-delay', ($delay-nav-icons + ($x * $delay-nav-icon)) + ''); 225 | } 226 | } 227 | } 228 | 229 | a { 230 | -webkit-tap-highlight-color: rgba(0,0,0,0); 231 | -webkit-touch-callout: none; 232 | border: 0; 233 | display: inline-block; 234 | 235 | &:before { 236 | @include vendor('transition', 'all 0.2s ease-in-out'); 237 | border-radius: 100%; 238 | border: solid 1px _palette(fg); 239 | display: block; 240 | font-size: _size(nav-icon); 241 | height: 2.5em; 242 | line-height: 2.5em; 243 | position: relative; 244 | text-align: center; 245 | top: 0; 246 | width: 2.5em; 247 | } 248 | 249 | &:hover { 250 | font-size: 1.1em; 251 | 252 | &:before { 253 | background-color: _palette(nav-icon, hover-bg); 254 | color: _palette(nav-icon, hover-fg); 255 | } 256 | } 257 | 258 | &:active { 259 | font-size: 0.95em; 260 | background: none; 261 | 262 | &:before { 263 | background-color: _palette(nav-icon, active-bg); 264 | color: _palette(nav-icon, active-fg); 265 | } 266 | } 267 | 268 | span { 269 | display: none; 270 | } 271 | } 272 | } 273 | } 274 | 275 | /* Footer */ 276 | 277 | #footer { 278 | @include vendor('background-image', 'linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5) 75%)'); 279 | bottom: 0; 280 | cursor: default; 281 | height: 6em; 282 | left: 0; 283 | line-height: 8em; 284 | position: absolute; 285 | text-align: center; 286 | width: 100%; 287 | } 288 | 289 | /* Wide */ 290 | 291 | @include breakpoint(wide) { 292 | 293 | /* Basic */ 294 | 295 | body, input, select, textarea { 296 | font-size: 13pt; 297 | } 298 | 299 | /* BG */ 300 | 301 | @include bg(_misc(bg-width)); 302 | 303 | } 304 | 305 | /* Normal */ 306 | 307 | @include breakpoint(normal) { 308 | 309 | /* Basic */ 310 | 311 | body, input, select, textarea { 312 | font-size: 12pt; 313 | } 314 | 315 | /* BG */ 316 | 317 | @include bg(_misc(bg-width) * 0.5); 318 | 319 | } 320 | 321 | /* Mobile */ 322 | 323 | @include breakpoint(mobile) { 324 | 325 | /* Basic */ 326 | 327 | body { 328 | min-width: 320px; 329 | } 330 | 331 | body, input, select, textarea { 332 | font-size: 11pt; 333 | } 334 | 335 | /* BG */ 336 | 337 | @include bg(_misc(bg-width) * 0.2); 338 | 339 | /* Header */ 340 | 341 | #header { 342 | h1 { 343 | font-size: 2.5em; 344 | } 345 | 346 | p { 347 | font-size: 1em; 348 | } 349 | 350 | nav { 351 | font-size: 1em; 352 | 353 | a { 354 | &:hover { 355 | font-size: 1em; 356 | } 357 | 358 | &:active { 359 | font-size: 1em; 360 | } 361 | } 362 | } 363 | } 364 | 365 | } 366 | 367 | /* Mobile (Portrait) */ 368 | 369 | @include breakpoint(mobilep) { 370 | 371 | /* BG */ 372 | 373 | @include bg(_misc(bg-width) * 0.275); 374 | 375 | /* Header */ 376 | 377 | #header { 378 | nav { 379 | padding: 0 1em; 380 | } 381 | } 382 | 383 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | İsmail Taşdelen 9 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | İsmail Taşdelen 36 | Security Researcher • Bug Bounty Hunter 37 | 38 | 39 | Twitter 41 | Linkedin 43 | YouTube 45 | Github 47 | Email 49 | 50 | 51 | 52 | 53 | 54 | 57 | 58 | 59 | 60 | 61 | 72 | 73 | 74 | 75 | --------------------------------------------------------------------------------
Security Researcher • Bug Bounty Hunter