-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
94 lines (78 loc) · 1.61 KB
/
Copy pathApp.css
File metadata and controls
94 lines (78 loc) · 1.61 KB
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
.ReactDocument-Menu {
padding: 1rem;
border-right: 1px solid #e5e5e5;
width: 25%;
background-color: #fff;
}
.ReactDocument-MenuTitle {
font-weight: bold;
text-transform: uppercase;
font-size: 0.9rem;
color: #1673b1;
}
.ReactDocument-MenuList--open {
display: block;
}
.ReactDocument-MenuList--close {
display: none;
}
.ReactDocument-MenuItem {
text-decoration: none;
width: 100%;
padding: 0.5rem 1rem;
transition: background 250ms ease;
cursor: pointer;
}
.ReactDocument-MenuItem:hover {
background: #f0f0f0;
}
.ReactDocument-MenuItem a {
color: #1673b1;
text-decoration: none;
}
.ReactDocument-MenuList {
list-style: none;
padding-left: 0;
}
.ReactDocument-Viewer {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 2rem;
gap: 1.5rem;
width: 80%;
background-color: #fff;
color: #000;
border-left: 1px solid #e5e5e5;
border-top: 1px solid #e5e5e5;
}
.ReactDocument-ButtonGroup {
display: flex;
width: 100%;
gap: 0.5rem;
}
.ReactDocument-Content ul, .ReactDocument-Content ol {
padding-inline: 1.25rem;
margin-block: .5rem;
}
.ReactDocument-Content h1,
.ReactDocument-Content h2,
.ReactDocument-Content h3,
.ReactDocument-Content h4 {
margin-block: .75rem;
}
.ReactDocument-ButtonGroup button {
width: 50%;
}
.ReactDocument-Button {
color: #1673b1;
background: transparent;
padding: 0.5rem 1rem;
border: 1px solid #1673b1;
border-radius: 2px;
cursor: pointer;
}
.ReactDocument-Button:hover {
background: #1673b1;
color: #fff;
}