Project

General

Profile

1 58322 k.triantaf
/* theme */
2 58274 k.triantaf
body {
3
    overflow: unset !important;
4
}
5 53352 argiro.kok
6 52161 argiro.kok
.custom-footer {
7 58054 k.triantaf
    position: relative;
8
    bottom: 0;
9
    width: 100%;
10 52002 argiro.kok
}
11 58054 k.triantaf
12 52161 argiro.kok
#tm-main {
13
    min-height: 80vh;
14
}
15 58054 k.triantaf
16 52002 argiro.kok
.custom-external {
17
    background: rgba(0, 0, 0, 0) url("./external-link.svg") no-repeat scroll left 10%;
18
    min-height: 15px;
19
    background-size: 15px 15px;
20
    padding-left: 16px;
21
}
22 58054 k.triantaf
23 52002 argiro.kok
h2 .custom-external {
24 58054 k.triantaf
    min-height: 20px;
25 52002 argiro.kok
    background-size: 20px 20px;
26
    padding-left: 21px;
27
    background: rgba(0, 0, 0, 0) url("./external-link.svg") no-repeat scroll left center;
28
29
}
30
31 58054 k.triantaf
.pseudo-external {
32
    padding-left: 16px;
33
    /*margin-bottom: 5px;*/
34 52002 argiro.kok
}
35
36 58054 k.triantaf
.custom-navbar-toggle-icon, .custom-user-mini-panel {
37
    color: #444 !important
38 52002 argiro.kok
}
39 58054 k.triantaf
40
.custom-user-mini-panel a {
41
    color: rgb(36, 91, 204);
42 52002 argiro.kok
}
43 58054 k.triantaf
44
.custom-main-content {
45
    min-height: 550px;
46 52002 argiro.kok
}
47
48
.custom-autocomplete .uk-nav-autocomplete > li > a:hover {
49
    background: #00a8e6 none repeat scroll 0 0;
50
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05) inset;
51
    color: #FFF;
52
    outline: medium none;
53
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
54
}
55
56
.custom-autocomplete .uk-nav-navbar > li > a {
57
    color: #444;
58
}
59 58054 k.triantaf
60
.custom-description-list-horizontal {
61
    line-height: 200%
62
}
63
64 58322 k.triantaf
/* theme */
65 52002 argiro.kok
.uk-alert-default {
66 58054 k.triantaf
    background: #fff none repeat scroll 0 0;
67 52002 argiro.kok
    border: 1px solid #ddd;
68
    border-radius: 4px;
69
    color: #444;
70 57860 argiro.kok
    min-height: 30px;
71 52002 argiro.kok
    max-width: 100%;
72
    padding: 4px 6px;
73
74
}
75 58054 k.triantaf
76
.custom-hidden-dropdown-menu {
77
    position: static !important;
78 52002 argiro.kok
}
79 58054 k.triantaf
80
.searchFilterBoxValues {
81
    overflow: auto;
82
    max-height: 200px;
83
}
84
85
.selected-filters-box {
86
    margin: 5px;
87
    background-color: #F8F8F8;
88
}
89
90
.search-form {
91
    margin: 5px;
92
}
93
94
.clickable {
95
    cursor: pointer;
96 58274 k.triantaf
    user-select: none;
97 58054 k.triantaf
}
98
99
.search-filters .uk-accordion-title {
100
    font-size: 14px;
101
    line-height: 18px;
102
}
103
104 52002 argiro.kok
.search-results {
105 58054 k.triantaf
    min-height: 600px;
106 52002 argiro.kok
}
107 58054 k.triantaf
108 52002 argiro.kok
.searchPaging {
109 58054 k.triantaf
    min-height: 46px;
110 52002 argiro.kok
}
111 56561 konstantin
112
.searchFormMinHeight {
113
    min-height: 400px;
114
}
115
116 52002 argiro.kok
.helper-left-right {
117 58054 k.triantaf
    /* margin-top: 75px; */
118
    max-width: 20%;
119 52002 argiro.kok
}
120
121 58054 k.triantaf
.errors-in-searchTableView {
122
    margin-top: 75px;
123 52002 argiro.kok
}
124
125
@media (min-width: 960px) {
126
    .float-children-right-at-medium > * {
127
        float: right;
128
    }
129
}
130
131
@media (max-width: 959px) {
132 58054 k.triantaf
    .margin-small-top-at-small {
133
        margin-top: 10px !important;
134
    }
135 52002 argiro.kok
}
136
137
.other-results {
138 58054 k.triantaf
    min-height: 300px;
139 52002 argiro.kok
}
140 52607 konstantin
141
/* "OPEN SOURCE" INCLUDED */
142 58054 k.triantaf
.OPEN, .OPENSOURCE {
143 52002 argiro.kok
    background: rgba(0, 0, 0, 0) url("./unlock.svg") no-repeat scroll right top;
144
    padding-right: 25px;
145
    min-height: 20px;
146
    background-size: 20px 20px;
147
    font-weight: 400;
148
    text-transform: none;
149
}
150
151
152
.EMBARGO, .CLOSED, .RESTRICTED {
153
    background: rgba(0, 0, 0, 0) url("./lock.svg") no-repeat scroll right top;
154
    padding-right: 25px;
155
    min-height: 20px;
156
    background-size: 20px 20px;
157
    font-weight: 400;
158
    text-transform: none;
159
}
160
161 52607 konstantin
.UNKNOWN {
162
163
    background: rgba(0, 0, 0, 0) url("./question.svg") no-repeat scroll right top;
164
    padding-right: 25px;
165
    min-height: 20px;
166
    background-size: 20px 20px;
167
    font-weight: 400;
168
    text-transform: none;
169
170
}
171
172 52002 argiro.kok
.sc39 {
173
    background: rgba(0, 0, 0, 0) url("./sc39.png") no-repeat scroll right center;
174
    padding-right: 24px;
175
}
176
177
.projectIcon {
178
    display: inline-table;
179
}
180
181 58054 k.triantaf
.dateFilter .mydp {
182
    margin-top: 5px;
183 52002 argiro.kok
}
184
185
186
/*.tooltip {
187
    max-width: none;
188
    background: rgba(100, 100, 100, 1);
189
}*/
190
.tooltip-custom-font-size {
191
    font-size: 120%;
192
}
193 58356 k.triantaf
194 58322 k.triantaf
/* theme */
195 57329 konstantin
.uk-tooltip {
196
    background: #666;
197
}
198
199 58054 k.triantaf
.custom-select-mini {
200
    max-width: 170px !important;
201 52002 argiro.kok
}
202 58054 k.triantaf
203 52002 argiro.kok
.custom-icon {
204
    line-height: unset;
205
}
206 58054 k.triantaf
207 52002 argiro.kok
/*.custom-tab-content-large{
208
    min-height: 800px;
209
}
210
 */
