Nils Diewald | 5814133 | 2015-04-07 16:18:45 +0000 | [diff] [blame^] | 1 | @charset "utf-8"; |
| 2 | @import "util"; |
| 3 | |
| 4 | $border-size: 3px; |
| 5 | |
| 6 | body.embedded { |
| 7 | background-color: $nearly-white; |
| 8 | } |
| 9 | |
| 10 | #tutorial { |
| 11 | position: fixed; |
| 12 | z-index: 9999; |
| 13 | top: 5%; |
| 14 | bottom: 5%; |
| 15 | left: 2%; |
| 16 | right: 2%; |
| 17 | padding-right: $right-match-distance; |
| 18 | background-color: $nearly-white; |
| 19 | ul.action { |
| 20 | display: block; |
| 21 | } |
| 22 | border: { |
| 23 | width: $border-size; |
| 24 | color: $dark-orange; |
| 25 | style: solid; |
| 26 | radius: $standard-border-radius; |
| 27 | } |
| 28 | box-shadow: $choose-box-shadow; |
| 29 | iframe { |
| 30 | margin: 0; |
| 31 | width: 100%; |
| 32 | min-height: 100%; |
| 33 | border-width: 0; |
| 34 | background: { |
| 35 | image:url('#{$img-path}/korap-bg-kalamar.svg'); |
| 36 | repeat: no-repeat; |
| 37 | position: center center; |
| 38 | size: 20%; |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | main.tutorial { |
| 44 | margin-left: $logo-left-distance + 15px; |
| 45 | } |
| 46 | |
| 47 | /* |
| 48 | #tutorial { |
| 49 | iframe { |
| 50 | width: 100%; |
| 51 | min-height: 100%; |
| 52 | border: { |
| 53 | width: 0; |
| 54 | radius: 10px; |
| 55 | } |
| 56 | background: { |
| 57 | image:url('#{$basepath}/img/korap-bg-kalamar.svg'); |
| 58 | size: 10%; |
| 59 | repeat: no-repeat; |
| 60 | position: center center; |
| 61 | color: white; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | display: block; |
| 66 | background-color: $dark-green; |
| 67 | border-radius: 15px; |
| 68 | &:not(.active) { |
| 69 | display: none; |
| 70 | } |
| 71 | &.active { |
| 72 | display: block; |
| 73 | } |
| 74 | > i, |
| 75 | > a > i { |
| 76 | font-size: 20pt; |
| 77 | color: $dark-green; |
| 78 | position: absolute; |
| 79 | background-color: rgba(255,255,255,0.5); |
| 80 | z-index: 100; |
| 81 | top: 10pt; |
| 82 | right: 20pt; |
| 83 | cursor: pointer; |
| 84 | } |
| 85 | > a > i { |
| 86 | right: 40pt; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | div.test { |
| 91 | display: block; |
| 92 | border-left: 10px solid $dark-green; |
| 93 | margin: 1em; |
| 94 | padding-left: 5px; |
| 95 | p { |
| 96 | color: black; |
| 97 | &.fail { |
| 98 | font-weight: bold; |
| 99 | color: red; |
| 100 | } |
| 101 | &.pass { |
| 102 | font-weight: bold; |
| 103 | color: green; |
| 104 | } |
| 105 | } |
| 106 | } |
| 107 | */ |