blob: 65e9db2e0e3dd08466554623c1212ba13adb0941 (
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
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
|
.eflux-header {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 10;
transition: width 0.2s;
}
.eflux-header.transcript-open {
width: calc(100vw - 31.875rem);
}
.eflux-logo {
position: absolute;
top: 20px;
left: 28px;
}
.eflux-logo svg {
/*
width: 218.3px;
height: 65px;
*/
width: 94px;
height: 28px;
}
.eflux-nav {
display: flex;
flex-direction: row;
position: absolute;
top: 23px;
right: 32px;
}
.eflux-nav .playToggle,
.eflux-nav .transcript-icon {
display: flex;
justify-content: center;
align-items: center;
width: 3rem;
height: 3rem;
background: white;
border-radius: 50%;
margin-left: 34px;
cursor: pointer;
}
.eflux-nav .playToggle:hover,
.eflux-nav .transcript-icon:hover {
background: #ddd;
}
.eflux-nav svg {
width: 2rem;
height: 2rem;
}
.eflux-nav .playToggle svg {
width: 2rem;
height: 2rem;
}
.eflux-nav .playToggle.paused svg {
margin-left: 2px;
}
.eflux-nav svg path {
fill: #000;
}
.eflux-nav svg line {
stroke: #000;
}
.eflux-logo svg path {
fill: #000;
transition: fill 0.5s;
}
.eflux-logo svg line {
stroke: #000;
transition: stroke 0.5s;
}
.black .eflux-logo svg path {
fill: #fff;
}
.black .eflux-logo svg line {
stroke: #fff;
}
.growl-tooltip {
position: absolute;
background: black;
color: white;
border: 1px solid;
padding: 0.75rem;
}
.growl-tooltip.tooltip-eflux {
left: 1.8rem;
top: 4rem;
transition: opacity 0.2s, transform 0.2s;
transform: translateZ(0) translateY(1rem);
opacity: 0;
}
.growl-tooltip.tooltip-play {
right: 6.5rem;
top: 4rem;
transition: opacity 0.2s, transform 0.2s;
transform: translateZ(0) translateY(1rem);
opacity: 0;
}
.growl-tooltip.tooltip-transcript {
right: 2.2rem;
top: 4rem;
transition: opacity 0.2s, transform 0.2s;
transform: translateZ(0) translateY(1rem);
opacity: 0;
}
.growl-tooltip.tooltip-eflux.hover,
.growl-tooltip.tooltip-play.hover,
.growl-tooltip.tooltip-transcript.hover {
transform: translateZ(0) translateY(0);
opacity: 1;
}
.growl-message {
top: 0; left: 50%;
transition: transform 0.2s;
transform: translateZ(0) translateY(-5rem) translateX(-50%);
margin-top: 1rem;
}
.growl-message.open {
transform: translateZ(0) translateY(0) translateX(-50%);
}
|