211
.custom-tab-content {
212
    min-height: 250px;
213
}
214
215
.custom-dataTable-content {
216
    min-height: 600px;
217
}
218
219
.custom-html-table-height {
220 58054 k.triantaf
    height: 500px;
221 52002 argiro.kok
}
222
223
224 56675 argiro.kok
/*.filterItem span {*/
225
/*display: inline-flex;*/
226
/*}*/
227
/*.filterItem .filterName {*/
228
/*max-width: 71%;*/
229 52002 argiro.kok
230 56675 argiro.kok
/*}*/
231
/*.browseFilters .filterItem .filterName {*/
232
/*max-width: 68%;*/
233
/*}*/
234 52002 argiro.kok
235 56675 argiro.kok
/*.filterItem .filterNumber {*/
236
/*width: 20%;*/
237
/*}*/
238
/*.filterItem span {*/
239 52002 argiro.kok
240 56675 argiro.kok
/*white-space: nowrap;*/
241
/*}*/
242
/*.browseFilters .filterItem span div {*/
243
/*  !*min-width: 45px;*!*/
244
/*}*/
245
/*.filterItem span div {*/
246
/*overflow: hidden;*/
247
/*text-overflow: ellipsis;*/
248
/*!*min-width: 81px;*!*/
249
/*}*/
250
/*.filterItem{*/
251
/*  margin-bottom: 5px !important;*/
252
/*}*/
253 52002 argiro.kok
254 58054 k.triantaf
.browseFilters {
255
    overflow-y: auto;
256
    overflow-x: hidden;
257
    max-height: 265px;
258 52002 argiro.kok
}
259
260
261
.custom-offcanvas-close {
262
    position: relative;
263
    right: 0;
264
    top: 0;
265
}
266 58054 k.triantaf
267 53352 argiro.kok
/* .uk-link{
268 52002 argiro.kok
  color: #292C3D !important;
269 53352 argiro.kok
} */
270 56561 konstantin
/*.uk-breadcrumb > :last-child > * {*/
271
/*    color:#cbcbcb !important;*/
272
/*}*/
273
/*.uk-breadcrumb .uk-active a{*/
274
/*    color: #767779  !important;*/
275
/*}*/
276 52002 argiro.kok
277 53549 argiro.kok
278 58054 k.triantaf
.entityTitleIcon {
279
    background-repeat: no-repeat;
280
    content: '';
281
    display: inline-block;
282
    height: 36px;
283
    width: 42px;
284
    vertical-align: middle;
285 52002 argiro.kok
}
286
287 58054 k.triantaf
.entityIcon {
288
    height: 15px;
289
    width: 20px;
290
291 52002 argiro.kok
}
292 58054 k.triantaf
293 52002 argiro.kok
/*.uk-tab{
294
  border-bottom: 1px #cbcbcb solid;
295
}*/
296 58274 k.triantaf
.label-classified {
297
    border-radius: 4px;
298
    padding: 1px 8px;
299
    background-color: #ABABAB;
300
    color: white;
301
    text-transform: uppercase;
302
    margin-bottom: 5px;
303
    margin-right: 5px;
304
}
305 52002 argiro.kok
306
.label-blue, .label-compatibility {
307 58054 k.triantaf
    background: #d4f3ff;
308
    color: #00a0de
309 52002 argiro.kok
}
310 58054 k.triantaf
311 58063 k.triantaf
.label-green, .label-open {
312 58054 k.triantaf
    background: #d1f6e8;
313
    color: #01a566
314 52002 argiro.kok
}
315 58054 k.triantaf
316 52002 argiro.kok
.label-yellow, .label-underCuration {
317 58054 k.triantaf
    background: #fef5d2;
318
    color: #cca607
319 52002 argiro.kok
}
320 58054 k.triantaf
321 52002 argiro.kok
.label-red, .label-funder {
322 58054 k.triantaf
    background: #fef0ef;
323
    color: #f54f43
324 52002 argiro.kok
}
325 58054 k.triantaf
326
.label-grey, .label-language {
327
    background: #f8f8f8;
328
    color: #666;
329 52002 argiro.kok
}
330 58054 k.triantaf
331 52607 konstantin
.label-country {
332 58054 k.triantaf
    background: #d4f3ff;
333
    color: #00a0de;
334 52607 konstantin
}
335 58054 k.triantaf
336
.label-publication {
337
    background: #4687E6;
338
    color: #fff
339 52002 argiro.kok
}
340 58054 k.triantaf
341
.label-dataset {
342
    background: #1e906c;
343
    color: #fff
344 52002 argiro.kok
}
345
346 58054 k.triantaf
.label-software {
347
    background: #b737ff;
348
    color: #fff
349 52002 argiro.kok
}
350 58054 k.triantaf
351
.label-orp, .label-other {
352
    background: #f54f43;
353
    color: #414141 !important;
354 52002 argiro.kok
}
355 58054 k.triantaf
356
.label-project {
357
    background: #d0307f;
358
    color: #fff
359 52607 konstantin
}
360 52002 argiro.kok
361 58054 k.triantaf
.label-dataprovider {
362
    background: #00a0de;
363
    color: #fff
364
}
365 52002 argiro.kok
366 58054 k.triantaf
.label-organization {
367
    background: #fbcd0d;
368
    color: #414141
369
}
370 52002 argiro.kok
371 58063 k.triantaf
.label-unknown, .label-funder,
372 58054 k.triantaf
.label-compatibility,
373 53378 argiro.kok
.label-underCuration,
374
.label-funder,
375 58054 k.triantaf
.label-language,
376 53378 argiro.kok
.label-country,
377 58274 k.triantaf
.label-type,
378 53378 argiro.kok
.label-orange, .label-sc39,
379 58054 k.triantaf
.label-language, .label-publication,
380 53378 argiro.kok
.label-publication,
381
.label-dataset,
382
.label-software,
383
.label-orp, .label-other, .label-project, .label-dataprovider, .label-organization,
384 58054 k.triantaf
.label-grey, .label-success, .label-community {
385
    background: white !important;
386
    color: #666666 !important;
387
    border: 1px solid #666666 !important;
388 53378 argiro.kok
}
389 52002 argiro.kok
390 58063 k.triantaf
.label-open {
391 58054 k.triantaf
    background: var(--portal-main-color) !important;
392
    color: #ffffff !important;
393
    border: 1px solid var(--portal-main-color) !important;
394
}
395 52002 argiro.kok
396 58063 k.triantaf
.label-closed {
397 58054 k.triantaf
    background: #EBEBEB !important;
398
    color: #6B6B6B !important;
399
    border: 1px solid #DEDEDE !important;
400 53378 argiro.kok
}
401 56561 konstantin
402
.label-danger {
403 58054 k.triantaf
    color: #ff4000 !important;
404 56561 konstantin
    border: 1px solid #666666 !important;
405
}
406
407 58054 k.triantaf
.li-disabled .label-compatibility, .li-disabled .label-dataprovider {
408
    background: white !important;
409
    color: #A9A9A9 !important;
410
    border: 1px solid #A9A9A9 !important;
411 54755 konstantin
}
412 53378 argiro.kok
413 58322 k.triantaf
/* theme */
414 52002 argiro.kok
.uk-tab {
415 58054 k.triantaf
    display: -ms-flexbox;
416
    display: -webkit-flex;
417
    display: flex;
418
    -ms-flex-wrap: wrap;
419
    -webkit-flex-wrap: wrap;
420
    flex-wrap: wrap;
421
    margin-left: -20px;
422
    padding: 0;
423
    list-style: none;
424
    position: relative;
425 52002 argiro.kok
}
426 58054 k.triantaf
427 58322 k.triantaf
/* theme */
428 52002 argiro.kok
.uk-tab::before {
429
    content: "";
430
    position: absolute;
431
    bottom: 0;
432
    left: 20px;
433
    right: 0;
434
    border-bottom: 1px solid #e5e5e5;
435
}
436 58054 k.triantaf
437 58322 k.triantaf
/* theme */
438 52002 argiro.kok
.uk-tab-left::before {
439
    border-bottom: none !important;
440
}
441
442
443 58054 k.triantaf
.searchForm, .generalSearchForm {
444
    background: url('./search_general.jpg');
445
    box-sizing: border-box;
446
    height: 320px;
447 52002 argiro.kok
}
448 58054 k.triantaf
449
.publicationsSearchForm {
450
    background: url('./search_pubs_1.jpg');
451
    box-sizing: border-box;
452
    height: 320px;
453 52002 argiro.kok
}
454 58054 k.triantaf
455
.projectsSearchForm, .projectsTableSearchForm {
456
    background: url('./projects_search.jpg');
457
    box-sizing: border-box;
458
    height: 320px;
459 52002 argiro.kok
}
460 58054 k.triantaf
461
.organizationsSearchForm {
462
    background: url('./search_organizations.jpg');
463
    box-sizing: border-box;
464
    height: 320px;
465 52002 argiro.kok
}
466 58054 k.triantaf
467
.datasetsSearchForm {
468
    background: url('./search_data.jpg');
469
    box-sizing: border-box;
470
    height: 320px;
471 52002 argiro.kok
}
472 58054 k.triantaf
473
.softwareSearchForm {
474
    background: url('./search_software.jpg');
475
    box-sizing: border-box;
476
    height: 320px;
477 52002 argiro.kok
}
478 58054 k.triantaf
479
.orpsSearchForm {
480
    background: url('./search_other.jpg');
481
    box-sizing: border-box;
482
    height: 320px;
483 52818 konstantin
}
484 58054 k.triantaf
485
.datasourcesSearchForm, .compatibleDatasourcesSearchForm, .compatibleDatasourcesTableSearchForm, .datasourcesTableSearchForm {
486
    background: url('./providers_search.jpg');
487
    box-sizing: border-box;
488
    height: 320px;
489 52002 argiro.kok
}
490 58054 k.triantaf
491
.journalsSearchForm, .journalsTableSearchForm {
492
    background: url('./search_journals.jpg');
493
    box-sizing: border-box;
494
    height: 320px;
495 52002 argiro.kok
}
496 58054 k.triantaf
497 52002 argiro.kok
.entityRegistriesSearchForm, .entityRegistriesTableSearchForm {
498 58054 k.triantaf
    background: url('./search_registries.jpg');
499
    box-sizing: border-box;
500
    height: 320px;
501 52002 argiro.kok
}
502
503
.divider-table tbody td, .uk-table th {
504
    border-bottom: 1px solid #E5E5E5;
505 58054 k.triantaf
}
506 52002 argiro.kok
507 58054 k.triantaf
#feedback {
508
    float: left;
