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 58553 argiro.kok
    background: #8AD15E;
313
    border-color: #8AD15E;
314
    color: white;
315 52002 argiro.kok
}
316 58054 k.triantaf
317 52002 argiro.kok
.label-yellow, .label-underCuration {
318 58054 k.triantaf
    background: #fef5d2;
319
    color: #cca607
320 52002 argiro.kok
}
321 58054 k.triantaf
322 52002 argiro.kok
.label-red, .label-funder {
323 58054 k.triantaf
    background: #fef0ef;
324
    color: #f54f43
325 52002 argiro.kok
}
326 58054 k.triantaf
327
.label-grey, .label-language {
328
    background: #f8f8f8;
329
    color: #666;
330 52002 argiro.kok
}
331 58054 k.triantaf
332 52607 konstantin
.label-country {
333 58054 k.triantaf
    background: #d4f3ff;
334
    color: #00a0de;
335 52607 konstantin
}
336 58054 k.triantaf
337
.label-publication {
338
    background: #4687E6;
339
    color: #fff
340 52002 argiro.kok
}
341 58054 k.triantaf
342
.label-dataset {
343
    background: #1e906c;
344
    color: #fff
345 52002 argiro.kok
}
346
347 58054 k.triantaf
.label-software {
348
    background: #b737ff;
349
    color: #fff
350 52002 argiro.kok
}
351 58054 k.triantaf
352
.label-orp, .label-other {
353
    background: #f54f43;
354
    color: #414141 !important;
355 52002 argiro.kok
}
356 58054 k.triantaf
357
.label-project {
358
    background: #d0307f;
359
    color: #fff
360 52607 konstantin
}
361 52002 argiro.kok
362 58054 k.triantaf
.label-dataprovider {
363
    background: #00a0de;
364
    color: #fff
365
}
366 52002 argiro.kok
367 58054 k.triantaf
.label-organization {
368
    background: #fbcd0d;
369
    color: #414141
370
}
371 52002 argiro.kok
372 58063 k.triantaf
.label-unknown, .label-funder,
373 58054 k.triantaf
.label-compatibility,
374 53378 argiro.kok
.label-underCuration,
375
.label-funder,
376 58054 k.triantaf
.label-language,
377 53378 argiro.kok
.label-country,
378 58274 k.triantaf
.label-type,
379 53378 argiro.kok
.label-orange, .label-sc39,
380 58054 k.triantaf
.label-language, .label-publication,
381 53378 argiro.kok
.label-publication,
382
.label-dataset,
383
.label-software,
384
.label-orp, .label-other, .label-project, .label-dataprovider, .label-organization,
385 58054 k.triantaf
.label-grey, .label-success, .label-community {
386
    background: white !important;
387
    color: #666666 !important;
388
    border: 1px solid #666666 !important;
389 53378 argiro.kok
}
390 52002 argiro.kok
391 58553 argiro.kok
/*.label-open {
392 58054 k.triantaf
    background: var(--portal-main-color) !important;
393
    color: #ffffff !important;
394
    border: 1px solid var(--portal-main-color) !important;
395 58553 argiro.kok
}*/
396 52002 argiro.kok
397 58063 k.triantaf
.label-closed {
398 58054 k.triantaf
    background: #EBEBEB !important;
399
    color: #6B6B6B !important;
400
    border: 1px solid #DEDEDE !important;
401 53378 argiro.kok
}
402 56561 konstantin
403
.label-danger {
404 58054 k.triantaf
    color: #ff4000 !important;
405 56561 konstantin
    border: 1px solid #666666 !important;
406
}
407
408 58054 k.triantaf
.li-disabled .label-compatibility, .li-disabled .label-dataprovider {
409
    background: white !important;
410
    color: #A9A9A9 !important;
411
    border: 1px solid #A9A9A9 !important;
412 54755 konstantin
}
413 53378 argiro.kok
414 58322 k.triantaf
/* theme */
415 52002 argiro.kok
.uk-tab {
416 58054 k.triantaf
    display: -ms-flexbox;
417
    display: -webkit-flex;
418
    display: flex;
419
    -ms-flex-wrap: wrap;
420
    -webkit-flex-wrap: wrap;
421
    flex-wrap: wrap;
422
    margin-left: -20px;
423
    padding: 0;
424
    list-style: none;
425
    position: relative;
426 52002 argiro.kok
}
427 58054 k.triantaf
428 58322 k.triantaf
/* theme */
429 52002 argiro.kok
.uk-tab::before {
430
    content: "";
431
    position: absolute;
432
    bottom: 0;
433
    left: 20px;
434
    right: 0;
435
    border-bottom: 1px solid #e5e5e5;
436
}
437 58054 k.triantaf
438 58322 k.triantaf
/* theme */
439 52002 argiro.kok
.uk-tab-left::before {
440
    border-bottom: none !important;
441
}
442
443
444 58054 k.triantaf
.searchForm, .generalSearchForm {
445
    background: url('./search_general.jpg');
446
    box-sizing: border-box;
447
    height: 320px;
448 52002 argiro.kok
}
449 58054 k.triantaf
450
.publicationsSearchForm {
451
    background: url('./search_pubs_1.jpg');
452
    box-sizing: border-box;
453
    height: 320px;
454 52002 argiro.kok
}
455 58054 k.triantaf
456
.projectsSearchForm, .projectsTableSearchForm {
457
    background: url('./projects_search.jpg');
458
    box-sizing: border-box;
459
    height: 320px;
460 52002 argiro.kok
}
461 58054 k.triantaf
462
.organizationsSearchForm {
463
    background: url('./search_organizations.jpg');
464
    box-sizing: border-box;
465
    height: 320px;
466 52002 argiro.kok
}
467 58054 k.triantaf
468
.datasetsSearchForm {
469
    background: url('./search_data.jpg');
470
    box-sizing: border-box;
471
    height: 320px;
472 52002 argiro.kok
}
473 58054 k.triantaf
474
.softwareSearchForm {
475
    background: url('./search_software.jpg');
476
    box-sizing: border-box;
477
    height: 320px;
478 52002 argiro.kok
}
479 58054 k.triantaf
480
.orpsSearchForm {
481
    background: url('./search_other.jpg');
482
    box-sizing: border-box;
483
    height: 320px;
484 52818 konstantin
}
485 58054 k.triantaf
486
.datasourcesSearchForm, .compatibleDatasourcesSearchForm, .compatibleDatasourcesTableSearchForm, .datasourcesTableSearchForm {
487
    background: url('./providers_search.jpg');
488
    box-sizing: border-box;
489
    height: 320px;
490 52002 argiro.kok
}
491 58054 k.triantaf
492
.journalsSearchForm, .journalsTableSearchForm {
493
    background: url('./search_journals.jpg');
494
    box-sizing: border-box;
495
    height: 320px;
496 52002 argiro.kok
}
497 58054 k.triantaf
498 52002 argiro.kok
.entityRegistriesSearchForm, .entityRegistriesTableSearchForm {
499 58054 k.triantaf
    background: url('./search_registries.jpg');
500
    box-sizing: border-box;
501
    height: 320px;
502 52002 argiro.kok
}
503
504
.divider-table tbody td, .uk-table th {
505
    border-bottom: 1px solid #E5E5E5;
506 58054 k.triantaf
}
507 52002 argiro.kok
508 58054 k.triantaf
#feedback {
509
    float: left;
510
    position: fixed;
511
    top: calc(50% - 47px);
512
    right: 0;
513 52011 argiro.kok
    z-index: 100;
514 52002 argiro.kok
    display: block;
515
516 58054 k.triantaf
}
517 52002 argiro.kok
518 58054 k.triantaf
#feedback a {
519
    background: #666 !important;
520
    border-radius: 5px 0 0 5px;
521
    box-shadow: none;
522
    border: none !important;
523
    display: block;
524
    padding: 20px 12px;
525
    transition: all .2s ease-in-out;
526
    opacity: 0.5;
527 52002 argiro.kok
528 58054 k.triantaf
}
529 52002 argiro.kok
530 58054 k.triantaf
#feedback a:hover {
531
    padding-right: 20px;
