diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-07-12 17:04:26 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-07-12 17:04:26 +0200 |
| commit | 801e08e73624005ed498101ad616d987f70f8cdf (patch) | |
| tree | 2e748bbe8380b7e4e392970b259217dafbbca689 /assets/_sass/partials/_header-separator.scss | |
| parent | 25800009ab67a9c9f438ad058ae764dfa060f420 (diff) | |
| download | flevum-801e08e73624005ed498101ad616d987f70f8cdf.tar.gz | |
Add original style sources and an SCSS compiler
Diffstat (limited to 'assets/_sass/partials/_header-separator.scss')
| -rw-r--r-- | assets/_sass/partials/_header-separator.scss | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/assets/_sass/partials/_header-separator.scss b/assets/_sass/partials/_header-separator.scss new file mode 100644 index 0000000..4c264df --- /dev/null +++ b/assets/_sass/partials/_header-separator.scss @@ -0,0 +1,27 @@ +.header-content-separator {
+ position: relative;
+ margin: 40px auto;
+ width: 4px;
+ height: 4px;
+ border-radius: 50%;
+ background: var(--grey-ccc);
+
+ &:before {
+ position: absolute;
+ left: -8px;
+ width: 4px;
+ height: 4px;
+ border-radius: 50%;
+ background: var(--grey-ccc);
+ content: "";
+ }
+ &:after {
+ position: absolute;
+ left: 8px;
+ width: 4px;
+ height: 4px;
+ border-radius: 50%;
+ background: var(--grey-ccc);
+ content: "";
+ }
+}
|
