summaryrefslogtreecommitdiffstats
path: root/assets/css/components/_ascii.scss
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2021-05-14 21:18:14 +0200
committerVolpeon <git@volpeon.ink>2021-05-14 21:18:14 +0200
commitb80e8510728b4fc605bd5f6b52d82d320acc2c1f (patch)
tree1135514c2db808cfe03fc4c272f8bbd87e91df79 /assets/css/components/_ascii.scss
parentSmaller ASCII art (diff)
downloadvolpeon.ink-b80e8510728b4fc605bd5f6b52d82d320acc2c1f.tar.gz
volpeon.ink-b80e8510728b4fc605bd5f6b52d82d320acc2c1f.tar.bz2
volpeon.ink-b80e8510728b4fc605bd5f6b52d82d320acc2c1f.zip
Moved ASCII fox from page list header to general footer
Diffstat (limited to 'assets/css/components/_ascii.scss')
-rw-r--r--assets/css/components/_ascii.scss32
1 files changed, 0 insertions, 32 deletions
diff --git a/assets/css/components/_ascii.scss b/assets/css/components/_ascii.scss
deleted file mode 100644
index e6bb39f..0000000
--- a/assets/css/components/_ascii.scss
+++ /dev/null
@@ -1,32 +0,0 @@
1@include namespace('ascii') {
2 @include store((
3 --colors: (
4 --fg: prop(--colors --fg-hi, $global: true),
5 --border: prop(--colors --fg-hi, $global: true),
6 )
7 ));
8
9 @include component(namespace()) {
10 overflow: hidden;
11 color: prop(--colors --fg);
12 font-family: $font-fam--mono;
13 line-height: 1.4;
14
15 &::after {
16 content: str-repeat('░', 400);
17 display: block;
18 margin-top: 1 / 16 * 2em;
19 padding-top: 1 / 16 * 2em;
20 border-top: 1px solid prop(--colors --border);
21 color: prop(--colors --fg);
22 }
23
24 @include element('fixed-content') {
25 display: inline-block;
26 position: relative;
27 left: 50%;
28 overflow: visible;
29 transform: translateX(-50%);
30 }
31 }
32}