Channel.css
1.69 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
.channel__list {
display: flex;
flex-grow: 1;
flex-direction: column;
flex: 0.3;
min-width: 500px;
height: 100vh;
color: white;
background-color: #0e0e0e;
box-sizing: border-box;
}
.channel__list__title {
display: flex;
padding: 25px;
width: 30vw;
min-width: 500px;
background-color: #0e0e0e;
font-size: 20px;
font-weight: bold;
position: fixed;
box-sizing: border-box;
}
.channel__list > ul {
list-style: none;
overflow: auto;
padding-top: 50px;
}
.channel__list > ul > li > hr {
border: 2px solid #282828;
}
.channel {
display: flex;
align-items: center;
flex-direction: row;
height: 100px;
background-color: #0e0e0e;
}
.channel__url {
display: flex;
align-items: center;
flex-grow: 1;
text-decoration: none;
font-size: 14px;
color:white;
box-sizing: border-box;
padding-top: 20px;
padding-bottom: 20px;
}
.channel__box {
display: flex;
flex-basis: 80%;
flex-direction: row;
justify-content: space-between;
}
.channel__thumbnail {
height: 25px;
width: 25px;
border-radius: 70%;
overflow: hidden;
margin-right: 30px;
background-color: white;
}
.channel__icon {
height: 25px;
width: 25px;
border-radius: 70%;
overflow: hidden;
margin-right: 30px;
}
.channel__info {
flex-basis: 70%;
margin-right: 20px;
}
.channel__name {
align-content: center;
font-size: 16px;
}
.channel__game {
font-size: 12px;
color: gray;
}
.channel__view {
text-align: right;
}
.play__icon {
margin-left: 10px;
margin-right: 10px;
}
.pause__icon {
margin-left: 10px;
margin-right: 10px;
}