blob: 47f644672776f88e08df56d91c1dadb6b7ff09b3 (
plain)
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
|
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
#the_box{
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 5px;
}
#the_box img {
width: 100%;
}
.video-title, .video-channelname{
text-decoration: none;
color: #222222;
}
.video-title{
font-size: 24px
}
|