20 lines
249 B
CSS
20 lines
249 B
CSS
|
circle {
|
||
|
stroke: white;
|
||
|
fill: transparent;
|
||
|
stroke-width: 8px;
|
||
|
}
|
||
|
|
||
|
mask circle {
|
||
|
stroke-width: 0;
|
||
|
fill: white;
|
||
|
}
|
||
|
|
||
|
.addedImage {
|
||
|
filter: invert(1);
|
||
|
}
|
||
|
|
||
|
.debugRect {
|
||
|
stroke: red;
|
||
|
fill: transparent;
|
||
|
stroke-width: 8px;
|
||
|
}
|