-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvideo-card.css
More file actions
64 lines (54 loc) · 1 KB
/
video-card.css
File metadata and controls
64 lines (54 loc) · 1 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
h2 {
font-weight: 400;
font-size: var(--plex-24);
padding: 0em;
margin: 0em;
}
p {
font-size: var(--plex-18);
}
a {
text-decoration: none;
color: var(--blue);
}
/* Styling for a group of links */
.link-g {
margin-top: 1em;
display: flex;
flex-flow: column nowrap;
}
.link-g a {
margin: 0.2em 0em;
}
/* Styling for video card */
.video-card {
background-color: var(--bg-light-gray);
margin: 1em;
padding: 2em;
display: flex;
flex-flow: column nowrap;
}
.video-card div:nth-child(0) {
flex-grow: 1;
}
/* Places 'watch now' at the bottom of the video card */
.video-card div:nth-child(1) {
flex-grow: 4;
}
/* Styling for inline group (level, time) */
.inline-g {
display: flex;
flex-flow: row wrap;
gap: 1em;
}
.inline-g p {
padding: 0em;
margin: 0em;
}
/* 1024px and above screen sizes */
@media screen and (min-width: 64em) {
/* Set consistent height for video card */
.video-card {
height: 18.75em;
}
}