| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 1 | @charset "utf-8"; | 
| Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 2 | @import "../util"; | 
|  | 3 | @import "hint";       // Hint specific menu list | 
|  | 4 | @import "menu";       // Menu list | 
|  | 5 | @import "searchbar";  // The search bar | 
|  | 6 | @import "vc";         // Virtual collection builder | 
| Nils Diewald | a122862 | 2015-04-25 01:59:10 +0000 | [diff] [blame] | 7 | @import "datepicker"; // Datepicker | 
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 8 |  | 
|  | 9 | header { | 
|  | 10 | position: relative; | 
|  | 11 | background-color: $light-green; | 
| Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 12 | //  @include light-noise; | 
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 13 | @include box-sizing-box(); | 
|  | 14 | padding: 8px; | 
|  | 15 | padding-bottom: 0; | 
|  | 16 | font-size: 10pt; | 
|  | 17 | color: $nearly-white; | 
|  | 18 | // text-shadow: none; | 
|  | 19 | button { | 
|  | 20 | color: $light-green; | 
|  | 21 | background-color: transparent; | 
|  | 22 | border-width: 0; | 
|  | 23 | font-weight: normal; | 
|  | 24 | margin: 0; | 
|  | 25 | padding: 0; | 
|  | 26 | outline: none; | 
|  | 27 | } | 
| Akron | 6bb7158 | 2016-06-10 20:41:08 +0200 | [diff] [blame] | 28 | span.select { /* , #vc-choose, Formally vc.location */ | 
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 29 | cursor: pointer; | 
|  | 30 | line-height: 1.8em; | 
|  | 31 | border: { | 
|  | 32 | width: 0; | 
|  | 33 | bottom-width: 3px; | 
|  | 34 | style: solid; | 
|  | 35 | color: transparent; | 
|  | 36 | } | 
|  | 37 | display: inline-block; | 
|  | 38 | &:hover { | 
|  | 39 | color: $dark-green; | 
|  | 40 | border-color: $dark-green; | 
|  | 41 | } | 
| Akron | 37513a6 | 2015-11-17 01:07:11 +0100 | [diff] [blame] | 42 | &.active { | 
|  | 43 | border-color: $dark-orange; | 
|  | 44 | } | 
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 45 | &::after { | 
|  | 46 | pointer-events: none; | 
|  | 47 | font-family: FontAwesome; | 
|  | 48 | text-align: center; | 
|  | 49 | background-color: $light-green; | 
|  | 50 | } | 
|  | 51 | } | 
| Akron | 6bb7158 | 2016-06-10 20:41:08 +0200 | [diff] [blame] | 52 | span.select { | 
|  | 53 | &::after { | 
|  | 54 | content: $fa-down; | 
|  | 55 | padding: { | 
|  | 56 | left: 4pt; | 
|  | 57 | right: 4pt; | 
|  | 58 | } | 
|  | 59 | } | 
|  | 60 | &.active::after { | 
|  | 61 | content: $fa-up; | 
|  | 62 | } | 
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 63 | } | 
|  | 64 |  | 
|  | 65 | form { | 
|  | 66 | padding-left: $logo-left-distance; | 
|  | 67 | min-height: 2.7em; | 
|  | 68 | display: block; | 
|  | 69 | margin: 0px; | 
|  | 70 | position: relative; | 
|  | 71 | } | 
| Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 72 |  | 
|  | 73 | .button { | 
|  | 74 | &.right { | 
|  | 75 | float: right; | 
|  | 76 | display: inline-block; | 
|  | 77 | } | 
|  | 78 | &.top { | 
|  | 79 | position: absolute; | 
|  | 80 | display: block; | 
|  | 81 | top: 0; | 
|  | 82 | right: 0; | 
|  | 83 | margin-right: 0; | 
| Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 84 | width: ($standard-margin / 2); | 
| Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 85 | background-color: $dark-green; | 
|  | 86 | text-align: center; | 
|  | 87 | height: 100%; | 
|  | 88 | } | 
|  | 89 | color: $nearly-white; | 
|  | 90 | line-height: 2em; | 
|  | 91 | margin-right: $right-distance; | 
|  | 92 | > a { | 
|  | 93 | color: $nearly-white; | 
|  | 94 | cursor:pointer; | 
|  | 95 | position: relative; | 
|  | 96 | font-size: 120%; | 
|  | 97 | > span { | 
|  | 98 | @include blind; | 
|  | 99 | } | 
|  | 100 | } | 
|  | 101 | > a::after { | 
|  | 102 | font-family: 'FontAwesome'; | 
|  | 103 | } | 
|  | 104 | > a.tutorial::after { | 
|  | 105 | content: $fa-tutorial; | 
|  | 106 | } | 
| Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 107 | > a.question::after { | 
|  | 108 | content: $fa-question; | 
|  | 109 | } | 
|  | 110 | > a.login::after { | 
|  | 111 | content: $fa-login; | 
|  | 112 | } | 
|  | 113 | } | 
| Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 114 |  | 
|  | 115 | #vc-view > div { | 
|  | 116 | margin: 1.3em 0 .5em 0; | 
|  | 117 | } | 
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 118 | } | 
|  | 119 |  | 
|  | 120 |  | 
|  | 121 | /** | 
|  | 122 | * Temporary hack for language chooser | 
|  | 123 | * http://cssdeck.com/labs/styling-select-box-with-css3 | 
|  | 124 | */ | 
|  | 125 | #ql-field { | 
|  | 126 | cursor: pointer; | 
|  | 127 | margin: 0; | 
|  | 128 | outline: none; | 
|  | 129 | border: none; | 
|  | 130 | display: inline-block; | 
|  | 131 | position: relative; | 
|  | 132 | color: white; | 
|  | 133 | background-color: $light-green; | 
|  | 134 | border-width: 0; | 
|  | 135 | border-radius: 0; | 
|  | 136 | @include no-appearance; | 
|  | 137 | &:checked { | 
|  | 138 | outline: none; | 
|  | 139 | } | 
|  | 140 | > option { | 
|  | 141 | padding: 0pt 2pt; | 
|  | 142 | outline: none; | 
|  | 143 | } | 
|  | 144 | } | 
|  | 145 |  | 
|  | 146 | /** | 
|  | 147 | * funny hack for firefox | 
|  | 148 | */ | 
|  | 149 | #ql-field:-moz-focusring { | 
|  | 150 | color: transparent; | 
|  | 151 | text-shadow: 0 0 0 white; | 
|  | 152 | } |