2019-02-17 02:10:42 +01:00
|
|
|
.user_circle_green,
|
|
|
|
.user_circle_orange,
|
|
|
|
.user_circle_empty,
|
2019-03-01 17:31:59 +01:00
|
|
|
.user_circle_empty_line,
|
2019-02-17 00:55:01 +01:00
|
|
|
.user_circle_fraction {
|
2019-02-17 00:29:16 +01:00
|
|
|
border-radius: 50%;
|
|
|
|
border: 1px solid;
|
|
|
|
float: left;
|
|
|
|
position: relative;
|
|
|
|
top: 5px;
|
|
|
|
}
|
|
|
|
|
2019-02-17 02:10:42 +01:00
|
|
|
.user_circle_green {
|
2019-02-17 00:49:02 +01:00
|
|
|
background-color: hsl(106, 74%, 44%);
|
|
|
|
}
|
|
|
|
|
2019-02-17 02:10:42 +01:00
|
|
|
.user_circle_green,
|
2019-02-17 00:55:01 +01:00
|
|
|
.user_circle_fraction {
|
2019-02-17 00:29:16 +01:00
|
|
|
border-color: hsl(106, 74%, 44%);
|
|
|
|
}
|
|
|
|
|
2019-02-17 02:10:42 +01:00
|
|
|
.user_circle_orange {
|
2019-02-17 00:29:16 +01:00
|
|
|
border-color: hsl(29, 84%, 51%);
|
|
|
|
background-color: hsl(29, 84%, 51%);
|
2019-08-30 03:49:42 +02:00
|
|
|
background: linear-gradient(to bottom, hsla(0, 0%, 100%, 0.0) 50%, hsla(29, 84%, 51%, 1.0) 50%);
|
2019-02-17 00:29:16 +01:00
|
|
|
}
|
|
|
|
|
2019-02-17 02:10:42 +01:00
|
|
|
.user_circle_empty {
|
2019-02-17 00:29:16 +01:00
|
|
|
background-color: none;
|
|
|
|
border-color: hsl(0, 0%, 50%);
|
|
|
|
}
|
2019-03-01 17:31:59 +01:00
|
|
|
|
|
|
|
.user_circle_empty_line {
|
2019-03-01 21:51:07 +01:00
|
|
|
border-color: hsl(0, 0%, 50%);
|
2019-03-01 17:31:59 +01:00
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: '';
|
2019-03-01 21:51:07 +01:00
|
|
|
background: hsl(0, 0%, 50%);
|
2019-03-01 17:31:59 +01:00
|
|
|
height: 1.5px; // 1px is too thin, 2px is too thick
|
|
|
|
width: 6px;
|
|
|
|
display: block;
|
|
|
|
margin: 3.25px auto 0 auto; // (total height - line height) / 2 = 3.25px
|
|
|
|
}
|
|
|
|
}
|