-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
40 lines (35 loc) · 811 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
.kobo-annotation-file-picker {
width: 100%;
font-family: inherit;
font-size: 1rem;
color: var(--interactive-accent);
background-color: var(--background-secondary);
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
padding: 5px;
cursor: pointer;
outline: none;
transition:
background-color 0.3s,
border-color 0.3s;
}
.kobo-annotation-file-picker:hover {
border-color: var(--interactive-accent);
}
.kobo-annotation-file-picker:focus-within {
box-shadow: 0 0 5px var(--interactive-accent);
border-color: var(--interactive-accent);
}
.kobo-chapter-list {
display: flex;
flex-direction: column;
}
.kobo-section-checkbox-container {
display: flex;
flex-direction: row;
padding-left: 1rem;
}
.kobo-chapter-checkbox-container {
display: flex;
flex-direction: row;
}