532
}
533 52002 argiro.kok
534 58054 k.triantaf
.descriptionText {
535
    /* Padding-left: 25px !important;
536
    Border-left: 10px solid #fafafa; */
537
    display: inline-block;
538
    position: relative;
539
    top: calc(-0.1 * 1em);
540
    vertical-align: middle;
541
    margin-right: 10px;
542
    /* border-left: 8px solid #e5e5e5; */
543
    margin-top: 8px;
544
    color: #666666 !important;
545
    line-height: 22px !important;
546 52002 argiro.kok
547
}
548
549
550 58054 k.triantaf
.custom-offcanvas-bar {
551
    background: grey !important;
552
    width: 100% !important;
553 52002 argiro.kok
554
}
555
556 58054 k.triantaf
.custom-offcanvas-bar .filtersModal {
557
    color: grey !important;
558
559 52002 argiro.kok
}
560
561 58054 k.triantaf
.list-horizontal {
562
    display: flex;
563 52002 argiro.kok
}
564 58054 k.triantaf
565
.list-horizontal span {
566
    margin-right: 5px;
567
    padding-left: 0px !important;
568
569
}
570
571 52002 argiro.kok
.list-horizontal-line span {
572 58054 k.triantaf
    margin-right: 5px;
573
    border-right: 1px solid #f1f1f1;
574
    padding-right: 5px;
575 52002 argiro.kok
576
}
577
578
.list-horizontal-line > span:last-child {
579 58054 k.triantaf
    border-right: none;
580 52002 argiro.kok
}
581 58054 k.triantaf
582
h2, h4 {
583 53378 argiro.kok
    text-transform: none !important;
584 52002 argiro.kok
}
585 58054 k.triantaf
586
.linkdropdown {
587
    min-width: 250px;
588 52002 argiro.kok
}
589 58054 k.triantaf
590 58322 k.triantaf
/* theme */
591 58054 k.triantaf
.uk-button-action {
592
    background-color: #D6352B;
593
    color: #fff
594 52002 argiro.kok
}
595 58054 k.triantaf
596 53378 argiro.kok
/* h2, .uk-h2{
597 52002 argiro.kok
  font-size:28px !important;
598 53378 argiro.kok
} */
599 52002 argiro.kok
.app-box {
600 57853 konstantin
    border: #DFDFF0 solid 1px;
601
    background-color: #FAFBFF;
602 52002 argiro.kok
}
603
604 58322 k.triantaf
/* theme */
605 58054 k.triantaf
.uk-subnav-line li:hover .home-icon svg #home {
606
    fill: #05007A !important;
607 52002 argiro.kok
608
}
609
610 58054 k.triantaf
svg #home {
611
    fill: white !important;
612
613 52002 argiro.kok
}
614 58054 k.triantaf
615
.tm-toolbar .uk-subnav-line li a:hover, .tm-toolbar .uk-subnav-line li:hover a {
616
    display: block;
617
    color: #d4d4d4 !important;
618 52002 argiro.kok
}
619
620 58054 k.triantaf
.tm-toolbar .uk-subnav-line li:hover {
621
    display: block;
622
}
623 52002 argiro.kok
624 58054 k.triantaf
/* remove the others*/
625
626
.helper-grid > * {
627 52002 argiro.kok
    padding-left: 25px !important;
628
}
629 58054 k.triantaf
630
.cite-this-button {
631
    font-size: 14px;
632
    padding: 3px;
633 52002 argiro.kok
}
634 58054 k.triantaf
635
.link-to-button {
636
    font-size: 12px;
637
    padding: 3px;
638 52002 argiro.kok
}
639 58054 k.triantaf
640
.dropBasket {
641
    border-top: 1px solid #ccc;
642
    border-bottom: 1px solid #ccc;
643 52002 argiro.kok
}
644 58054 k.triantaf
645 52002 argiro.kok
.basket-title {
646
647 52428 argiro.kok
    padding-top: 20px;
648 52822 argiro.kok
    padding-bottom: 20px;
649
    cursor: pointer;
650 52002 argiro.kok
651
}
652 58054 k.triantaf
653 52822 argiro.kok
.basket-title::after {
654
    background-image: none !important;
655
}
656 58054 k.triantaf
657 52002 argiro.kok
.basket-badge {
658 58054 k.triantaf
    position: relative;
659
    right: 16px;
660
    top: -16px;
661
    text-align: center;
662 52002 argiro.kok
    border-radius: 90%;
663 58054 k.triantaf
    border-radius: 90%;
664 52002 argiro.kok
665
}
666
667
668 58054 k.triantaf
dd {
669 52002 argiro.kok
    margin-top: 10px;
670
    border-bottom: 1px solid #e8e8e8;
671
    padding-bottom: 5px;
672
}
673
674
dd:last-child {
675
    border-bottom: none;
676
}
677 58054 k.triantaf
678 53352 argiro.kok
.advancedSearchFormBackground {
679
    background-repeat: no-repeat !important;
680
    background-size: 100% 320px;
681
    height: auto !important;
682
}
683 58054 k.triantaf
684 52002 argiro.kok
.advancedSearchForm {
685 52310 argiro.kok
    /*box-shadow: 0 1px 10px #444444;*/
686 53352 argiro.kok
    background-color: white;
687 52310 argiro.kok
    border: 1px solid #ccc;
688 52002 argiro.kok
}
689 58054 k.triantaf
690 52002 argiro.kok
.advancedSearchForm .uk-icon-button {
691
692
    fill: #296EE9 !important;
693
694
}
695
696
.search-results li {
697
    padding-top: 15px !important;
698
}
699 53225 konstantin
700
.cursor-not-allowed {
701 53452 konstantin
    cursor: not-allowed !important;
702 53225 konstantin
}
703
704 52002 argiro.kok
.uk-badge, .badge, a.badge {
705
    border-radius: 2px;
706
}
707 58054 k.triantaf
708 52003 argiro.kok
.loading-gif, .loading-gif:before, .loading-gif:after {
709 58054 k.triantaf
    background: url("./loading.gif") no-repeat;
710
    height: 65px;
711
    margin-left: auto;
712
    margin-right: auto;
713
    width: 65px;
714 52066 argiro.kok
715 52003 argiro.kok
}
716 52310 argiro.kok
717 53378 argiro.kok
/* h2, .uk-h2 {
718 52310 argiro.kok
    font-size: 28px !important;
719 53378 argiro.kok
} */
720 56675 argiro.kok
/*body{*/
721
/*  !* line-height: 1.4; *!*/
722
/*  Font-size:14px;*/
723
/*  Color: #333;*/
724
/*}*/
725 52310 argiro.kok
726
#footer\#8 .el-link {
727
728
    color: #fff;
729
    font-weigth: 300;
