aboutsummaryrefslogtreecommitdiff
blob: 8081492d3332a8a60d0f3cca0c4fc53dafe663f7 (plain)
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
.aside {
  min-width: 272px;
  width: 20%;
  height: 100%;
  padding: 5px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e5e5e5;
  box-shadow: -2px 0 10px #000;
  z-index: 9999;
  background-color: #fff;
}

.headline {
  padding-left: 16px;
  position: relative;
}

.headline h2 {
  display: inline-block;
  line-height: 40px;
  margin-bottom: 0;
}

.headline button {
  width: 40px;
  height: 40px;
  padding: 0;
  margin-left: 2px;
  display: inline-block;
  border: none;
  border-radius: 100%;
  background: none;
  cursor: pointer;
}

.headline button:hover {
  background: #e9f3ff;
}

.headline button div {
  width: 8px;
  height: 8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #000;
  display: inline-block;
}

.tripList {
  min-width: 80%;
  padding: 5px 0;
  position: absolute;
  top: 100%;
  left: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.tripList ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.tripList li {
  padding: 5px;
  user-select: none;
}

.tripList li a {
  padding: 10px 20px 10px 10px;
  display: block;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.tripList li a:hover {
  background-color: #f5f5f5;
}

.list {
  margin: 24px 0 0 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}

.listItem {
  min-height: 56px;
  margin-bottom: 5px;
  padding: 10px 16px;
  display: flex;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  outline: currentcolor none medium;
}

.listItem:hover {
  background-color: #f5f5f5;
}

.listItem:hover > .listItemButton{
  display: flex;
}

.listItemActive {
  background-color: #e9f3ff !important;
}

.listItemContent {
  max-width: calc(100% - 36px);
  margin: auto 0;
  flex-grow: 1;
}

.listItemButton {
  width: 36px;
  height: 36px;
  padding: 9px;
  margin: auto;
  display: none;
  border: none;
  border-radius: 36px;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 10%);
  background: #fff;
  cursor: pointer;
}

.listItemButton:hover {
  background: #fafafa;
}

.listItemButton svg {
  margin: auto;
}

.preformatted {
  white-space: pre;
}

@media only screen and (max-width: 500px) {
  .aside {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    transition: left 0.3s ease-in;
  }

  .asideOpen {
    left: 0;
  }
}