-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcosmos-enhanced.css
59 lines (54 loc) · 1.24 KB
/
cosmos-enhanced.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
.cosmos-enhanced-container {
display: flex;
flex-direction: column;
justify-content: center;
margin: 10px 0;
gap: 10px;
}
.cosmos-enhanced-buttons-container {
justify-content: center;
display: flex;
gap: 10px;
}
#playback-rate-controller {
margin-left: 5px;
display: flex;
align-items: center;
color: var(--theme-color);
font-weight: 500;
font-size: 15px;
gap: 5px;
}
#playback-rate-controller > button {
all: unset;
cursor: pointer;
background: var(--theme-color);
height: 14px;
width: 14px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 2px;
color: #fff;
}
.cosmos-button {
all: unset;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
cursor: pointer;
font-size: 13px;
border-radius: 2px;
padding: 6px;
background: linear-gradient(
180deg,
hsla(var(--theme-color-hsl), 1) 0%,
hsla(var(--theme-color-hsl), 0.8) 100%
);
border: 1px solid rgba(0, 0, 0, 0.1);
}
.emoji {
font-family: 'Twemoji Mozilla', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
'Noto Color Emoji', 'EmojiOne Color', 'Android Emoji', sans-serif;
}