mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
20 lines
464 B
CSS
20 lines
464 B
CSS
/**
|
|
* A collection of popular layouts and patterns made with CSS (https://csslayout.io)
|
|
* (c) 2019 - 2021 Nguyen Huu Phuoc <https://twitter.com/nghuuphuoc>
|
|
*/
|
|
|
|
.heading {
|
|
color: var(--color-gray-9);
|
|
display: grid;
|
|
font-size: 2rem;
|
|
grid-template-columns: 1fr auto 1fr;
|
|
grid-gap: 1rem;
|
|
text-align: center;
|
|
}
|
|
.heading::before,
|
|
.heading::after {
|
|
align-self: center;
|
|
border-top: 0.25rem double var(--color-gray-9);
|
|
content: '';
|
|
}
|