2020-04-16 17:30:06 +02:00
|
|
|
---
|
|
|
|
# Only the main Sass file needs front matter (the dashes are enough)
|
|
|
|
---
|
|
|
|
|
|
|
|
@charset "utf-8";
|
|
|
|
|
|
|
|
.author__urls.social-icons .svg-inline--fa,
|
|
|
|
.page__footer-follow .social-icons .svg-inline--fa {
|
|
|
|
color: rgba(102, 235, 97, 0.829) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Colors */
|
2020-04-18 01:45:17 +02:00
|
|
|
$background-color: #141010 !default;
|
2020-04-16 17:30:06 +02:00
|
|
|
$text-color: #fff6fbb9 !default;
|
2020-04-18 17:20:21 +02:00
|
|
|
$primary-color: #ff00ff !default;
|
2020-04-16 21:57:00 +02:00
|
|
|
$link-color: $primary-color !default;
|
2020-04-16 17:30:06 +02:00
|
|
|
$link-color-hover: mix(#fff, $link-color, 25%) !default;
|
|
|
|
$link-color-visited: mix(#000, $link-color, 25%) !default;
|
2020-04-18 01:45:17 +02:00
|
|
|
$code-background-color: mix(rgb(43, 39, 39), $background-color, 15%) !default;
|
|
|
|
$code-background-color-dark: mix(rgb(59, 54, 54), $background-color, 20%) !default;
|
|
|
|
|
2020-04-18 17:20:21 +02:00
|
|
|
/* Notices */
|
|
|
|
|
|
|
|
$success-color: #3fa63f !default;
|
|
|
|
$warning-color: #d67f05 !default;
|
|
|
|
$danger-color: #ff0000 !default;
|
|
|
|
$info-color: #3b9cba !default;
|
|
|
|
|
2020-04-18 01:45:17 +02:00
|
|
|
/* neon syntax highlighting (base16) */
|
|
|
|
$base00: #1a191a;
|
|
|
|
$base01: #e0e0e0;
|
|
|
|
$base02: #b4a6a6;
|
|
|
|
$base03: #928e8e;
|
|
|
|
$base04: #ccc2c2;
|
|
|
|
$base05: #bd6262;
|
|
|
|
$base06: #a74040;
|
|
|
|
$base07: #701b1b;
|
|
|
|
$base08: #ff0086;
|
|
|
|
$base09: #fd8900;
|
|
|
|
$base0a: #aba800;
|
|
|
|
$base0b: #00c918;
|
|
|
|
$base0c: #1faaaa;
|
|
|
|
$base0d: #3777e6;
|
|
|
|
$base0e: #ad00a1;
|
|
|
|
$base0f: #926e5c;
|
|
|
|
// base16-atelier-heath
|
|
|
|
// base16-synth-midnight-dark
|
|
|
|
// base16-summerfruit-dark
|
|
|
|
// base16-seti
|
|
|
|
// base16-outrun-dark (a bit bright)
|
|
|
|
// base16-material-darker
|
|
|
|
// base16-harmonic-dark
|
|
|
|
// base16-google-dark (little dark for my tastes)
|
|
|
|
// base16-default-dark (little dull)
|
|
|
|
// base16-classic-dark
|
|
|
|
// base16-brewer
|
|
|
|
|
|
|
|
// Hacking the syntax highlighting
|
|
|
|
.nb {
|
|
|
|
/* Name.Builtin */
|
|
|
|
color: $base0f !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.o {
|
|
|
|
/* Operator */
|
|
|
|
color: $base04 !important;
|
|
|
|
}
|
|
|
|
.n {
|
|
|
|
/* Name */
|
|
|
|
color: $base05 !important;
|
|
|
|
}
|
|
|
|
.p {
|
|
|
|
/* Punctuation */
|
|
|
|
color: #3ab469 !important;
|
|
|
|
}
|
|
|
|
.sr {
|
|
|
|
/* Literal.String.Regex */
|
|
|
|
color: $base0c !important;
|
|
|
|
}
|
2020-04-16 17:30:06 +02:00
|
|
|
|
2020-04-18 03:00:26 +02:00
|
|
|
// Progress Bar
|
|
|
|
#progress-bar {
|
|
|
|
background: linear-gradient(to right, red, orange , yellow, green,
|
|
|
|
blue, indigo, violet var(--scroll), transparent 0);
|
|
|
|
position: fixed;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
height: 3px;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2020-04-18 03:21:16 +02:00
|
|
|
// Scroll to top
|
|
|
|
#scroll-to-top {
|
|
|
|
background: black;
|
|
|
|
display:block;
|
|
|
|
position:fixed;
|
|
|
|
font-size:25px;
|
|
|
|
bottom:25px;
|
|
|
|
right:10%;
|
|
|
|
opacity:0;
|
|
|
|
z-index:99;
|
|
|
|
text-align:center;
|
|
|
|
transform:translateY(30%);
|
|
|
|
transition:transform 0.5s ease-in-out, opacity 0.5s ease-in-out
|
|
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
#scroll-to-top {
|
|
|
|
font-size:20px
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
#scroll-to-top {
|
|
|
|
right:5%;
|
|
|
|
bottom:15px
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#scroll-to-top :last-child {
|
|
|
|
transition:transform 0.7s ease-in-out
|
|
|
|
}
|
|
|
|
#scroll-to-top :last-child:active,
|
|
|
|
#scroll-to-top :last-child:hover {
|
|
|
|
transform:translateY(-10%)
|
|
|
|
}
|
|
|
|
#scroll-to-top span {
|
|
|
|
cursor:pointer;
|
|
|
|
color:#1a1d24
|
|
|
|
}
|
|
|
|
#scroll-to-top span:hover .up-arrow,
|
|
|
|
#scroll-to-top span:active .up-arrow {
|
|
|
|
color:#00adb5
|
|
|
|
}
|
|
|
|
|
2020-04-20 16:44:51 +02:00
|
|
|
tt,
|
|
|
|
code,
|
|
|
|
kbd,
|
|
|
|
samp,
|
|
|
|
pre {
|
|
|
|
color: #1bb6be !important
|
|
|
|
}
|
|
|
|
|
2020-04-18 03:00:26 +02:00
|
|
|
//@import "progress.css"; // for progress bar
|
2020-04-16 17:30:06 +02:00
|
|
|
@import "minimal-mistakes/skins/{{ site.minimal_mistakes_skin | default: 'default' }}"; // skin
|
2020-04-18 17:20:21 +02:00
|
|
|
@import "minimal-mistakes"; // main partials
|
|
|
|
@import "assets/css/override-notices.scss"
|