|
442
|
1 |
/*! |
|
|
2 |
* _____ _ |
|
|
3 |
* | __ \ | | |
|
|
4 |
* | |__) |___ _ __ | | ____ _ _ __ |
|
|
5 |
* | _ // _ \ '_ \| |/ / _` | '_ \ |
|
|
6 |
* | | \ \ __/ | | | < (_| | | | | |
|
|
7 |
* |_| \_\___|_| |_|_|\_\__,_|_| |_| |
|
|
8 |
* |
|
|
9 |
* Copyright 2012-2015 Institut de recherche et d'innovation |
|
|
10 |
* contributor(s) : Yves-Marie Haussonne, Raphael Velt, Samuel Huron, |
|
|
11 |
* Thibaut Cavalié, Julien Rougeron. |
|
|
12 |
* |
|
|
13 |
* contact@iri.centrepompidou.fr |
|
|
14 |
* http://www.iri.centrepompidou.fr |
|
|
15 |
* |
|
|
16 |
* This software is a computer program whose purpose is to show and add annotations on a video . |
|
|
17 |
* This software is governed by the CeCILL-C license under French law and |
|
|
18 |
* abiding by the rules of distribution of free software. You can use, |
|
|
19 |
* modify and/ or redistribute the software under the terms of the CeCILL-C |
|
|
20 |
* license as circulated by CEA, CNRS and INRIA at the following URL |
|
|
21 |
* "http://www.cecill.info". |
|
|
22 |
* |
|
|
23 |
* The fact that you are presently reading this means that you have had |
|
|
24 |
* knowledge of the CeCILL-C license and that you accept its terms. |
|
|
25 |
*/ |
|
|
26 |
|
|
598
|
27 |
/*! renkan - v0.12.16 - Copyright © IRI 2016 */ |
|
442
|
28 |
|
|
|
29 |
html { |
|
|
30 |
overflow: visible !important; |
|
|
31 |
} |
|
|
32 |
|
|
|
33 |
body { |
|
|
34 |
font-family: Arial, Helvetica, sans-serif; background: #F6F6F6; color: #333333; |
|
|
35 |
} |
|
|
36 |
|
|
|
37 |
.clearer { |
|
|
38 |
display: block; clear: both; height: 1px; |
|
|
39 |
} |
|
|
40 |
|
|
|
41 |
h1 { |
|
|
42 |
margin-bottom: 5px; padding: 0 15px; background: #333333; color: #ffffff; |
|
|
43 |
font-weight: bold; font-size: 30px; line-height: 60px; |
|
|
44 |
} |
|
|
45 |
|
|
|
46 |
.right { |
|
|
47 |
width: 301px; position: absolute; top: 10px; right: 10px; |
|
|
48 |
} |
|
|
49 |
|
|
|
50 |
.main { |
|
|
51 |
margin: 10px 330px 10px 20px; |
|
|
52 |
} |
|
|
53 |
|
|
|
54 |
.blue-button { |
|
|
55 |
display: inline-block; padding: 4px 6px; |
|
|
56 |
color: #ffffff; text-decoration: none; border-radius: 4px; |
|
|
57 |
background: -moz-linear-gradient(top, #6080c0, #2040a0); |
|
|
58 |
background: -webkit-linear-gradient(top, #6080c0, #2040a0); |
|
|
59 |
box-shadow: 1px 1px 2px #808080; |
|
|
60 |
} |
|
|
61 |
|
|
|
62 |
.blue-button:hover { |
|
|
63 |
background: -moz-linear-gradient(top, #2040a0, #6080c0); |
|
|
64 |
background: -webkit-linear-gradient(top, #2040a0, #6080c0); |
|
|
65 |
} |
|
|
66 |
|
|
|
67 |
.update-preview { |
|
|
68 |
text-align: center; display: block; margin-bottom: 10px; font-size: 24px; font-weight: bold; line-height: 34px; |
|
|
69 |
} |
|
|
70 |
|
|
|
71 |
#preview { |
|
|
72 |
position: relative; border-left: 1px solid #000000; border-bottom: 1px solid #000000; width: 300px; height: 800px; |
|
|
73 |
border-radius: 4px; overflow: hidden; margin-bottom: 10px; |
|
|
74 |
} |
|
|
75 |
|
|
|
76 |
.section-title { |
|
|
77 |
font-size: 20px; font-weight: bold; margin: 20px 0 5px; |
|
|
78 |
} |
|
|
79 |
|
|
|
80 |
.first-level-list { |
|
|
81 |
margin: 5px 0; |
|
|
82 |
} |
|
|
83 |
|
|
|
84 |
.add-item { |
|
|
85 |
margin: 5px 0; font-size: 22px; font-weight: bold; line-height: 18px; |
|
|
86 |
} |
|
|
87 |
|
|
|
88 |
.add-item:hover:after { |
|
|
89 |
float: right; font-size: 14px; font-weight: normal; line-height: 18px; margin-left: 4px; |
|
|
90 |
} |
|
|
91 |
|
|
|
92 |
.add-search-engine:hover:after { |
|
|
93 |
content: "Add Search Engine"; |
|
|
94 |
} |
|
|
95 |
.add-resource:hover:after { |
|
|
96 |
content: "Add Resource"; |
|
|
97 |
} |
|
|
98 |
.add-bin:hover:after { |
|
|
99 |
content: "Add Bin"; |
|
|
100 |
} |
|
|
101 |
|
|
|
102 |
.item { |
|
|
103 |
padding: 5px; margin: 5px 0; border-radius: 4px; font-size: 12px; |
|
|
104 |
background: -moz-linear-gradient(top, #ffcc8f, #fff0d0); |
|
|
105 |
background: -webkit-linear-gradient(top, #ffcc8f, #fff0d0); |
|
|
106 |
box-shadow: 1px 1px 2px #808080; |
|
|
107 |
} |
|
|
108 |
|
|
|
109 |
.remove-item { |
|
|
110 |
float: right; font-size: 22px; line-height: 18px; height: 18px; margin: 0 0 2px -10px; font-weight: bold; |
|
|
111 |
} |
|
|
112 |
|
|
|
113 |
.setting { |
|
|
114 |
float: left; width: 260px; margin: 2px 15px 2px 2px; line-height: 24px; min-height: 24px; |
|
|
115 |
} |
|
|
116 |
|
|
|
117 |
.setting label { |
|
|
118 |
float: left; display: block; width: 100px; font-weight: bold; |
|
|
119 |
} |
|
|
120 |
|
|
|
121 |
.display-value { |
|
|
122 |
float: left; display: block; width: 160px; |
|
|
123 |
} |
|
|
124 |
|
|
|
125 |
.edit-value { |
|
|
126 |
width: 160px; display: none; border: 1px solid #cccccc; border-radius: 3px; |
|
|
127 |
} |
|
|
128 |
|
|
|
129 |
input.edit-value, textarea.edit-value { |
|
|
130 |
width: 154px; padding: 2px; |
|
|
131 |
} |
|
|
132 |
|
|
|
133 |
textarea.edit-value { |
|
|
134 |
resize: vertical; height: 72px; |
|
|
135 |
} |
|
|
136 |
|
|
|
137 |
.item-editing .display-value { |
|
|
138 |
display: none; |
|
|
139 |
} |
|
|
140 |
|
|
|
141 |
.item-editing .edit-value { |
|
|
142 |
display: inline-block; |
|
|
143 |
} |
|
|
144 |
|
|
|
145 |
.resource-list-title { |
|
|
146 |
clear: both; width: 100%; font-size: 16px; font-weight: bold; margin: 5px 0 0; |
|
|
147 |
} |
|
|
148 |
|
|
|
149 |
.resource { |
|
|
150 |
display: block; clear: both; |
|
|
151 |
padding: 5px; margin: 5px; border-radius: 4px; |
|
|
152 |
background: -moz-linear-gradient(top, #ff8f00, #ffcc8f); |
|
|
153 |
background: -webkit-linear-gradient(top, #ff8f00, #ffcc8f); |
|
|
154 |
box-shadow: 1px 1px 2px #808080; |
|
|
155 |
} |
|
|
156 |
|
|
|
157 |
.resource .display-value { |
|
|
158 |
display: inline-block; |
|
|
159 |
} |
|
|
160 |
|
|
|
161 |
.resource .edit-value { |
|
|
162 |
display: none; |
|
|
163 |
} |
|
|
164 |
|
|
|
165 |
.resource.resource-editing .display-value { |
|
|
166 |
display: none; |
|
|
167 |
} |
|
|
168 |
|
|
|
169 |
.resource.resource-editing .edit-value { |
|
|
170 |
display: inline-block; |
|
|
171 |
} |