source: SRUAggregator/trunk/src/main/resources/assets/base.css @ 6050

Last change on this file since 6050 was 6050, checked in by emanuel.dima@uni-tuebingen.de, 9 years ago

alpha 22 still: fix of whitespaces

File size: 7.5 KB
Line 
1/* clarin blue: rgb(0,64,111) #00406F; */
2/* clarin gold: rgb(128,107,82) #806A52; */
3
4.aligncenter {
5        text-align: center;
6}
7
8
9.muted {
10        font-weight:300;
11        color: #888;
12}
13
14.unselectable {
15        -ms-touch-action: manipulation;
16        touch-action: manipulation;
17        cursor: pointer;
18        -webkit-user-select: none;
19        -moz-user-select: none;
20        -ms-user-select: none;
21        user-select: none;
22        -webkit-touch-callout: none;
23        -khtml-user-select: none;
24}
25
26.top-gap {
27        margin-top: 64px;
28}
29
30.inline {
31        display:inline-block;
32}
33
34.link {
35        cursor: pointer;
36}
37
38.vcenter {
39    display: inline-block;
40    vertical-align: middle;
41    float: none;
42}
43
44.float-right {
45    float: right;
46}
47
48/*** error ***/
49
50.errorDiv {
51        position: relative;
52        height: 10px;
53        text-align: center;
54}
55
56.errorRow { 
57        position: absolute;
58        width: 100%;
59        text-align: center;
60        font-weight: bold;
61        text-align: center;
62}
63
64.errorRow div * {
65        color: #fff;
66        border-radius: 4px;
67        background-color: #a20; 
68        text-align: center;
69        margin: 0 auto;
70}
71
72.errorRow .errorMessage {
73        margin: 2px 0;
74}
75
76/*** SEARCH ***/
77
78.biglabel {
79        font-size: 16px;
80}
81
82button.search {
83         /*width: 64px;*/
84         /*min-width:64px;*/
85}
86
87input[type="text"].search {
88         /*width: 64px;*/
89}
90
91.search::-webkit-input-placeholder { /* WebKit browsers */
92    color:    #aaa;
93}
94.search:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
95   color:    #aaa;
96   opacity:  1;
97}
98.search::-moz-placeholder { /* Mozilla Firefox 19+ */
99   color:    #aaa;
100   opacity:  1;
101}
102.search:-ms-input-placeholder { /* Internet Explorer 10+ */
103   color:    #aaa;
104}
105
106
107/*** input ***/
108
109.nobkg {
110        background-color: transparent;
111        border: none;
112}
113
114/* large spinner */
115input[type=number]::-webkit-inner-spin-button, 
116input[type=number]::-webkit-outer-spin-button { 
117        margin-left: 2px; 
118        font-size:24px;
119}
120
121
122input, select, textarea {
123        -webkit-transition: all 0.30s ease-in-out;
124        -moz-transition: all 0.30s ease-in-out;
125        -ms-transition: all 0.30s ease-in-out;
126        -o-transition: all 0.30s ease-in-out;
127        outline: none;
128        border: 1px solid #ccc;
129}
130input:focus, select:focus, textarea:focus, button:focus, a:focus {
131  /*box-shadow: 0 0 5px #00406F !important;*/
132  /*border: 1px solid #00406F !important;*/
133  box-shadow: 0 0 10px rgb(179,216,253) !important;
134  /*border: 1px solid rgb(179,216,253) !important;*/
135  outline: none !important;
136}
137
138input.input {
139        background-color: #fff;
140
141        display: inline-block;
142        padding: 6px 6px;
143        margin-bottom: 0;
144        font-size: 14px;
145        font-weight: 400;
146        line-height: 1.42857143;
147        text-align: right;
148        white-space: nowrap;
149        vertical-align: middle;
150        cursor: pointer;
151        -webkit-user-select: none;
152        -moz-user-select: none;
153        -ms-user-select: none;
154        user-select: none;
155        background-image: none;
156        border: 1px solid #ccc;
157        border-radius: 4px;
158        display: inline-block;
159}
160
161p.input {
162        background-color: #fff;
163
164        display: inline-block;
165        padding: 6px 6px;
166        margin-bottom: 0;
167        font-size: 14px;
168        font-weight: 400;
169        line-height: 1.42857143;
170        text-align: left;
171        white-space: nowrap;
172        vertical-align: middle;
173        cursor: default;
174        -webkit-user-select: none;
175        -moz-user-select: none;
176        -ms-user-select: none;
177        user-select: none;
178        background-image: none;
179        border: 1px solid transparent;
180        border-radius: 4px;
181}
182
183/*** corpus selection panel ***/
184
185div.corpus-container {
186        margin: 5px 0;
187        border-bottom: 1px solid #eee;
188}
189div.corpus-container:hover {
190        box-shadow: 0 0 10px rgb(179,216,253) !important;
191}
192div.corpus-container.dimmed {
193        /*font-weight: 300;*/
194        /*opacity: 0.8;*/
195}
196
197div.modal-dialog input {
198        border-radius:6px;
199}
200
201div.corpus h3 {
202        margin: 0px 0 5px 0;
203        font-size: 18px;
204}
205
206div.corpus p {
207        margin: 0;
208}
209
210div.corpus button {
211        /*border: none;*/
212}
213
214div.corpus .glyphicon {
215        font-size: 12px;
216        color: rgb(128,107,82); /*gold*/
217
218        -ms-touch-action: manipulation;
219        touch-action: manipulation;
220        cursor: pointer;
221        -webkit-user-select: none;
222        -moz-user-select: none;
223        -ms-user-select: none;
224        user-select: none;
225}
226
227div.corpus button .glyphicon.glyphicon-check {
228        font-size: 20px;
229        color: rgb(128,107,82); /*gold*/
230}
231div.corpus button .glyphicon.glyphicon-unchecked {
232        font-size: 20px;
233        color: rgb(0,64,111); /*blue*/
234}
235
236div.corpus .fa.fa-institution {
237        font-size: 12px;
238}
239
240div.corpus p {
241        margin: 5px 0;
242}
243
244div.corpus div.expansion-handle {
245        margin: 0 0 5px 0;
246        cursor: pointer;
247}
248
249
250/*** search results panel ***/
251
252div.panel {
253        box-shadow: none !important;
254        margin-bottom: 0;
255}
256
257div.modal-dialog {
258        width:auto;
259        max-width: 1024px;
260}
261
262div.panel-heading {
263        /*border: 1px solid #eee;*/
264        /*border-radius: 4px;*/
265        cursor: pointer;
266}
267
268div.panel-title {
269        font-size:16px;
270}
271
272div.panel-title .institutionName{
273        font-size: 12px;
274        font-weight:300;
275        color: #888;
276}
277
278.panel-body span {
279        color: #222;
280}
281 
282.panel-body span.keyword {
283        font-weight: bold;
284        font-size: 12px;
285        color: #000;
286        /*background-color: #00406F;*/ /*blue*/
287        /*background-color: rgb(223, 184, 155); /*gold*/
288        background-color: rgb(230, 242, 254); /*sky blue*/
289        /*color: #00406F;*/
290        /*color: rgb(215, 180, 105);*/
291        font-weight: bold;
292        padding: .15em .5em .25em;
293        border-radius: .2em;
294        /*display: inline;*/
295}
296 
297.panel-body td.keyword {
298        color: #00406F;
299        font-weight: bold;
300        font-weight: bold;
301}
302 
303.bs-callout {
304        padding: 0 20px;
305        margin: 0 0 20px 0;
306        border: 1px solid #ddd;
307        /*border-left: 5px solid #806a52; /*brown*/
308        /*border-left: 5px solid rgb(191, 133, 64); /*other gold*/
309        border-left: 5px solid #00406F; /*blue*/
310        border-radius: 4px;
311}
312.bs-callout .panel-heading {
313        margin-top: 0;
314        margin-bottom: 5px;
315}
316.bs-callout .panel-title {
317        color: #806a52;
318        /*color: #222;*/
319}
320.panel-body {
321        border-top: 1px solid #ddd;     
322}
323
324.collapse.in {
325        /*opacity: 0.1;*/
326        transition: all .5s ease-in;
327}
328
329
330table.table {
331        margin-bottom: 0;
332}
333
334td {
335        border: none !important;
336}
337
338.panel-body .table-hover > tbody > tr.hitrow:hover {
339    background-color: #F5F5F5;
340}
341
342.panel-body div > p.hitrow {
343        margin:0;
344        padding: 5px 0;
345}
346
347.panel-body div > p.hitrow:hover {
348    background-color: #F5F5F5;
349}
350
351div.popover {
352        max-width:552px;
353}
354
355/*** transitions css ***/
356
357.fade-enter {
358  opacity: 0.01;
359  transition: all .2s ease-in;
360}
361.fade-enter.fade-enter-active {
362  opacity: 1;
363}
364.fade-leave {
365  opacity: 1;
366  transition: all .2s ease-in;
367}
368.fade-leave.fade-leave-active {
369  opacity: 0.01;
370}
371
372
373.error-enter {
374  opacity: 0.01;
375  transition: all .2s ease-in;
376}
377.error-enter.error-enter-active {
378  opacity: 1;
379}
380.error-leave {
381  opacity: 1;
382  transition: all .2s ease-in;
383}
384.error-leave.error-leave-active {
385  opacity: 0.01;
386}
387
388
389.display-enter {
390  opacity: 0.01;
391  transition: all 2s ease-in;
392}
393.display-enter.display-enter-active {
394  opacity: 1;
395}
396.display-leave {
397  opacity: 1;
398  transition: all 2s ease-in;
399}
400.display-leave.display-leave-active {
401  opacity: 0.01;
402}
403
404/*** BOTTOM  ***/
405
406div.progress {
407        margin-bottom: 0;
408        height: 6px;
409}
410
411/*** BETA ***/
412
413.beta-tag {
414        position:absolute; 
415        /*color:rgba(17, 65, 111, 0.1); */
416        color:rgba(128, 107, 82, 0.2);
417        margin: 64px 0 0 0; 
418        font-size:36px;
419        font-weight:bold;
420        -webkit-transform: rotate(-30deg);
421        -moz-transform: rotate(-30deg);
422        -ms-transform: rotate(-30deg);
423        -o-transform: rotate(-30deg);
424}
425
426/*** file uploads ***/
427
428.btn-file {
429    position: relative;
430    overflow: hidden;
431}
432.btn-file input[type=file] {
433    position: absolute;
434    top: 0;
435    right: 0;
436    min-width: 100%;
437    min-height: 100%;
438    font-size: 100px;
439    text-align: right;
440    filter: alpha(opacity=0);
441    opacity: 0;
442    outline: none;
443    background: white;
444    cursor: inherit;
445    display: block;
446}
447
448code {
449        background-color: #f8f8f8;
450        border: 1px solid #ddd;
451        border-radius: 3px;
452        font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
453        font-size: 12px;
454        margin: 0 2px;
455        padding: 0px 5px;
456}
457
458
459/*** statistics ***/
460.statistics li, .statistics div
461{
462        font-family: Consolas,monaco,courier,monospace; 
463}
464
Note: See TracBrowser for help on using the repository browser.