Project

General

Profile

1
svg:not(.outlined) circle{
2
  fill: currentColor;
3
  stroke: currentColor;
4
}
5

    
6
svg:not(.outlined) text {
7
  fill: white;
8
  stroke: white;
9
}
10

    
11

    
12
svg.outlined circle{
13
  fill: white;
14
  stroke: currentColor;
15
}
16

    
17
svg.outlined text {
18
  fill: currentColor;
19
  stroke: currentColor;
20
}
21

    
22
svg {
23
  user-select: none;
24
}
(1-1/3)