File size: 1,563 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
@import "../styles/typography";
.ribbon {
font-family: $a8c-font-family-sans;
position: absolute;
right: -5px;
top: -5px;
z-index: z-index("root", ".ribbon");
overflow: hidden;
width: 75px;
height: 75px;
text-align: right;
}
.ribbon .ribbon__title {
font-size: 10px;
font-weight: normal;
color: var(--color-text-inverted);
text-align: center;
line-height: 20px;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
width: 100px;
display: block;
background: var(--color-accent);
position: absolute;
top: 19px;
right: -21px;
text-transform: uppercase;
}
.ribbon .ribbon__title::before {
content: "";
position: absolute;
left: 0;
top: 100%;
z-index: z-index(".ribbon", ".ribbon__title::before");
border-left: 3px solid var(--color-accent-dark);
border-right: 3px solid transparent;
border-bottom: 3px solid transparent;
border-top: 3px solid var(--color-accent-dark);
}
.ribbon .ribbon__title::after {
content: "";
position: absolute;
right: 0;
top: 100%;
z-index: z-index(".ribbon", ".ribbon__title::after");
border-left: 3px solid transparent;
border-right: 3px solid var(--color-accent-dark);
border-bottom: 3px solid transparent;
border-top: 3px solid var(--color-accent-dark);
}
.ribbon.is-green {
.ribbon__title {
background-color: var(--color-success);
}
.ribbon__title::before {
border-left-color: var(--color-success-dark);
border-top-color: var(--color-success-dark);
}
.ribbon__title::after {
border-right-color: var(--color-success-dark);
border-top-color: var(--color-success-dark);
}
}
|