730
731
}
732 58054 k.triantaf
733 52310 argiro.kok
.custom-article-title {
734 58054 k.triantaf
    font-size: 32px;
735
    Margin-bottom: 10px;
736
    font-family: 'Open Sans', sans-serif;
737
    color: #1F257B !important;
738 52310 argiro.kok
}
739
740 58054 k.triantaf
.custom-tab-content .uk-pagination > * > * {
741
    min-width: 20px;
742
    line-height: 1.4;
743
    font-size: 14px;
744 52310 argiro.kok
745
}
746 58054 k.triantaf
747
.box-content {
748
    border: 1px dashed #666666;
749
    margin-top: 4px;
750
    background: #EFEFEF;
751 52310 argiro.kok
}
752
753
.citation-accordion .uk-accordion-title {
754 58054 k.triantaf
    font-family: Raleway;
755 52310 argiro.kok
}
756 58054 k.triantaf
757
.uk-notification.uk-notification-top-center {
758 52428 argiro.kok
    top: 45% !important;
759
}
760 58054 k.triantaf
761
.no-selected-message {
762
    background: white;
763 52428 argiro.kok
}
764 52373 argiro.kok
765
.textOverflowEllipsis {
766 58054 k.triantaf
    overflow: hidden;
767
    text-overflow: ellipsis;
768
    white-space: nowrap;
769 52373 argiro.kok
}
770
771 58054 k.triantaf
.multi-line-ellipsis p {
772
    display: -webkit-box;
773
    -webkit-box-orient: vertical;
774
    overflow: hidden;
775
    text-overflow: ellipsis;
776 57315 k.triantaf
}
777
778 58054 k.triantaf
.multi-line-ellipsis.lines-3 p {
779
    -webkit-line-clamp: 3;
780
}
781
782 57512 konstantin
.multi-line-ellipsis.lines-10 p {
783
    -webkit-line-clamp: 10;
784 57315 k.triantaf
}
785
786 58054 k.triantaf
.custom-accordion .uk-accordion-title {
787 52373 argiro.kok
    text-align: left;
788 53352 argiro.kok
    /* background: #f8f8fe; */
789 52373 argiro.kok
    padding: 4px;
790 53352 argiro.kok
    /* color: #3055ba !important; */
791 52373 argiro.kok
    font-size: 14px;
792
    text-transform: initial !important;
793
    font-weight: inherit !important;
794
    /*border-top: gray solid 1px;*/
795 53352 argiro.kok
    border-bottom: var(--portal-main-color) solid 1px;
796 52373 argiro.kok
797 53352 argiro.kok
798 52373 argiro.kok
}
799
800 58054 k.triantaf
.custom-accordion .uk-accordion-title::after {
801 52373 argiro.kok
    float: none;;
802
    padding: 12px;
803
}
804
805 58054 k.triantaf
.custom-accordion {
806
    /*border: gray solid 1px;*/
807
    border-top: 0px;
808 52373 argiro.kok
}
809
810 58054 k.triantaf
.custom-accordion .uk-accordion-content {
811 52771 argiro.kok
    margin: 0px;
812
    border: #eee 1px solid;
813
    border-top: none;
814
    padding: 12px;
815 52373 argiro.kok
}
816 58054 k.triantaf
817
.darkBackground {
818
    background-color: rgba(0, 0, 0, 0.5);
819
    z-index: 0;
820
    color: white !important;
821 52771 argiro.kok
    font-family: Roboto !important;
822
}
823
824 58054 k.triantaf
.whiteText {
825
    color: white !important;
826 52771 argiro.kok
    font-family: Roboto !important;
827
}
828 58054 k.triantaf
829
.shadowBox {
830
    box-shadow: 0 1px 3px #444444;
831
    /*box-shadow: 0 6px 10px rgba(0,0,0,0.15);*/
832 52771 argiro.kok
}
833 58054 k.triantaf
834
.icon-button-small {
835
    width: 22px !important;
836
    height: 22px !important;
837
    /*color: #666 !important;*/
838
    /*background: #f7f7fa !important;*/
839
}
840
841 53378 argiro.kok
.icon-button-small:focus, .icon-button-small:hover {
842
843
    border-color: #666 !important;
844
}
845 53352 argiro.kok
846 58054 k.triantaf
.searchFilterTitle {
847
848 53378 argiro.kok
    /* text-decoration-color: var(--portal-main-color);
849
    text-decoration: underline; */
850 58054 k.triantaf
    border-bottom: 1px solid var(--portal-main-color) !important;
851
    padding: 5px 0px;
852
    color: var(--portal-main-color);
853 53352 argiro.kok
}
854
855 58054 k.triantaf
.sideInfoTitle {
856 58274 k.triantaf
    font-weight: normal !important;
857
    border-radius: 4px;
858
    background-color: #F0F0F0;
859 58356 k.triantaf
    color: #666;
860 58274 k.triantaf
    padding: 5px 12px;
861
    font-size: 12px;
862 52771 argiro.kok
}
863 58054 k.triantaf
864 58322 k.triantaf
/* theme */
865 53352 argiro.kok
.uk-navbar-container {
866
    padding-top: 0px !important;
867
    padding-bottom: 0px !important;
868
}
869
870 58322 k.triantaf
/* theme */
871 58054 k.triantaf
.uk-input {
872
    background-color: rgba(255, 255, 255, 1.0) !important;
873 53352 argiro.kok
}
874 58054 k.triantaf
875 58322 k.triantaf
/* theme */
876 53352 argiro.kok
.uk-accordion > :nth-child(n+2) {
877
    border-top: 0px solid #ededed !important;
878
    margin-top: 0px !important;
879
}
880
881 58322 k.triantaf
/* theme */
882 58054 k.triantaf
.uk-pagination > .uk-active > * {
883
    background-color: var(--portal-main-color) !important;
884
    color: var(--portal-main-contrast) !important;
885
    border-color: var(--portal-main-color) !important;
886
    border-bottom-color: var(--portal-main-color) !important;
887
    border-radius: 500px;
888
    line-height: 12px !important;
889 53352 argiro.kok
}
890 58054 k.triantaf
891
.portal-color {
892
    color: var(--portal-main-color) !important;
893
}
894
895
.portal-secondary-color {
896 56675 argiro.kok
    color: var(--portal-dark-color) !important;
897
}
898
899 58054 k.triantaf
.portal-background-color {
900
    background-color: var(--portal-main-color) !important;
901 53352 argiro.kok
}
902 58054 k.triantaf
903 58274 k.triantaf
.portal-background-color * {
904
    color: var(--portal-main-contrast);
905
}
906
907 58356 k.triantaf
.portal-button, .portal-button-reverse:hover, .portal-button-reverse:active, .portal-button-reverse:focus {
908 53352 argiro.kok
909 58054 k.triantaf
    background-color: var(--portal-main-color);
910
    color: var(--portal-main-contrast);
911
    border: 1px solid var(--portal-main-color);
912
    background-image: none;
913 53352 argiro.kok
914
}
915 58054 k.triantaf
916 58356 k.triantaf
.portal-button:hover, .portal-button:active, .portal-button:focus {
917 58054 k.triantaf
    background-color: var(--portal-dark-color);
918
    color: var(--portal-main-contrast);
919
    border: 1px solid var(--portal-dark-color);
920
    background-image: none;
921 55303 argiro.kok
922
}
923 58054 k.triantaf
924 58139 argiro.kok
.portal-button-reverse {
925
    background-color: var(--portal-main-contrast);;
926
    color: var(--portal-main-color);
927
    border: 1px solid var(--portal-main-color);
928
    background-image: none;
929
}
930
931 53378 argiro.kok
.portal-link {
932 58054 k.triantaf
    color: var(--portal-main-color) !important;
933
    /*text-decoration: underline !important;*/
934
    /*font-weight: bold;*/
935 53352 argiro.kok
}
936 58054 k.triantaf
937 56675 argiro.kok
.portal-link:hover {
938 58054 k.triantaf
    text-decoration: underline !important;
939
    /*color:var(--portal-dark-color)  !important;*/
940 56675 argiro.kok
}
941 58054 k.triantaf
942
.portal-box {
943
    background-color: var(--portal-main-color) !important;
944
    color: var(--portal-main-contrast) !important;
945 53378 argiro.kok
}
946 53352 argiro.kok
947 58054 k.triantaf
.uk-pagination .uk-icon {
948
    color: var(--portal-main-color) !important;
949 53352 argiro.kok
}
950
951 58127 konstantin
.paging-hr {
952
    border-bottom: 1px solid #E5E5E5 !important;
953
    /*padding-bottom: 5px !important;*/
954 53352 argiro.kok
}
955 53378 argiro.kok
956 53352 argiro.kok
.widget-box {
957 58054 k.triantaf
    background: white;
958 53352 argiro.kok
}
959 53378 argiro.kok
960 58054 k.triantaf
.developlink {
961
    text-transform: none !important;
962
    color: #fff !important;
963
    background: var(--develop-portal-color) !important;
964
    font-weight: 600;
965
    border: 2px solid var(--develop-portal-color) !important;
966
    background-image: none !important;
967 53378 argiro.kok
}
968 58054 k.triantaf
969
.providelink {
970
    text-transform: none !important;
971
    color: #fff !important;
972
    background: var(--provide-portal-color) !important;
973
    font-weight: 600;
974
    border: 2px solid var(--provide-portal-color) !important;
975
    background-image: none !important;
976 53378 argiro.kok
}
977 58054 k.triantaf
978
.connectlink {
979
    background-color: var(--connect-portal-color) !important;
980
    font-weight: 600;
981
    color: #fff !important;
982
    border: 2px solid var(--connect-portal-color) !important;
983
    background-image: none !important;
984 53378 argiro.kok
}
985 58054 k.triantaf
986
.monitorlink {
987
    background-color: var(--monitor-portal-color) !important;
988
    font-weight: 600;
989
    color: #fff !important;
990
    border: 2px solid var(--monitor-portal-color) !important;
991
    background-image: none !important;
992 53378 argiro.kok
}
993 58054 k.triantaf
994
.explorelink {
995
    background-color: var(--explore-portal-color) !important;
996
    font-weight: 600;
997
    color: #fff !important;
998
    border: 2px solid var(--explore-portal-color) !important;
999
    background-image: none !important;
1000 53378 argiro.kok
}
1001 58054 k.triantaf
1002
showTitle h2 {
1003
    text-transform: unset !important;
1004 53378 argiro.kok
}
1005
1006
/* toCheck: */
1007
/* embargo end date */
1008
.highlight, mark {
1009 58054 k.triantaf
    background: rgba(34, 32, 128, .5);
1010 53378 argiro.kok
    color: #222080;
1011
}
1012 58054 k.triantaf
1013 53378 argiro.kok
/* advanced autocomplete */
1014
.custom-autocomplete .uk-dropdown {
1015
    background: white;
1016
    /* color: rgba(255,255,255,.7); */
1017
}
1018 58054 k.triantaf
1019 53378 argiro.kok
.explore-heading-bullet::before {
1020
    border-left-color: var(--explore-portal-color) !important;
1021
}
1022 58054 k.triantaf
1023 53378 argiro.kok
.provide-heading-bullet::before {
1024
    border-left-color: var(--provide-portal-color) !important;
1025
}
1026 58054 k.triantaf
1027 53378 argiro.kok
.connect-heading-bullet::before {
1028
    border-left-color: var(--connect-portal-color) !important;
1029
}
1030 58054 k.triantaf
1031 53378 argiro.kok
.develop-heading-bullet::before {
1032
    border-left-color: var(--develop-portal-color) !important;
1033
}
1034 58054 k.triantaf
1035 53378 argiro.kok
.monitor-heading-bullet::before {
1036
    border-left-color: var(--monitor-portal-color) !important;
1037
}
1038 53382 argiro.kok
1039
1040
.explore .uk-h4 {
1041 58054 k.triantaf
    color: var(--explore-portal-color);
1042
    font-weight: bold;
1043 53382 argiro.kok
}
1044
1045
.explore .el-content {
1046 58054 k.triantaf
    font-size: 18px;
1047 53382 argiro.kok
}
1048
1049 58054 k.triantaf
.explore a {
1050
    background-color: var(--explore-portal-color) !important;
1051
    color: #fff !important;
1052
    font-weight: bold !important;
1053
    border-color: var(--explore-portal-color) !important;
1054 53382 argiro.kok
}
1055
1056 54461 argiro.kok
.explore a:hover, .explore a:active, .explore a:focus {
1057 58054 k.triantaf
    background-color: var(--explore-portal-lower-tone) !important;
1058
    border-color: var(--explore-portal-lower-tone) !important;
1059 53382 argiro.kok
}
1060 58054 k.triantaf
1061 53382 argiro.kok
.provide .uk-h4 {
1062 58054 k.triantaf
    color: var(--provide-portal-color);
1063
    font-weight: bold;
1064 53382 argiro.kok
}
1065
1066
.provide .el-content {
1067 58054 k.triantaf
    font-size: 18px;
1068 53382 argiro.kok
}
1069
1070 58054 k.triantaf
.provide a {
1071
    background-color: var(--provide-portal-color) !important;
1072
    color: #fff !important;
1073
    font-weight: bold !important;
1074
    border-color: var(--provide-portal-color) !important;
1075 53382 argiro.kok
}
1076
1077 54461 argiro.kok
.provide a:hover, .provide a:active, .provide a:focus {
1078 58054 k.triantaf
    background-color: var(--provide-portal-lower-tone) !important;
1079
    border-color: var(--provide-portal-lower-tone) !important;
1080 53382 argiro.kok
}
1081
1082
.monitor .uk-h4 {
1083 58054 k.triantaf
    color: var(--monitor-portal-color);
1084
    font-weight: bold;
1085 53382 argiro.kok
}
1086
1087
.monitor .el-content {
1088 58054 k.triantaf
    font-size: 18px;
1089 53382 argiro.kok
}
1090
1091 58054 k.triantaf
.monitor a {
1092
    background-color: var(--monitor-portal-color) !important;
1093
    color: #fff !important;
1094
    font-weight: bold !important;
1095
    border-color: var(--monitor-portal-color) !important;
1096 53382 argiro.kok
}
1097
1098 54461 argiro.kok
.monitor a:hover, .monitor a:active, .monitor a:focus {
1099 58054 k.triantaf
    background-color: var(--monitor-portal-lower-tone) !important;
1100
    border-color: var(--monitor-portal-lower-tone) !important;
1101 53382 argiro.kok
}
1102
1103 54999 k.triantaf
.connect-default-button {
1104 55004 k.triantaf
    background-color: var(--connect-portal-color) !important;
1105 58054 k.triantaf
    color: var(--portal-main-contrast) !important;
1106 55004 k.triantaf
    border: 2px solid var(--connect-portal-color) !important;
1107 58054 k.triantaf
    background-image: none !important;
1108 54999 k.triantaf
}
1109
1110 53382 argiro.kok
.connect .uk-h4 {
1111 58054 k.triantaf
    color: var(--connect-portal-color);
1112
    font-weight: bold;
1113 53382 argiro.kok
}
1114
1115
.connect .el-content {
1116 58054 k.triantaf
    font-size: 18px;
1117 53382 argiro.kok
}
1118
1119 54461 argiro.kok
.connect a {
1120 58054 k.triantaf
    background-color: var(--connect-portal-color) !important;
1121
    color: #fff !important;
1122
    font-weight: bold !important;
1123
    border-color: var(--connect-portal-color) !important;
1124 53382 argiro.kok
}
1125
1126 54461 argiro.kok
1127 58054 k.triantaf
.connect a:hover, .connect a:active, .connect a:focus {
1128
    background-color: var(--connect-portal-lower-tone) !important;
1129
    border-color: var(--connect-portal-lower-tone) !important;
1130 53382 argiro.kok
1131
}
1132
1133
.develop .uk-h4 {
1134 58054 k.triantaf
    color: var(--develop-portal-color);
1135
    font-weight: bold;
1136 53382 argiro.kok
}
1137
1138
.develop .el-content {
1139 58054 k.triantaf
    font-size: 18px;
1140 53382 argiro.kok
}
1141
1142 58054 k.triantaf
.develop a {
1143
    background-color: var(--develop-portal-color) !important;
1144
    color: #fff !important;
1145
    font-weight: bold !important;
1146
    border-color: var(--develop-portal-color) !important;
1147 53382 argiro.kok
}
1148
1149 54461 argiro.kok
.develop a:hover, .develop a:active, .develop a:focus {
1150 58054 k.triantaf
    background-color: var(--develop-portal-lower-tone) !important;
1151
    border-color: var(--develop-portal-lower-tone) !important;
1152 53389 argiro.kok
}
1153 53382 argiro.kok
1154 58054 k.triantaf
.portal-hr {
1155
    border-bottom: 1px solid var(--portal-main-color) !important;
1156 58274 k.triantaf
    padding: 5px 0;
1157 53382 argiro.kok
}
1158 53389 argiro.kok
1159
.tm-toolbar .uk-subnav-line li:hover, .tm-toolbar .uk-subnav li:hover {
1160 58054 k.triantaf
    background: var(--portal-main-color) !important;
1161 53389 argiro.kok
}
1162
1163
.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 {
1164 58054 k.triantaf
    background: var(--portal-main-color) !important;
1165
    color: white !important;
1166 53389 argiro.kok
}
1167 53490 argiro.kok
1168
.loginLink {
1169
    text-transform: uppercase !important;
1170
}
1171 53549 argiro.kok
1172 58054 k.triantaf
#footer\#9 a, #footer\#11 a, #footer\#13 a {
1173
    color: #dedede;
