You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.2 KiB
72 lines
1.2 KiB
.green-dot {
|
|
margin: 7px 5px 0px 0px;
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 50%;
|
|
display: block;
|
|
background-color: green;
|
|
}
|
|
|
|
.red-dot {
|
|
margin: 7px 5px 0px 0px;
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 50%;
|
|
display: block;
|
|
background-color: red;
|
|
}
|
|
|
|
.grey-dot {
|
|
margin: 7px 5px 0px 0px;
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 50%;
|
|
display: block;
|
|
background-color: grey;
|
|
}
|
|
|
|
.yellow-dot {
|
|
margin: 7px 5px 0px 0px;
|
|
width: 10px;
|
|
height: 10px;
|
|
display: block;
|
|
background-color: #ffe733;
|
|
}
|
|
|
|
.light-green-dot {
|
|
margin: 7px 5px 0px 0px;
|
|
width: 10px;
|
|
height: 10px;
|
|
display: block;
|
|
background-color: #35e383;
|
|
}
|
|
|
|
.blue-dot {
|
|
margin: 7px 5px 0px 0px;
|
|
width: 10px;
|
|
height: 10px;
|
|
display: block;
|
|
background-color: #5f8ff5;
|
|
}
|
|
|
|
.red-triangle {
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 7px solid transparent;
|
|
border-right: 7px solid transparent;
|
|
border-bottom: 10px solid red;
|
|
}
|
|
|
|
.green-triangle {
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 7px solid transparent;
|
|
border-right: 7px solid transparent;
|
|
border-top: 10px solid green;
|
|
}
|
|
|
|
.grey-triangle {
|
|
width: 10px;
|
|
height: 5px;
|
|
background-color: grey;
|
|
}
|