1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/styles/patterns/_separator.scss
2022-09-19 22:59:05 +07:00

34 lines
615 B
SCSS

.separator {
/* Content is centered horizontally */
align-items: center;
display: flex;
/* Used to set the position of text */
position: relative;
/* Demo */
width: 100%;
}
.separator__content {
/* We won't see the separator line */
background: #fff;
/* Displayed at the center of separator */
left: 50%;
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
/* Spacing */
padding: 0 0.25rem;
/* Demo */
width: 60%;
}
.separator__separator {
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
height: 1px;
width: 100%;
}