1174
    line-height: 22px;
1175
    padding: 2px 0;
1176 53549 argiro.kok
}
1177 53550 argiro.kok
1178 58054 k.triantaf
#footer\#9 a:hover, #footer\#11 a:hover, #footer\#13 a:hover {
1179 53550 argiro.kok
    color: rgba(255, 255, 255, 0.5);
1180
}
1181
1182 53549 argiro.kok
@media all and (min-width: 640px) {
1183
1184 58054 k.triantaf
    #footer\#3 {
1185
        margin-right: 280px;
1186
    }
1187 53549 argiro.kok
1188
}
1189 53557 argiro.kok
1190
.portal-card {
1191
    background-color: var(--portal-main-color);
1192
    color: #fff !important;
1193
}
1194 58054 k.triantaf
1195 53557 argiro.kok
.portal-card a {
1196
    color: #fff !important;
1197 56675 argiro.kok
    /*text-decoration: underline;*/
1198 53557 argiro.kok
}
1199 58054 k.triantaf
1200 56675 argiro.kok
.portal-card a:hover {
1201 58054 k.triantaf
    color: rgba(255, 255, 255, 0.8) !important;
1202 56675 argiro.kok
}
1203 53613 konstantin
1204 58546 k.triantaf
.badges {
1205
    position: absolute;
1206
    top: 0;
1207
    left: -3px;
1208
    padding-left: 0 !important;
1209
    width: 70px;
1210
}
1211
1212
.badges .portal-card-badge {
1213 55208 k.triantaf
    background-color: var(--portal-main-color);
1214
    color: #fff !important;
1215 58546 k.triantaf
    font-size: 10px;
1216 55286 k.triantaf
    border-radius: 3px;
1217 58546 k.triantaf
    padding: 2px 3px;
1218
    margin-bottom: 5px;
1219 55208 k.triantaf
}
1220
1221 55286 k.triantaf
1222 58546 k.triantaf
.badges .private-card-badge {
1223
    background-color: #A4A4A4;
1224 55250 k.triantaf
    color: #fff !important;
1225 58546 k.triantaf
    font-size: 10px;
1226 55286 k.triantaf
    border-radius: 3px;
1227 58546 k.triantaf
    padding: 2px 3px;
1228 55250 k.triantaf
}
1229
1230 58054 k.triantaf
.portal-icon-button, .portal-icon-button:hover {
1231
    background: var(--portal-main-color) !important;
1232
    color: var(--portal-main-contrast) !important;
1233
    border: 1px solid var(--portal-main-color) !important;
1234 56342 k.triantaf
}
1235
1236 53613 konstantin
.inherit-color {
1237
    color: inherit;
1238
}
1239 54738 argiro.kok
1240 58322 k.triantaf
/* theme */
1241 54738 argiro.kok
.uk-label {
1242 58054 k.triantaf
    border-radius: 15px;
1243
    line-height: 15px;
1244
    padding: 3px 10px;
1245
    text-transform: uppercase;
1246 54738 argiro.kok
}
1247
1248 58054 k.triantaf
a:hover, .uk-link:hover, .uk-link:hover, a:hover {
1249 54738 argiro.kok
    color: var(--portal-main-color);
1250
}
1251 55368 k.triantaf
1252 58054 k.triantaf
.portal-icon-button, .portal-icon-button:hover {
1253 56713 argiro.kok
    background: var(--portal-main-color) !important;
1254
    color: var(--portal-main-contrast) !important;
1255
    border: 1px solid var(--portal-main-color) !important;
1256
}
1257
1258
1259
/*linksBasket*/
1260
1261 58054 k.triantaf
.linksbasket {
1262
    /* background-color:#F5F5F5; */
1263
    border: 1px solid #DEDEDE;
1264
    font-size: 12px !important;
1265
    line-height: 18px;
1266
    /* height:512px; */
1267 56713 argiro.kok
}
1268
1269 58054 k.triantaf
.linksbaskettitles {
1270
    /* height:75px; */
1271
    cursor: pointer;
1272
    background-color: #F5F5F5;
1273
    border: 1px solid #DEDEDE;
1274 56713 argiro.kok
}
1275 58054 k.triantaf
1276
.linksBasketSubtitles {
1277 56713 argiro.kok
    font-size: 12px !important;
1278
}
1279 58054 k.triantaf
1280 56713 argiro.kok
.linkInlineEntity {
1281
    /* height:75px; */
1282 58054 k.triantaf
    background-color: #A4A4A4;
1283
    color: white !important;
1284 56713 argiro.kok
    /*border: 1px solid #DEDEDE;*/
1285
}
1286 58054 k.triantaf
1287
.linksbaskettitlesPortalColor, .linksbaskettitlesPortalColor div {
1288 56713 argiro.kok
    background: var(--portal-main-color) !important;
1289
    color: var(--portal-main-contrast) !important;
1290
    border: 1px solid var(--portal-main-color) !important;
1291
}
1292
1293 58054 k.triantaf
.contextlabelSelected, .contextlabelSelected:hover, .contextlabelSelected a, .contextlabelSelected:hover a {
1294
    background-color: var(--portal-main-color) !important;
1295
    color: var(--portal-main-contrast) !important;
1296
    border: 1px solid var(--portal-main-color) !important;
1297 56713 argiro.kok
1298
}
1299 58054 k.triantaf
1300
.contextlabelNotSelected, .contextlabelNotSelected:hover {
1301
    color: var(--portal-main-color) !important;
1302
    border: 1px solid var(--portal-main-color) !important;
1303 56713 argiro.kok
}
1304
1305 58054 k.triantaf
.contextlabelNotSelected a, .contextlabelNotSelected:hover a {
1306
    color: var(--portal-main-color) !important;
1307 56713 argiro.kok
}
1308
1309 58054 k.triantaf
.researchResultTypeSelected, .researchResultTypeNotSelected:hover {
1310 57853 konstantin
    color: #fff !important;
1311
    background-color: #222080 !important;
1312
    border: 1px solid #222080 !important;
1313
}
1314 58054 k.triantaf
1315
.researchResultTypeNotSelected {
1316 57977 konstantin
    color: #222080 !important;
1317
    background-color: #fff !important;
1318 57853 konstantin
    border: 1px solid #222080 !important;
1319
}
1320
1321 58054 k.triantaf
.fadeOut {
1322
    opacity: 0.3;
1323
    /* background-color: rgba(red(var(--portal-main-color)), green(var(--portal-main-color)), blue(var(--portal-main-color)), 0.3); */
1324 56713 argiro.kok
}
1325
1326 58054 k.triantaf
.warningBorder {
1327 56713 argiro.kok
    border-color: #f70;
1328
}
1329 58054 k.triantaf
1330
.dangerBorder {
1331 56713 argiro.kok
    border-color: #ff4000;
1332
}
1333 58054 k.triantaf
1334
.linkingToolbar {
1335 56713 argiro.kok
    background-color: #EDEDED;
1336
}
1337 58054 k.triantaf
1338
.linkingToolbar .back {
1339 56713 argiro.kok
    color: #999999 !important;
1340
    cursor: pointer;
1341 58054 k.triantaf
    -webkit-transition: color 0.3s;
1342 56713 argiro.kok
    transition: color 0.3s;
1343
}
1344 58054 k.triantaf
1345
.linkingToolbar .back:hover {
1346 56713 argiro.kok
    color: #444444 !important;
1347
}
1348
1349
1350 58054 k.triantaf
.linkInlineEntityLabel {
1351
    color: #EAEAEA;
1352 56713 argiro.kok
    background-color: #B5B5B5;
1353
    border-color: #EAEAEA;
1354
}
1355
1356 55368 k.triantaf
textarea {
1357
    resize: none;
1358
}
1359 58054 k.triantaf
1360 55897 konstantin
.default-dropdown {
1361
    background: white;
1362 58274 k.triantaf
    max-width: 500px;
1363 55897 konstantin
}
1364
1365
[class*="uk-animation-"] {
1366
    animation-fill-mode: none !important;
1367 56342 k.triantaf
}
1368 56513 konstantin
1369
.cursor-default {
1370
    cursor: default;
1371
}
1372 56675 argiro.kok
1373
.curator-photo {
1374
    border: gray 1px solid;
1375
    object-fit: cover;
1376
    width: 80px;
1377
    height: 80px;
1378
}
1379
1380 58322 k.triantaf
/* theme */
1381 58054 k.triantaf
.uk-navbar {
1382 58522 argiro.kok
    z-index: 980;
1383 56675 argiro.kok
}
1384 58054 k.triantaf
1385 58322 k.triantaf
/* theme */
1386 58054 k.triantaf
.uk-modal {
1387 56713 argiro.kok
    z-index: 10000;
1388
}
1389 56675 argiro.kok
1390
@media only screen and (min-width: 992px) {
1391 58054 k.triantaf
    .image-front-topbar {
1392
        margin-top: -136px;
1393
    }
1394 56675 argiro.kok
}
1395 58054 k.triantaf
1396 56675 argiro.kok
@media only screen and (min-width: 1200px) {
1397 58054 k.triantaf
    .image-front-topbar {
1398
        margin-top: -136px;
1399
    }
1400 56675 argiro.kok
}
1401 58054 k.triantaf
1402 58322 k.triantaf
/* theme */
1403 56675 argiro.kok
/*Adding shadow to the main menu dropdowns*/
1404 58054 k.triantaf
.uk-navbar-dropdown {
1405
    box-shadow: 0 5px 12px rgba(0, 0, 0, .15);
1406 56675 argiro.kok
}
1407 57237 konstantin
1408
.small-beta-indication {
1409
    height: 60px;
1410
}
1411
1412
.large-beta-indication {
1413 57255 konstantin
    height: 104px;
1414 57412 argiro.kok
    position: absolute;
1415 57237 konstantin
    top: 0;
1416
    left: 0;
1417 58367 argiro.kok
    z-index: 10000;
1418 57237 konstantin
}
1419 58054 k.triantaf
1420 57412 argiro.kok
.uk-navbar-sticky .beta-indication-sticky {
1421
    position: fixed !important;
1422
    display: block;
1423 57402 argiro.kok
1424 57412 argiro.kok
}
1425 58054 k.triantaf
1426 57402 argiro.kok
.beta-indication-sticky {
1427 57412 argiro.kok
    height: 102px;
1428 57402 argiro.kok
    position: fixed;
1429 57412 argiro.kok
    top: 0;
1430
    left: 0;
1431
    display: none;
1432 58522 argiro.kok
    z-index: 10000;
1433 57402 argiro.kok
}
1434 58026 k.triantaf
1435
input[name="code"] {
1436 58054 k.triantaf
    font-family: Consolas, monaco, monospace;
1437
    font-size: .875rem;
1438
    color: #222080;
1439
    white-space: nowrap;
1440
    background: #f9f9f9;
1441
    border: 1px solid #ededed;
1442 58274 k.triantaf
    border-radius: 1px;
1443 58104 konstantin
}
1444
1445
.selectedFilterLabel {
1446 58274 k.triantaf
    background-color: #E5E5E5;
1447
    border-color: #E5E5E5;
1448
    border-radius: 2px;
1449
    color: inherit;
1450
    line-height: 15px;
1451
    padding: 3px 10px;
1452
}
1453
1454 58356 k.triantaf
.range-button > button {
1455 58274 k.triantaf
    padding: 5px 10px;
1456
    text-transform: none;
1457
}
1458
1459 58609 konstantin
/*.range-button > a:not(.first-col) {*/
1460
/*    border-left: 1px solid #C4C4C4  !important;*/
1461
/*}*/
1462
1463
.range-button.uk-grid-divider>:not(.uk-first-column)::before {
1464
    border-left: 1px solid #C4C4C4  !important;
1465
}
1466
1467
.range-button {
1468
    max-width: 330px;
1469
}
1470
1471
1472 58274 k.triantaf
/* Landing gradient title section*/
1473
.title-section {
1474 58356 k.triantaf
    background-image: linear-gradient(to right, #FFFFFF, #F0F0F0);
1475 58274 k.triantaf
    padding-right: 10px;
1476
    padding-top: 5px;
1477
    padding-bottom: 5px;
1478
    border-radius: 4px;
1479
    position: relative;
1480
}
1481
1482 58356 k.triantaf
.title-section .under-curation {
1483 58274 k.triantaf
    background-image: url("./under_curation.svg");
1484
    height: 17px;
1485
    width: 13px;
1486
    display: inline-block;
1487
}
1488
1489 58322 k.triantaf
/* theme */
1490 58356 k.triantaf
.uk-modal .title-section h1, .feedback-page .title-section h1 {
1491 58274 k.triantaf
    font-size: 18px;
1492
    font-family: "Open Sans";
1493
    font-weight: 400;
1494
}
1495
1496 58319 k.triantaf
.landing ul li {
1497
    margin-bottom: 6px;
1498
}
1499
1500 58274 k.triantaf
/* Landing Download from section*/
1501
.landing .download-from > div {
1502
    padding: 10px;
1503
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
1504
}
1505
1506
.landing .download-from > div:last-child {
1507
    border-bottom: none;
1508
}
1509
1510
.landing .download-from > div:hover {
1511
    background-color: #F0F0F0;
1512
    border-radius: 4px;
1513
}
1514
1515
.landing .download-from > div .title {
1516
    color: black;
1517
    font-weight: 700;
1518
}
1519
1520
.landing .download-from > div a.title:hover {
1521
    text-decoration: underline;
1522
}
1523
1524
.landing .download-from .provider > a {
1525
    color: #666;
1526
    text-decoration: underline;
1527
}
1528
1529
/* Landing Relations section*/
1530
.landing .simple-buttons > div {
1531
    font-size: 16px;
1532
    padding: 15px 30px;
1533
    border-radius: 4px;
1534
    background-color: white;
1535
    border: 1px solid #DEDEDE;
1536
}
1537
1538
.landing .simple-buttons > div:hover {
1539
    background-color: #F0F0F0;
1540
    box-shadow: 0 1px 6px #00000033;
1541
}
1542
1543
.landing .advanced-buttons > div > div {
1544
    border-radius: 4px;
1545
    font-size: 16px;
1546
    border: 1px solid #DEDEDE;
1547
}
1548
1549
.landing .advanced-buttons > div > div:hover {
1550
    box-shadow: 0 1px 6px #00000033;
1551
}
1552
1553
.landing .advanced-buttons > div > div .header {
1554
    padding: 15px;
1555
    min-height: 60px;
1556
    color: var(--portal-main-color);
1557
    text-overflow: ellipsis;
1558
}
1559
1560
.landing .advanced-buttons > div > div .icon {
1561
    z-index: 1;
1562
    color: var(--portal-main-color);
1563
}
1564
1565
.landing .advanced-buttons > div > div .icon > svg {
1566
    width: 40px;
1567
    height: 40px;
1568
}
1569
1570
.landing .advanced-buttons > div > div .footer {
1571
    padding: 15px;
1572
    min-height: 60px;
1573
    background-color: #F0F0F0;
1574
    font-size: 24px;
1575
    color: #666;
1576
}
1577
1578
.landing .advanced-buttons > div > div:hover .footer {
1579
    color: black;
1580
}
1581
1582
.landing .left-border {
1583
    border-left: 3px solid #EBEBEB;
1584
    padding-left: 20px;
1585
}
1586
1587
.landing #feedback-pos {
1588 58356 k.triantaf
    position: -webkit-sticky;
1589 58274 k.triantaf
    position: sticky;
1590
    bottom: 20px;
1591
}
1592
1593
.landing .feedback {
1594
    border-radius: 4px;
1595
    border: 1px solid #DCDCDC;
1596
    box-shadow: 0 2px 4px #0000001A;
1597
    background-color: white;
1598
    padding: 5px 15px;
1599
    font-size: 12px;
1600
    z-index: 1;
1601
}
1602
1603
.matSelection .mat-select-value, .matSelection .mat-select-arrow {
1604
    color: inherit !important;
1605
}
1606
1607
.matSelection.mat-select {
1608
    padding-bottom: 4px;
1609
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
1610
}
1611
1612
.matSelection.mat-select:focus {
1613
    border-color: #222080;
1614
}
1615
1616
.matSelectionFormField .mat-form-field-underline, .matSelectionFormField .mat-form-field-ripple {
1617
    height: 0 !important;
1618
}
1619
1620
.portal-progress.uk-progress, .green-progress.uk-progress {
1621
    background-color: #F0F0F0;
1622
    height: 10px;
1623
}
1624
1625
/*firefox*/
1626
.portal-progress.uk-progress::-moz-progress-bar {
1627
    background-color: var(--portal-main-color);
1628
}
1629
1630
.green-progress.uk-progress::-moz-progress-bar {
1631
    background-color: #9ADC83 !important;
1632
}
1633
1634
/*chrome*/
1635
.portal-progress.uk-progress::-webkit-progress-value {
1636
    background-color: var(--portal-main-color);
1637
}
1638
1639
.green-progress.uk-progress::-webkit-progress-value {
1640
    background-color: #9ADC83 !important;
1641
}
1642
1643
/*internet explore & edge*/
1644
.portal-progress.uk-progress::-ms-fill {
1645
    background-color: var(--portal-main-color);
1646
}
1647
1648
.green-progress.uk-progress::-ms-fill {
1649
    background-color: #9ADC83 !important;
1650
}
1651
1652
svg #statistics-bars {
1653
    fill: var(--portal-main-color);
