-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathYoutude.css
More file actions
133 lines (111 loc) · 2 KB
/
Youtude.css
File metadata and controls
133 lines (111 loc) · 2 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
:root{
--primary: linear-gradient(to bottom right, #0a0057, #3f00ee);
--secondary:gold;
--text:#fff;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
min-height: 100vh;
background-image: var(--primary);
font-family: sans-serif;
color: var(--text);
display: flex;
align-items: center;
}
.container{
width: 100vh;
display: grid;
grid-template-columns: 1.8fr 1.2fr;
gap: 1rem;
padding: .5rem 1rem;
text-transform: capitalize;
}
@media screen and (max-width:990px) {
.container{
grid-template-columns: 1fr;
}
}
.title{
width: 20rem;
}
.left > p {
color: var(--secondary);
margin-top: 3px;
}
.left h3{
margin-left: 20px;
}
.left p{
margin-left: 20px;
}
.video{
display: flex;
gap: 1rem;
justify-content: center;
align-items: center;
background: var(--primary);
height: 3rem;
width: 32rem;
padding: 5px;
border-radius: 20px;
}
.video h3{
white-space: nowrap;
width: 19rem;
overflow: hidden;
text-overflow: ellipsis;
font: 100 1rem sans-serif;
padding: 0.5rem;
}
.leftside{
/* height: ; */
}
/* .videos{
margin: 10px;
display: flex;
justify-content: center;
align-items: center;
background: var(--primary);
height: 3rem;
width: 32rem;
padding: 5px;
border-radius: 20px;} */
.video:hover{
background: rgb(104, 104, 157);
}
.video.active{
background: rgb(15, 15, 78);
color: var(--secondary);
}
.leftside{
display: flex;
flex-direction: column;
gap: 1rem;
height: 40%;
overflow-y:auto;
}
.leftside::-webkit-scrollbar{
width: .4rem;
border-radius: .4rem;
background-color: #0005;
}
.leftside::-webkit-scrollbar-thumb{
border-radius: .4rem;
background-color: #fff ;
}
.video img{
height: 30px;
width: 30px;
filter: invert(100%);
}
.video.active img {
filter: invert(100%) sepia(100%) saturate(2000%) hue-rotate(369deg);
}
video{
height: 20rem;
width: 20rem;
}