1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-24 11:16:27 +02:00
Files
csslayout/styles/patterns/_ribbon.scss
Phuoc Nguyen 61b40e8ab5 feat: Ribbon
2022-09-19 22:50:48 +07:00

63 lines
1.1 KiB
SCSS

.ribbon {
/* Center the content */
align-items: center;
display: flex;
justify-content: center;
/* Size */
height: 2rem;
width: 4rem; /* For demo */
/* Use to position the corners */
position: relative;
}
.ribbon__content {
/* Background color */
background-color: #9ca3af;
z-index: 1;
height: 100%;
width: 100%;
}
.ribbon__side {
bottom: -0.5rem;
position: absolute;
/* Displayed under the ribbon */
z-index: 1;
/* Background */
border: 1rem solid #d1d5db;
}
.ribbon__side--l {
/* Position */
left: -1.5rem;
border-color: rgba(0, 0, 0, .3) rgba(0, 0, 0, .3) rgba(0, 0, 0, .3) transparent;
}
.ribbon__side--r {
/* Position */
right: -1.5rem;
border-color: rgba(0, 0, 0, .3) transparent rgba(0, 0, 0, .3) rgba(0, 0, 0, .3);
}
.ribbon__triangle {
position: absolute;
top: 100%;
border: 0.5rem solid transparent;
border-bottom-width: 0;
border-top-color: #aaa;
}
.ribbon__triangle--l {
border-right-width: 0;
left: 0;
}
.ribbon__triangle--r {
border-left-width: 0;
right: 0;
}