forked from FreeTubeApp/FreeTube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft-channel-bubble.css
51 lines (46 loc) · 926 Bytes
/
ft-channel-bubble.css
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
.bubblePadding {
position: relative;
inline-size: 100px;
block-size: 100px;
padding: 10px;
cursor: pointer;
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
overflow: hidden;
color: inherit;
text-decoration: none;
transition: background 0.2s ease-out;
}
.bubblePadding:hover {
background-color: var(--side-nav-hover-color);
color: var(--side-nav-hover-text-color);
transition: background 0.2s ease-in;
}
.bubble {
inline-size: 50px;
block-size: 50px;
border-radius: 100%;
object-fit: cover;
}
.selected {
position: absolute;
inset-block-start: 10px;
background-color: rgb(0 0 0 / 50%);
}
.icon {
color: #EEE;
font-size: 25px;
position: absolute;
inset-block-start: 12px;
inset-inline-start: 12px;
}
.channelName {
display: block;
font-size: 13px;
overflow: hidden;
text-align: center;
text-overflow: ellipsis;
inline-size: 100%;
}