509
    position: fixed;
510
    top: calc(50% - 47px);
511
    right: 0;
512 52011 argiro.kok
    z-index: 100;
513 52002 argiro.kok
    display: block;
514
515 58054 k.triantaf
}
516 52002 argiro.kok
517 58054 k.triantaf
#feedback a {
518
    background: #666 !important;
519
    border-radius: 5px 0 0 5px;
520
    box-shadow: none;
521
    border: none !important;
522
    display: block;
523
    padding: 20px 12px;
524
    transition: all .2s ease-in-out;
525
    opacity: 0.5;
526 52002 argiro.kok
527 58054 k.triantaf
}
528 52002 argiro.kok
529 58054 k.triantaf
#feedback a:hover {
530
    padding-right: 20px;
531
}
532 52002 argiro.kok
533 58054 k.triantaf
.descriptionText {
534
    /* Padding-left: 25px !important;
535
    Border-left: 10px solid #fafafa; */
536
    display: inline-block;
537
    position: relative;
538
    top: calc(-0.1 * 1em);
539
    vertical-align: middle;
540
    margin-right: 10px;
541
    /* border-left: 8px solid #e5e5e5; */
542
    margin-top: 8px;
543
    color: #666666 !important;
544
    line-height: 22px !important;
545 52002 argiro.kok
546
}
547
548
549 58054 k.triantaf
.custom-offcanvas-bar {
550
    background: grey !important;
551
    width: 100% !important;
552 52002 argiro.kok
553
}
554
555 58054 k.triantaf
.custom-offcanvas-bar .filtersModal {
556
    color: grey !important;
557
558 52002 argiro.kok
}
559
560 58054 k.triantaf
.list-horizontal {
561
    display: flex;
562 52002 argiro.kok
}
563 58054 k.triantaf
564
.list-horizontal span {
565
    margin-right: 5px;
566
    padding-left: 0px !important;
567
568
}
569
570 52002 argiro.kok
.list-horizontal-line span {
571 58054 k.triantaf
    margin-right: 5px;
572
    border-right: 1px solid #f1f1f1;
573
    padding-right: 5px;
574 52002 argiro.kok
575
}
576
577
.list-horizontal-line > span:last-child {
578 58054 k.triantaf
    border-right: none;
579 52002 argiro.kok
}
580 58054 k.triantaf
581
h2, h4 {
582 53378 argiro.kok
    text-transform: none !important;
583 52002 argiro.kok
}
584 58054 k.triantaf
585
.linkdropdown {
586
    min-width: 250px;
587 52002 argiro.kok
}
588 58054 k.triantaf
589 58322 k.triantaf
/* theme */
590 58054 k.triantaf
.uk-button-action {
591
    background-color: #D6352B;
592
    color: #fff
593 52002 argiro.kok
}
594 58054 k.triantaf
595 53378 argiro.kok
/* h2, .uk-h2{
596 52002 argiro.kok
  font-size:28px !important;
597 53378 argiro.kok
} */
598 52002 argiro.kok
.app-box {
599 57853 konstantin
    border: #DFDFF0 solid 1px;
600
    background-color: #FAFBFF;
601 52002 argiro.kok
}
602
603 58322 k.triantaf
/* theme */
604 58054 k.triantaf
.uk-subnav-line li:hover .home-icon svg #home {
605
    fill: #05007A !important;
606 52002 argiro.kok
607
}
608
609 58054 k.triantaf
svg #home {
610
    fill: white !important;
611
612 52002 argiro.kok
}
613 58054 k.triantaf
614
.tm-toolbar .uk-subnav-line li a:hover, .tm-toolbar .uk-subnav-line li:hover a {
615
    display: block;
616
    color: #d4d4d4 !important;
617 52002 argiro.kok
}
618
619 58054 k.triantaf
.tm-toolbar .uk-subnav-line li:hover {
620
    display: block;
621
}
622 52002 argiro.kok
623 58054 k.triantaf
/* remove the others*/
624
625
.helper-grid > * {
626 52002 argiro.kok
    padding-left: 25px !important;
627
}
628 58054 k.triantaf
629
.cite-this-button {
630
    font-size: 14px;
631
    padding: 3px;
632 52002 argiro.kok
}
633 58054 k.triantaf
634
.link-to-button {
635
    font-size: 12px;
636
    padding: 3px;
637 52002 argiro.kok
}
638 58054 k.triantaf
639
.dropBasket {
640
    border-top: 1px solid #ccc;
641
    border-bottom: 1px solid #ccc;
642 52002 argiro.kok
}
643 58054 k.triantaf
644 52002 argiro.kok
.basket-title {
645
646 52428 argiro.kok
    padding-top: 20px;
647 52822 argiro.kok
    padding-bottom: 20px;
648
    cursor: pointer;
649 52002 argiro.kok
650
}
651 58054 k.triantaf
652 52822 argiro.kok
.basket-title::after {
653
    background-image: none !important;
654
}
655 58054 k.triantaf
656 52002 argiro.kok
.basket-badge {
657 58054 k.triantaf
    position: relative;
658
    right: 16px;
659
    top: -16px;
660
    text-align: center;
661 52002 argiro.kok
    border-radius: 90%;
662 58054 k.triantaf
    border-radius: 90%;
663 52002 argiro.kok
664
}
665
666
667 58054 k.triantaf
dd {
668 52002 argiro.kok
    margin-top: 10px;
669
    border-bottom: 1px solid #e8e8e8;
670
    padding-bottom: 5px;
671
}
672
673
dd:last-child {
674
    border-bottom: none;
675
}
676 58054 k.triantaf
677 53352 argiro.kok
.advancedSearchFormBackground {
678
    background-repeat: no-repeat !important;
679
    background-size: 100% 320px;
680
    height: auto !important;
681
}
682 58054 k.triantaf
683 52002 argiro.kok
.advancedSearchForm {
684 52310 argiro.kok
    /*box-shadow: 0 1px 10px #444444;*/
685 53352 argiro.kok
    background-color: white;
686 52310 argiro.kok
    border: 1px solid #ccc;
687 52002 argiro.kok
}
688 58054 k.triantaf
689 52002 argiro.kok
.advancedSearchForm .uk-icon-button {
690
691
    fill: #296EE9 !important;
692
693
}
694
695
.search-results li {
696
    padding-top: 15px !important;
697
}
698 53225 konstantin
699
.cursor-not-allowed {
700 53452 konstantin
    cursor: not-allowed !important;
701 53225 konstantin
}
702
703 52002 argiro.kok
.uk-badge, .badge, a.badge {
704
    border-radius: 2px;
705
}
706 58054 k.triantaf
707 52003 argiro.kok
.loading-gif, .loading-gif:before, .loading-gif:after {
708 58054 k.triantaf
    background: url("./loading.gif") no-repeat;
709
    height: 65px;
710
    margin-left: auto;
711
    margin-right: auto;
712
    width: 65px;
713 52066 argiro.kok
714 52003 argiro.kok
}
715 52310 argiro.kok
716 53378 argiro.kok
/* h2, .uk-h2 {
717 52310 argiro.kok
    font-size: 28px !important;
718 53378 argiro.kok
} */
719 56675 argiro.kok
/*body{*/
720
/*  !* line-height: 1.4; *!*/
721
/*  Font-size:14px;*/
722
/*  Color: #333;*/
723
/*}*/
724 52310 argiro.kok
725
#footer\#8 .el-link {
726
727
    color: #fff;
728
    font-weigth: 300;
