-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathSubscribedChannels.css
More file actions
79 lines (67 loc) · 1.08 KB
/
SubscribedChannels.css
File metadata and controls
79 lines (67 loc) · 1.08 KB
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
74
75
76
77
78
79
.card {
width: 85%;
margin: 0 auto;
margin-bottom: 60px;
}
.message {
color: var(--tertiary-text-color);
}
.count {
margin-top: 1rem;
}
.channels {
width: 100%;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr) );
gap: 2.5rem;
margin-top: 2rem;
}
.channel {
display: flex;
flex-direction: column;
align-items: center;
row-gap: 0.75rem;
padding: 0.5rem;
}
.thumbnailContainer {
flex-grow: 0;
display: flex;
align-items: center;
}
.channelThumbnail {
height: 120px;
border-radius: 50%;
cursor: pointer;
}
.channelName {
flex-grow: 1;
cursor: pointer;
font-size: 1.1rem;
text-decoration: none;
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
padding: 0 4px;
}
.buttonContainer {
flex-grow: 0;
display: flex;
align-items: center;
}
.btn {
padding: 5px 10px;
}
@media only screen and (max-width: 680px) {
.card {
width: 90%;
}
.channels {
gap: 1.5rem;
}
.channelThumbnail {
height: 80px;
}
}