Spaces:
Running
Running
File size: 228 Bytes
6e29063 |
1 2 3 4 5 6 7 8 9 10 11 12 |
.control {
transition: all 0.2s ease;
opacity: 0.3;
}
.root:hover .control {
background-color: rgba(255, 255, 255, 0.8);
border: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
opacity: 1;
}
|