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"; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 3 | |
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 4 | /** |
5 | * Rules for logos. | ||||
6 | */ | ||||
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 7 | .logo { |
8 | &::after { | ||||
9 | content: "" !important; | ||||
10 | } | ||||
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 11 | |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 12 | > * { |
13 | background: { | ||||
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 14 | repeat: no-repeat; |
15 | size: 90%; | ||||
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 16 | position: 50% 50%; |
17 | } | ||||
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 18 | |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 19 | > span { |
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 20 | @include blind; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 21 | } |
Akron | f47765d | 2023-04-28 11:06:57 +0200 | [diff] [blame] | 22 | |
23 | > div.logoaddon { | ||||
24 | position:absolute; | ||||
25 | display: block; | ||||
26 | font-size: 10pt; | ||||
27 | right: 5pt; | ||||
28 | bottom: 4pt; | ||||
29 | text-align:right; | ||||
Akron | 3a65282 | 2023-11-03 19:21:30 +0100 | [diff] [blame] | 30 | color: $dark-orange; |
Akron | f47765d | 2023-04-28 11:06:57 +0200 | [diff] [blame] | 31 | padding: 3pt; |
32 | text-shadow: 1pt 1pt 0 $nearly-white, -1pt -1pt 0 $nearly-white, -1pt 1pt 0 $nearly-white, 1pt -1pt 0 $nearly-white; | ||||
33 | } | ||||
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 34 | } |
35 | } | ||||
36 | |||||
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 37 | /** |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 38 | * Logo: KorAP |
39 | */ | ||||
40 | h1 { | ||||
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 41 | position: absolute; |
42 | margin: 0; | ||||
Uyen-Nhu Tran | 87aabcc | 2024-04-10 01:17:24 +0200 | [diff] [blame] | 43 | // margin-left: 10pt; |
44 | margin-left: 3rem; | ||||
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 45 | left: 0; |
Uyen-Nhu Tran | 8a996bd | 2024-04-25 16:31:56 +0200 | [diff] [blame^] | 46 | top: 50%; |
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 47 | width: 7.8em; |
48 | height: 2.4em; | ||||
49 | z-index: 105; | ||||
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 50 | background: { |
Akron | d059ea2 | 2021-03-02 15:32:27 +0100 | [diff] [blame] | 51 | size: 78% !important; |
52 | image: url('#{$img-path}/korap-logo.svg'); | ||||
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 53 | } |
Uyen-Nhu Tran | 8a996bd | 2024-04-25 16:31:56 +0200 | [diff] [blame^] | 54 | transform: translateY(-50%); |
55 | -o-transform: translateY(-50%); | ||||
56 | -moz-transform: translateY(-50%); | ||||
57 | -webkit-transform: translateY(-50%); | ||||
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 58 | } |
59 | |||||
Uyen-Nhu Tran | 74103b5 | 2024-04-23 01:17:58 +0200 | [diff] [blame] | 60 | // aside.active ~ header h1 { |
61 | // position: fixed; | ||||
62 | // } | ||||
Akron | c3f063c | 2021-04-20 14:29:42 +0200 | [diff] [blame] | 63 | |
64 | |||||
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 65 | #overview { |
66 | text-align: center; | ||||
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 67 | width: 100%; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 68 | } |