| author | duong tam kien <tk@deveha.com> |
| Wed, 07 Jun 2017 18:18:44 +0200 | |
| changeset 20 | a8300ef1876e |
| parent 19 | f1b125b95fe9 |
| child 21 | 284e866f55c7 |
| permissions | -rw-r--r-- |
|
19
f1b125b95fe9
Introduce "annotation" plugin.
Alexandre Segura <mex.zktk@gmail.com>
parents:
18
diff
changeset
|
1 |
@import "bootstrap/variables"; |
|
f1b125b95fe9
Introduce "annotation" plugin.
Alexandre Segura <mex.zktk@gmail.com>
parents:
18
diff
changeset
|
2 |
|
| 2 | 3 |
.App { |
4 |
text-align: center; |
|
5 |
} |
|
6 |
||
7 |
.App-logo { |
|
8 |
animation: App-logo-spin infinite 20s linear; |
|
9 |
height: 80px; |
|
10 |
} |
|
11 |
||
12 |
.App-header { |
|
13 |
background-color: #222; |
|
14 |
height: 150px; |
|
15 |
padding: 20px; |
|
16 |
color: white; |
|
17 |
} |
|
18 |
||
19 |
.App-intro { |
|
20 |
font-size: large; |
|
21 |
} |
|
22 |
||
| 5 | 23 |
.toolbar-menu { |
|
19
f1b125b95fe9
Introduce "annotation" plugin.
Alexandre Segura <mex.zktk@gmail.com>
parents:
18
diff
changeset
|
24 |
padding-bottom: 10px; |
| 5 | 25 |
border-bottom: 2px solid #eee; |
26 |
margin-bottom: 20px; |
|
27 |
.button { |
|
28 |
color: #ccc; |
|
29 |
cursor: pointer; |
|
|
19
f1b125b95fe9
Introduce "annotation" plugin.
Alexandre Segura <mex.zktk@gmail.com>
parents:
18
diff
changeset
|
30 |
margin-right: 10px; |
| 5 | 31 |
} |
32 |
||
33 |
.button[data-active="true"] { |
|
34 |
color: black; |
|
35 |
} |
|
36 |
} |
|
37 |
||
|
12
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
38 |
.editor-wrapper { |
|
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
39 |
border: 1px solid #efefef; |
|
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
40 |
padding: 20px; |
|
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
41 |
} |
|
48ddaa42b810
Draft implementation of sessions.
Alexandre Segura <mex.zktk@gmail.com>
parents:
5
diff
changeset
|
42 |
|
| 5 | 43 |
|
| 2 | 44 |
@keyframes App-logo-spin { |
45 |
from { transform: rotate(0deg); } |
|
46 |
to { transform: rotate(360deg); } |
|
47 |
} |
|
|
18
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
48 |
|
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
49 |
.note { |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
50 |
position: relative; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
51 |
padding-left: 70px; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
52 |
margin-bottom: 20px; |
|
19
f1b125b95fe9
Introduce "annotation" plugin.
Alexandre Segura <mex.zktk@gmail.com>
parents:
18
diff
changeset
|
53 |
min-height: ($line-height-computed * 3); |
|
18
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
54 |
|
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
55 |
&:before { |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
56 |
content: ""; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
57 |
position: absolute; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
58 |
top: 0; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
59 |
bottom: 0; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
60 |
left: 27px; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
61 |
z-index: -1; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
62 |
display: block; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
63 |
width: 2px; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
64 |
background-color: #e6ebf1; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
65 |
} |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
66 |
|
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
67 |
.start, .finish { |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
68 |
position: absolute; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
69 |
background-color: #fff; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
70 |
} |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
71 |
|
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
72 |
.start { |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
73 |
top: 0; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
74 |
left: 0; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
75 |
} |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
76 |
.finish { |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
77 |
bottom: 0; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
78 |
left: 0; |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
79 |
} |
|
dab2a16500e0
Add some styles for note timings.
Alexandre Segura <mex.zktk@gmail.com>
parents:
12
diff
changeset
|
80 |
} |
|
19
f1b125b95fe9
Introduce "annotation" plugin.
Alexandre Segura <mex.zktk@gmail.com>
parents:
18
diff
changeset
|
81 |
|
|
f1b125b95fe9
Introduce "annotation" plugin.
Alexandre Segura <mex.zktk@gmail.com>
parents:
18
diff
changeset
|
82 |
span.annotation { |
|
f1b125b95fe9
Introduce "annotation" plugin.
Alexandre Segura <mex.zktk@gmail.com>
parents:
18
diff
changeset
|
83 |
background-color: yellow; |
|
f1b125b95fe9
Introduce "annotation" plugin.
Alexandre Segura <mex.zktk@gmail.com>
parents:
18
diff
changeset
|
84 |
text-decoration-line: underline; |
|
f1b125b95fe9
Introduce "annotation" plugin.
Alexandre Segura <mex.zktk@gmail.com>
parents:
18
diff
changeset
|
85 |
text-decoration-style: dotted; |
|
f1b125b95fe9
Introduce "annotation" plugin.
Alexandre Segura <mex.zktk@gmail.com>
parents:
18
diff
changeset
|
86 |
|
|
f1b125b95fe9
Introduce "annotation" plugin.
Alexandre Segura <mex.zktk@gmail.com>
parents:
18
diff
changeset
|
87 |
} |