forked from readwiseio/obsidian-readwise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
58 lines (47 loc) · 1007 Bytes
/
styles.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
.theme-light {
--hyper-highlight: var(--text-highlight-bg, #FFF2AC);
--error-color: #DB5461;
--success-color: #8AAA79;
--info-color: var(--text-muted, #000);
}
.theme-dark {
--hyper-highlight: var(--text-highlight-bg, #1C5998);
--error-color: #DB5461;
--success-color: #8AAA79;
--info-color: var(--text-muted, #fff);
}
.rw-info-container {
margin-inline-end: 10px;
}
.rw-info {
color: var(--info-color);
font-size: smaller;
}
.rw-error {
color: var(--error-color);
}
.rw-success {
color: var(--success-color);
}
img[alt=rw-book-cover] {
max-height: 200px;
}
.rw-hyper-highlight {
background-color: var(--hyper-highlight);
}
.rw-modal-btns {
display: flex;
justify-content: flex-end;
gap: 0.5rem;
}
.rw-modal-confirmation {
display: flex;
align-items: center;
gap: 0.5rem;
justify-content: flex-end;
margin-block-start: 1em;
font-size: smaller;
}
.rw-modal-warning-text {
margin-block-start: 0;
}