A photo manager for VRChat.
1.icon{
2 width: 40px;
3 height: 40px;
4 padding: 10px;
5 display: flex;
6 align-items: center;
7 justify-content: center;
8 height: 100%;
9 cursor: pointer;
10 user-select: none;
11 -webkit-user-select: none;
12}
13
14.icon-small{
15 display: flex;
16 align-items: center;
17 justify-content: center;
18 height: 100%;
19}
20
21.icon-label{
22 margin-top: -20px;
23 margin-right: -200px;
24 width: 200px;
25 color: white;
26 pointer-events: none;
27 transform: translate(20px, -9px);
28 opacity: 0;
29 transition: 0.25s;
30 user-select: none;
31 -webkit-user-select: none;
32}
33
34.icon:hover ~ .icon-label{
35 opacity: 1;
36 transform: translate(40px, -9px);
37}
38