1654
}
1655
1656
.bioentities-buttons > div > * {
1657
    border-radius: 4px;
1658
    font-size: 16px;
1659
    font-weight: 700;
1660
    border: 1px solid #DEDEDE;
1661
    padding: 40px 0;
1662
    width: 100%;
1663
    display: inline-block;
1664
    text-align: center;
1665
    text-transform: uppercase;
1666
    color: #666;
1667
}
1668
1669
.bioentities-buttons > div > a:hover {
1670
    background-color: #F0F0F0;
1671
    color: black;
1672
    box-shadow: 0 1px 6px #00000033;
1673
}
1674
1675
/* Feedback page*/
1676
.feedback-page .title-section {
1677 58356 k.triantaf
    background-image: linear-gradient(to right, var(--portal-main-color), #F37A53);
1678 58274 k.triantaf
}
1679
1680
.feedback-page .form {
1681
    margin-top: 5px;
1682
    border-radius: 4px;
1683
    border: 1px solid rgba(0, 0, 0, 0.2);
1684
    padding: 25px 25px 15px;
1685
}
1686
1687
.feedback-sent {
1688
    border-radius: 4px;
1689
    background-color: var(--portal-main-color);
1690
    color: white;
1691
    padding: 50px 100px;
1692
    text-align: center;
1693
}
1694
1695
.feedback-sent * {
1696
    color: white;
1697
}
1698
1699
.space {
1700
    margin-left: 4px;
1701
}
1702
1703 58322 k.triantaf
/* theme */
1704 58274 k.triantaf
.uk-modal .uk-modal-dialog {
1705
    border-radius: 4px;
1706
}
1707
1708 58319 k.triantaf
.uk-modal .portal-link {
1709
    color: black !important;
1710
}
1711
1712 58274 k.triantaf
.uk-tooltip.under-curation-tooltip {
1713
    background-color: white;
1714
    display: block;
1715
    border-radius: 4px;
1716
    padding: 15px 15px 0;
1717
    border: 1px solid #DEDEDE;
1718
    color: #6c6c6c;
1719
    z-index: 10000;
1720
}
1721
1722 58356 k.triantaf
ul.portalTabs.uk-tab > .uk-active > a, ul.portalTabs.uk-tab > * > a:focus, ul.portalTabs.uk-tab > * > a:hover {
1723 58274 k.triantaf
    color: var(--portal-main-color) !important;
1724
    border-color: var(--portal-main-color) !important;
1725
    /*font-family: Roboto, sans-serif !important;*/
1726
}
1727 58356 k.triantaf
1728
ul.portalTabs.uk-tab > .uk-active > a {
1729
    font-weight: bold;
1730 58274 k.triantaf
}
1731
1732
ul.portalTabs.uk-tab::before {
1733
    border-bottom: 1px solid var(--portal-main-color);
1734
}
1735
1736 58356 k.triantaf
.quickSelectionsBox {
1737 58274 k.triantaf
    border: 1px solid #E6E6E6;
1738 58356 k.triantaf
    border-top: 0px;
1739 58274 k.triantaf
    background-color: white;
1740
}
1741
1742
.selectedFilterLabel {
1743
    background-color: #E5E5E5 !important;
1744
    border-color: #E5E5E5 !important;
1745
    border-radius: 2px !important;
1746
    color: inherit !important;
1747
    line-height: 15px !important;
1748
    padding: 3px 10px !important;
1749
}
1750
1751
.searchFilterItem {
1752
    margin-bottom: 5px;
1753
}
1754
1755 58356 k.triantaf
.range-button > button {
1756 58274 k.triantaf
    padding: 5px 10px !important;
1757
    text-transform: none !important;
1758
}
1759
1760 58356 k.triantaf
.portal-box .mat-select-value, .portal-box .mat-select-arrow {
1761 58274 k.triantaf
    color: var(--portal-main-contrast) !important;
1762
1763
}
1764 58356 k.triantaf
1765
.entitiesSelection {
1766 58274 k.triantaf
    width: 150px;
1767 58356 k.triantaf
    padding: 10px;
1768 58274 k.triantaf
    display: inline-block
1769
}
1770 58522 argiro.kok
.text-input-box{
1771
    border: 1px solid #DFE1E5 !important;
1772
}
1773 58261 konstantin
1774 58322 k.triantaf
/* theme */
1775 58302 k.triantaf
.uk-input, .uk-select {
1776 58522 argiro.kok
    border-bottom: 1px solid rgba(0, 0, 0, 0.42) ;
1777 58261 konstantin
}
1778
1779 58322 k.triantaf
/* theme */
1780 58356 k.triantaf
.uk-textarea {
1781 58302 k.triantaf
    border: 1px solid rgba(0, 0, 0, 0.42) !important;
1782 58320 k.triantaf
}
1783
1784 58322 k.triantaf
/* theme */
1785 58320 k.triantaf
.uk-text-muted {
1786
    color: #aaa !important;
1787
}
1788
1789 58322 k.triantaf
/* theme */
1790 58320 k.triantaf
html {
1791
    color: #1d1d1d !important;
1792 58356 k.triantaf
}
1793
1794
.b2note ul {
1795
    color: #1D3454;
1796
}
1797
1798
.b2note button {
1799
    border-radius: 500px;
1800
    border: 1px solid #DEDEDE;
1801
    line-height: 17px;
1802
    background-color: #DEDEDE;
1803
    color: #515151;
1804
    padding: 5px 15px;
1805
    text-transform: uppercase;
1806
    font-size: 12px;
1807
}
1808
1809
.b2note button:hover {
1810
    box-shadow: 0 1px 6px #00000033;
1811
}
1812
1813
.b2note button:focus {
1814
    outline-color: transparent;
1815
}
1816
1817
.b2note ul > li > .semantic {
1818
    background-color: #22356E;
1819
    border-radius: 4px;
1820
    color: white;
1821 58423 k.triantaf
    font-size: 12px;
1822
    padding: 1px 9px;
1823 58356 k.triantaf
    text-transform: uppercase;
1824
}
1825
1826
.b2note ul > li > .keyword {
1827
    background-color: #596FB5;
1828
    border-radius: 4px;
1829
    color: white;
1830 58423 k.triantaf
    font-size: 12px;
1831
    padding: 1px 9px;
1832 58356 k.triantaf
    text-transform: uppercase;
1833
}
1834
1835
.b2note ul > li > .comment {
1836
    background-color: #AFB3D4;
1837
    border-radius: 4px;
1838
    color: white;
1839 58423 k.triantaf
    font-size: 12px;
1840
    padding: 1px 9px;
1841 58356 k.triantaf
    text-transform: uppercase;
1842
}
1843 58377 argiro.kok
1844
1845
.offcanvas-white {
1846
    background: white !important;
1847
    color: inherit !important;
1848
}
1849
1850
.offcanvas-white .uk-close, offcanvas-white .uk-close:hover,
1851
.offcanvas-white a:not([class*="portal-link"]) {
1852
    color: inherit !important;
1853
}
1854
1855
.offcanvas-white a:not([class*="portal-link"]):hover {
1856
    color: #222080 !important;;
1857
}
1858
1859
.offcanvas-white h5 {
1860
    font-size: 18px !important;;
1861
    line-height: 1.4 !important;;
1862
    color: #1a1a1a !important;;
1863
    font-family: 'Open Sans', sans-serif !important;;
1864
}
1865
1866
.offcanvas-white .uk-text-muted {
1867
    color: #bfbfbf !important;
1868
}
1869
1870 58553 argiro.kok
.offcanvas-white .uk-input:not(.text-input-box) {
1871 58377 argiro.kok
    border-bottom: 1px solid #ededed !important;
1872
    background: #fff !important;
1873
    color: #666 !important;
1874
}
1875 58553 argiro.kok
.offcanvas-white .text-input-box{
1876
    border: 1px solid #ededed !important;
1877
    background: #fff !important;
1878
    color: #666 !important;
1879
}
1880 58377 argiro.kok
1881
.offcanvas-white .uk-input::placeholder {
1882
    color: #bfbfbf !important;
1883
}
1884
1885
.offcanvas-white .uk-select:not([multiple]):not([size]) {
1886
    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;
1887
    background-repeat: no-repeat !important;
1888
    background-position: 100% 50% !important;
1889
    border-bottom: 1px solid !important;;
1890
    border-color: #ededed !important;
1891
    color: #666 !important;
1892
}
1893
1894
.offcanvas-white .uk-input:focus, .offcanvas-white .uk-select:not([multiple]):not([size]):focus {
1895
    background-color: #fff !important;
1896
    color: #666 !important;
1897
    border-color: #222080 !important;
1898
}
1899
1900
.offcanvas-white .uk-radio:checked, .offcanvas-white input[type="radio"]:not([class*="uk-"]):checked {
1901
    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;;
1902
}
1903
1904
.offcanvas-white input[type="radio"]:not([class*="uk-"]):checked {
1905
    background-color: #222080 !important;;
1906
    border-color: transparent !important;;
1907
}
1908
1909
.offcanvas-white .uk-radio, .offcanvas-white input[type="radio"]:not([class*="uk-"]) {
1910
    border: 1px solid #d4d4d4 !important;;
1911
}
1912
1913 58569 konstantin
.offcanvas-white .uk-button-default:not(:disabled) {
1914 58377 argiro.kok
    background-color: #fff !important;
1915
    color: #222080 !important;
1916
    border: 1px solid #222080 !important;
1917
}
1918
1919 58569 konstantin
.offcanvas-white .uk-button-default:hover:not(:disabled) {
1920 58377 argiro.kok
    background-color: #222080 !important;
1921
    color: #fff !important;
1922
    border-color: #222080 !important;
1923
}
1924 58522 argiro.kok
1925 58569 konstantin
.offcanvas-white .uk-button-default:disabled {
1926
    color: #bfbfbf !important;
1927
    border: 1px solid #ededed !important;
1928
}
1929
1930 58543 konstantin
/*CONNECT REDESIGN*/
1931
1932 58615 konstantin
.main-tabs .tab-header {
1933
    font-size: 12px;
1934
    text-transform: uppercase;
1935
    transition: color .1s ease-in-out;
1936
    line-height: 20px;
1937
}
1938
1939 58543 konstantin
.main-tabs > li {
1940
    background-color: #F2F2F2;
1941
    border: 1px solid #DEDEDE;
1942
    z-index: 2;
1943 58569 konstantin
    max-width: 150px;
1944 58543 konstantin
}
1945
1946
.main-tabs > li.uk-active {
1947
    background-color: white !important;
1948
    border-bottom: 1px solid white;
1949
    border-top: 3px solid var(--portal-main-color);
1950
}
1951
1952
.main-tabs > li > a {
1953
    text-transform: capitalize;
1954
    text-align: left;
1955
    color: #7A7A7A;
1956
    border: none;
1957
}
1958
1959
.main-tabs > li:not(.uk-active):not(:hover) > a > .number {
1960
    color: #666666;
1961
}
1962
1963
.main-tabs > li > a > .number {
1964 58615 konstantin
    font-size: 18px;
1965
    line-height: 1.4;
1966
    font-family: Heebo;
1967
    font-weight: 800;
1968 58543 konstantin
}
1969
1970
.main-tabs.uk-tab > .uk-active > a, .main-tabs.uk-tab > li:hover:not(.statistics) > a {
1971
    /*border: none !important;*/
1972
    color: var(--portal-main-color) !important;
1973
}
1974
1975 58569 konstantin
.main-tabs > li.statistics > a, .main-tabs > .uk-active.statistics > a,
1976
.main-tabs > li.statistics svg #statistics-bars, .main-tabs > .uk-active.statistics svg #statistics-bars {
1977
    fill: #FE4A49 !important;
1978 58543 konstantin
    color: #FE4A49 !important;
1979
}
1980
1981 58569 konstantin
.main-tabs.uk-tab > li:hover.statistics:not(.uk-active) > a,
1982
.main-tabs.uk-tab > li:hover.statistics:not(.uk-active) svg #statistics-bars {
1983
    fill: #FF052B !important;
