-
Notifications
You must be signed in to change notification settings - Fork 4
/
timeline.css
58 lines (51 loc) · 932 Bytes
/
timeline.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
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
font-family: var(--rdp-font);
background: var(--bg-color);
}
.reader-container {
margin-top: 20px;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.sort-container {
width: 100%;
display: flex;
justify-content: flex-start;
}
.sort-container label {
color: var(--rdp-text-color);
font-size: 0.875rem;
margin-right: 4px;
display: flex;
align-items: center;
margin-left: 48px;
}
.sort-dropdown {
padding: 2px;
border: 1px solid var(--rdp-border-color);
border-radius: 4px;
width: 75px;
}
reader-timeline {
flex: 1;
max-width: 600px;
width: 100%;
margin: 0 20px;
}
@media screen and (max-width: 768px) {
.reader-container {
margin-top: 160px;
}
reader-timeline {
width: 100%;
max-width: 100%;
margin-top: 175px;
}
}