summaryrefslogtreecommitdiff
path: root/sass
diff options
context:
space:
mode:
Diffstat (limited to 'sass')
-rw-r--r--sass/_everforest.scss22
-rw-r--r--sass/style.scss104
2 files changed, 0 insertions, 126 deletions
diff --git a/sass/_everforest.scss b/sass/_everforest.scss
deleted file mode 100644
index fffc389..0000000
--- a/sass/_everforest.scss
+++ /dev/null
@@ -1,22 +0,0 @@
-$fg: #D3C6AA;
-$bg0: #2D353B;
-$bg1: #343F44;
-$bg2: #3D484D;
-$bg3: #475258;
-$bg4: #4F585E;
-$bg5: #56635F;
-
-$bg_dim: #232A2E;
-$bg_red: #543A48;
-$bg_visual: #514045;
-$bg_yellow: #4D4C43;
-$bg_green: #425047;
-$bg_blue: #3A515D;
-
-$red: #E76E80;
-$orange: #E69875;
-$yellow: #DBBC7F;
-$green: #A7C080;
-$blue: #7FBBB3;
-$aqua: #83C092;
-$purple: #D699B6;
diff --git a/sass/style.scss b/sass/style.scss
deleted file mode 100644
index a1e88ba..0000000
--- a/sass/style.scss
+++ /dev/null
@@ -1,104 +0,0 @@
-@use "everforest";
-
-/// Stole this from Stack Overflow (https://stackoverflow.com/a/54702294) {{{
-
-.rainbow_text_animated {
- background: linear-gradient(to right, everforest.$red, everforest.$orange, everforest.$yellow, everforest.$green, everforest.$blue, everforest.$purple);
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
- animation: rainbow_animation 1s ease-in-out infinite;
- background-size: 600% 100%;
-}
-
-@keyframes rainbow_animation {
- 0%,100% {
- background-position: 0 0;
- }
-
- 50% {
- background-position: 100% 0;
- }
-}
-
-/// }}}
-
-h1 {
- margin: 0;
-}
-
-html {
- background-color: everforest.$bg0;
- height: 100%;
-}
-
-body {
- color: everforest.$fg;
- background-color: everforest.$bg1;
- margin: 0 auto;
- max-width: 800px;
- padding: 10px;
- min-height: 100%;
-}
-
-a {
- color: everforest.$blue;
-}
-
-img {
- max-width: 100%;
- max-height: 720px;
-}
-
-pre {
- padding: 1rem;
- overflow: auto;
-}
-/* The line numbers already provide some kind of left/right padding */
-pre[data-linenos] {
- padding: 1rem 0;
-}
-pre table td {
- padding: 0;
-}
-/* The line number cells */
-pre table td:nth-of-type(1) {
- text-align: center;
- user-select: none;
-}
-pre mark {
- /* If you want your highlights to take the full width */
- display: block;
- /* The default background colour of a mark is bright yellow */
- background-color: rgba(254, 252, 232, 0.9);
-}
-pre table {
- width: 100%;
- border-collapse: collapse;
-}
-
-.wip-indicator {
- color: everforest.$yellow;
-}
-
-.langcolor {
- &-rust {
- color: everforest.$orange;
- }
- &-sass {
- color: everforest.$red;
- }
- &-jsx {
- color: everforest.$blue;
- }
- &-python {
- color: everforest.$yellow;
- }
- &-c {
- color: everforest.$blue;
- }
-}
-
-.coverimage {
- max-width: 256px;
-}