blob: a959a08f30b88ca4cbf39a37cbaed5f30d575ee2 [file] [log] [blame]
Nils Diewalda944fab2015-04-08 21:02:04 +00001@charset "utf-8";
Nils Diewaldab4d3ca2015-04-17 01:48:43 +00002@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 Diewalda1228622015-04-25 01:59:10 +00007@import "datepicker"; // Datepicker
Nils Diewalda944fab2015-04-08 21:02:04 +00008
9header {
10 position: relative;
11 background-color: $light-green;
Nils Diewald0e6992a2015-04-14 20:13:52 +000012// @include light-noise;
Nils Diewalda944fab2015-04-08 21:02:04 +000013 @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 }
Akron6bb71582016-06-10 20:41:08 +020028 span.select { /* , #vc-choose, Formally vc.location */
Nils Diewalda944fab2015-04-08 21:02:04 +000029 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 }
Akron37513a62015-11-17 01:07:11 +010042 &.active {
43 border-color: $dark-orange;
44 }
Nils Diewalda944fab2015-04-08 21:02:04 +000045 &::after {
46 pointer-events: none;
47 font-family: FontAwesome;
48 text-align: center;
49 background-color: $light-green;
50 }
51 }
Akron6bb71582016-06-10 20:41:08 +020052 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 Diewalda944fab2015-04-08 21:02:04 +000063 }
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 Diewald7c8ced22015-04-15 19:21:00 +000072
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 Diewald4347ee92015-05-04 20:32:48 +000084 width: ($standard-margin / 2);
Nils Diewald7c8ced22015-04-15 19:21:00 +000085 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 Diewald7c8ced22015-04-15 19:21:00 +0000107 > a.question::after {
108 content: $fa-question;
109 }
110 > a.login::after {
111 content: $fa-login;
112 }
113 }
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000114
115 #vc-view > div {
116 margin: 1.3em 0 .5em 0;
117 }
Nils Diewalda944fab2015-04-08 21:02:04 +0000118}
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}