File size: 1,932 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
.cardinfo {
padding: 30px;
display: flex;
flex-direction: column;
gap: 30px;
min-width: 550px;
width: fit-content;
max-width: 650px;
height: fit-content;
}
.cardinfo-box {
width: 100%;
display: flex;
flex-direction: column;
gap: 10px;
}
.cardinfo-box-title {
display: flex;
gap: 10px;
align-items: center;
}
.cardinfo-box-title p {
font-weight: bold;
font-size: 1.2rem;
}
.cardinfo-box-title svg {
height: 18px;
width: 18px;
}
.cardinfo-box-labels {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.cardinfo-box-labels label {
border-radius: 40px;
background-color: gray;
color: #fff;
padding: 4px 8px;
display: flex;
align-items: center;
gap: 5px;
}
.cardinfo-box-labels label svg {
height: 16px;
width: 16px;
cursor: pointer;
}
.cardinfo-box ul {
display: flex;
gap: 15px;
margin-left: 20px;
}
.cardinfo-box ul li {
list-style: none;
width: 20px;
height: 20px;
border-radius: 50%;
cursor: pointer;
}
.cardinfo-box ul .li-active {
box-shadow: 0 0 0 3px yellow;
border: 2px solid red;
padding: 8px;
}
.cardinfo-box-progress-bar {
width: 100%;
border-radius: 30px;
height: 10px;
border: 1px solid #ccc;
}
.cardinfo-box-progress {
height: 100%;
border-radius: 30px;
background-color: skyblue;
width: 0;
transition: 200ms;
}
.cardinfo-box-task-list {
display: flex;
flex-direction: column;
gap: 15px;
}
.cardinfo-box-task-checkbox {
display: flex;
gap: 10px;
}
.cardinfo-box-task-checkbox input,
.cardinfo-box-task-checkbox svg {
height: 18px;
width: 18px;
outline: none;
cursor: pointer;
}
.cardinfo-box-task-checkbox p {
flex: 1;
line-height: 18px;
}
.cardinfo-box-task-checkbox .completed {
text-decoration-line: line-through;
}
.cardinfo-box input[type="date"] {
width: fit-content;
border: 2px solid #ddd;
border-radius: 5px;
outline: none;
font-size: 1rem;
padding: 10px;
}
|