1984 58543 konstantin
    color: #FF052B !important;
1985
}
1986
1987
.main-tabs.uk-tab > .uk-active.statistics > a {
1988
    background-color: #FFE6E6 !important;
1989
}
1990
1991
.main-tabs > li.uk-active.statistics {
1992
    border-top: 3px solid #FE4A49 !important;
1993
    border-bottom: 1px solid #FFE6E6;
1994
}
1995
1996
.main-tabs-content {
1997
    border: 1px solid #DEDEDE;
1998
    margin-top: -1px;
1999
    z-index: 1;
2000
    background-color: white;
2001
}
2002
2003
.main-tabs-content .uk-overflow-auto {
2004
    max-height: 700px;
2005
}
2006
2007
.main-tabs-content .right-column {
2008
    border-left: 1px solid #DEDEDE;
2009
}
2010
2011
.main-tabs-content .tab-header {
2012
    font-size: 20px;
2013
    text-transform: capitalize;
2014
    color: #707070;
2015
}
2016
2017 58569 konstantin
.white-box-with-border {
2018
    border: 1px solid #DEDEDE;
2019
    background-color: white;
2020
}
2021
2022 58613 k.triantaf
.white-box-with-border.uk-grid > div:not(.uk-first-column) {
2023
    border-left: 1px solid #DEDEDE;
2024
}
2025
2026 58543 konstantin
/*END OF CONNECT REDESIGN*/
2027
2028 58522 argiro.kok
search-bar .entitiesSelection{
2029
    max-width:115px;
2030
    border: solid 1px var(--portal-main-color) !important;
2031
    background: white !important;
2032
    color:  var(--portal-main-color);
2033
}
2034
search-bar .entitiesSelection span, search-bar .entitiesSelection div, search-bar .entitiesSelection  .mat-select-arrow, search-bar .entitiesSelection .mat-select-value{
2035
    color:  var(--portal-main-color) !important;
2036
}
2037 58529 argiro.kok
2038
.footer-light-background{
2039
    color:black;
2040
    background-color: white;
2041
}
2042
.footer-light-background a, .footer-light-background a:not(.uk-button):hover, .footer-light-background  a:not(.uk-button){
2043
    color:black;
2044
}
2045
2046
.footer-light-background .uk-icon-button:hover,.footer-light-background a:not(.license):hover {
2047
    color:black;
2048
    border-color:black;
2049
    text-decoration: underline;
2050
}
2051 58533 k.triantaf
2052
.uk-breadcrumb.uk-light > * > *,
2053
.uk-breadcrumb.uk-light > :nth-child(n+2):not(.uk-first-column)::before {
2054 58564 argiro.kok
    color: white !important;
2055 58533 k.triantaf
}
2056
2057
.uk-breadcrumb > * > * {
2058 58564 argiro.kok
    color: rgba(0, 0, 0, 0.60) !important;
2059 58533 k.triantaf
    vertical-align: top;
2060
    line-height: 25px;
2061
}
2062
2063
.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
2064
    content: "›";
