1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
---
---
@import url("//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700");
$font-family: Trebuchet MS, Verdana, sans;
$font-size: 9pt;
$line-height: 1.4em;
$max-width: 960px;
$min-column-width: 2.5em;
$color: black;
$background: white;
$secondary-color: #720F10;
$icon-size: 2em;
$text-mono: Courier New;
$text-body: $font-family;
$text-head: $font-family;
$block-separation: 1em;
$text-separation: 0.5em;
$gutter: 1em;
$rounded: 4px;
$color-normal: transparent;
$color-ok: #F0F0F0;
$color-error: rgb(201, 19, 11);
$color-warning: rgb(247, 237, 184);
$staging-color: #A6DC7C;
$staging-background: white;
$master-color: white;
$master-background: #A6DC7C;
$small-device: 40em;
$medium-device: 65em;
$reservation: 2em;
$color-vignette: #F0F0F0;
@import "functions.scss";
@import "layout.scss";
@import "base.scss";
/*
Styling of the main menu
*/
.menu-bar {
margin-top: 10px;
padding-top: $text-separation;
padding-bottom: $text-separation;
@include gradient( lightgrey, rgb(179,179,181), rgb(130,132,135));
@include drop-shadow(2px,2px,2px,0.1);
@include rounded(3px);
margin-bottom: $block-separation;
> [span] {
vertical-align:middle;
margin: 0px;
> * {
color: white;
}
> a {
font-size: $font-size * 1.4;
padding-top:3px;
margin-right: $gutter;
}
.menu-logo {
height: $line-height;
position: relative;
top: 5px;
}
> img {
padding-right: $gutter;
}
}
.menu-button {
float: right;
}
@media screen and (max-width: $medium-device) {
[span] {
min-width: 4em;
}
}
@media screen and (max-width: $small-device) {
[span] {
width: 100%;
min-width: 1em;
}
}
}
/*
* Styling of the side bar
*/
.side-nav {
@include vignette();
}
.enroute {
@include vignette();
margin-top: $block-separation;
img {
width: 4em;
float: left;
vertical-align: middle;
margin-right: $text-separation;
}
&::after {
float:clear;
}
}
.selected {
&:before { content: "\25B7\00A0"; }
font-weight: bolder;
color: $secondary-color;
}
embed.illustration {
display:block;
margin-left: auto;
margin-right: auto;
}
.dropbtn {
background-color: #994b3a;
color: white;
padding: 6px;
font-size: 12.6pt;
border: none;
cursor: pointer;
}
.releases {
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 100px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 6px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.releases:hover .dropdown-content {
display: block;
}
.releases:hover .dropbtn {
background-color: #99594b;
}
|