-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo.css
105 lines (88 loc) · 1.68 KB
/
video.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
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
p {
font-family: Roboto,Arial;
margin-top: 0;
margin-bottom: 0;
}
main{
margin-top: 20px;
}
.page-content{
margin: 100px;
}
.video-grid{
margin-left: 150px;
margin-right: 150px;
display:grid;
grid-template-columns: 1fr 1fr 1fr;
column-gap: 16px;
row-gap: 40px;
}
.course{
width: 300px;
height: 200px;
background-color: rgb(192, 43, 226);
perspective: 1000px;
border-radius: 20px;
margin-bottom: 20px;
}
.course-name{
height: 50px;
width :100%;
}
.course-heading{
margin-bottom:18px;
position: relative;
text-align: center;
justify-content: center;
}
.channel-picture{
display:inline-block;
width:50px;
vertical-align: top;
}
.profile-picture{
width:50px;
border-radius: 50px;
}
.video-info{
display: inline-block;
width:200px;
height: 150px;
}
.video-text{
width:200px;
height: 100px;
}
.video-title{
height:45px;
margin-top:0px;
font-size:16px;
font-weight: 500;
line-height: 20px;
margin-bottom: 10px;
justify-content: center;
overflow: hidden;
}
.video-author{
height:30px;
font-size: 16px;
color:rgba(25, 41, 33, 0.851);
margin-bottom: 4px;
justify-content: center;
}
.video-link {
height: 75px;
width:200px;
margin-bottom: 10px;
}
.video-link a {
text-decoration: none;
background-color: #007BFF;
color: #fff;
padding: 8px 16px;
border-radius: 4px;
transition: background-color 0.3s;
}
.video-link a:hover {
background-color: #0056b3;
}