2065
    color: rgba(0, 0, 0, 0.60);
2066
    font-weight: 200;
2067
    font-size: 25px;
2068
    margin: -9px 10px;
2069
}
2070
2071
.uk-breadcrumb > :last-child > * {
2072
    font-weight: 700;
2073
    color: rgba(0, 0, 0, 0.60);
2074
}
2075 58564 argiro.kok
2076
.zenodoButton, .zenodoButton:hover{
2077
    background-image:linear-gradient(to right, #0F4DA1, #0078E1) ;
2078
    color: white !important;
2079
    border-color: transparent !important;
2080
    border-style: solid !important;
2081
    border-width: 1px !important;
2082
    box-shadow: 0px 4px 10px #00000029;
2083
    border-radius: 2px;
2084
    opacity: 1;
2085
}
2086
2087
.uk-text-normal{
2088
    font-weight: 400;
2089
}
2090 58591 argiro.kok
2091
/*
2092
Impact Factor -  ATHENA CODE */
2093
.popularity-A svg .a, .influence-A svg .a{
2094
    fill:#d51717;
2095
}
2096
.popularity-B  svg .a, .influence-B svg  .a {
2097
    fill: #e1920a;
2098
}
2099
.popularity-C svg  .a, .influence-C svg .a {
2100
    fill: #444;
2101
}
2102 58617 k.triantaf
2103
/*login*/
2104
.login {
2105
    color: white;
2106
    font-weight: bold;
2107
}
2108
2109
.login  circle, .login svg,
2110
.login  svg svg *, .login svg *  {
2111
    fill: var(--portal-main-color);
2112
}
2113
2114
.login:hover circle {
2115
    fill: var(--portal-dark-color);
2116
}
2117
2118
.login text {
2119
    stroke: white;
2120
    fill: white;
2121
}