From 9411f7bcedfd5cdbed583857810a2522f2fca81e Mon Sep 17 00:00:00 2001 From: Jonas Leder Date: Fri, 28 Jan 2022 23:49:12 +0100 Subject: [PATCH] switch to scss --- src/css/error.css | 167 ---- src/css/error.css.map | 1 - src/css/fas.css | 12 - src/css/fas.css.map | 1 - src/css/style.css | 903 ------------------ src/css/style.css.map | 1 - src/{styl/error.styl => scss/error.scss} | 0 .../lib/_colorMixer.scss} | 2 + .../lib/_comments.scss} | 2 + .../_content.styl => scss/lib/_content.scss} | 3 + .../lib/_cookieinfo.scss} | 3 + .../_footer.styl => scss/lib/_footer.scss} | 3 + .../_general.styl => scss/lib/_general.scss} | 3 + .../_header.styl => scss/lib/_header.scss} | 3 + .../lib/_home.styl => scss/lib/_home.scss} | 3 + .../lib/_menu.styl => scss/lib/_menu.scss} | 3 + .../lib/_menuMobile.scss} | 3 + .../_mobile.styl => scss/lib/_mobile.scss} | 3 + .../lib/_mobileSmall.scss} | 3 + .../lib/_normalize.scss} | 0 .../lib/_ntp.styl => scss/lib/_ntp.scss} | 3 + .../lib/_prism.styl => scss/lib/_prism.scss} | 0 .../lib/_pwgen.styl => scss/lib/_pwgen.scss} | 3 + .../lib/_sellingTable.scss} | 3 + src/scss/lib/_skills.scss | 6 + src/scss/lib/_var.scss | 16 + src/scss/style.scss | 20 + src/styl/lib/_basicLightbox.styl | 73 -- src/styl/lib/_skills.styl | 3 - src/styl/lib/_var.styl | 16 - src/styl/style.styl | 20 - 31 files changed, 85 insertions(+), 1197 deletions(-) delete mode 100644 src/css/error.css delete mode 100644 src/css/error.css.map delete mode 100644 src/css/fas.css delete mode 100644 src/css/fas.css.map delete mode 100644 src/css/style.css delete mode 100644 src/css/style.css.map rename src/{styl/error.styl => scss/error.scss} (100%) rename src/{styl/lib/_colorMixer.styl => scss/lib/_colorMixer.scss} (89%) rename src/{styl/lib/_comments.styl => scss/lib/_comments.scss} (96%) rename src/{styl/lib/_content.styl => scss/lib/_content.scss} (95%) rename src/{styl/lib/_cookieinfo.styl => scss/lib/_cookieinfo.scss} (95%) rename src/{styl/lib/_footer.styl => scss/lib/_footer.scss} (95%) rename src/{styl/lib/_general.styl => scss/lib/_general.scss} (96%) rename src/{styl/lib/_header.styl => scss/lib/_header.scss} (94%) rename src/{styl/lib/_home.styl => scss/lib/_home.scss} (87%) rename src/{styl/lib/_menu.styl => scss/lib/_menu.scss} (97%) rename src/{styl/lib/_menuMobile.styl => scss/lib/_menuMobile.scss} (96%) rename src/{styl/lib/_mobile.styl => scss/lib/_mobile.scss} (95%) rename src/{styl/lib/_mobileSmall.styl => scss/lib/_mobileSmall.scss} (80%) rename src/{styl/lib/_normalize.styl => scss/lib/_normalize.scss} (100%) rename src/{styl/lib/_ntp.styl => scss/lib/_ntp.scss} (88%) rename src/{styl/lib/_prism.styl => scss/lib/_prism.scss} (100%) rename src/{styl/lib/_pwgen.styl => scss/lib/_pwgen.scss} (85%) rename src/{styl/lib/_sellingTable.styl => scss/lib/_sellingTable.scss} (85%) create mode 100644 src/scss/lib/_skills.scss create mode 100644 src/scss/lib/_var.scss create mode 100644 src/scss/style.scss delete mode 100644 src/styl/lib/_basicLightbox.styl delete mode 100644 src/styl/lib/_skills.styl delete mode 100644 src/styl/lib/_var.styl delete mode 100644 src/styl/style.styl diff --git a/src/css/error.css b/src/css/error.css deleted file mode 100644 index a849367..0000000 --- a/src/css/error.css +++ /dev/null @@ -1,167 +0,0 @@ -body { - background: #1a2332; - overflow: hidden; -} -.terminal-window { - text-align: left; - width: 37.5rem; - height: 22.5rem; - border-radius: 0.625rem; - margin: auto; - position: relative; - top: 10.5rem; -} -.terminal-window header { - background: #e0e8f0; - height: 1.875rem; - border-radius: 0.5rem 0.5rem 0 0; - padding-left: 0.625rem; -} -.terminal-window header .button { - width: 0.75rem; - height: 0.75rem; - margin: 0.625rem 0.25rem 0 0; - display: inline-block; - border-radius: 0.5rem; -} -.terminal-window header .button.green { - background: #3bb662; -} -.terminal-window header .button.red { - background: #e75448; -} -.terminal-window header .button.yellow { - background: #e5c30f; -} -.terminal-window section.terminal { - color: #fff; - font-family: Menlo, Monaco, "Consolas", "Courier New", "Courier"; - font-size: 11pt; - background: #30353a; - padding: 0.625rem; - box-sizing: border-box; - position: absolute; - width: 100%; - top: 1.875rem; - bottom: 0; - overflow: auto; -} -.terminal-window section.terminal .typed-cursor { - opacity: 1; - -webkit-animation: blink 0.7s infinite; - -moz-animation: blink 0.7s infinite; - animation: blink 0.7s infinite; -} -@-webkit-keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-moz-keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -.terminal-data { - display: none; -} -.terminal-window .gray { - color: #808080; -} -.terminal-window .green { - color: #008000; -} -/*Media for mobile responsive viewing*/ -@media only screen and (max-width: 600px) { - .terminal-window { - text-align: left; - width: 37.5vmin; - height: 22.5vmin; - border-radius: 0.625vmin; - margin: auto; - position: relative; - top: 30.5vmin; - } - .terminal-window header { - background: #e0e8f0; - height: 1.875vmin; - border-radius: 0.5vmin 0.5vmin 0 0; - padding-left: 1vmin; - } - .terminal-window header .button { - width: 0.75vmin; - height: 0.75vmin; - margin: 0.625vmin 0.25vmin 0 0; - display: inline-block; - border-radius: 0.5vmin; - } - .terminal-window section.terminal { - color: #fff; - font-family: Menlo, Monaco, "Consolas", "Courier New", "Courier"; - font-size: 0.6875vmin; - background: #30353a; - padding: 0.625vmin; - box-sizing: border-box; - position: absolute; - width: 100%; - top: 1.875vmin; - bottom: 0; - overflow: auto; - } -} -@-moz-keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-webkit-keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-o-keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@keyframes blink { - 0% { - opacity: 1; - } - 50% { - opacity: 0; - } - 100% { - opacity: 1; - } -} diff --git a/src/css/error.css.map b/src/css/error.css.map deleted file mode 100644 index d7c37c8..0000000 --- a/src/css/error.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/error.scss","../../scss/_var.scss"],"names":[],"mappings":"AAEA,KACI,WCHS,QDIT,gBAGJ,iBACI,gBACA,cACA,eACA,sBACA,YACA,kBACA,YACA,wBACI,mBACA,gBACA,8BACA,qBAEA,gCACI,aACA,cACA,0BACA,qBACA,oBAEA,sCACI,mBAEJ,oCACI,mBAEJ,uCACI,mBAIZ,kCACI,WACA,4DACA,eACA,mBACA,gBACA,sBACA,kBACA,WACA,aACA,SACA,cAEA,gDACI,UACA,qCACA,kCACA,6BAKZ,iBACI,aACA,cACA,gBAEJ,yBACI,aACA,cACA,gBAEJ,sBACI,aACA,cACA,gBAGJ,4BAEI,uBACI,WAGJ,wBACI,YAKR,0CACI,iBACI,gBACA,eACA,gBACA,uBACA,YACA,kBACA,aAEA,wBACI,mBACA,iBACA,gCACA,mBAEA,gCACI,cACA,eACA,4BACA,qBACA,qBAGR,kCACI,WACA,4DACA,oBACA,mBACA,iBACA,sBACA,kBACA,WACA,cACA,SACA","file":"error.css"} \ No newline at end of file diff --git a/src/css/fas.css b/src/css/fas.css deleted file mode 100644 index 9af569b..0000000 --- a/src/css/fas.css +++ /dev/null @@ -1,12 +0,0 @@ -/*! -Fork Awesome 1.2.0 -License - https://forkaweso.me/Fork-Awesome/license - -Copyright 2018 Dave Gandy & Fork Awesome - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */@font-face{font-family:"ForkAwesome";src:url("../fonts/forkawesome-webfont.eot?v=1.2.0");src:url("../fonts/forkawesome-webfont.eot?#iefix&v=1.2.0") format("embedded-opentype"),url("../fonts/forkawesome-webfont.woff2?v=1.2.0") format("woff2"),url("../fonts/forkawesome-webfont.woff?v=1.2.0") format("woff"),url("../fonts/forkawesome-webfont.ttf?v=1.2.0") format("truetype"),url("../fonts/forkawesome-webfont.svg?v=1.2.0#forkawesomeregular") format("svg");font-weight:normal;font-style:normal;font-display:block}.fa{display:inline-block;font:normal normal normal 14px/1 ForkAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.3333333333em;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.2857142857em;text-align:center}.fa-ul{padding-left:0;margin-left:2.1428571429em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.1428571429em;width:2.1428571429em;top:.1428571429em;text-align:center}.fa-li.fa-lg{left:-1.8571428571em}.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:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-remove:before,.fa-close:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-gear:before,.fa-cog:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-rotate-right:before,.fa-repeat:before{content:""}.fa-sync:before,.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video:before,.fa-video-camera:before{content:""}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-warning:before,.fa-exclamation-triangle:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-gears:before,.fa-cogs:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell-o:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-globe-e:before{content:""}.fa-globe-w:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-community:before,.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-save:before,.fa-floppy-o:before{content:""}.fa-square:before{content:""}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus-g:before,.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-unsorted:before,.fa-sort:before{content:""}.fa-sort-down:before,.fa-sort-desc:before{content:""}.fa-sort-up:before,.fa-sort-asc:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-legal:before,.fa-gavel:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-flash:before,.fa-bolt:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-paste:before,.fa-clipboard:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell:before{content:""}.fa-coffee:before{content:""}.fa-utensils:before,.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-unlink:before,.fa-chain-broken:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:""}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:""}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:""}.fa-euro:before,.fa-eur:before{content:""}.fa-pound:before,.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-rupee:before,.fa-inr:before{content:""}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:""}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:""}.fa-won:before,.fa-krw:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-down:before,.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-up:before,.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-down:before,.fa-sort-amount-asc:before{content:""}.fa-sort-amount-up:before,.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-down:before,.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-up:before,.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-turkish-lira:before,.fa-try:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-institution:before,.fa-bank:before,.fa-university:before{content:""}.fa-mortar-board:before,.fa-graduation-cap:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-utensil-spoon:before,.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:""}.fa-file-zip-o:before,.fa-file-archive-o:before{content:""}.fa-file-sound-o:before,.fa-file-audio-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:""}.fa-ge:before,.fa-empire:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-send:before,.fa-paper-plane:before{content:""}.fa-send-o:before,.fa-paper-plane-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-heading:before,.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-closed-captioning:before,.fa-cc:before{content:""}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-gem:before,.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-hotel:before,.fa-bed:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-medium-square:before{content:""}.fa-yc:before,.fa-y-combinator:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-tv:before,.fa-television:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo-v:before,.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-phone-volume:before,.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:""}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-signing:before,.fa-sign-language:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-vcard:before,.fa-address-card:before{content:""}.fa-vcard-o:before,.fa-address-card-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.fa-mastodon:before{content:""}.fa-mastodon-alt:before{content:""}.fa-fork-circle:before,.fa-fork-awesome:before{content:""}.fa-peertube:before{content:""}.fa-diaspora:before{content:""}.fa-friendica:before{content:""}.fa-gnu-social:before{content:""}.fa-liberapay-square:before{content:""}.fa-liberapay:before{content:""}.fa-ssb:before,.fa-scuttlebutt:before{content:""}.fa-hubzilla:before{content:""}.fa-social-home:before{content:""}.fa-artstation:before{content:""}.fa-discord:before{content:""}.fa-discord-alt:before{content:""}.fa-patreon:before{content:""}.fa-snowdrift:before{content:""}.fa-activitypub:before{content:""}.fa-ethereum:before{content:""}.fa-keybase:before{content:""}.fa-shaarli:before{content:""}.fa-shaarli-o:before{content:""}.fa-cut-key:before,.fa-key-modern:before{content:""}.fa-xmpp:before{content:""}.fa-archive-org:before{content:""}.fa-freedombox:before{content:""}.fa-facebook-messenger:before{content:""}.fa-debian:before{content:""}.fa-mastodon-square:before{content:""}.fa-tipeee:before{content:""}.fa-react:before{content:""}.fa-dogmazic:before{content:""}.fa-zotero:before{content:""}.fa-nodejs:before{content:""}.fa-nextcloud:before{content:""}.fa-nextcloud-square:before{content:""}.fa-hackaday:before{content:""}.fa-laravel:before{content:""}.fa-signalapp:before{content:""}.fa-gnupg:before{content:""}.fa-php:before{content:""}.fa-ffmpeg:before{content:""}.fa-joplin:before{content:""}.fa-syncthing:before{content:""}.fa-inkscape:before{content:""}.fa-matrix-org:before{content:""}.fa-pixelfed:before{content:""}.fa-bootstrap:before{content:""}.fa-dev-to:before{content:""}.fa-hashnode:before{content:""}.fa-jirafeau:before{content:""}.fa-emby:before{content:""}.fa-wikidata:before{content:""}.fa-gimp:before{content:""}.fa-c:before{content:""}.fa-digitalocean:before{content:""}.fa-att:before{content:""}.fa-gitea:before{content:""}.fa-file-epub:before{content:""}.fa-python:before{content:""}.fa-archlinux:before{content:""}.fa-pleroma:before{content:""}.fa-unsplash:before{content:""}.fa-hackster:before{content:""}.fa-spell-check:before{content:""}.fa-moon:before{content:""}.fa-sun:before{content:""}.fa-f-droid:before{content:""}.fa-biometric:before{content:""}.fa-wire:before{content:""}.fa-tor-onion:before{content:""}.fa-volume-mute:before{content:""}.fa-bell-ringing:before{content:""}.fa-bell-ringing-o:before{content:""}.fa-hal:before{content:""}.fa-jupyter:before{content:""}.fa-julia:before{content:""}.fa-classicpress:before{content:""}.fa-classicpress-circle:before{content:""}.fa-open-collective:before{content:""}.fa-orcid:before{content:""}.fa-researchgate:before{content:""}.fa-funkwhale:before{content:""}.fa-askfm:before{content:""}.fa-blockstack:before{content:""}.fa-boardgamegeek:before{content:""}.fa-bunny:before{content:""}.fa-buymeacoffee:before{content:""}.fa-cc-by:before{content:""}.fa-creative-commons-alt:before,.fa-cc-cc:before{content:""}.fa-cc-nc-eu:before{content:""}.fa-cc-nc-jp:before{content:""}.fa-cc-nc:before{content:""}.fa-cc-nd:before{content:""}.fa-cc-pd:before{content:""}.fa-cc-remix:before{content:""}.fa-cc-sa:before{content:""}.fa-cc-share:before{content:""}.fa-cc-zero:before{content:""}.fa-conway-hacker:before,.fa-conway-glider:before{content:""}.fa-csharp:before{content:""}.fa-email-bulk:before{content:""}.fa-email-bulk-o:before{content:""}.fa-gnu:before{content:""}.fa-google-play:before{content:""}.fa-heroku:before{content:""}.fa-hassio:before,.fa-home-assistant:before{content:""}.fa-java:before{content:""}.fa-mariadb:before{content:""}.fa-markdown:before{content:""}.fa-mysql:before{content:""}.fa-nordcast:before{content:""}.fa-plume:before{content:""}.fa-postgresql:before{content:""}.fa-sass-alt:before{content:""}.fa-sass:before{content:""}.fa-skate:before{content:""}.fa-sketchfab:before{content:""}.fa-tex:before{content:""}.fa-textpattern:before{content:""}.fa-unity:before{content:""}.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} diff --git a/src/css/fas.css.map b/src/css/fas.css.map deleted file mode 100644 index 001fc0f..0000000 --- a/src/css/fas.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/Fork-Awesome/_main.scss","../../scss/Fork-Awesome/_path.scss","../../scss/Fork-Awesome/_core.scss","../../scss/Fork-Awesome/_larger.scss","../../scss/Fork-Awesome/_fixed-width.scss","../../scss/Fork-Awesome/_list.scss","../../scss/Fork-Awesome/_variables.scss","../../scss/Fork-Awesome/_bordered-pulled.scss","../../scss/Fork-Awesome/_animated.scss","../../scss/Fork-Awesome/_rotated-flipped.scss","../../scss/Fork-Awesome/_mixins.scss","../../scss/Fork-Awesome/_stacked.scss","../../scss/Fork-Awesome/_icons.scss","../../scss/Fork-Awesome/_screen-reader.scss"],"names":[],"mappings":"CAAA;AAAA;AAAA;;AAAA;;AAAA;;AAAA;;AAAA;AAAA,GCGA,WACE,0BACA,oDACA,6WAMA,mBACA,kBACA,mBCXF,IACE,qBACA,6CACA,kBACA,oBACA,mCACA,kCCLF,OACE,yBACA,kBACA,oBAEF,qBACA,qBACA,qBACA,qBCVA,OACE,qBACA,kBCDF,OACE,eACA,YCMoB,eDLpB,qBACA,4BAEF,OACE,kBACA,qBACA,MCDoB,eDEpB,kBACA,kBACA,aACE,qBEbJ,WACE,yBACA,wBACA,mBAGF,yBACA,2BAGE,mCACA,mCAIF,wBACA,sBAGE,gCACA,gCCpBF,SACE,6CACQ,qCAGV,UACE,+CACQ,uCAGV,2BACE,GACE,+BACQ,uBAEV,KACE,iCACQ,0BAIZ,mBACE,GACE,+BACQ,uBAEV,KACE,iCACQ,0BC5BZ,cCWE,sEACA,gCACI,4BACI,wBDbV,eCUE,sEACA,iCACI,6BACI,yBDZV,eCSE,sEACA,iCACI,6BACI,yBDVV,oBCcE,gFACA,+BACI,2BACI,uBDhBV,kBCaE,gFACA,+BACI,2BACI,uBDXV,gHAKE,YEfF,UACE,kBACA,qBACA,UACA,WACA,gBACA,sBAEF,0BACE,kBACA,OACA,WACA,kBAEF,iCACA,2BACA,kBLTsB,KMPtB,6BACA,6BACA,8BACA,kCACA,6BACA,4BACA,8BACA,4BACA,4BACA,gCACA,0BACA,+BACA,6BACA,oDAEkC,YAClC,mCACA,oCACA,iCACA,8BACA,+BACgC,YAChC,+BACA,4BACA,8BACA,+BACA,4BACA,gCACA,2CACA,yCACA,6BACA,qCACA,0CACmC,YACnC,mCACoC,YACpC,gCACA,4BACA,4BACA,kCACA,kCACA,mCACA,iCACA,8BACA,+BACA,2BACA,4BACA,4BACA,gCACA,6BACA,8BACA,4BACA,4BACA,8BACA,mCACA,kCACA,kCACA,oCACA,mCACA,qCACA,4BACA,qCACoC,YACpC,8BACA,yCACyC,YACzC,uDAEsC,YACtC,8BACA,kCACA,8BACA,4BACA,2CAC4C,YAC5C,sCACA,sCACA,8BACA,qCACA,qCACA,gCACA,4BACA,6BACA,4BACA,+BACA,oCACA,oCACA,6BACA,oCACA,qCACA,mCACA,oCACA,oCACA,oCACA,uCACA,mCACA,kCACA,sCACA,sCACA,2BACA,kCACA,mCACA,gCACA,kCACA,yCACkC,YAClC,8BACA,gCACA,4BACA,6BACA,gCACA,0CACA,4BACA,4BACA,4BACA,2BACA,iCACA,mDACiD,YACjD,6BACA,gCACA,8BACA,+BACA,8BACA,kCACA,oCACA,+BACA,qCACA,8BACA,mCACA,gCACA,gCACA,4CACsC,YACtC,sCACA,uCACA,oCACA,2BACA,iCACiC,YACjC,gCACA,mCACA,qCACA,iCACA,+BACA,gCACA,uCACA,kCACA,qCACA,+BACA,8BACA,qCACA,8BACA,+BACA,6BACA,gCACA,kCACA,oCACA,+BACA,0CACqC,YACrC,8BACA,8BACA,mCACA,+BACgC,YAChC,6BACA,gCACA,8BACA,mCACA,oCACA,mCACA,iCACA,mCACA,yCACA,0CACA,uCACA,yCACA,6BACA,+BACA,+BACA,8BACA,6BACA,8BACA,iCACA,kCACA,uDAEkC,YAClC,iCACiC,YACjC,6BACA,6BACA,mCACqC,YACrC,mCACoC,YACpC,iCACA,oCACqC,YACrC,8BACA,sDAEiC,YACjC,+BACA,+BACA,qCACA,iCACA,6BACA,6BACA,6BACA,iCACA,wCACA,0CACA,gDACwC,YACxC,6BACA,kCACA,gCACA,kCACA,mCACA,+BACA,oCACiC,YACjC,0CACsC,YACtC,uCACqC,YACrC,gCACA,gCACA,uCACiC,YACjC,kCACkC,YAClC,2CACuC,YACvC,iCACA,kCACA,iCACiC,YACjC,+BACA,gCACA,sCACsC,YACtC,mCACA,gCACA,sCACA,oCACA,+BACA,mCACA,gCACA,4BACA,8BACA,uCACoC,YACpC,mCACA,kCACA,kCACA,iCACA,8BACA,mCACA,4BACA,gCACA,mCACA,yCACA,0CACA,uCACA,yCACA,kCACA,mCACA,gCACA,kCACA,+BACA,8BACA,8BACA,0CACmC,YACnC,gCACA,kCACA,mCACA,+BACA,8BACA,uCACkC,YAClC,kCACA,gCACA,qCACA,+BACA,+BACA,6BACA,+BACA,kCACA,8BACA,sCACA,gCACA,4BACA,+CACsC,YACtC,4EAEwC,YACxC,sCACA,4BACA,iCACA,0CACyC,YACzC,gCACA,4BACA,mCACA,mCACA,iCACA,8BACA,oCACA,kCACA,wCACA,8BACA,kCACA,yCACA,8BACA,8BACA,2CACA,4CACA,yCACA,2CACA,6BACA,4BACA,8BACA,kCACA,gCACA,kCACA,kCACA,kCACA,mCACA,8BACA,oCACA,sCACA,gCACA,kCACA,oCACA,qCACA,4CACA,oCACA,+BACA,sDACgD,YAChD,kDAC8C,YAC9C,wDACiD,YACjD,+BACgC,YAChC,gCACgC,YAChC,iCACgC,YAChC,gCACgC,YAChC,4DAGgC,YAChC,kDAEgC,YAChC,8BACgC,YAChC,kCACgC,YAChC,4BACA,iCACA,qDAC2C,YAC3C,oDAC4C,YAC5C,uDAC4C,YAC5C,sDAC6C,YAC7C,yDAC6C,YAC7C,wDAC8C,YAC9C,iCACA,mCACA,sCACA,+BACA,4BACA,mCACA,oCACA,+BACA,sCACA,iCACA,8BACA,2BACA,iCACA,wCACA,8BACA,qCACA,uCACA,qCACA,uCACA,wCACA,6BACA,+BACA,+BACA,6BACA,gCACA,6BACA,kCACA,8BACA,8BACA,4BACA,sCACqC,YACrC,6BACA,8BACA,+BACA,2BACA,0BACA,6BACA,8BACA,iCACA,sCACA,4CACA,2CACA,sDACgD,YAChD,oCACA,kCACA,oCACA,uCACgC,YAChC,qCACA,qCACA,6BACA,uCACA,iCACA,8BACA,6DAEuC,YACvC,kDAC2C,YAC3C,6BACA,8BACA,8BACA,qCACA,0CACA,mCACA,iCACA,4BACA,8BACA,8BACA,gCACA,2BACA,gCACA,6BACA,2BACA,0CACkC,YAClC,4BACA,6BACA,+BACA,sCACA,6BACA,oCACA,+BACA,qCACgC,YAChC,+BACiC,YACjC,4BACA,+BACA,kCACA,kCACA,gCACA,kCACA,mCACA,oCACA,yCACA,0EAEyC,YACzC,gDAC2C,YAC3C,gDACyC,YACzC,gDACyC,YACzC,mCACA,4BACA,+BACA,gCACA,wGAIsC,YACtC,sCACA,qDAEkC,YAClC,gCACmC,YACnC,kCACA,2BACA,2EAEwC,YACxC,qCACA,0BACA,oCACmC,YACnC,uCACwC,YACxC,2CAC0C,YAC1C,+BACA,mCACA,qCACmC,YACnC,iCACA,+BACA,iCACA,wCACA,4BACA,6CACqC,YACrC,2BACA,kCACA,4BACA,kCACA,8BACA,4BACA,mCACA,4BACA,kCACA,8BACA,qCACA,+BACA,qCACA,mCACA,+BACA,iCACA,iCACA,kCACA,oCACA,6BACA,iCACA,0BACA,kCACA,mCACA,qCACA,kCACA,iCACA,kCACA,8BACA,qCACA,kCACA,iCACA,+BACA,2BACA,+BACA,iCACA,2CAC+B,YAC/B,mDAEgC,YAChC,gCACA,kCACA,sCACA,gCACA,gCACA,+BACA,8BACA,oCACA,mCACA,gCACA,iCACA,uCACA,kCACoC,YACpC,4BACA,mCACA,kCACA,mCACA,iCACA,6BACA,4BACA,+BACA,2CACwC,YACxC,uCACA,oCACA,mCACA,kCACA,mCACA,qCACA,qCACA,8BACA,kCACA,yCACA,mCACA,gCACA,8BACA,iCACA,kCACA,gCACgC,YAChC,+BACA,6BACA,8BACA,8BACA,qCACA,sCACyC,YACzC,qCACA,gCACA,oCACA,gEAEyC,YACzC,uDACmD,YACnD,6CACyC,YACzC,gDAC4C,YAC5C,8CAC0C,YAC1C,qCACA,gCACA,oCACA,sCACA,mCACA,qCACA,8BACA,sCACA,6BACA,qCACA,mCACA,kDAC4C,YAC5C,iDAC2C,YAC3C,gDAC0C,YAC1C,iCACA,8CACwC,YACxC,+CACyC,YACzC,uCACA,qCACA,oCACA,sCACA,oCACA,iCACA,kCACA,wCACA,0BACA,iCACA,mCACA,qCACA,4CACA,kCACA,mCACA,8BACA,8BACA,+BACA,6BACA,yCACA,oCACuC,YACvC,8BACA,6BACA,8BACA,uCACA,wCACA,wCACA,wCACA,gCACA,+BACA,iCACA,6BACA,2BACA,kCACA,oCACA,6BACA,oCACkC,YAClC,iCACA,iCACA,oCACA,4BACA,uCACA,gCACA,4BACA,oCACA,2BACA,oCACA,gCACA,8BACA,oCACA,sCACA,mCACA,qCACA,oCACA,uCACA,+BACA,iCACA,mCACA,+BACA,8BACA,kCACA,+BACA,8BACA,wCACA,sCACA,yCACA,6BACA,yCACA,wDACiD,YACjD,+BACA,mDACA,2EACgE,YAChE,+DAEiC,YACjC,6BACA,+BACA,4CAC0C,YAC1C,kCACA,8BACA,qCACA,gCACA,sCACA,uCACA,mCACA,6BACA,iCACA,8DACiD,YACjD,sCACyC,YACzC,mCACA,qCACA,uCACA,8BACA,oCACA,sCACA,yCACyC,YACzC,6CAC2C,YAC3C,mCACA,qCACA,8BACA,gCACA,8CACoC,YACpC,kDACsC,YACtC,6BACA,sCACA,gCACA,4EAE6C,YAC7C,+DACuD,YACvD,qDAC6C,YAC7C,wDACgD,YAChD,sDAC8C,YAC9C,8BACA,kDAEiC,YACjC,+BACA,uCACA,uCACA,sCACA,mDACyC,YACzC,uDAC2C,YAC3C,gCACA,4BACA,4BACA,4BACA,+BACA,+BACA,iCACA,mCACA,mCACA,kCACA,8BACA,gCACA,oCACA,+CACyC,YACzC,gCACA,gCACA,iCACA,kCACA,wCACA,iCACA,sCACwC,YACxC,gCACA,mCACA,kCACA,+BACA,mCACA,+BACA,iCACA,mCACA,gCACA,+BACA,+BACA,iCACA,yCACuC,YACvC,4BACA,mCACA,kCACA,0CACA,8BACA,uCACA,8BACA,6BACA,gCACA,8BACA,8BACA,iCACA,wCACA,gCACA,+BACA,iCACA,6BACA,2BACA,8BACA,8BACA,iCACA,gCACA,kCACA,gCACA,iCACA,8BACA,gCACA,gCACA,4BACA,gCACA,4BACA,yBACA,oCACA,2BACA,6BACA,iCACA,8BACA,iCACA,+BACA,gCACA,gCACA,mCACA,4BACA,2BACA,+BACA,iCACA,4BACA,iCACA,mCACA,oCACA,sCACA,2BACA,+BACA,6BACA,oCACA,2CACA,uCACA,6BACA,oCACA,iCACA,6BACA,kCACA,qCACA,6BACA,oCACA,6BACA,iDACkC,YAClC,gCACA,gCACA,6BACA,6BACA,6BACA,gCACA,6BACA,gCACA,+BACA,kDAC0C,YAC1C,8BACA,kCACA,oCACA,2BACA,mCACA,8BACA,4CAC2C,YAC3C,4BACA,+BACA,gCACA,6BACA,gCACA,6BACA,kCACA,gCACA,4BACA,6BACA,iCACA,2BACA,mCACA,6BCl6BA,SH8BE,kBACA,UACA,WACA,UACA,YACA,gBACA,sBACA,SAUA,mDAEE,gBACA,WACA,YACA,SACA,iBACA","file":"fas.css"} \ No newline at end of file diff --git a/src/css/style.css b/src/css/style.css deleted file mode 100644 index cf29909..0000000 --- a/src/css/style.css +++ /dev/null @@ -1,903 +0,0 @@ -html { - scroll-behavior: smooth; -} -body { - margin: 0; - background-color: #111721; - color: #b3b3b3; - font-family: 'Source Sans Pro', sans-serif; - width: calc(100% - 1px); - height: 100%; -} -button { - background-color: #20c5ad; - color: #000; - text-transform: uppercase; - border: 0; - padding: 5px; - cursor: pointer; - border-radius: 5px; - transition: background-color 0.2s linear; -} -button:hover, -button:active, -button:focus { - background-color: #1caf9a; - outline: none; -} -.spacer { - clear: both; -} -a { - padding: 0; - color: #20c5ad; - text-decoration: underline; - transition: color 0.2s; -} -a:HOVER { - color: #1caf9a; -} -.noStyleLink { - text-decoration: none; -} -h1 { - color: #fff; - text-transform: uppercase; -} -.red { - color: #f00; -} -.red a:hover { - color: #e60000; -} -.center { - text-align: center; -} -.left { - text-align: left; -} -.right { - text-align: left; -} -.block { - text-align: justify; - text-justify: auto; -} -img { - border-radius: 5px; -} -img.no-corner { - border-radius: 0; -} -#mainmenu { - position: absolute; - top: 20px; - right: 100px; - display: flex; - align-content: flex-end; - justify-content: flex-end; - width: 100%; -} -#mainmenu a { - color: #fff; - text-align: center; - padding: 14px 16px; - text-decoration: none; - display: inline-block; -} -.dropdown { - display: inline-block; - position: relative; -} -.dropdown-content { - position: absolute; - display: none; - width: max-content; - left: 50%; - transform: translateX(-50%); -} -.dropdown-content a { - background-color: #171e2b; - border-bottom: #111721 solid 2px; - width: 100%; - color: #b3b3b3; - transition: background-color 0.2s linear; -} -.dropdown-content a:first-of-type { - border-top-left-radius: 10px; - border-top-right-radius: 10px; -} -.dropdown-content a:last-of-type { - border-bottom: none; - border-bottom-left-radius: 10px; - border-bottom-right-radius: 10px; -} -.dropdown-content a:hover { - background-color: #111721; -} -.navLink:hover { - transform: scale(1.2); -} -.dropdown:hover .navLink { - transform: scale(1.2); -} -.dropdown:hover .dropdown-content { - display: block; -} -.menuSelected { - text-decoration: underline !important; -} -@media only screen and (max-width: 600px) { - #mainmenu { - right: 10px; - } -} -/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ -html { - line-height: 1.15; /* 1 */ - -webkit-text-size-adjust: 100%; /* 2 */ -} -body { - margin: 0; -} -main { - display: block; -} -h1 { - font-size: 2em; - margin: 0.67em 0; -} -hr { - box-sizing: content-box; /* 1 */ - height: 0; /* 1 */ - overflow: visible; /* 2 */ -} -pre { - font-family: monospace, monospace; /* 1 */ - font-size: 1em; /* 2 */ -} -a { - background-color: transparent; -} -abbr[title] { - border-bottom: none; /* 1 */ - text-decoration: underline; /* 2 */ - text-decoration: underline dotted; /* 2 */ -} -b, -strong { - font-weight: bolder; -} -code, -kbd, -samp { - font-family: monospace, monospace; /* 1 */ - font-size: 1em; /* 2 */ -} -small { - font-size: 80%; -} -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sub { - bottom: -0.25em; -} -sup { - top: -0.5em; -} -img { - border-style: none; -} -button, -input, -optgroup, -select, -textarea { - font-family: inherit; /* 1 */ - font-size: 100%; /* 1 */ - line-height: 1.15; /* 1 */ - margin: 0; /* 2 */ -} -button, -input { -/* 1 */ - overflow: visible; -} -button, -select { -/* 1 */ - text-transform: none; -} -button, -[type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; -} -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - border-style: none; - padding: 0; -} -button:-moz-focusring, -[type="button"]:-moz-focusring, -[type="reset"]:-moz-focusring, -[type="submit"]:-moz-focusring { - outline: 1px dotted ButtonText; -} -fieldset { - padding: 0.35em 0.75em 0.625em; -} -legend { - box-sizing: border-box; /* 1 */ - color: inherit; /* 2 */ - display: table; /* 1 */ - max-width: 100%; /* 1 */ - padding: 0; /* 3 */ - white-space: normal; /* 1 */ -} -progress { - vertical-align: baseline; -} -textarea { - overflow: auto; -} -[type="checkbox"], -[type="radio"] { - box-sizing: border-box; /* 1 */ - padding: 0; /* 2 */ -} -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} -[type="search"] { - -webkit-appearance: textfield; /* 1 */ - outline-offset: -2px; /* 2 */ -} -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} -::-webkit-file-upload-button { - -webkit-appearance: button; /* 1 */ - font: inherit; /* 2 */ -} -details { - display: block; -} -summary { - display: list-item; -} -template { - display: none; -} -[hidden] { - display: none; -} -.js-plotly-plot { - margin-bottom: 10px; -} -.ntpBanner { - margin-top: 10px; - display: block; - width: 100%; - padding: 10px; - background-color: #171e2b; - cursor: pointer; -} -.ntpContent { - width: 100%; - padding: 10px; - display: none; - background-color: #171e2b; -} -.visible { - display: block; -} -.header-wrapper *:before { - box-sizing: border-box; -} -.header-homepage { - background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)), url("/API/getFile.php?filename=img/bannerHomeCrop.webp"); - background-size: cover; - position: relative; - color: #fff; - z-index: 0; - padding-top: 160px; - padding-bottom: 360px; -} -.header-homepage h1 { - width: 100%; - text-align: center; - font-size: 3.3em; - font-weight: 600; -} -.header-separator-bottom { - position: absolute; - bottom: -1px; - left: 0; - width: 100%; -} -.header-separator-bottom svg { - display: block; - width: calc(100% + 1.3px); - height: 90px; - fill: #1a2332; -} -.header-wrapper { - position: relative; -} -.cookieinfo { - position: fixed; - left: 0; - right: 0; - height: auto; - min-height: 21px; - z-index: 2147483647; - line-height: 21px; - padding: 8px 18px; - font-family: verdana, arial, sans-serif; - font-size: 14px; - text-align: center; - bottom: 0; - opacity: 1; - background-color: #171e2b; - color: #b3b3b3; - border: 1px solid #20c5ad; -} -.cookieinfo-close { - float: right; - display: block; - padding: 5px 8px; - min-width: 100px; - margin-left: 5px; - border-radius: 5px; - cursor: pointer; - background-color: #20c5ad; - color: #000; - text-align: center; -} -.cookieinfo-close:HOVER { - background-color: #1caf9a; -} -.cookieinfo-text { - display: block; - padding: 5px 0 5px 0; -} -.cookieinfo-link { - text-decoration: none; - color: #20c5ad; -} -.cookieinfo-link:HOVER { - color: #1caf9a; -} -#newComment form input, -#newComment form textarea { - width: 100%; - background-color: #1a2332; - color: #b3b3b3; - border: solid #111721; - border-radius: 5px; - padding: 5px; -} -#newComment form input:focus, -#newComment form textarea:focus { - outline: none; -} -#newComment form textarea { - resize: vertical; -} -#newComment form input[type=submit] { - background-color: #20c5ad; - color: #000; - text-transform: uppercase; - padding: 15px; - font-size: 14px; - cursor: pointer; - outline: 0; - border: 0; - transition: background-color 0.2s linear; -} -#newComment form input[type=submit]:HOVER { - background-color: #1caf9a; -} -.comment { - display: flex; -} -.comment img { - margin-right: 10px; - width: 100px; - height: 100px; -} -.commentTitle { - margin-bottom: 5px; -} -.commentArticle { - display: flex; - justify-content: center; - flex-direction: column; - align-items: center; - min-height: 100px; -} -.commentText { - margin: 0; - width: 100%; -} -.emailBox { - display: inline; -} -.bigButton { - background-color: #20c5ad; - color: #000; - text-transform: uppercase; - padding: 15px; - font-size: 14px; - cursor: pointer; - outline: 0; - border: 0; - transition: background-color 0.2s linear; - width: 100%; - margin-top: 10px; -} -footer { - display: flex; - justify-content: center; - flex-direction: column; -} -footer a { - text-decoration: none; -} -footer #footerContent { - width: 70%; - display: flex; - justify-content: center; - margin: 0 auto; -} -footer #footerContent div { - border-right: #3d3d3d 1px solid; - padding: 20px; - flex-basis: 100%; -} -footer #footerContent div:last-child { - border-right: none; -} -footer #footerContent h3 { - margin-top: 0; -} -footer #footerContent a { - color: #b3b3b3; - transition: color 0.2s; -} -footer #footerContent a:hover { - color: #20c5ad; -} -footer #footerContent a svg { - fill: #b3b3b3; - max-width: 30px; - transition: fill 0.2s; - margin-left: 10px; - display: inline; -} -footer #footerContent a svg:hover { - fill: #20c5ad; -} -#blueBar { - height: 5px; - width: 100%; - background-color: #03a8f4; -} -#newestPost ul { - list-style-type: none; - padding-left: 0; -} -#newestPost li { - margin-bottom: 10px; -} -#content { - background-color: #1a2332; - padding: 20px 20%; -} -#content img { - max-width: 40%; -} -article { - border: 2px solid #20c5ad; - border-radius: 20px; - padding: 10px; - margin-right: 10px; - flex: 1 1 0; - width: 0; - box-sizing: border-box; -} -article h2 { - text-align: center; - margin: 0; -} -article:last-child { - margin-right: 0; -} -#blog { - width: 100%; - display: flex; - justify-content: center; - align-items: stretch; -} -#banner img { - max-width: 100% !important; -} -.breakWord { - word-wrap: break-word; -} -.clickSpan { - color: #20c5ad; - text-decoration: underline; - transition: background-color 0.2s linear; - cursor: pointer; -} -.clickSpan:hover { - color: #1caf9a; -} -#matomo-iframe { - border: 0; - height: 200px; - width: 600px; - background-color: #b3b3b3; -} -@media only screen and (max-width: 700px) { - #homeImage { - float: none; - } - #content { - padding-left: 10px; - padding-right: 10px; - } - #blog { - flex-direction: column; - } - article { - margin-bottom: 10px; - margin-right: 0; - } - #banner a { - display: block; - } - #banner img { - max-width: none; - width: 100%; - } - #newestPost { - display: none; - } - article { - width: 100%; - } - .h-captcha { - width: 100%; - } - .h-captcha iframe { - max-width: 100%; - } - .header-homepage { - padding-top: 50px; - padding-bottom: 100px; - } - .header-homepage h1 { - font-size: 2.2em; - } - #footerContent { - width: 100% !important; - display: block !important; - } - #footerContent div { - border-bottom: #3d3d3d 1px solid; - border-right: none !important; - } - #footerContent div:last-child { - border-bottom: none; - } -} -#burgermenu { - position: absolute; - top: 10px; - right: 10px; - display: none; - cursor: pointer; -} -#burgermenu .bar1, -#burgermenu .bar2, -#burgermenu .bar3 { - width: 35px; - height: 5px; - background-color: #b3b3b3; - margin: 6px 0; - transition: 0.4s; -} -#burgermenu.change .bar1 { - -webkit-transform: rotate(-45deg) translate(-9px, 6px); - transform: rotate(-45deg) translate(-9px, 6px); -} -#burgermenu.change .bar2 { - opacity: 0; -} -#burgermenu.change .bar3 { - -webkit-transform: rotate(45deg) translate(-8px, -8px); - transform: rotate(45deg) translate(-8px, -8px); -} -@media only screen and (max-width: 700px) { - #burgermenu { - display: inline-block; - } - .visible { - display: inline-grid !important; - } - .mainmenuContainer { - display: none; - text-align: left !important; - background-color: #171e2b; - width: 100% !important; - } - .mainmenuContainer a { - text-align: left !important; - border-bottom: #111721 solid 2px; - width: 100% !important; - } - .mainmenuContainer .dropdown-content { - display: block; - position: relative; - left: 0; - transform: none; - width: 100%; - } - .mainmenuContainer .dropdown-content a { - padding-left: 40px !important; - border-bottom: #111721 solid 2px; - } - #mainmenu { - display: block; - position: absolute; - top: 0; - left: 0; - right: 0; - } -} -@media only screen and (max-width: 300px) { - #footerContent { - flex-direction: column; - } - #footerContent div { - border-bottom: #3d3d3d 1px solid; - } -} -.abuseIpImg { - width: 391px; - background: #35c246 linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0.3) 50%, rgba(0,0,0,0.2) 51%, rgba(0,0,0,0)); - padding: 5px; -} -#banner a { - text-decoration: none; -} -#homeImage { - float: left; - margin-right: 20px; - box-shadow: 7px 7px #111721; -} -code[class*="language-"], -pre[class*="language-"] { - color: #ccc; - background: #111721; - font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; - font-size: 1em; - text-align: left; - white-space: pre; - word-spacing: normal; - word-break: normal; - word-wrap: normal; - line-height: 1.5; - -moz-tab-size: 4; - -o-tab-size: 4; - tab-size: 4; - -webkit-hyphens: none; - -moz-hyphens: none; - -ms-hyphens: none; - hyphens: none; -} -pre[class*="language-"] { - padding: 1em; - margin: 0.5em 0; - overflow: auto; -} -:not(pre) > code[class*="language-"] { - padding: 0.1em; - border-radius: 0.3em; - white-space: normal; -} -.token.comment, -.token.block-comment, -.token.prolog, -.token.doctype, -.token.cdata { - color: #999; -} -.token.punctuation { - color: #ccc; -} -.token.tag, -.token.attr-name, -.token.namespace, -.token.deleted { - color: #e2777a; -} -.token.function-name { - color: #6196cc; -} -.token.boolean, -.token.number, -.token.function { - color: #f08d49; -} -.token.property, -.token.class-name, -.token.constant, -.token.symbol { - color: #f8c555; -} -.token.selector, -.token.important, -.token.atrule, -.token.keyword, -.token.builtin { - color: #cc99cd; -} -.token.string, -.token.char, -.token.attr-value, -.token.regex, -.token.variable { - color: #7ec699; -} -.token.operator, -.token.entity, -.token.url { - color: #67cdcc; -} -.token.important, -.token.bold { - font-weight: bold; -} -.token.italic { - font-style: italic; -} -.token.entity { - cursor: help; -} -.token.inserted { - color: #008000; -} -pre[class*="language-"].line-numbers { - position: relative; - padding-left: 3.8em; - counter-reset: linenumber; -} -pre[class*="language-"].line-numbers > code { - position: relative; - white-space: inherit; -} -.line-numbers .line-numbers-rows { - position: absolute; - pointer-events: none; - top: 0; - font-size: 100%; - left: -3.8em; - width: 3em; /* works for line-numbers below 1000 lines */ - letter-spacing: -1px; - border-right: 1px solid #999; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.line-numbers-rows > span { - display: block; - counter-increment: linenumber; -} -.line-numbers-rows > span:before { - content: counter(linenumber); - color: #999; - display: block; - padding-right: 0.8em; - text-align: right; -} -.token a { - color: inherit; -} -jl-selling-table table { - border-collapse: collapse; - width: 100%; -} -jl-selling-table td, -jl-selling-table th { - text-align: left; - padding: 8px; -} -jl-selling-table tr:nth-child(even) { - background-color: #111721; -} -.skills { - max-height: 80px; -} -.basicLightbox { - position: fixed; - display: flex; - justify-content: center; - align-items: center; - top: 0; - left: 0; - width: 100%; - height: 100vh; - background: rgba(0,0,0,0.8); - opacity: 0.01; - transition: opacity 0.4s false ease false; - z-index: 1000 false; - will-change: opacity; -} -.basicLightbox--visible { - opacity: 1; -} -.basicLightbox__placeholder { - max-width: 100%; - transform: scale(0.9); - transition: transform 0.4s false ease false; - z-index: 1; - will-change: transform; -} -.basicLightbox__placeholder > img:first-child:last-child, -.basicLightbox__placeholder > video:first-child:last-child, -.basicLightbox__placeholder > iframe:first-child:last-child { - display: block; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - margin: auto; - max-width: 95%; - max-height: 95%; -} -.basicLightbox__placeholder > video:first-child:last-child, -.basicLightbox__placeholder > iframe:first-child:last-child { - pointer-events: auto; -} -.basicLightbox__placeholder > img:first-child:last-child, -.basicLightbox__placeholder > video:first-child:last-child { - width: auto; - height: auto; -} -.basicLightbox--img .basicLightbox__placeholder, -.basicLightbox--video .basicLightbox__placeholder, -.basicLightbox--iframe .basicLightbox__placeholder { - width: 100%; - height: 100%; - pointer-events: none; -} -.basicLightbox--visible .basicLightbox__placeholder { - transform: scale(1); -} -jl-pwgen input[type="text"] { - background-color: #1a2332; - color: #b3b3b3; - border: solid #111721; - border-radius: 5px; - padding: 5px; - width: 100%; -} -jl-pwgen input, -jl-pwgen button { - margin-top: 5px; -} diff --git a/src/css/style.css.map b/src/css/style.css.map deleted file mode 100644 index 7c4a62e..0000000 --- a/src/css/style.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sourceRoot":"","sources":["../../scss/_general.scss","../../scss/_colorMixer.scss","../../scss/_var.scss","../../scss/_menu.scss","../../scss/_normalize.scss","../../scss/_ntp.scss","../../scss/_header.scss","../../scss/_cookieinfo.scss","../../scss/_comments.scss","../../scss/_footer.scss","../../scss/_content.scss","../../scss/_mobile.scss","../../scss/_menuMobile.scss","../../scss/_mobileSmall.scss","../../scss/_home.scss","../../scss/_prism.scss","../../scss/_sellingTable.scss","../../node_modules/basiclightbox/src/styles/main.scss"],"names":[],"mappings":"AAAA,KACI,uBAGJ,KACI,SACA,iBCNW,QDOX,MENS,QFOT,yCACA,uBACA,YAGJ,OACI,iBEXW,QFYX,WACA,yBACA,SACA,YACA,eACA,kBACA,uCACA,wCAGI,iBCvBS,QDwBT,aAIR,QACI,WAGJ,EACI,UACA,MEjCW,QFkCX,0BACA,qBACA,QACI,MCtCS,QD0CjB,aACI,qBAGJ,GACI,ME/CU,KFgDV,yBAGJ,KACI,UAGJ,QACI,kBAGJ,MACI,gBAGJ,OACI,gBAGJ,OACI,mBACA,kBAGJ,IACI,cEjEkB,IFkElB,cACI,gBG7ER,UACI,kBACA,SACA,YACA,aACA,uBACA,yBACA,WACA,YACI,WACA,kBACA,kBACA,qBACA,qBAIR,UACI,qBACA,kBAGJ,kBACI,kBACA,aACA,kBACA,SACA,2BACA,oBACI,iBF5BO,QE6BP,gCACA,WACA,MD/BK,QCgCL,uCACA,kCACI,uBD1BY,KC2BZ,wBD3BY,KC6BhB,iCACI,mBACA,0BD/BY,KCgCZ,2BDhCY,KCkChB,0BACI,iBF5CG,QEiDf,eACI,qBAIA,yBACI,qBAEJ,kCACI,cAIR,cACI,qCAGJ,0CACI,UACI,YCpER,4EAUA,KACE,iBACA,8BAUF,KACE,SAOF,KACE,cAQF,GACE,cACA,eAWF,GACE,uBACA,SACA,iBAQF,IACE,gCACA,cAUF,EACE,6BAQF,YACE,mBACA,0BACA,iCAOF,SAEE,mBAQF,cAGE,gCACA,cAOF,MACE,cAQF,QAEE,cACA,cACA,kBACA,wBAGF,IACE,eAGF,IACE,WAUF,IACE,kBAWF,sCAKE,oBACA,eACA,iBACA,SAQF,aAEE,iBAQF,cAEE,oBAOF,gDAIE,0BAOF,wHAIE,kBACA,UAOF,4GAIE,8BAOF,SACE,2BAUF,OACE,sBACA,cACA,cACA,eACA,UACA,mBAOF,SACE,wBAOF,SACE,cAQF,6BAEE,sBACA,UAOF,kFAEE,YAQF,cACE,6BACA,oBAOF,yCACE,wBAQF,6BACE,0BACA,aAUF,QACE,cAOF,QACE,kBAUF,SACE,aAOF,SACE,aC3VF,gBACI,mBAGJ,WACI,gBACA,cACA,WACA,aACA,iBJRW,QISX,eAGJ,YACI,WACA,aACA,aACA,iBJhBW,QImBf,SACI,cCrBJ,yBACI,sBAEJ,iBACE,0HACA,sBACA,kBACA,WACA,UACA,kBACA,qBAEA,oBACE,WACA,kBACA,gBACA,gBAIJ,yBACE,kBACA,YACA,OACA,WACA,2CACE,yBACA,YACA,KJ5BS,QIgCb,gBACE,kBCjCF,YACE,eACA,OACA,QACA,YACA,gBACA,mBACA,iBACA,iBACA,qCACA,eACA,kBACA,SACA,UACA,iBNba,QMcb,MLdW,QKeX,yBAIF,kBACE,YACA,cACA,gBACA,gBACA,gBACA,kBACA,eACA,iBLzBa,QK0Bb,WACA,kBAEA,wBACE,iBN/Ba,QMmCjB,iBACE,cACA,oBAGF,iBACE,qBACA,MLzCa,QK2Cb,uBACE,MN7Ca,QOCb,iDACE,WACA,iBNLO,QMMP,MNLO,QMMP,qBACA,kBACA,YAGF,6DACE,aAGF,0BACE,gBAGF,oCACE,iBNlBS,QMmBT,WACA,yBACA,aACA,eACA,eACA,UACA,SACA,uCAEA,0CACE,iBP9BS,QOoCjB,SACE,aACA,aACE,kBACA,YACA,aAIJ,cACE,kBAGF,gBACE,aACA,uBACA,sBACA,mBACA,iBAGF,aACE,SACA,WAGF,UACE,eAGF,WACE,iBNlEa,QMmEb,WACA,yBACA,aACA,eACA,eACA,UACA,SACA,uCACA,WACA,gBC/EF,OACE,aACA,uBACA,sBACA,SACE,qBAIF,sBACE,UACA,aACA,uBACA,cAEA,0BACE,+BACA,aACA,gBAEA,qCACE,kBAIJ,yBACE,aAGF,wBACE,MP7BO,QO8BP,qBAEA,8BACE,MP/BO,QOmCX,4BACE,KPtCO,QOuCP,eACA,oBACA,iBACA,eAEA,kCACE,KP3CO,QOiDf,SACE,WACA,WACA,iBPnDyB,QOuDzB,eACE,qBACA,eAEF,eACE,mBChEJ,SACE,iBRDW,QQEX,iBACA,aACE,cAIJ,QACE,yBACA,mBACA,aACA,kBACA,WACA,QACA,sBACA,WACE,kBACA,SAGF,mBACE,eAIJ,MACE,WACA,aACA,uBACA,oBAGF,YACE,0BAEF,WACE,qBAGF,WACE,MRtCa,QQuCb,0BACA,uCACA,eAEA,iBACE,MT7Ca,QSiDjB,eACE,SACA,aACA,YACA,iBRtDW,QSDb,0CACE,WACE,WAEF,SACE,kBACA,mBAEF,MACE,sBAEF,QACE,mBACA,eAGA,UACE,cAEF,YACE,eACA,WAIJ,YACE,aAGF,QACE,WAEF,WACE,WACA,kBACE,eAIJ,iBACE,iBACA,qBAEA,oBACE,gBAIJ,eACE,sBACA,yBAEA,mBACE,gCACA,6BAEA,8BACE,oBCzDR,YACE,kBACA,SACA,WACA,aACA,eAEA,sDACE,WACA,WACA,iBVTS,QUUT,aACA,eAEF,yBACE,sDACA,8CAGF,mCAEA,yBACE,sDACA,8CAIJ,0CACE,YACE,qBAGF,SACE,+BAGF,mBACE,aAEA,2BACA,iBXvCW,QWwCX,sBAEA,qBACE,2BACA,gCACA,sBAGF,qCACE,cACA,kBACA,OACA,eACA,WACA,uCACE,6BACA,gCAIN,UACE,cACA,kBACA,MACA,OACA,SClEJ,0CACE,eACE,sBACA,mBACE,iCCJN,YACE,YACA,mIACA,YAGF,UACE,qBAGF,WACE,WACA,kBACA,2BCLD,6CAEC,WACA,WdXa,QcYb,kEACA,cACA,gBACA,gBACA,oBACA,kBACA,iBACA,gBAEA,gBACA,cACA,WAEA,qBACA,kBACA,iBACA,aAKD,sBACC,YACA,cACA,cAKD,iCACC,aACA,mBACA,mBAGD,8EAKC,WAGD,mBACC,WAGD,4DAIC,cAGD,qBACC,cAGD,6CAGC,cAGD,gEAIC,cAGD,6EAKC,cAGD,yEAKC,cAGD,yCAGC,cAGD,6BAEC,iBAED,cACC,kBAGD,cACC,YAGD,gBACC,YAGD,mCACC,kBACA,mBACA,yBAGD,wCACC,kBACA,oBAGD,iCACC,kBACA,oBACA,MACA,eACA,YACA,UACA,oBACA,4BAEA,yBACA,sBACA,qBACA,iBAIA,wBACC,cACA,6BAGA,+BACC,4BACA,WACA,cACA,mBACA,iBAGH,SACC,cClKE,uBACI,yBACA,WAGF,wCAEE,gBACA,YAGF,oCACE,iBfbO,QgBOf,eAEC,eACA,aACA,uBACA,mBACA,MACA,OACA,WACA,aACA,WAhB2B,eAiB3B,YACA,4BACA,QAlBuB,KAmBvB,oBAEA,wBACC,UAGD,4BACC,eACA,qBACA,8BACA,UACA,sBAEA,0KAGC,cACA,kBACA,MACA,QACA,SACA,OACA,YACA,cACA,eAGD,mHAEC,oBAGD,gHAEC,WACA,YAIF,qJAGC,WACA,YACA,oBAGD,oDACC","file":"style.css"} \ No newline at end of file diff --git a/src/styl/error.styl b/src/scss/error.scss similarity index 100% rename from src/styl/error.styl rename to src/scss/error.scss diff --git a/src/styl/lib/_colorMixer.styl b/src/scss/lib/_colorMixer.scss similarity index 89% rename from src/styl/lib/_colorMixer.styl rename to src/scss/lib/_colorMixer.scss index 48f43ef..7e7f17c 100644 --- a/src/styl/lib/_colorMixer.styl +++ b/src/scss/lib/_colorMixer.scss @@ -1,3 +1,5 @@ +@use "lib/_var"; + $back-color-2 = darken($back-color, $darker-color); $back-color-3 = darken($back-color, $darker-color-2); $accent-color-2 = darken($accent-color, $darker-color); \ No newline at end of file diff --git a/src/styl/lib/_comments.styl b/src/scss/lib/_comments.scss similarity index 96% rename from src/styl/lib/_comments.styl rename to src/scss/lib/_comments.scss index 7b07963..a75528a 100644 --- a/src/styl/lib/_comments.styl +++ b/src/scss/lib/_comments.scss @@ -1,3 +1,5 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; #newComment { form { diff --git a/src/styl/lib/_content.styl b/src/scss/lib/_content.scss similarity index 95% rename from src/styl/lib/_content.styl rename to src/scss/lib/_content.scss index 18736c9..03a9555 100644 --- a/src/styl/lib/_content.styl +++ b/src/scss/lib/_content.scss @@ -1,3 +1,6 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; + #content{ background-color: $back-color; padding: 20px 20%; diff --git a/src/styl/lib/_cookieinfo.styl b/src/scss/lib/_cookieinfo.scss similarity index 95% rename from src/styl/lib/_cookieinfo.styl rename to src/scss/lib/_cookieinfo.scss index 953c64f..322ce65 100644 --- a/src/styl/lib/_cookieinfo.styl +++ b/src/scss/lib/_cookieinfo.scss @@ -1,3 +1,6 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; + .cookieinfo{ position: fixed; left: 0; diff --git a/src/styl/lib/_footer.styl b/src/scss/lib/_footer.scss similarity index 95% rename from src/styl/lib/_footer.styl rename to src/scss/lib/_footer.scss index e25c33c..f33d9f2 100644 --- a/src/styl/lib/_footer.styl +++ b/src/scss/lib/_footer.scss @@ -1,3 +1,6 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; + footer{ display: flex; justify-content: center; diff --git a/src/styl/lib/_general.styl b/src/scss/lib/_general.scss similarity index 96% rename from src/styl/lib/_general.styl rename to src/scss/lib/_general.scss index 91dca9a..187ad75 100644 --- a/src/styl/lib/_general.styl +++ b/src/scss/lib/_general.scss @@ -1,3 +1,6 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; + html { scroll-behavior: smooth; } diff --git a/src/styl/lib/_header.styl b/src/scss/lib/_header.scss similarity index 94% rename from src/styl/lib/_header.styl rename to src/scss/lib/_header.scss index 433bc5a..a67d19c 100644 --- a/src/styl/lib/_header.styl +++ b/src/scss/lib/_header.scss @@ -1,3 +1,6 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; + .header-wrapper *:before { box-sizing: border-box; } diff --git a/src/styl/lib/_home.styl b/src/scss/lib/_home.scss similarity index 87% rename from src/styl/lib/_home.styl rename to src/scss/lib/_home.scss index a550e72..b302654 100644 --- a/src/styl/lib/_home.styl +++ b/src/scss/lib/_home.scss @@ -1,3 +1,6 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; + .abuseIpImg{ width: 391px; background: #35c246 linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.3) 50%, rgba(0,0,0,.2) 51%, rgba(0,0,0,0)); diff --git a/src/styl/lib/_menu.styl b/src/scss/lib/_menu.scss similarity index 97% rename from src/styl/lib/_menu.styl rename to src/scss/lib/_menu.scss index 51d0a8f..fdabffa 100644 --- a/src/styl/lib/_menu.styl +++ b/src/scss/lib/_menu.scss @@ -1,3 +1,6 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; + #mainmenu { position: absolute; top: 20px; diff --git a/src/styl/lib/_menuMobile.styl b/src/scss/lib/_menuMobile.scss similarity index 96% rename from src/styl/lib/_menuMobile.styl rename to src/scss/lib/_menuMobile.scss index 6d075cf..03372e5 100644 --- a/src/styl/lib/_menuMobile.styl +++ b/src/scss/lib/_menuMobile.scss @@ -1,3 +1,6 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; + #burgermenu { position: absolute; top: 10px; diff --git a/src/styl/lib/_mobile.styl b/src/scss/lib/_mobile.scss similarity index 95% rename from src/styl/lib/_mobile.styl rename to src/scss/lib/_mobile.scss index 819bb54..04f90e5 100644 --- a/src/styl/lib/_mobile.styl +++ b/src/scss/lib/_mobile.scss @@ -1,3 +1,6 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; + @media only screen and (max-width: $mobile-max-width) { #homeImage{ float: none; diff --git a/src/styl/lib/_mobileSmall.styl b/src/scss/lib/_mobileSmall.scss similarity index 80% rename from src/styl/lib/_mobileSmall.styl rename to src/scss/lib/_mobileSmall.scss index f9f912b..a0789a3 100644 --- a/src/styl/lib/_mobileSmall.styl +++ b/src/scss/lib/_mobileSmall.scss @@ -1,3 +1,6 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; + @media only screen and (max-width: $small-mobile-max-width) { #footerContent{ flex-direction: column; diff --git a/src/styl/lib/_normalize.styl b/src/scss/lib/_normalize.scss similarity index 100% rename from src/styl/lib/_normalize.styl rename to src/scss/lib/_normalize.scss diff --git a/src/styl/lib/_ntp.styl b/src/scss/lib/_ntp.scss similarity index 88% rename from src/styl/lib/_ntp.styl rename to src/scss/lib/_ntp.scss index 12fd0f2..826e879 100644 --- a/src/styl/lib/_ntp.styl +++ b/src/scss/lib/_ntp.scss @@ -1,3 +1,6 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; + .js-plotly-plot { margin-bottom: 10px; } diff --git a/src/styl/lib/_prism.styl b/src/scss/lib/_prism.scss similarity index 100% rename from src/styl/lib/_prism.styl rename to src/scss/lib/_prism.scss diff --git a/src/styl/lib/_pwgen.styl b/src/scss/lib/_pwgen.scss similarity index 85% rename from src/styl/lib/_pwgen.styl rename to src/scss/lib/_pwgen.scss index 57d6357..20cea82 100644 --- a/src/styl/lib/_pwgen.styl +++ b/src/scss/lib/_pwgen.scss @@ -1,3 +1,6 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; + jl-pwgen { input[type="text"] { background-color: #1a2332; diff --git a/src/styl/lib/_sellingTable.styl b/src/scss/lib/_sellingTable.scss similarity index 85% rename from src/styl/lib/_sellingTable.styl rename to src/scss/lib/_sellingTable.scss index 867ffab..4914411 100644 --- a/src/styl/lib/_sellingTable.styl +++ b/src/scss/lib/_sellingTable.scss @@ -1,3 +1,6 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; + jl-selling-table { table { border-collapse: collapse; diff --git a/src/scss/lib/_skills.scss b/src/scss/lib/_skills.scss new file mode 100644 index 0000000..a64e14e --- /dev/null +++ b/src/scss/lib/_skills.scss @@ -0,0 +1,6 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; + +.skills { + max-height: 80px; +} \ No newline at end of file diff --git a/src/scss/lib/_var.scss b/src/scss/lib/_var.scss new file mode 100644 index 0000000..1fa03fe --- /dev/null +++ b/src/scss/lib/_var.scss @@ -0,0 +1,16 @@ +$back-color: #1a2332; +$text-color: #b3b3b3; +$title-color: #fff; +$accent-color: #20c5ad; +$content-footer-div-color: #03A8F4; + +$darker-color: 5; +$darker-color-2: 2; + +$border-radius-sub-nav: 10px; +$border-radius-image: 5px; + +$mobile-max-width: 700px; +$small-mobile-max-width: 300px; + +$link-hover-animation-time: 0.2s; diff --git a/src/scss/style.scss b/src/scss/style.scss new file mode 100644 index 0000000..51bf231 --- /dev/null +++ b/src/scss/style.scss @@ -0,0 +1,20 @@ +@use "lib/_var"; +@use "lib/_colorMixer"; +@use "lib/_general"; +@use "lib/_menu"; +@use "lib/_normalize"; +@use "lib/_ntp"; +@use "lib/_header"; +@use "lib/_cookieinfo"; +@use "lib/_comments"; +@use "lib/_footer"; +@use "lib/_content"; +@use "lib/_mobile"; +@use "lib/_menuMobile"; +@use "lib/_mobileSmall"; +@use "lib/_home"; +@use "lib/_prism"; +@use "lib/_sellingTable"; +@use "lib/_skills"; +@use "lib/_basicLightbox" +@use "lib/_pwgen"; \ No newline at end of file diff --git a/src/styl/lib/_basicLightbox.styl b/src/styl/lib/_basicLightbox.styl deleted file mode 100644 index 5035fd3..0000000 --- a/src/styl/lib/_basicLightbox.styl +++ /dev/null @@ -1,73 +0,0 @@ -// Vars ---------------------------------------------------------------- // -$basicLightbox__background= rgba(0, 0, 0, .8); -$basicLightbox__zIndex= 1000 !default; -$basicLightbox__duration= .4s !default; -$basicLightbox__timing= ease !default; - -// basicLightbox ------------------------------------------------------- // -.basicLightbox { - - position: fixed; - display: flex; - justify-content: center; - align-items: center; - top: 0; - left: 0; - width: 100%; - height: 100vh; - background: $basicLightbox__background; - opacity: .01; // Start with .01 to avoid the repaint that happens from 0 to .01 - transition: opacity $basicLightbox__duration $basicLightbox__timing; - z-index: $basicLightbox__zIndex; - will-change: opacity; - - &--visible { - opacity: 1; - } - - &__placeholder { - max-width: 100%; - transform: scale(.9); - transition: transform $basicLightbox__duration $basicLightbox__timing; - z-index: 1; - will-change: transform; - - > img:first-child:last-child, - > video:first-child:last-child, - > iframe:first-child:last-child { - display: block; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - margin: auto; - max-width: 95%; - max-height: 95%; - } - - > video:first-child:last-child, - > iframe:first-child:last-child { - pointer-events: auto; - } - - > img:first-child:last-child, - > video:first-child:last-child { - width: auto; - height: auto; - } - } - - &--img &__placeholder, - &--video &__placeholder, - &--iframe &__placeholder { - width: 100%; - height: 100%; - pointer-events: none; - } - - &--visible &__placeholder { - transform: scale(1); - } - -} \ No newline at end of file diff --git a/src/styl/lib/_skills.styl b/src/styl/lib/_skills.styl deleted file mode 100644 index 2e697e6..0000000 --- a/src/styl/lib/_skills.styl +++ /dev/null @@ -1,3 +0,0 @@ -.skills { - max-height: 80px; -} \ No newline at end of file diff --git a/src/styl/lib/_var.styl b/src/styl/lib/_var.styl deleted file mode 100644 index 820bc09..0000000 --- a/src/styl/lib/_var.styl +++ /dev/null @@ -1,16 +0,0 @@ -$back-color= #1a2332; -$text-color= #b3b3b3; -$title-color= #fff; -$accent-color= #20c5ad; -$content-footer-div-color= #03A8F4; - -$darker-color= 5; -$darker-color-2= 2; - -$border-radius-sub-nav= 10px; -$border-radius-image= 5px; - -$mobile-max-width= 700px; -$small-mobile-max-width= 300px; - -$link-hover-animation-time= 0.2s; diff --git a/src/styl/style.styl b/src/styl/style.styl deleted file mode 100644 index 30042e5..0000000 --- a/src/styl/style.styl +++ /dev/null @@ -1,20 +0,0 @@ -@import "lib/_var"; -@import "lib/_colorMixer"; -@import "lib/_general"; -@import "lib/_menu"; -@import "lib/_normalize"; -@import "lib/_ntp"; -@import "lib/_header"; -@import "lib/_cookieinfo"; -@import "lib/_comments"; -@import "lib/_footer"; -@import "lib/_content"; -@import "lib/_mobile"; -@import "lib/_menuMobile"; -@import "lib/_mobileSmall"; -@import "lib/_home"; -@import "lib/_prism"; -@import "lib/_sellingTable"; -@import "lib/_skills"; -@import "lib/_basicLightbox" -@import "lib/_pwgen"; \ No newline at end of file