31 lines
543 B
CSS
31 lines
543 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.check {
|
|
--width: 2em;
|
|
--height: 1.5em;
|
|
--up: 10px;
|
|
--down: 6px;
|
|
position: relative;
|
|
width: var(--width);
|
|
height: var(--height);
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border-radius: 100px;
|
|
border: 2px solid transparent;
|
|
|
|
&::after {
|
|
position: absolute;
|
|
content: "";
|
|
top: -0.3em;
|
|
left: 0.4em;
|
|
width: var(--down);
|
|
height: var(--up);
|
|
box-sizing: border-box;
|
|
display: block;
|
|
border-width: 0 2px 2px 0;
|
|
border-style: solid;
|
|
transform-origin: bottom left;
|
|
transform: rotate(45deg);
|
|
}
|
|
}
|