File size: 1,367 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 |
.card {
padding: 10px;
display: flex;
flex-direction: column;
gap: 10px;
background-color: #fff;
border-radius: 10px;
box-shadow:rgb(0 0 0 / 9%) 0px 9px 12px, rgb(0 0 0 / 6%) 0px 6px 6px;
cursor: pointer;
}
.card-top {
display: flex;
align-items: flex-start;
}
.card-top-labels {
flex: 3;
display: flex;
flex-wrap: wrap;
gap: 5px;
font-size: 14px;
line-height: 21px;
}
.card-top-labels label {
border-radius: 40px;
padding: 4px 12px;
background-color: gray;
color: #fff;
width: fit-content;
}
.card-top-more {
width: 30px;
height: 20px;
transform: translateX(15px);
flex: 1;
cursor: pointer;
opacity: 0;
transition: 200ms;
}
.card:hover .card-top-more {
opacity: 1;
}
.card-title {
flex: 1;
font-weight: bold;
font-size: 1rem;
line-height: 1.875rem;
}
.card-footer {
display: flex;
justify-content: space-between;
align-items: center;
}
.card-footer-item {
border-radius: 40px;
padding: 4px 12px;
background-color: #f8f8f8;
color: #000;
width: fit-content;
font-size: 14px;
line-height: 21px;
display: flex;
gap: 5px;
align-items: center;
}
.card-footer-icon {
height: 13px;
width: 13px;
}
.card-footer-user {
border-radius: 50%;
height: 28px;
width: 28px;
background-color: #f8f8f8;
display: flex;
align-items: center;
justify-content: center;
}
|