56 lines
No EOL
970 B
CSS
56 lines
No EOL
970 B
CSS
.kanbanCard {
|
|
background-color: rgb(196, 196, 196);
|
|
border-width: 1px;
|
|
border-color: rgba(255, 255, 255, 0.2) rgba(96, 96, 96, 0.2) rgba(96, 96, 96, 0.2) rgba(255, 255, 255, 0.2);
|
|
/*border-color: black;*/
|
|
border-style: solid;
|
|
margin: 2px;
|
|
padding: 3px;
|
|
width: 190px;
|
|
/*display: flex;*/
|
|
box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
|
|
border-radius: 3px;
|
|
/* z-index: 100; */
|
|
}
|
|
|
|
.kanbanCard div {
|
|
font-size: small;
|
|
}
|
|
|
|
.kanbanCard .kanbanCardTitle {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.timepassedDot {
|
|
height: 10px;
|
|
width: 10px;
|
|
background-color: #bbb;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
}
|
|
|
|
.timepassedDot.hot {
|
|
background-color: red;
|
|
}
|
|
|
|
.timepassedDot.warm {
|
|
background-color: orange;
|
|
}
|
|
|
|
.timepassedDot.comfort {
|
|
background-color: rgba(255, 255, 0, 0.4);
|
|
}
|
|
|
|
.timepassedDot.breezy {
|
|
background-color: rgba(0, 255, 0, 0.4);
|
|
}
|
|
|
|
.timepassedDot.cold {
|
|
background-color: rgba(0, 0, 255, 0.1);
|
|
}
|
|
|
|
.kanbanCardTag {
|
|
font-size: 8pt;
|
|
border-radius: 4px;
|
|
padding: 2px;
|
|
} |