add line divider block
All checks were successful
Deploy / Deploy to Production (push) Successful in 8s
All checks were successful
Deploy / Deploy to Production (push) Successful in 8s
This commit is contained in:
parent
e425d6d141
commit
bfec3daef1
4 changed files with 37 additions and 5 deletions
|
|
@ -15,9 +15,24 @@ main {
|
||||||
} */
|
} */
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
height: 1px;
|
|
||||||
border: none;
|
border: none;
|
||||||
background-color: var(--color-primary);
|
}
|
||||||
|
|
||||||
|
hr::before,
|
||||||
|
hr::after {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
color: #fff;
|
||||||
|
font-size: var(--font-size-m);
|
||||||
|
font-weight: var(--font-weight-light);
|
||||||
|
line-height: 0.8;
|
||||||
|
}
|
||||||
|
hr::before {
|
||||||
|
content: "+";
|
||||||
|
}
|
||||||
|
hr::after {
|
||||||
|
content: "+ +";
|
||||||
}
|
}
|
||||||
|
|
||||||
nav hr {
|
nav hr {
|
||||||
|
|
|
||||||
|
|
@ -48,9 +48,25 @@ main {
|
||||||
margin-top: calc(var(--unit--vertical) * 2);
|
margin-top: calc(var(--unit--vertical) * 2);
|
||||||
} */
|
} */
|
||||||
hr {
|
hr {
|
||||||
height: 1px;
|
|
||||||
border: none;
|
border: none;
|
||||||
background-color: var(--color-primary);
|
}
|
||||||
|
|
||||||
|
hr::before,
|
||||||
|
hr::after {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
color: #fff;
|
||||||
|
font-size: var(--font-size-m);
|
||||||
|
font-weight: var(--font-weight-light);
|
||||||
|
line-height: 0.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr::before {
|
||||||
|
content: "+";
|
||||||
|
}
|
||||||
|
|
||||||
|
hr::after {
|
||||||
|
content: "+ +";
|
||||||
}
|
}
|
||||||
|
|
||||||
nav hr {
|
nav hr {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -15,3 +15,4 @@ fieldsets:
|
||||||
label: false
|
label: false
|
||||||
image: true
|
image: true
|
||||||
quote: true
|
quote: true
|
||||||
|
line: true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue