Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 1 | @import "colors"; |
| 2 | |
| 3 | #tutorial { |
| 4 | position: fixed; |
| 5 | display: block; |
| 6 | z-index: 9999; |
| 7 | background-color: $dark-green; |
| 8 | border-radius: 15px; |
| 9 | padding: 5px; |
| 10 | top: 2%; |
| 11 | bottom: 2%; |
| 12 | left: 5%; |
| 13 | right: 5%; |
| 14 | &:not(.active) { |
| 15 | display: none; |
| 16 | } |
| 17 | &.active { |
| 18 | display: block; |
| 19 | } |
| 20 | > i, |
| 21 | > a > i { |
| 22 | font-size: 20pt; |
| 23 | color: $dark-green; |
| 24 | position: absolute; |
Nils Diewald | 4e9fbcb | 2014-07-15 11:45:09 +0000 | [diff] [blame] | 25 | background-color: rgba(255,255,255,0.5); |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 26 | z-index: 100; |
| 27 | top: 10pt; |
| 28 | right: 20pt; |
| 29 | cursor: pointer; |
| 30 | } |
| 31 | > a > i { |
| 32 | right: 40pt; |
| 33 | } |
| 34 | iframe { |
| 35 | width: 100%; |
| 36 | min-height: 100%; |
| 37 | border: { |
| 38 | width: 0; |
| 39 | radius: 10px; |
| 40 | } |
| 41 | background: { |
Nils Diewald | 4e9fbcb | 2014-07-15 11:45:09 +0000 | [diff] [blame] | 42 | image: url('/img/crab.svg'); |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 43 | size: 10%; |
| 44 | repeat: no-repeat; |
| 45 | position: center center; |
| 46 | color: white; |
| 47 | } |
| 48 | } |
| 49 | } |
| 50 | |