File size: 1,000 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 |
.custom-input {
width: 100%;
}
.custom-input-display {
padding: 6px 12px;
border-radius: 3px;
background-color: #eee;
color: #000;
cursor: pointer;
width: fit-content;
transition: 200ms;
}
.custom-input-display:hover {
background-color: #ddd;
}
.custom-input-edit {
display: flex;
flex-direction: column;
gap: 10px;
}
.custom-input-edit input {
border: 2px solid #0079bf;
border-radius: 5px;
outline: none;
font-size: 1rem;
padding: 10px;
}
.custom-input-edit-footer {
display: flex;
gap: 8px;
align-items: center;
}
.custom-input-edit-footer button {
cursor: pointer;
border-radius: 5px;
outline: none;
background-color: #0079bf;
color: #fff;
border: none;
transition: 100ms ease;
padding: 10px;
}
.custom-input-edit-footer button:hover {
background-color: #046daa;
}
.custom-input-edit-footer button:active {
transform: translateY(2px);
}
.custom-input-edit-footer .closeIcon {
cursor: pointer;
height: 24px;
width: 24px;
}
|