729
730
}
731 58054 k.triantaf
732 52310 argiro.kok
.custom-article-title {
733 58054 k.triantaf
    font-size: 32px;
734
    Margin-bottom: 10px;
735
    font-family: 'Open Sans', sans-serif;
736
    color: #1F257B !important;
737 52310 argiro.kok
}
738
739 58054 k.triantaf
.custom-tab-content .uk-pagination > * > * {
740
    min-width: 20px;
741
    line-height: 1.4;
742
    font-size: 14px;
743 52310 argiro.kok
744
}
745 58054 k.triantaf
746
.box-content {
747
    border: 1px dashed #666666;
748
    margin-top: 4px;
749
    background: #EFEFEF;
750 52310 argiro.kok
}
751
752
.citation-accordion .uk-accordion-title {
753 58054 k.triantaf
    font-family: Raleway;
754 52310 argiro.kok
}
755 58054 k.triantaf
756
.uk-notification.uk-notification-top-center {
757 52428 argiro.kok
    top: 45% !important;
758
}
759 58054 k.triantaf
760
.no-selected-message {
761
    background: white;
762 52428 argiro.kok
}
763 52373 argiro.kok
764
.textOverflowEllipsis {
765 58054 k.triantaf
    overflow: hidden;
766
    text-overflow: ellipsis;
767
    white-space: nowrap;
768 52373 argiro.kok
}
769
770 58054 k.triantaf
.multi-line-ellipsis p {
771
    display: -webkit-box;
772
    -webkit-box-orient: vertical;
773
    overflow: hidden;
774
    text-overflow: ellipsis;
775 57315 k.triantaf
}
776
777 58054 k.triantaf
.multi-line-ellipsis.lines-3 p {
778
    -webkit-line-clamp: 3;
779
}
780
781 57512 konstantin
.multi-line-ellipsis.lines-10 p {
782
    -webkit-line-clamp: 10;
783 57315 k.triantaf
}
784
785 58054 k.triantaf
.custom-accordion .uk-accordion-title {
786 52373 argiro.kok
    text-align: left;
787 53352 argiro.kok
    /* background: #f8f8fe; */
788 52373 argiro.kok
    padding: 4px;
789 53352 argiro.kok
    /* color: #3055ba !important; */
790 52373 argiro.kok
    font-size: 14px;
791
    text-transform: initial !important;
792
    font-weight: inherit !important;
793
    /*border-top: gray solid 1px;*/
794 53352 argiro.kok
    border-bottom: var(--portal-main-color) solid 1px;
795 52373 argiro.kok
796 53352 argiro.kok
797 52373 argiro.kok
}
798
799 58054 k.triantaf
.custom-accordion .uk-accordion-title::after {
800 52373 argiro.kok
    float: none;;
801
    padding: 12px;
802
}
803
804 58054 k.triantaf
.custom-accordion {
805
    /*border: gray solid 1px;*/
806
    border-top: 0px;
807 52373 argiro.kok
}
808
809 58054 k.triantaf
.custom-accordion .uk-accordion-content {
810 52771 argiro.kok
    margin: 0px;
811
    border: #eee 1px solid;
812
    border-top: none;
813
    padding: 12px;
814 52373 argiro.kok
}
815 58054 k.triantaf
816
.darkBackground {
817
    background-color: rgba(0, 0, 0, 0.5);
818
    z-index: 0;
819
    color: white !important;
820 52771 argiro.kok
    font-family: Roboto !important;
821
}
822
823 58054 k.triantaf
.whiteText {
824
    color: white !important;
825 52771 argiro.kok
    font-family: Roboto !important;
826
}
827 58054 k.triantaf
828
.shadowBox {
829
    box-shadow: 0 1px 3px #444444;
830
    /*box-shadow: 0 6px 10px rgba(0,0,0,0.15);*/
831 52771 argiro.kok
}
832 58054 k.triantaf
833
.icon-button-small {
834
    width: 22px !important;
835
    height: 22px !important;
836
    /*color: #666 !important;*/
837
    /*background: #f7f7fa !important;*/
838
}
839
840 53378 argiro.kok
.icon-button-small:focus, .icon-button-small:hover {
841
842
    border-color: #666 !important;
843
}
844 53352 argiro.kok
845 58054 k.triantaf
.searchFilterTitle {
846
847 53378 argiro.kok
    /* text-decoration-color: var(--portal-main-color);
848
    text-decoration: underline; */
849 58054 k.triantaf
    border-bottom: 1px solid var(--portal-main-color) !important;
850
    padding: 5px 0px;
851
    color: var(--portal-main-color);
852 53352 argiro.kok
}
853
854 58054 k.triantaf
.sideInfoTitle {
855 58274 k.triantaf
    font-weight: normal !important;
856
    border-radius: 4px;
857
    background-color: #F0F0F0;
858 58356 k.triantaf
    color: #666;
859 58274 k.triantaf
    padding: 5px 12px;
860
    font-size: 12px;
861 52771 argiro.kok
}
862 58054 k.triantaf
863 58322 k.triantaf
/* theme */
864 53352 argiro.kok
.uk-navbar-container {
865
    padding-top: 0px !important;
866
    padding-bottom: 0px !important;
867
}
868
869 58322 k.triantaf
/* theme */
870 58054 k.triantaf
.uk-input {
871
    background-color: rgba(255, 255, 255, 1.0) !important;
872 53352 argiro.kok
}
873 58054 k.triantaf
874 58322 k.triantaf
/* theme */
875 53352 argiro.kok
.uk-accordion > :nth-child(n+2) {
876
    border-top: 0px solid #ededed !important;
877
    margin-top: 0px !important;
878
}
879
880 58322 k.triantaf
/* theme */
881 58054 k.triantaf
.uk-pagination > .uk-active > * {
882
    background-color: var(--portal-main-color) !important;
883
    color: var(--portal-main-contrast) !important;
884
    border-color: var(--portal-main-color) !important;
885
    border-bottom-color: var(--portal-main-color) !important;
886
    border-radius: 500px;
887
    line-height: 12px !important;
888 53352 argiro.kok
}
889 58054 k.triantaf
890
.portal-color {
891
    color: var(--portal-main-color) !important;
892
}
893
894
.portal-secondary-color {
895 56675 argiro.kok
    color: var(--portal-dark-color) !important;
896
}
897
898 58054 k.triantaf
.portal-background-color {
899
    background-color: var(--portal-main-color) !important;
900 53352 argiro.kok
}
901 58054 k.triantaf
902 58274 k.triantaf
.portal-background-color * {
903
    color: var(--portal-main-contrast);
904
}
905
906 58356 k.triantaf
.portal-button, .portal-button-reverse:hover, .portal-button-reverse:active, .portal-button-reverse:focus {
907 53352 argiro.kok
908 58054 k.triantaf
    background-color: var(--portal-main-color);
909
    color: var(--portal-main-contrast);
910
    border: 1px solid var(--portal-main-color);
911
    background-image: none;
912 53352 argiro.kok
913
}
914 58054 k.triantaf
915 58356 k.triantaf
.portal-button:hover, .portal-button:active, .portal-button:focus {
916 58054 k.triantaf
    background-color: var(--portal-dark-color);
917
    color: var(--portal-main-contrast);
918
    border: 1px solid var(--portal-dark-color);
919
    background-image: none;
920 55303 argiro.kok
921
}
922 58054 k.triantaf
923 58139 argiro.kok
.portal-button-reverse {
924
    background-color: var(--portal-main-contrast);;
925
    color: var(--portal-main-color);
926
    border: 1px solid var(--portal-main-color);
927
    background-image: none;
928
}
929
930 53378 argiro.kok
.portal-link {
931 58054 k.triantaf
    color: var(--portal-main-color) !important;
932
    /*text-decoration: underline !important;*/
933
    /*font-weight: bold;*/
934 53352 argiro.kok
}
935 58054 k.triantaf
936 56675 argiro.kok
.portal-link:hover {
937 58054 k.triantaf
    text-decoration: underline !important;
938
    /*color:var(--portal-dark-color)  !important;*/
939 56675 argiro.kok
}
940 58054 k.triantaf
941
.portal-box {
942
    background-color: var(--portal-main-color) !important;
943
    color: var(--portal-main-contrast) !important;
944 53378 argiro.kok
}
945 53352 argiro.kok
946 58054 k.triantaf
.uk-pagination .uk-icon {
947
    color: var(--portal-main-color) !important;
948 53352 argiro.kok
}
949
950 58127 konstantin
.paging-hr {
951
    border-bottom: 1px solid #E5E5E5 !important;
952
    /*padding-bottom: 5px !important;*/
953 53352 argiro.kok
}
954 53378 argiro.kok
955 53352 argiro.kok
.widget-box {
956 58054 k.triantaf
    background: white;
957 53352 argiro.kok
}
958 53378 argiro.kok
959 58054 k.triantaf
.developlink {
960
    text-transform: none !important;
961
    color: #fff !important;
962
    background: var(--develop-portal-color) !important;
963
    font-weight: 600;
964
    border: 2px solid var(--develop-portal-color) !important;
965
    background-image: none !important;
966 53378 argiro.kok
}
967 58054 k.triantaf
968
.providelink {
969
    text-transform: none !important;
970
    color: #fff !important;
971
    background: var(--provide-portal-color) !important;
972
    font-weight: 600;
973
    border: 2px solid var(--provide-portal-color) !important;
974
    background-image: none !important;
975 53378 argiro.kok
}
976 58054 k.triantaf
977
.connectlink {
978
    background-color: var(--connect-portal-color) !important;
979
    font-weight: 600;
980
    color: #fff !important;
981
    border: 2px solid var(--connect-portal-color) !important;
982
    background-image: none !important;
983 53378 argiro.kok
}
984 58054 k.triantaf
985
.monitorlink {
986
    background-color: var(--monitor-portal-color) !important;
987
    font-weight: 600;
988
    color: #fff !important;
989
    border: 2px solid var(--monitor-portal-color) !important;
990
    background-image: none !important;
991 53378 argiro.kok
}
992 58054 k.triantaf
993
.explorelink {
994
    background-color: var(--explore-portal-color) !important;
995
    font-weight: 600;
996
    color: #fff !important;
997
    border: 2px solid var(--explore-portal-color) !important;
998
    background-image: none !important;
999 53378 argiro.kok
}
1000 58054 k.triantaf
1001
showTitle h2 {
1002
    text-transform: unset !important;
1003 53378 argiro.kok
}
1004
1005
/* toCheck: */
1006
/* embargo end date */
1007
.highlight, mark {
1008 58054 k.triantaf
    background: rgba(34, 32, 128, .5);
1009 53378 argiro.kok
    color: #222080;
1010
}
1011 58054 k.triantaf
1012 53378 argiro.kok
/* advanced autocomplete */
1013
.custom-autocomplete .uk-dropdown {
1014
    background: white;
1015
    /* color: rgba(255,255,255,.7); */
1016
}
1017 58054 k.triantaf
1018 53378 argiro.kok
.explore-heading-bullet::before {
1019
    border-left-color: var(--explore-portal-color) !important;
1020
}
1021 58054 k.triantaf
1022 53378 argiro.kok
.provide-heading-bullet::before {
1023
    border-left-color: var(--provide-portal-color) !important;
1024
}
1025 58054 k.triantaf
1026 53378 argiro.kok
.connect-heading-bullet::before {
1027
    border-left-color: var(--connect-portal-color) !important;
1028
}
1029 58054 k.triantaf
1030 53378 argiro.kok
.develop-heading-bullet::before {
1031
    border-left-color: var(--develop-portal-color) !important;
1032
}
1033 58054 k.triantaf
1034 53378 argiro.kok
.monitor-heading-bullet::before {
1035
    border-left-color: var(--monitor-portal-color) !important;
1036
}
1037 53382 argiro.kok
1038
1039
.explore .uk-h4 {
1040 58054 k.triantaf
    color: var(--explore-portal-color);
1041
    font-weight: bold;
1042 53382 argiro.kok
}
1043
1044
.explore .el-content {
1045 58054 k.triantaf
    font-size: 18px;
1046 53382 argiro.kok
}
1047
1048 58054 k.triantaf
.explore a {
1049
    background-color: var(--explore-portal-color) !important;
1050
    color: #fff !important;
1051
    font-weight: bold !important;
1052
    border-color: var(--explore-portal-color) !important;
1053 53382 argiro.kok
}
1054
1055 54461 argiro.kok
.explore a:hover, .explore a:active, .explore a:focus {
1056 58054 k.triantaf
    background-color: var(--explore-portal-lower-tone) !important;
1057
    border-color: var(--explore-portal-lower-tone) !important;
1058 53382 argiro.kok
}
1059 58054 k.triantaf
1060 53382 argiro.kok
.provide .uk-h4 {
1061 58054 k.triantaf
    color: var(--provide-portal-color);
1062
    font-weight: bold;
1063 53382 argiro.kok
}
1064
1065
.provide .el-content {
1066 58054 k.triantaf
    font-size: 18px;
1067 53382 argiro.kok
}
1068
1069 58054 k.triantaf
.provide a {
1070
    background-color: var(--provide-portal-color) !important;
1071
    color: #fff !important;
1072
    font-weight: bold !important;
1073
    border-color: var(--provide-portal-color) !important;
1074 53382 argiro.kok
}
1075
1076 54461 argiro.kok
.provide a:hover, .provide a:active, .provide a:focus {
1077 58054 k.triantaf
    background-color: var(--provide-portal-lower-tone) !important;
1078
    border-color: var(--provide-portal-lower-tone) !important;
1079 53382 argiro.kok
}
1080
1081
.monitor .uk-h4 {
1082 58054 k.triantaf
    color: var(--monitor-portal-color);
1083
    font-weight: bold;
1084 53382 argiro.kok
}
1085
1086
.monitor .el-content {
1087 58054 k.triantaf
    font-size: 18px;
1088 53382 argiro.kok
}
1089
1090 58054 k.triantaf
.monitor a {
1091
    background-color: var(--monitor-portal-color) !important;
1092
    color: #fff !important;
1093
    font-weight: bold !important;
1094
    border-color: var(--monitor-portal-color) !important;
1095 53382 argiro.kok
}
1096
1097 54461 argiro.kok
.monitor a:hover, .monitor a:active, .monitor a:focus {
1098 58054 k.triantaf
    background-color: var(--monitor-portal-lower-tone) !important;
1099
    border-color: var(--monitor-portal-lower-tone) !important;
1100 53382 argiro.kok
}
1101
1102 54999 k.triantaf
.connect-default-button {
1103 55004 k.triantaf
    background-color: var(--connect-portal-color) !important;
1104 58054 k.triantaf
    color: var(--portal-main-contrast) !important;
1105 55004 k.triantaf
    border: 2px solid var(--connect-portal-color) !important;
1106 58054 k.triantaf
    background-image: none !important;
1107 54999 k.triantaf
}
1108
1109 53382 argiro.kok
.connect .uk-h4 {
1110 58054 k.triantaf
    color: var(--connect-portal-color);
1111
    font-weight: bold;
1112 53382 argiro.kok
}
1113
1114
.connect .el-content {
1115 58054 k.triantaf
    font-size: 18px;
1116 53382 argiro.kok
}
1117
1118 54461 argiro.kok
.connect a {
1119 58054 k.triantaf
    background-color: var(--connect-portal-color) !important;
1120
    color: #fff !important;
1121
    font-weight: bold !important;
1122
    border-color: var(--connect-portal-color) !important;
1123 53382 argiro.kok
}
1124
1125 54461 argiro.kok
1126 58054 k.triantaf
.connect a:hover, .connect a:active, .connect a:focus {
1127
    background-color: var(--connect-portal-lower-tone) !important;
1128
    border-color: var(--connect-portal-lower-tone) !important;
1129 53382 argiro.kok
1130
}
1131
1132
.develop .uk-h4 {
1133 58054 k.triantaf
    color: var(--develop-portal-color);
1134
    font-weight: bold;
1135 53382 argiro.kok
}
1136
1137
.develop .el-content {
1138 58054 k.triantaf
    font-size: 18px;
1139 53382 argiro.kok
}
1140
1141 58054 k.triantaf
.develop a {
1142
    background-color: var(--develop-portal-color) !important;
1143
    color: #fff !important;
1144
    font-weight: bold !important;
1145
    border-color: var(--develop-portal-color) !important;
1146 53382 argiro.kok
}
1147
1148 54461 argiro.kok
.develop a:hover, .develop a:active, .develop a:focus {
1149 58054 k.triantaf
    background-color: var(--develop-portal-lower-tone) !important;
1150
    border-color: var(--develop-portal-lower-tone) !important;
1151 53389 argiro.kok
}
1152 53382 argiro.kok
1153 58054 k.triantaf
.portal-hr {
1154
    border-bottom: 1px solid var(--portal-main-color) !important;
1155 58274 k.triantaf
    padding: 5px 0;
1156 53382 argiro.kok
}
1157 53389 argiro.kok
1158
.tm-toolbar .uk-subnav-line li:hover, .tm-toolbar .uk-subnav li:hover {
1159 58054 k.triantaf
    background: var(--portal-main-color) !important;
1160 53389 argiro.kok
}
1161
1162
.tm-toolbar .uk-subnav-line li a:hover, .tm-toolbar .uk-subnav li a:hover, .tm-toolbar .uk-subnav-line li:hover a, .tm-toolbar .uk-subnav li:hover a {
1163 58054 k.triantaf
    background: var(--portal-main-color) !important;
1164
    color: white !important;
1165 53389 argiro.kok
}
1166 53490 argiro.kok
1167
.loginLink {
1168
    text-transform: uppercase !important;
1169
}
1170 53549 argiro.kok
1171 58054 k.triantaf
#footer\#9 a, #footer\#11 a, #footer\#13 a {
1172
    color: #dedede;
1173
    line-height: 22px;
1174
    padding: 2px 0;
1175 53549 argiro.kok
}
1176 53550 argiro.kok
1177 58054 k.triantaf
#footer\#9 a:hover, #footer\#11 a:hover, #footer\#13 a:hover {
1178 53550 argiro.kok
    color: rgba(255, 255, 255, 0.5);
1179
}
1180
1181 53549 argiro.kok
@media all and (min-width: 640px) {
1182
1183 58054 k.triantaf
    #footer\#3 {
1184
        margin-right: 280px;
1185
    }
1186 53549 argiro.kok
1187
}
1188 53557 argiro.kok
1189
.portal-card {
1190
    background-color: var(--portal-main-color);
1191
    color: #fff !important;
1192
}
1193 58054 k.triantaf
1194 53557 argiro.kok
.portal-card a {
1195
    color: #fff !important;
1196 56675 argiro.kok
    /*text-decoration: underline;*/
1197 53557 argiro.kok
}
1198 58054 k.triantaf
1199 56675 argiro.kok
.portal-card a:hover {
1200 58054 k.triantaf
    color: rgba(255, 255, 255, 0.8) !important;
1201 56675 argiro.kok
}
1202 53613 konstantin
1203 55208 k.triantaf
.portal-card-badge {
1204
    background-color: var(--portal-main-color);
1205
    color: #fff !important;
1206
    font-size: small;
1207 55286 k.triantaf
    border-radius: 3px;
1208 55208 k.triantaf
}
1209
1210 55286 k.triantaf
1211 55250 k.triantaf
.private-card-badge {
1212
    background-color: #000;
1213
    color: #fff !important;
1214
    font-size: small;
1215 55286 k.triantaf
    border-radius: 3px;
1216 55250 k.triantaf
}
1217
1218 58054 k.triantaf
.portal-icon-button, .portal-icon-button:hover {
1219
    background: var(--portal-main-color) !important;
1220
    color: var(--portal-main-contrast) !important;
1221
    border: 1px solid var(--portal-main-color) !important;
1222 56342 k.triantaf
}
1223
1224 53613 konstantin
.inherit-color {
1225
    color: inherit;
1226
}
1227 54738 argiro.kok
1228 58322 k.triantaf
/* theme */
1229 54738 argiro.kok
.uk-label {
1230 58054 k.triantaf
    border-radius: 15px;
1231
    line-height: 15px;
1232
    padding: 3px 10px;
1233
    text-transform: uppercase;
1234 54738 argiro.kok
}
1235
1236 58054 k.triantaf
a:hover, .uk-link:hover, .uk-link:hover, a:hover {
1237 54738 argiro.kok
    color: var(--portal-main-color);
1238
}
1239 55368 k.triantaf
1240 58054 k.triantaf
.portal-icon-button, .portal-icon-button:hover {
1241 56713 argiro.kok
    background: var(--portal-main-color) !important;
1242
    color: var(--portal-main-contrast) !important;
1243
    border: 1px solid var(--portal-main-color) !important;
1244
}
1245
1246
1247
/*linksBasket*/
1248
1249 58054 k.triantaf
.linksbasket {
1250
    /* background-color:#F5F5F5; */
1251
    border: 1px solid #DEDEDE;
1252
    font-size: 12px !important;
1253
    line-height: 18px;
1254
    /* height:512px; */
1255 56713 argiro.kok
}
1256
1257 58054 k.triantaf
.linksbaskettitles {
1258
    /* height:75px; */
1259
    cursor: pointer;
1260
    background-color: #F5F5F5;
1261
    border: 1px solid #DEDEDE;
1262 56713 argiro.kok
}
1263 58054 k.triantaf
1264
.linksBasketSubtitles {
1265 56713 argiro.kok
    font-size: 12px !important;
1266
}
1267 58054 k.triantaf
1268 56713 argiro.kok
.linkInlineEntity {
1269
    /* height:75px; */
1270 58054 k.triantaf
    background-color: #A4A4A4;
1271
    color: white !important;
1272 56713 argiro.kok
    /*border: 1px solid #DEDEDE;*/
1273
}
1274 58054 k.triantaf
1275
.linksbaskettitlesPortalColor, .linksbaskettitlesPortalColor div {
1276 56713 argiro.kok
    background: var(--portal-main-color) !important;
1277
    color: var(--portal-main-contrast) !important;
1278
    border: 1px solid var(--portal-main-color) !important;
1279
}
1280
1281 58054 k.triantaf
.contextlabelSelected, .contextlabelSelected:hover, .contextlabelSelected a, .contextlabelSelected:hover a {
1282
    background-color: var(--portal-main-color) !important;
1283
    color: var(--portal-main-contrast) !important;
1284
    border: 1px solid var(--portal-main-color) !important;
1285 56713 argiro.kok
1286
}
1287 58054 k.triantaf
1288
.contextlabelNotSelected, .contextlabelNotSelected:hover {
1289
    color: var(--portal-main-color) !important;
1290
    border: 1px solid var(--portal-main-color) !important;
1291 56713 argiro.kok
}
1292
1293 58054 k.triantaf
.contextlabelNotSelected a, .contextlabelNotSelected:hover a {
1294
    color: var(--portal-main-color) !important;
1295 56713 argiro.kok
}
1296
1297 58054 k.triantaf
.researchResultTypeSelected, .researchResultTypeNotSelected:hover {
1298 57853 konstantin
    color: #fff !important;
1299
    background-color: #222080 !important;
1300
    border: 1px solid #222080 !important;
1301
}
1302 58054 k.triantaf
1303
.researchResultTypeNotSelected {
1304 57977 konstantin
    color: #222080 !important;
1305
    background-color: #fff !important;
1306 57853 konstantin
    border: 1px solid #222080 !important;
1307
}
1308
1309 58054 k.triantaf
.fadeOut {
1310
    opacity: 0.3;
1311
    /* background-color: rgba(red(var(--portal-main-color)), green(var(--portal-main-color)), blue(var(--portal-main-color)), 0.3); */
1312 56713 argiro.kok
}
1313
1314 58054 k.triantaf
.warningBorder {
1315 56713 argiro.kok
    border-color: #f70;
1316
}
1317 58054 k.triantaf
1318
.dangerBorder {
1319 56713 argiro.kok
    border-color: #ff4000;
1320
}
1321 58054 k.triantaf
1322
.linkingToolbar {
1323 56713 argiro.kok
    background-color: #EDEDED;
1324
}
1325 58054 k.triantaf
1326
.linkingToolbar .back {
1327 56713 argiro.kok
    color: #999999 !important;
1328
    cursor: pointer;
1329 58054 k.triantaf
    -webkit-transition: color 0.3s;
1330 56713 argiro.kok
    transition: color 0.3s;
1331
}
1332 58054 k.triantaf
1333
.linkingToolbar .back:hover {
1334 56713 argiro.kok
    color: #444444 !important;
1335
}
1336
1337
1338 58054 k.triantaf
.linkInlineEntityLabel {
1339
    color: #EAEAEA;
1340 56713 argiro.kok
    background-color: #B5B5B5;
1341
    border-color: #EAEAEA;
1342
}
1343
1344 55368 k.triantaf
textarea {
1345
    resize: none;
1346
}
1347 58054 k.triantaf
1348 55897 konstantin
.default-dropdown {
1349
    background: white;
1350 58274 k.triantaf
    max-width: 500px;
1351 55897 konstantin
}
1352
1353
[class*="uk-animation-"] {
1354
    animation-fill-mode: none !important;
1355 56342 k.triantaf
}
1356 56513 konstantin
1357
.cursor-default {
1358
    cursor: default;
1359
}
1360 56675 argiro.kok
1361
.curator-photo {
1362
    border: gray 1px solid;
1363
    object-fit: cover;
1364
    width: 80px;
1365
    height: 80px;
1366
}
1367
1368 58322 k.triantaf
/* theme */
1369 58054 k.triantaf
.uk-navbar {
1370 58522 argiro.kok
    z-index: 980;
1371 56675 argiro.kok
}
1372 58054 k.triantaf
1373 58322 k.triantaf
/* theme */
1374 58054 k.triantaf
.uk-modal {
1375 56713 argiro.kok
    z-index: 10000;
1376
}
1377 56675 argiro.kok
1378
@media only screen and (min-width: 992px) {
1379 58054 k.triantaf
    .image-front-topbar {
1380
        margin-top: -136px;
1381
    }
1382 56675 argiro.kok
}
1383 58054 k.triantaf
1384 56675 argiro.kok
@media only screen and (min-width: 1200px) {
1385 58054 k.triantaf
    .image-front-topbar {
1386
        margin-top: -136px;
1387
    }
1388 56675 argiro.kok
}
1389 58054 k.triantaf
1390 58322 k.triantaf
/* theme */
1391 56675 argiro.kok
/*Adding shadow to the main menu dropdowns*/
1392 58054 k.triantaf
.uk-navbar-dropdown {
1393
    box-shadow: 0 5px 12px rgba(0, 0, 0, .15);
1394 56675 argiro.kok
}
1395 57237 konstantin
1396
.small-beta-indication {
1397
    height: 60px;
1398
}
1399
1400
.large-beta-indication {
1401 57255 konstantin
    height: 104px;
1402 57412 argiro.kok
    position: absolute;
1403 57237 konstantin
    top: 0;
1404
    left: 0;
1405 58367 argiro.kok
    z-index: 10000;
1406 57237 konstantin
}
1407 58054 k.triantaf
1408 57412 argiro.kok
.uk-navbar-sticky .beta-indication-sticky {
1409
    position: fixed !important;
1410
    display: block;
1411 57402 argiro.kok
1412 57412 argiro.kok
}
1413 58054 k.triantaf
1414 57402 argiro.kok
.beta-indication-sticky {
1415 57412 argiro.kok
    height: 102px;
1416 57402 argiro.kok
    position: fixed;
1417 57412 argiro.kok
    top: 0;
1418
    left: 0;
1419
    display: none;
1420 58522 argiro.kok
    z-index: 10000;
1421 57402 argiro.kok
}
1422 58026 k.triantaf
1423
input[name="code"] {
1424 58054 k.triantaf
    font-family: Consolas, monaco, monospace;
1425
    font-size: .875rem;
1426
    color: #222080;
1427
    white-space: nowrap;
1428
    background: #f9f9f9;
1429
    border: 1px solid #ededed;
1430 58274 k.triantaf
    border-radius: 1px;
1431 58104 konstantin
}
1432
1433
.selectedFilterLabel {
1434 58274 k.triantaf
    background-color: #E5E5E5;
1435
    border-color: #E5E5E5;
1436
    border-radius: 2px;
1437
    color: inherit;
1438
    line-height: 15px;
1439
    padding: 3px 10px;
1440
}
1441
1442 58356 k.triantaf
.range-button > button {
1443 58274 k.triantaf
    padding: 5px 10px;
1444
    text-transform: none;
1445
}
1446
1447
/* Landing gradient title section*/
1448
.title-section {
1449 58356 k.triantaf
    background-image: linear-gradient(to right, #FFFFFF, #F0F0F0);
1450 58274 k.triantaf
    padding-right: 10px;
1451
    padding-top: 5px;
1452
    padding-bottom: 5px;
1453
    border-radius: 4px;
1454
    position: relative;
1455
}
1456
1457 58356 k.triantaf
.title-section .under-curation {
1458 58274 k.triantaf
    background-image: url("./under_curation.svg");
1459
    height: 17px;
1460
    width: 13px;
1461
    display: inline-block;
1462
}
1463
1464 58322 k.triantaf
/* theme */
1465 58356 k.triantaf
.uk-modal .title-section h1, .feedback-page .title-section h1 {
1466 58274 k.triantaf
    font-size: 18px;
1467
    font-family: "Open Sans";
1468
    font-weight: 400;
1469
}
1470
1471 58319 k.triantaf
.landing ul li {
1472
    margin-bottom: 6px;
1473
}
1474
1475 58274 k.triantaf
/* Landing Download from section*/
1476
.landing .download-from > div {
1477
    padding: 10px;
1478
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
1479
}
1480
1481
.landing .download-from > div:last-child {
1482
    border-bottom: none;
1483
}
1484
1485
.landing .download-from > div:hover {
1486
    background-color: #F0F0F0;
1487
    border-radius: 4px;
1488
}
1489
1490
.landing .download-from > div .title {
1491
    color: black;
1492
    font-weight: 700;
1493
}
1494
1495
.landing .download-from > div a.title:hover {
1496
    text-decoration: underline;
1497
}
1498
1499
.landing .download-from .provider > a {
1500
    color: #666;
1501
    text-decoration: underline;
1502
}
1503
1504
/* Landing Relations section*/
1505
.landing .simple-buttons > div {
1506
    font-size: 16px;
1507
    padding: 15px 30px;
1508
    border-radius: 4px;
1509
    background-color: white;
1510
    border: 1px solid #DEDEDE;
1511
}
1512
1513
.landing .simple-buttons > div:hover {
1514
    background-color: #F0F0F0;
1515
    box-shadow: 0 1px 6px #00000033;
1516
}
1517
1518
.landing .advanced-buttons > div > div {
1519
    border-radius: 4px;
1520
    font-size: 16px;
1521
    border: 1px solid #DEDEDE;
1522
}
1523
1524
.landing .advanced-buttons > div > div:hover {
1525
    box-shadow: 0 1px 6px #00000033;
1526
}
1527
1528
.landing .advanced-buttons > div > div .header {
1529
    padding: 15px;
1530
    min-height: 60px;
1531
    color: var(--portal-main-color);
1532
    text-overflow: ellipsis;
1533
}
1534
1535
.landing .advanced-buttons > div > div .icon {
1536
    z-index: 1;
1537
    color: var(--portal-main-color);
1538
}
1539
1540
.landing .advanced-buttons > div > div .icon > svg {
1541
    width: 40px;
1542
    height: 40px;
1543
}
1544
1545
.landing .advanced-buttons > div > div .footer {
1546
    padding: 15px;
1547
    min-height: 60px;
1548
    background-color: #F0F0F0;
1549
    font-size: 24px;
1550
    color: #666;
1551
}
1552
1553
.landing .advanced-buttons > div > div:hover .footer {
1554
    color: black;
1555
}
1556
1557
.landing .left-border {
1558
    border-left: 3px solid #EBEBEB;
1559
    padding-left: 20px;
1560
}
1561
1562
.landing #feedback-pos {
1563 58356 k.triantaf
    position: -webkit-sticky;
1564 58274 k.triantaf
    position: sticky;
1565
    bottom: 20px;
1566
}
1567
1568
.landing .feedback {
1569
    border-radius: 4px;
1570
    border: 1px solid #DCDCDC;
1571
    box-shadow: 0 2px 4px #0000001A;
1572
    background-color: white;
1573
    padding: 5px 15px;
1574
    font-size: 12px;
1575
    z-index: 1;
1576
}
1577
1578
.matSelection .mat-select-value, .matSelection .mat-select-arrow {
1579
    color: inherit !important;
1580
}
1581
1582
.matSelection.mat-select {
1583
    padding-bottom: 4px;
1584
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
1585
}
1586
1587
.matSelection.mat-select:focus {
1588
    border-color: #222080;
1589
}
1590
1591
.matSelectionFormField .mat-form-field-underline, .matSelectionFormField .mat-form-field-ripple {
1592
    height: 0 !important;
1593
}
1594
1595
.portal-progress.uk-progress, .green-progress.uk-progress {
1596
    background-color: #F0F0F0;
1597
    height: 10px;
1598
}
1599
1600
/*firefox*/
1601
.portal-progress.uk-progress::-moz-progress-bar {
1602
    background-color: var(--portal-main-color);
1603
}
1604
1605
.green-progress.uk-progress::-moz-progress-bar {
1606
    background-color: #9ADC83 !important;
1607
}
1608
1609
/*chrome*/
1610
.portal-progress.uk-progress::-webkit-progress-value {
1611
    background-color: var(--portal-main-color);
1612
}
1613
1614
.green-progress.uk-progress::-webkit-progress-value {
1615
    background-color: #9ADC83 !important;
1616
}
1617
1618
/*internet explore & edge*/
1619
.portal-progress.uk-progress::-ms-fill {
1620
    background-color: var(--portal-main-color);
1621
}
1622
1623
.green-progress.uk-progress::-ms-fill {
1624
    background-color: #9ADC83 !important;
1625
}
1626
1627
svg #statistics-bars {
1628
    fill: var(--portal-main-color);
