|
4
|
1 |
--- |
|
|
2 |
--- |
|
|
3 |
|
|
20
|
4 |
nav.navbar { |
|
|
5 |
background: none; |
|
|
6 |
} |
|
|
7 |
|
|
|
8 |
$grey-light : rgba(0, 0, 0, .125); |
|
|
9 |
|
|
4
|
10 |
#session { |
|
|
11 |
background: white; |
|
20
|
12 |
// border: 1px black solid; |
|
|
13 |
|
|
|
14 |
display: flex; |
|
|
15 |
align-items: center; |
|
|
16 |
justify-content: center; |
|
|
17 |
|
|
4
|
18 |
position: fixed; |
|
20
|
19 |
width: 260px; |
|
|
20 |
height: 100%; |
|
|
21 |
z-index: 99999999; |
|
|
22 |
overflow: hide; |
|
4
|
23 |
|
|
20
|
24 |
.card { |
|
|
25 |
top: -38px; |
|
|
26 |
|
|
|
27 |
width: 220px; |
|
|
28 |
height: 600px; |
|
4
|
29 |
|
|
20
|
30 |
ul { |
|
|
31 |
//height: 200px; |
|
|
32 |
overflow-y: scroll; |
|
|
33 |
} |
|
|
34 |
} |
|
4
|
35 |
} |
|
|
36 |
|
|
|
37 |
#editor { |
|
|
38 |
width: 100%; |
|
|
39 |
background: white; |
|
20
|
40 |
height: 7em; |
|
4
|
41 |
|
|
20
|
42 |
border-top: 1px solid $grey-light; |
|
4
|
43 |
|
|
|
44 |
textarea { |
|
20
|
45 |
// border: 1px solid black; |
|
|
46 |
// with: 100%; |
|
|
47 |
// height: 2em; |
|
4
|
48 |
} |
|
|
49 |
} |
|
|
50 |
|