Newer
Older
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Create a compiled.SCSS file for all sub-themes
// which imports the respective parent theme's compiled.scss
// in the cascade AND extends it. This way we ALWAYS have an UP-TO-DATE compiled.CSS imported
// which includes all finc styles plus all subsequent customizations.
// [I.e.: finc's compiled.scss imports bootstrap3/scss/compiled.scss and
// the house-specific branches such as fid_adlr then import finc/scss/compiled.scss
// 0. NOTE TO DEVELOPERS
// Do NOT EDIT compiled.CSS -- all CSS files should be generated from SCSS files
// 1. KEY VARIABLES and MIXINS
// Define or re-define KEY VARIABLES and MIXINS in this file (see 1.1 ff below) OR import your own
@import 'customVariables';
@import 'customMixins';
// 1.1 FONTS
// ++ USE EITHER
// ++ ++ font-size: ($font-size-base * 1.5)
// ++ OR
// ++ ++ use the em-calculator function, like so: font-size: em(14)
// 1.2 DO NOT define site-specific colours in finc's SCSS files
// - this must be done in your site-specific themes
// 2. For Media queries use:
// Extra small screen / phone: '$screen-xs-max' (=767px);
// Small screen / tablet: '$screen-sm-min' (=768px);
// Medium screen / desktop: '$screen-md-min' (=992px) and
// Large screen / wide desktop: '$screen-lg-min' (=1200px);
// The MAXimum ranges are defined as the next higher element minus 1px, so:
// '$screen-xs-max' = $screen-sm-min - 1 etc
// you can use '$screen-xs-max', '$screen-sm-max' and '$screen-md-max'
// 3. Import finc's compiled.scss to have the variables and mixins defined above applied to it
@import '../../finc/scss/compiled';
// 4. Customize further -- pls. comment and explain
// PLEASE ORGANIZE YOUR CSS ACCORDING TO THIS GENERAL RULE - keep exceptions to a minimum
// *, html, body
// h1, h2, h3, h4, h5, h6,
// p,
// address, blockquote, pre,
// ul, ol, li, dl, dt, dd,
// table, caption, tr, th, td,
// form, fieldset, legend, label, select, input, textarea,
// div,
// img,
// a,
// strong, em, abbr, q, cite, code, kbd, var,
// span,
// #id,
// .class
// Frequently used classes
// Custom areas of the theme
// IDs and classes come last and should (if possible) be ordered according
// to their appearance on the page, e.g. header, breadcrumbs, main ...
// Please sort selectors alphabetically, like so
// .foo {
// border: 1px solid red;
// margin-left: 1em;
// padding: 0 ($grid-gutter-width / 2);
// width: auto;
// }
//
// HTML
// BODY
body {
// color: $black;
background-color: $white;
// set default to OPEN SANS
font-family: $font-family-sans-serif;
}
// HEADINGS
h1,
h2,
h3,
h4,
h5 {
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
// set headings to UBUNTU MONO
font-family: $font-family-monospace;
}
// ++ h1
h1 {
font-size: em(63px);
font-weight: bold;
letter-spacing: em(4.2px);
line-height: em(69px);
}
// ++ h2
h2 {
font-size: em(43px);
font-weight: bold;
letter-spacing: em(2.87px);
line-height: em(53px);
}
// ++ h3
h3 {
font-size: em(30px);
font-weight: bold;
line-height: em(34px);
}
// ++ h4
h4 {
font-size: em(24px);
font-weight: bold;
letter-spacing: em(1px);
text-transform: uppercase;
}
// ++ h5
h5 {
font-size: em(18px);
font-weight: bold;
letter-spacing: em(2px);
text-transform: uppercase;
}
// HEADINGS - END
// Paragraphs
// ++ p {}
// Paragraphs - END
// LISTS
// ++ ul,
ul {
list-style-type: none;
padding-left: 0;
li {
color: $asphalt;
}
}
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
// ++ ol {}
// ++ li {}
// ++ dl {}
// ++ dt {}
// ++ dd {}
// LISTS - END
// TABLES
table {
border: 0;
margin-top: 20px;
width: 100%;
}
// ++ caption {}
// ++ tr {}
// ++ th {}
// ++ td {}
// TABLES - END
// FORMS
// ++ Fieldsets
// ++ Legend elements
// ++ label {}
.sort label,
.limit label {
}
// ++ input {}
// ++ Select {}
select {
height: 60px;
min-width: 100px;
}
// ++ textarea {}
input,
textarea {
//border-color: $silver;
//border-radius: 5px;
}
form input:invalid, form textarea:invalid {
margin-right: 0;
}
// FORMS - END
// IMAGES
// img {}
// IMAGES - END
// LINKS
a {
color: $black;
text-decoration: none;
&:hover {
text-decoration: none;
}
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
// LINKS - END
// TEXT DECORATION
// strong {}
// em {}
// TEXT DECORATION - END
// CLASSES (Elements that are used in several places)
// ++ HELPER Classes
.large-text {
font-size: em(24px);
line-height: em(45px);
}
.large-text.light {
color: $asphalt;
}
.small-text {
color: $asphalt;
font-size: em(16px);
}
// FIXME: Check for more elegant way to apply colors
.error-color {
color: $brand-danger;
}
.highlighter-color {
color: $violet;
}
.primary {
color: $azure;
}
.secondary {
color: $seafoam;
}
.warning-color {
color: $amber;
}
.white {
color: $white;
}
// ++ HELPER Classes - END
// ++ ALERTS
// ++ ALERTS - END
// ++ BUTTONS
.btn-lg {
@include large-btn;
@media screen and (max-width: $screen-xs-max) {
}
}
.btn-getitbox {
@include result-list-btn-getitbox;
@media screen and (max-width: $screen-xs-max) {
}
}
// ++ BUTTONS - END
// ICONS
.icon {
min-width: 30px;
vertical-align: bottom;
@media screen and (max-width: $screen-xs-max) {
font-size: calc(#{$font-size-base} * 1.7);
font-weight: 500;
min-width: 35px;
}
}
.icon.icon-settings {
font-size: calc(#{$font-size-base} * 1.2);
}
.btn-primary .icon {
float: right;
font-size: calc(#{$font-size-base} * 1.5);
}
// ICONS - END
// ++ DROPDOWNS
// ++ DROPDOWNS - END
// ++ MODALS
// ++ MODALS - END
// PAGE ELEMENTS (Top --> Down) ++
// ++ HEADER
// ++++ Header width reset.
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
header {
background-position: right top;
background-repeat: no-repeat;
&.collapse:not(.in), &.collapsing {
background: white;
display: inline;
.navbar-header-link {
color: $azure;
}
}
@media screen and (max-width: $screen-xs-max) {
margin-bottom: $content-bottom-padding;
}
@media screen and (min-width: $screen-sm-min) {
background-image: url('../images/header-bg-sm.png');
min-height: em($navbar-header-height-home-sm);
}
@media screen and (min-width: $screen-lg-min) {
background-image: url('../images/header-bg-lg.png');
min-height: em($navbar-header-height-home-sm);
}
}
header,
.navbar,
.breadcrumbs {
background-color: transparent;
// FIXME: REMOVE, when 15639 has been merged to finc
width: auto;
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
.menubar {
@include noselect;
box-sizing: border-box;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: -webkit-box;
display: inline-flex;
justify-content: flex-end;
width: 100%;
// ++++++ disable transitions for menu
.collapsed, &.collapsed {
transition: none !important;
transition-delay: $transition-delay !important;
transition-duration: $transition-duration !important;
}
.collapsing, &.collapsing {
background: transparent;
height: auto !important;
transition: none !important;
transition-delay: $transition-delay !important;
transition-duration: $transition-duration !important;
}
.collapse, &.collapse {
transition: none !important;
transition-delay: $transition-delay !important;
transition-duration: $transition-duration !important;
}
.collapse.in, &.collapse.in {
transition: none !important;
transition-delay: $transition-delay !important;
transition-duration: $transition-duration !important;
}
.fill-flex {
flex-grow: 2;
flex-shrink: 1;
}
.register .navbar-header-link {
@media (max-width: $screen-xs-max) {
@include shift-main-menu-entries-to-navigation-overlay;
top: calc(#{$navbar-header-height-xs-sm} + 5 * #{$line-height-submenu} + 2 * #{$content-top-padding});
}
}
.language {
height: 35px;
.dropdown-menu {
background-color: white;
left: 10px;
min-width: 100px;
position: absolute;
width: 100px;
@media (max-width: $screen-xs-max) {
@include shift-main-menu-entries-to-navigation-overlay;
top: calc(#{$navbar-header-height-xs-sm} + 4 * #{$line-height-submenu} + 2 * #{$content-top-padding});
}
li > a {
padding: 3px 5px;
text-align: left;
}
}
}
.language.dropdown:not(.open) {
.dropdown-menu {
@media (min-width: $screen-sm-min) {
display: none;
}
}
}
}
// override finc display block
.collapse.in {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: -webkit-box;
display: inline-flex;
}
.collapsing, &.collapsing {
transition-duration: $transition-duration !important;
transition: unset !important;
.navbar.affix {
border: 0;
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
@media screen and (min-width: $screen-sm-min) {
@include default-background-header;
height: em($navbar-header-height-affix-sm);
.adv-srch-btn {
display: none;
}
}
}
// ++++++ Navbar in affix mode - END
.header-menu-collapse {
@extend .navbar-header;
@media (min-width: $screen-sm-min) {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: -webkit-box;
display: inline-flex;
&.collapse.in {
.additional-text-lg {
display: inline;
}
.additional-text-xl {
display: inline;
}
.submenu-collapse {
top: $navbar-header-height-home-sm;
}
}
}
&.collapse:not(.in) {
.submenu-collapse {
background: $white;
height: 0;
padding: 0;
visibility: hidden;
width: 0;
}
}
&.collapse.in, &.collapsing {
.submenu-collapse {
@include navigation-overlay;
padding: 0;
}
}
}
//// Define header navbar on mobile
.header-menu-collapse.collapsing {
padding: 0;
.submenu-collapse {
@media (max-width: $screen-sm-max) {
background-color: $white;
padding: 0;
}
}
}
//// Display different icons after open or close of submenues
header.collapse.in .menubar .text-close, .dropdown.sbox-dd:not(.open) .text-close, .language:not(.open) .icon.icon-chevron-up {
display: none;
}
header.collapse:not(.in) .menubar .text-open, header.collapsing .text-open, .dropdown.sbox-dd.open .text-open, .language.open .icon.icon-caret-down {
display: none;
}
//// Display different icons after open or close of submenues - END
.additional-text-xs, .additional-text-xl, .additional-text-lg {
display: none;
}
@media screen and (max-width: $screen-xs-max) {
.additional-text-xs {
display: inline;
}
}
@media screen and (min-width: $screen-lg) {
.additional-text-lg {
display: inline;
}
}
@media screen and (min-width: $screen-xl) {
.additional-text-xl {
display: inline;
}
}
.navbar-header {
flex-shrink: 0;
// position of navbar-brand Logo on top left
.navbar-brand {
border: 0;
left: 0;
outline: none;
position: absolute;
top: 31px;
}
@media screen and (max-width: $screen-sm-min) {
background-color: $white;
height: $navbar-header-height-xs-sm;
.navbar-toggle {
color: $brand-primary;
// for middle-alignment
padding: 0;
&:not(.collapse) {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: -webkit-box;
display: inline-flex;
}
}
@media screen and (min-width: $screen-sm-min) {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: -webkit-box;
display: inline-flex;
}
}
.navbar-header-link {
@extend .navbar-toggle;
@media screen and (min-width: $screen-sm-min) {
@include default-navbar-link-font;
}
// ++++ Banner, Logo and home link
.banner {
width: 100%;
@media screen and (max-width: $screen-xs-min) {
margin-left: 0;
margin-right: 0;
&.container {
padding-left: 0;
padding-right: 0;
@media screen and (min-width: $screen-sm-min) {
border-radius: 0;
}
// Logo position
.navbar-brand {
margin-left: $navbar-margin-left;
z-index: z-index(navbar-brand, 0);
}
// Menu toggler position
.navbar-toggle {
}
}
}
.navbar-brand {
// DEFINE BG IMAGE
// $screen-xs-max = 767px
// Fallback image IE & Co
background: url('../images/logo.png') no-repeat;
// SVG (modern browsers), linear-gradient used to pick out browsers that support SVG
background: url('../images/logo.svg') no-repeat, linear-gradient(transparent, transparent);
background-size: contain;
color: transparent;
min-width: 180px;
// 768px and up
@media screen and (min-width: $screen-sm-min) {
// Fallback image IE & Co
background: url('../images/logo.png') no-repeat;
// SVG (modern browsers), linear-gradient used to pick out browsers that support SVG
background: url('../images/logo.svg') no-repeat, linear-gradient(transparent, transparent);
background-size: contain;
display: inline-block !important; // FIX for Safari + Android Stock Browser - ATTN! might kill visibility in IE11
min-height: 56px; // FIX for Safari + Android Stock Browser
min-width: 168px !important; // FIX for Safari + Android Stock Browser - ATTN! might kill visibility in IE11
}
// 992px and up
@media screen and (min-width: $screen-sm-min) {
// Fallback image IE & Co
background: url('../images/logo.png') no-repeat;
// SVG (modern browsers), linear-gradient used to pick out browsers that support SVG
background: url('../images/logo.svg') no-repeat, linear-gradient(transparent, transparent);
display: inline-block !important; // FIX for Safari + Android Stock Browser - ATTN! might kill visibility in IE11
// Collapsed navbar height in fid_adlr = 134px
height: em(134px);
min-height: em(134px); // FIX for Safari + Android Stock Browser
min-width: em(266px) !important; // FIX for Safari + Android Stock Browser - ATTN! might kill visibility in IE11
}
// hide home link for non-visually impaired to show logo only
a,
&:hover,
&:focus {
color: transparent;
// ++++ Logo and home link - END
// ++++++ basic default (non start page)
body:not(.template-name-home) {
header {
.headline, .home-links {
display: none;
}
@media screen and (max-width: $screen-xs-max) {
min-height: calc(4.5 * #{$search-toggle-padding-bottom-top});
}
@media screen and (min-width: $screen-sm-min) {
@include default-background-header;
.header-text.container {
height: calc(#{$navbar-header-height-sm} - #{$navbar-header-height-affix-sm});
}
}
.search {
// always use fixed search on default sites
@include fixed-navbar-search;
}
// ++++++ basic default - END
// ++++ Start Page
.template-name-home {
header {
&.collapse:not(.in) {
.header-text {
display: none;
}
}
@media screen and (max-width: $screen-xs-max) {
background-image: url('../images/header-bg-xs.png');
background-position: -390px $navbar-header-height-xs-sm;
background-size: cover;
min-height: em($navbar-header-height-xs-sm);
}
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
@media screen and (min-width: $screen-sm) {
.affix-top {
.additional-text-xl, .additional-text-lg {
display: inline;
}
}
}
}
// hide header text headline when affix is applied
.banner.affix {
.header-text {
display: none;
}
}
.header-text {
color: $brand-secondary;
.home-links {
display: block;
margin-left: 10px;
position: absolute;
top: 812px;
}
&.container {
@media screen and (max-width: $screen-xs-max) {
height: $header-text-box-height-xs;
padding-bottom: $header-text-bottom-padding-xs;
padding-top: $header-text-top-padding-xs;
.home-links {
display: none;
}
}
@media screen and (min-width: $screen-sm-min) {
height: $header-text-box-height-sm;
padding-bottom: $header-text-bottom-padding-sm;
padding-top: $header-text-top-padding-sm;
}
}
@media screen and (max-width: $screen-xs-max) {
// Add correct data for font-size, letter-spacing, lineheight, texttransform
@include default-headings-font(26px, 1.7px, 36px, none);
margin-right: 25%;
@media screen and (min-width: $screen-sm-min) {
@include default-headings-font(63px, 4.27px, 69px, none);
margin-bottom: 70px;
margin-right: 10%;
margin-top: $navbar-header-height-xs-sm;
padding-left: 0;
padding-right: 0;
text-align: right;
width: 900px;
}
.search.container.navbar {
position: absolute;
@media screen and (max-width: $screen-xs-max) {
&:not(.affix) {
// $display-searchbox-toggle, $display-prefilter-toggle, $unset-prefilter-toggle-dropdown, $is-affix, $screen-border
@include searchbox-toggler-and-content-styles(none, block, false, false, 'screen-xs-max');
top: $header-text-box-height-xs;
}
}
@media screen and (min-width: $screen-sm-min) {
left: 0;
top: $header-text-box-height-sm;
&:not(.affix) {
// $display-searchbox-toggle, $display-prefilter-toggle, $unset-prefilter-toggle-dropdown, $is-affix, $screen-border
@include searchbox-toggler-and-content-styles(none, none, true, false, 'screen-sm-min');
}
}
@media screen and (min-width: $screen-lg-min) {
left: 15%;
top: $header-text-box-height-sm;
}
}
.search.container.navbar.affix {
@include fixed-navbar-search;
// ++++ SEARCH BOX
.search.container {
background-color: transparent;
border: 0;
padding-top: 0px;
z-index: z-index(search, 0);
&.collapse.in {
display: inherit;
&.collapsing {
display: none;
transition: unset;
}
.searchbox {
// Outer Box
background-color: $brand-primary;
padding: 30px 20px;
@media screen and (min-width: $screen-sm-min) {
height: em($search-form-height-lg);
padding: 55px 20px 55px 50px;
width: $search-form-width-lg;
.sbox-dd-menu {
background-color: transparent;
border: 0;
margin-top: 0;
z-index: z-index(sbox-dd-menu, 0);
}
@media screen and (min-width: $screen-sm-min) {
// $display-searchbox-toggle, $display-prefilter-toggle, $unset-prefilter-toggle-dropdown, $is-affix, $screen-border
@include searchbox-toggler-and-content-styles(none, block, false, false, 'screen-sm-min');
width: 1250px;
.btn-lg {
margin-top: 0;
}
}
.searchForm {
display: inline-block;
@media screen and (max-width: $screen-xs-max) {
.nav-tabs {
// parameter $type: collapsed for default / full for start page
@include search-filter-styles(false, true, 'screen-xs-max');
&.open {
// parameter $type: collapsed for default / full for start page
@include search-filter-styles('collapsed', true, 'screen-xs-max');
}
}
}
}
}
.nav-tabs {
border-bottom: 0;
@media screen and (min-width: $screen-sm-min) {
.nav-tabs {
@include search-filter-styles('full', true, 'screen-sm-min');
}
.template-name-home .affix, body:not(.template-name-home) {
@media screen and (min-width: $screen-sm-min) {
.nav-tabs.open {
@include search-filter-styles('collapsed', true, 'screen-sm-min');
}
/*
display: block;
padding: 3px 20px;
clear: both;
font-weight: 400;
line-height: @line-height-base;
color: @dropdown-link-color;
white-space: nowrap; // prevent links from randomly breaking onto new lines
&:hover,
&:focus {
color: @dropdown-link-hover-color;
text-decoration: none;
background-color: @dropdown-link-hover-bg;
}
}
*/
// search (box) and elements in affix mode (on scrolling)
.search.affix {
@include fixed-navbar-search;
@media screen and (min-width: $screen-sm-min) {
.searchbox {
background: transparent;
// search (box) and elements in affix mode - END
// ++++++ Search input field
input.searchForm_lookfor {
// overwrite border definitions input[type="text"]
@include result-list-border($white);
color: $white;
&::placeholder,
&:placeholder-shown {
color: $white;
}
}
.searchForm_lookfor {
@include default-border-radius;
background-color: transparent;
height: $search-input-height-fixed;
min-width: $search-input-width-fixed;
@media screen and (min-width: $screen-sm-min) {
height: $search-input-height-lg;
width: $search-input-width-lg;
}
&.form-control {
@media screen and (min-width: $screen-sm-min) {
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
max-width: $search-input-width-lg;
width: $search-input-width-lg;
}
}
}
// Set font size for input field and advanced search link
.searchForm_lookfor,
.adv-srch-btn {
@media screen and (max-width: $screen-sm-max) {
font-size: 16px;
}
}
// ++++++ Search input field - END
// ++++++ Quick filter
#quickfilter-dd {
color: $white;
.quickfilter.open & {
background: transparent;
}
}
#quickfilter-dd,
.search-button,
.adv-srch-btn {
&:hover,
&:focus {
}
}
// ++++++ Quick filter - END
.searchForm .list-unstyled {
> li {
// ++++++ Standard Search Button
&.find-button {
@media screen and (max-width: $screen-xs-max) {
float: none;
}
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
@media screen and (min-width: $screen-sm-min) {
margin-left: 15px;
}
}
&.find-label {
@include default-border-radius;
@include large-btn;
height: $search-input-height-lg;
}
// ++++++ Standard Search Button - END
&.quickfilter {
height: $search-input-height-fixed;
margin-left: -3em;
padding-top: 12px;
position: absolute;
@media screen and (max-width: $screen-xs-max) {
left: $search-input-width-fixed;
margin-left: -2em;
}
@media screen and (min-width: $screen-sm-min) {
height: $search-input-height-default;
padding-top: $search-filter-padding-top;
}
li {
border: $default-border solid $white;
border-radius: 2px;
}
.btn-transparent {
border: 1px solid transparent;
&:hover,
&:focus {
background: transparent;
color: $brand-secondary;
}
}
.dropdown-menu {
// parameter $type: collapsed for default / full for start page
@include search-filter-styles('collapsed', false, false);
left: -240px;
padding: 5px;
width: $search-input-width-fixed;
}
}
@media screen and (min-width: $screen-sm-min) {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: -webkit-box;
display: flex;
}
}
// ++++++ Adv. Search Link
.adv-srch-btn {
color: $white;
display: inline-block;
margin-top: 1em;
}
// ++++++ Adv. Search Link - END
// ********************************************************
// headr
// ********************************************************
// ++++ SEARCH BOX - END
// ++ HEADER - END
// ++ SEARCH-RESULTS PAGE
/*#filter-header {
background-color: $midnight-medium;
padding: 0;
}*/
.offcanvas-right .close-offcanvas::before {
content: none;
}
.container .sidebar.right {
@media screen and (max-width: $screen-xs-max) {
padding: 0;
select {
max-width: none;
}
}
select {
@include result-list-border($black);
background-color: $white;
width: 100%;
}
.btn-link {
color: $black;
}
#filter-header {
padding: 12px;
}
}
.search-header {
margin-bottom: 4em;
margin-top: 2em;
}
.result-body, .author {
color: $asphalt;
}
.search-stats {
.offcanvas-toogler {
float: none;
}
.search-filter-toggle {
@include result-list-border($black);
background-color: $white;
height: $search-input-height-fixed;
line-height: 2;
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
width: 100%;
&::after {
content: none;
}
i {
margin: 5px;
}
}
}
.search-controls {
select {
@include result-list-border($black);
background-color: $white;
}
label {
position: absolute;
margin-top: -2em;
}
.limit {
label {
padding-top: 6px;
}
select {
min-width: 8em;
}
}
.mailsave {
span {
margin-left: 1em;
}
}
}
.result {
border-bottom: 3px solid $midnight-medium;
.format {
background-color: $white;
color: $asphalt;
}
@media screen and (max-width: $screen-xs-max) {
a {
text-decoration: none;
}
}
.title {
font-family: $font-family-monospace;
font-size: 24px;
font-weight: bold;
}
@media screen and (min-width: $screen-sm-min) {
&:first-of-type {
border-top: 3px solid $midnight-medium;
}
}
}
.result-getitbox {
margin-top: 3em;
}
.result-links {
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
color: $violet;
}
// move favorites and other icons to the right
text-align: right;
}
.result:nth-of-type(2n) {
background-color: transparent;
}
#filter-header {
background-color: $midnight-medium;
}
.sidebar {
hyphens: auto; // avoid ugly linebreaks with overlong words
// set colors for selected filters in sidebar
.active-filters, .facet-group {
.facet {
&:hover {
background-color: transparent;
}
.text {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: -webkit-box;
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
display: flex;
& > span {
display: inline-block;
}
}
}
}
.active-filters {
@include result-list-border($violet !important);
margin-top: 1em;
.facet {
background-color: transparent;
color: $violet;
}
}
}
.exclude i {
color: $black;
}
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
// FACET GROUP
.facet-group {
@include result-list-border($midnight-medium);
.active {
background-color: transparent;
color: $violet;
}
[data-toggle="collapse"]::after {
content: '\2212';
}
.collapsed::after {
content: '\ff0b';
}
.collapse,
.collapsing,
.facet {
border: 0;
}
.checkbox, .facet {
border: 0;
//padding: 10px 15px;
padding: .75em 1em;
width: 100%;
}
.title {
border: none;
color: $azure;
font-family: $font-family-monospace;
text-transform: uppercase;
}
}
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
// DATE-RANGE slider
.slider-container {
margin-bottom: 1.5em;
padding-right: ($content-l-r-padding / 2);
.slider-handle,
.slider-handle.round {
border-radius: 100%;
}
.slider-track {
background-color: $midnight-medium;
}
.slider-selection {
background-color: $azure;
}
}
// add thick border to date range inputs
#publishDateSortFilter {
input.form-control {
background-color: $white;
@include result-list-border($black);
}
.btn-default {
background-color: $amber;
margin-top: $content-top-padding;
min-width: 98px;
}
}
// DATE-RANGE slider - END
// ++ SEARCH-RESULTS PAGE - END
// ++ GENERAL CONTENT PAGE
.main {
min-height: 1000px;
&.collapsing {
height: 0;
min-height: 0;
transition: unset;
}
}
// ++ GENERAL CONTENT PAGE - END
// ++ DETAILS/RECORD VIEW PAGE
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
.table {
border: 0;
& tr {
border-bottom: 3px solid $midnight-medium;
@media screen and (min-width: $screen-lg-min) {
&:first-of-type {
border-top: 3px solid $midnight-medium;
}
}
}
& > tbody {
& > tr {
& > td {
color: $asphalt;
}
& > th, & > td {
font-weight: normal;
padding: 20px;
}
&:nth-of-type(2n+1) {
background-color: transparent;
}
}
}
}
.tab-content {
.tab-pane {
a {
color: $black;
}
.table {
tr {
border-bottom: 2px solid $midnight-medium;
@media screen and (min-width: $screen-lg-min) {
&:first-of-type {
border-top: 0;
}
}
color: $black;
& > th, & > td {
padding: 4px;
}
}
}
}
}
.toolbar-menu {
position: relative;
.dropdown-menu {
padding-left: 12px;
padding-right: 12px;
margin-left: -140px;
}
}
.title-toolbar {
h3 {
font-size: 24px;
}
& > .toolbar-details {
padding-top: 12px;
& > .toolbar-menu {
padding-top: 26px;
}
}
}
.openurls {
ul {
li {
a {
color: $asphalt;
&:hover {
color: #00359b;
}
}
}
}
}
.worldcat .openurls {
ul {
padding-left: 1em;
}
}
div[class$="-tab"] {
.media-body {
strong {
color: $asphalt;
}
}
.media-left {
padding-right: 88px;
}
}
// ++ DETAILS/RECORD VIEW - END
// ++ ADVANCED SEARCH
// ++ ADVANCED SEARCH - END
// PAGE ELEMENTS (Top --> Down) - END
// +++++ Footer - START
// styling follows mobile first principles
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
footer {
// general footer styles
all: inherit;
color: white;
background-repeat: no-repeat;
background-size: cover;
background-image: url('../images/footer-dummy-background.png');
a:hover, a:link, a:active, a:focus, a:visited {
color: white;
}
#footer-links {
font-family: "Ubuntu Mono";
font-size: em(18px);
font-weight: bold;
letter-spacing: em(2px);
line-height: em(42px);
text-transform: uppercase;
}
#footer-links ul {
list-style: none;
padding-left: 0;
}
#footer-contact-wrapper {
background-color:$azure;
}
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
#footer-contact div:first-child {
font-family: "Ubuntu Mono";
font-size: em(20px);
font-weight: bold;
letter-spacing: em(0.8px);
line-height: em(20px);
}
#footer-contact div:nth-child(2) {
font-family: "Open Sans";
font-size: em(18px);
line-height: em(33px);
}
#footer-contact .form {
font-weight: bold;
}
.footer-indent {
margin: 35px 15px 25px 15px;
}
.logo-footer {
height: 45px;
}
#footer-logos {
font-family: "Open Sans";
font-size: em(14px);
line-height: em(19px);
}
#footer-copyright {
font-family: "Open Sans";
font-size: em(16px);
line-height: em(22px);
}
// Small devices Tablets (<768px)
@media (max-width: $screen-sm-min - 1px) {
#footer-contact {
margin-left: 20px;
margin-right: 20px;
}
#footer-contact-wrapper {
padding: 35px 15px 20px 15px;
}
background-position-y: 60px;
}
// Small devices Tablets (≥768px) .col-sm-
@media (min-width: $screen-sm-min) {
background-size: calc(100%/2 + #{$container-sm}/4) 100%;
#footer-links {
margin-top: 50px;
}
#footer-contact-wrapper {
margin-top: 50px;
margin-right: 25px;
padding: 35px;
}
}
// Medium devices Desktops (≥992px) .col-md-
@media (min-width: $screen-md-min) {
background-size: calc(100%/2 + #{$container-md}/4) 100%;
#footer-links {
font-size: em(24px);
letter-spacing: em(1px);
line-height: em(42px);
}
#footer-contact div:first-child {
font-size: em(30px);
font-weight: bold;
line-height: em(34px);
}
#footer-contact-wrapper {
margin-right: -15px;
}
}
// Large devices Desktops (≥1200px) .col-lg-
@media (min-width: $screen-lg-min) {
background-size: calc(100%/2 + #{$container-lg}/4);
}
}
// +++++ Footer - END