summaryrefslogtreecommitdiff
path: root/sass/style.scss
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2024-03-02 12:00:00 +0200
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2024-03-02 12:00:00 +0200
commit8ee207dc1034eeeb8f48c0c9ca58c6f29df95ae7 (patch)
tree038610a55005e9a638345afe76a7b894459c828e /sass/style.scss
parent2c1b00f3094321ba9fd3121e723823b96dfbc528 (diff)
Massive changes regarding the core templates, static and config backbone
Soon will be abstracted into a Hermit V3 theme that focuses on: - speed - efficiency - modularity - SEO: - good WCAG & - pagespeed metrics - suckless Changes to be committed: modified: config.toml modified: content/posts/code_test.md modified: content/posts/How I made this Blog with Zola.md deleted: sass/_icons.scss modified: sass/_predefined.scss modified: sass/style.scss modified: static/js/main.js modified: templates/404.html modified: templates/index.html modified: templates/macros.html modified: templates/page.html modified: templates/section.html modified: templates/tags/list.html modified: templates/tags/single.html
Diffstat (limited to 'sass/style.scss')
-rw-r--r--sass/style.scss29
1 files changed, 7 insertions, 22 deletions
diff --git a/sass/style.scss b/sass/style.scss
index d110fec..18ff1d0 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -1,8 +1,7 @@
@import "predefined.scss";
@import "normalize.scss";
-@import "syntax.scss";
@import "animate.scss";
-@import "icons.scss";
+@import "syntax.scss";
/* Webkit Scrollbar Customize */
::-webkit-scrollbar {
@@ -51,7 +50,7 @@ pre {
word-wrap: break-word;
color: #eee;
border-radius: 4px;
- // -webkit-overflow-scrolling: touch;
+ -webkit-overflow-scrolling: touch; // For iOS improved scrolling
code {
padding: 0;
@@ -245,6 +244,11 @@ table {
padding: 0;
margin-left: 0.4em;
cursor: pointer;
+
+ &:hover {
+ color: #fff;
+ }
+
}
#menu-btn {
@@ -807,22 +811,3 @@ hr.post-end {
right: 1.2em;
}
}
-
-.code-badge {
- margin: 0.4em 0em;
-}
-
-.highlight-copy-btn {
- margin-right: 7px;
- float: right;
- border: 0;
- border-radius: 4px;
- padding: 1px;
- font-size: 0.7em;
- line-height: 1.8;
- color: #fff;
- background-color: #777;
- opacity: 0.6;
- min-width: 55px;
- text-align: center;
-}