blob: 59b794dd36ab931731f4577ce22b651d3d084119 (
plain) (
blame)
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
|
.RecentText {
display: flex;
align-items: center;
}
.RecentText p {
font-size: 28px;
margin: 5px;
color: var(--soft-purple);
font-family: "Poppins";
font-weight: 500;
}
.RecentText span {
margin-top: 6px;
}
.Recent {
display: flex;
overflow-x: auto;
}
.RecentContainer:hover .RecentEntries {
opacity: 0.4;
}
.RecentContainer:hover:hover .RecentEntries:hover {
opacity: 1;
transform: scale(1.02);
}
.Recent::-webkit-scrollbar {
height: 5px;
width: 0px;
}
.Recent::-webkit-scrollbar-thumb {
background-color: #444444;
border-radius: 5px;
}
.RecentEntries {
margin: 4px;
background-color: #1f1f1fbb;
padding: 0.5rem;
border-radius: 1rem;
transition: opacity 400ms ease, transform 400ms ease;
}
.RecentEntries p {
text-align: center;
margin: 5px auto;
width: 140px;
font-family: "Atkinson Hyperlegible";
height: 80px;
overflow-y: auto;
transition: font-size 400ms ease;
}
.RecentEntries p::-webkit-scrollbar {
width: 2px;
}
.Recent p::-webkit-scrollbar-thumb {
background-color: #444444;
border-radius: 5px;
}
.RecentImage {
border-radius: 1rem;
aspect-ratio: auto;
}
|