-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesktop.css
More file actions
59 lines (42 loc) · 709 Bytes
/
Copy pathdesktop.css
File metadata and controls
59 lines (42 loc) · 709 Bytes
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
/* Desktop */
.desktop {
display: flex;
flex-direction: row;
flex-wrap: wrap;
padding: 1.5rem;
z-index: 0;
gap: 2rem;
user-select: none;
}
/* Icons */
.icon {
display: flex;
flex-direction: column;
align-items: center;
width: 75px;
height: 75px;
}
.icon > p {
color: black;
background-color: #d2d2d2;
padding: 2px;
font-family: msSansSerif;
font-size: 13px;
}
.icon.selected > p {
color: white;
background-color: #36b2ff;
}
.icon > img {
aspect-ratio: 1;
width: 100%;
image-rendering: pixelated;
}
/* Selection Box */
.selection-box {
background-color: #0078d799;
position: absolute;
border: 2px solid #0078d7;
left: 500px;
z-index: 5;
}