aboutsummaryrefslogtreecommitdiff
path: root/assets/css/partials/header-separator.css
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-07-17 14:26:52 +0200
committerEugen Wissner <belka@caraus.de>2026-07-17 14:26:52 +0200
commite844a70479915d1fba0336800b35c8c1022b61c6 (patch)
treecc9402a686380d5b14a43146c10cc3a57a55fd14 /assets/css/partials/header-separator.css
parent8f954ab7c662e0c507c2328d5b2683fbd4c3a391 (diff)
downloadflevum-master.tar.gz
Convert preprocesser files to plain CSSHEADmaster
Diffstat (limited to 'assets/css/partials/header-separator.css')
-rw-r--r--assets/css/partials/header-separator.css28
1 files changed, 28 insertions, 0 deletions
diff --git a/assets/css/partials/header-separator.css b/assets/css/partials/header-separator.css
new file mode 100644
index 0000000..e1e5358
--- /dev/null
+++ b/assets/css/partials/header-separator.css
@@ -0,0 +1,28 @@
+.header-content-separator {
+ position: relative;
+ margin: 40px auto;
+ width: 4px;
+ height: 4px;
+ border-radius: 50%;
+ background: var(--grey-ccc);
+}
+
+.header-content-separator:before {
+ position: absolute;
+ left: -8px;
+ width: 4px;
+ height: 4px;
+ border-radius: 50%;
+ background: var(--grey-ccc);
+ content: "";
+}
+
+.header-content-separator::after {
+ position: absolute;
+ left: 8px;
+ width: 4px;
+ height: 4px;
+ border-radius: 50%;
+ background: var(--grey-ccc);
+ content: "";
+}