1629
}
1630
1631
.bioentities-buttons > div > * {
1632
    border-radius: 4px;
1633
    font-size: 16px;
1634
    font-weight: 700;
1635
    border: 1px solid #DEDEDE;
1636
    padding: 40px 0;
1637
    width: 100%;
1638
    display: inline-block;
1639
    text-align: center;
1640
    text-transform: uppercase;
1641
    color: #666;
1642
}
1643
1644
.bioentities-buttons > div > a:hover {
1645
    background-color: #F0F0F0;
1646
    color: black;
1647
    box-shadow: 0 1px 6px #00000033;
1648
}
1649
1650
/* Feedback page*/
1651
.feedback-page .title-section {
1652 58356 k.triantaf
    background-image: linear-gradient(to right, var(--portal-main-color), #F37A53);
1653 58274 k.triantaf
}
1654
1655
.feedback-page .form {
1656
    margin-top: 5px;
1657
    border-radius: 4px;
1658
    border: 1px solid rgba(0, 0, 0, 0.2);
1659
    padding: 25px 25px 15px;
1660
}
1661
1662
.feedback-sent {
1663
    border-radius: 4px;
1664
    background-color: var(--portal-main-color);
1665
    color: white;
1666
    padding: 50px 100px;
1667
    text-align: center;
1668
}
1669
1670
.feedback-sent * {
1671
    color: white;
1672
}
1673
1674
.space {
1675
    margin-left: 4px;
1676
}
1677
1678 58322 k.triantaf
/* theme */
1679 58274 k.triantaf
.uk-modal .uk-modal-dialog {
1680
    border-radius: 4px;
1681
}
1682
1683 58319 k.triantaf
.uk-modal .portal-link {
1684
    color: black !important;
1685
}
1686
1687 58274 k.triantaf
.uk-tooltip.under-curation-tooltip {
1688
    background-color: white;
1689
    display: block;
1690
    border-radius: 4px;
1691
    padding: 15px 15px 0;
1692
    border: 1px solid #DEDEDE;
1693
    color: #6c6c6c;
1694
    z-index: 10000;
1695
}
1696
1697 58356 k.triantaf
ul.portalTabs.uk-tab > .uk-active > a, ul.portalTabs.uk-tab > * > a:focus, ul.portalTabs.uk-tab > * > a:hover {
1698 58274 k.triantaf
    color: var(--portal-main-color) !important;
1699
    border-color: var(--portal-main-color) !important;
1700
    /*font-family: Roboto, sans-serif !important;*/
1701
}
1702 58356 k.triantaf
1703
ul.portalTabs.uk-tab > .uk-active > a {
1704
    font-weight: bold;
1705 58274 k.triantaf
}
1706
1707
ul.portalTabs.uk-tab::before {
1708
    border-bottom: 1px solid var(--portal-main-color);
1709
}
1710
1711 58356 k.triantaf
.quickSelectionsBox {
1712 58274 k.triantaf
    border: 1px solid #E6E6E6;
1713 58356 k.triantaf
    border-top: 0px;
1714 58274 k.triantaf
    background-color: white;
1715
}
1716
1717
.selectedFilterLabel {
1718
    background-color: #E5E5E5 !important;
1719
    border-color: #E5E5E5 !important;
1720
    border-radius: 2px !important;
1721
    color: inherit !important;
1722
    line-height: 15px !important;
1723
    padding: 3px 10px !important;
1724
}
1725
1726
.searchFilterItem {
1727
    margin-bottom: 5px;
1728
}
1729
1730 58356 k.triantaf
.range-button > button {
1731 58274 k.triantaf
    padding: 5px 10px !important;
1732
    text-transform: none !important;
1733
}
1734
1735 58356 k.triantaf
.portal-box .mat-select-value, .portal-box .mat-select-arrow {
1736 58274 k.triantaf
    color: var(--portal-main-contrast) !important;
1737
1738
}
1739 58356 k.triantaf
1740
.entitiesSelection {
1741 58274 k.triantaf
    width: 150px;
1742 58356 k.triantaf
    padding: 10px;
1743 58274 k.triantaf
    display: inline-block
1744
}
1745 58522 argiro.kok
.text-input-box{
1746
    border: 1px solid #DFE1E5 !important;
1747
}
1748 58261 konstantin
1749 58322 k.triantaf
/* theme */
1750 58302 k.triantaf
.uk-input, .uk-select {
1751 58522 argiro.kok
    border-bottom: 1px solid rgba(0, 0, 0, 0.42) ;
1752 58261 konstantin
}
1753
1754 58322 k.triantaf
/* theme */
1755 58356 k.triantaf
.uk-textarea {
1756 58302 k.triantaf
    border: 1px solid rgba(0, 0, 0, 0.42) !important;
1757 58320 k.triantaf
}
1758
1759 58322 k.triantaf
/* theme */
1760 58320 k.triantaf
.uk-text-muted {
1761
    color: #aaa !important;
1762
}
1763
1764 58322 k.triantaf
/* theme */
1765 58320 k.triantaf
html {
1766
    color: #1d1d1d !important;
1767 58356 k.triantaf
}
1768
1769
.b2note ul {
1770
    color: #1D3454;
1771
}
1772
1773
.b2note button {
1774
    border-radius: 500px;
1775
    border: 1px solid #DEDEDE;
1776
    line-height: 17px;
1777
    background-color: #DEDEDE;
1778
    color: #515151;
1779
    padding: 5px 15px;
1780
    text-transform: uppercase;
1781
    font-size: 12px;
1782
}
1783
1784
.b2note button:hover {
1785
    box-shadow: 0 1px 6px #00000033;
1786
}
1787
1788
.b2note button:focus {
1789
    outline-color: transparent;
1790
}
1791
1792
.b2note ul > li > .semantic {
1793
    background-color: #22356E;
1794
    border-radius: 4px;
1795
    color: white;
1796 58423 k.triantaf
    font-size: 12px;
1797
    padding: 1px 9px;
1798 58356 k.triantaf
    text-transform: uppercase;
1799
}
1800
1801
.b2note ul > li > .keyword {
1802
    background-color: #596FB5;
1803
    border-radius: 4px;
1804
    color: white;
1805 58423 k.triantaf
    font-size: 12px;
1806
    padding: 1px 9px;
1807 58356 k.triantaf
    text-transform: uppercase;
1808
}
1809
1810
.b2note ul > li > .comment {
1811
    background-color: #AFB3D4;
1812
    border-radius: 4px;
1813
    color: white;
1814 58423 k.triantaf
    font-size: 12px;
1815
    padding: 1px 9px;
1816 58356 k.triantaf
    text-transform: uppercase;
1817
}
1818 58377 argiro.kok
1819
1820
.offcanvas-white {
1821
    background: white !important;
1822
    color: inherit !important;
1823
}
1824
1825
.offcanvas-white .uk-close, offcanvas-white .uk-close:hover,
1826
.offcanvas-white a:not([class*="portal-link"]) {
1827
    color: inherit !important;
1828
}
1829
1830
.offcanvas-white a:not([class*="portal-link"]):hover {
1831
    color: #222080 !important;;
1832
}
1833
1834
.offcanvas-white h5 {
1835
    font-size: 18px !important;;
1836
    line-height: 1.4 !important;;
1837
    color: #1a1a1a !important;;
1838
    font-family: 'Open Sans', sans-serif !important;;
1839
}
1840
1841
.offcanvas-white .uk-text-muted {
1842
    color: #bfbfbf !important;
1843
}
1844
1845
.offcanvas-white .uk-input {
1846
    border-bottom: 1px solid #ededed !important;
1847
    background: #fff !important;
1848
    color: #666 !important;
1849
}
1850
1851
.offcanvas-white .uk-input::placeholder {
1852
    color: #bfbfbf !important;
1853
}
1854
1855
.offcanvas-white .uk-select:not([multiple]):not([size]) {
1856
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A") !important;
1857
    background-repeat: no-repeat !important;
1858
    background-position: 100% 50% !important;
1859
    border-bottom: 1px solid !important;;
1860
    border-color: #ededed !important;
1861
    color: #666 !important;
1862
}
1863
1864
.offcanvas-white .uk-input:focus, .offcanvas-white .uk-select:not([multiple]):not([size]):focus {
1865
    background-color: #fff !important;
1866
    color: #666 !important;
1867
    border-color: #222080 !important;
1868
}
1869
1870
.offcanvas-white .uk-radio:checked, .offcanvas-white input[type="radio"]:not([class*="uk-"]):checked {
1871
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E") !important;;
1872
}
1873
1874
.offcanvas-white input[type="radio"]:not([class*="uk-"]):checked {
1875
    background-color: #222080 !important;;
1876
    border-color: transparent !important;;
1877
}
1878
1879
.offcanvas-white .uk-radio, .offcanvas-white input[type="radio"]:not([class*="uk-"]) {
1880
    border: 1px solid #d4d4d4 !important;;
1881
}
1882
1883
.offcanvas-white .uk-button-default {
1884
    background-color: #fff !important;
1885
    color: #222080 !important;
1886
    border: 1px solid #222080 !important;
1887
}
1888
1889
.offcanvas-white .uk-button-default:hover {
1890
    background-color: #222080 !important;
1891
    color: #fff !important;
1892
    border-color: #222080 !important;
1893
}
1894 58522 argiro.kok
1895
search-bar .entitiesSelection{
1896
    max-width:115px;
1897
    border: solid 1px var(--portal-main-color) !important;
1898
    background: white !important;
1899
    color:  var(--portal-main-color);
1900
}
1901
search-bar .entitiesSelection span, search-bar .entitiesSelection div, search-bar .entitiesSelection  .mat-select-arrow, search-bar .entitiesSelection .mat-select-value{
1902
    color:  var(--portal-main-color) !important;
1903
}