-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathVideoInfo.module.css
More file actions
60 lines (53 loc) · 959 Bytes
/
VideoInfo.module.css
File metadata and controls
60 lines (53 loc) · 959 Bytes
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
.root {
}
.aboutTabs {
}
.description {
display: flex;
flex-direction: column;
height: var(--baseline-3x);
border-left: var(--border);
border-bottom: var(--border);
font-size: var(--maru-medium);
font-family: var(--maru-mono);
color: var(--text-color);
& p {
width: 75%;
padding: 0 var(--box-padding);
margin: var(--baseline-3of5) 0 calc(var(--baseline-2of5) - 1px) 0;
line-height: var(--baseline-1of2);
}
}
.descriptionExpanded {
height: var(--baseline-5x);
}
/* Variant */
.red {
& .description {
border-color: var(--red);
}
}
.cyan {
& .description {
border-color: var(--cyan);
}
}
@media (--reduced) {
.description {
height: var(--baseline-4x);
}
.descriptionExpanded {
height: var(--baseline-6x);
}
.description p {
width: 100%;
}
}
@media (--xsmall) {
.description {
height: var(--baseline-5x);
}
.descriptionExpanded {
height: var(--baseline-7x);
}
}