2010-11-23 21:34:29 +00:00
|
|
|
.triangle-marker {
|
|
|
|
border-color: transparent transparent;
|
|
|
|
content: "\00a0";
|
|
|
|
height: 0; width: 0;
|
|
|
|
position: absolute;
|
|
|
|
border-style: solid; }
|
2010-11-27 23:13:47 +00:00
|
|
|
|
2010-11-17 05:03:42 +00:00
|
|
|
nav a { @include hover-link; }
|
2010-11-23 21:34:29 +00:00
|
|
|
nav .selected a:hover { text-decoration: none;}
|
2010-11-17 05:03:42 +00:00
|
|
|
|
|
|
|
header { @extend .group;
|
|
|
|
font-size: 1.25em; font-family: "Museo Sans"; border-width: 4px;}
|
|
|
|
#main-nav {
|
2010-11-23 06:09:18 +00:00
|
|
|
width: 79%;
|
2010-11-17 05:03:42 +00:00
|
|
|
display: inline-block;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
ul {
|
|
|
|
@include horizontal-list(10px);
|
2010-11-23 21:34:29 +00:00
|
|
|
line-height: 2em; }}
|
2010-11-17 05:03:42 +00:00
|
|
|
|
2010-11-21 23:33:58 +00:00
|
|
|
#sub-nav {
|
2010-11-17 05:03:42 +00:00
|
|
|
@extend .group;
|
|
|
|
padding: 8px 0; }
|
|
|
|
|
|
|
|
#docs-nav, #module-nav {
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
a {
|
|
|
|
padding: 2px 10px;
|
|
|
|
display: inline-block; }}
|
|
|
|
|
2010-11-23 06:09:18 +00:00
|
|
|
#docs-nav { padding-right: 20px; }
|
2010-11-17 05:03:42 +00:00
|
|
|
|
|
|
|
#module-nav {
|
|
|
|
display: inline-block;
|
2010-11-23 06:09:18 +00:00
|
|
|
padding-left: 10px;
|
2010-11-23 21:34:29 +00:00
|
|
|
ul { @include horizontal-list(false); }}
|
|
|
|
|
|
|
|
#module-nav li.selected { position: relative;
|
|
|
|
a:before{ @extend .triangle-marker;
|
|
|
|
border-width: 0 8px 8px;
|
|
|
|
z-index: 2;
|
|
|
|
bottom: -9px;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -8px;
|
|
|
|
border-bottom-color: #121212;
|
|
|
|
}
|
|
|
|
&:before { @extend .triangle-marker;
|
|
|
|
border-bottom-color: #414141;
|
|
|
|
border-width: 0 6px 6px;
|
|
|
|
z-index: 3;
|
|
|
|
bottom: -9px;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -6px;
|
|
|
|
}
|
|
|
|
&:after { @extend .triangle-marker;
|
|
|
|
border-bottom-color: #343434;
|
|
|
|
border-width: 0 5px 5px;
|
|
|
|
z-index: 3;
|
|
|
|
bottom: -10px;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -5px;
|
|
|
|
}
|
|
|
|
}
|
2010-11-17 05:03:42 +00:00
|
|
|
|
|
|
|
#search-docs {
|
2010-11-27 23:13:47 +00:00
|
|
|
position: absolute; top: 29px; right: 0;
|
|
|
|
&:before {
|
|
|
|
content: "s";
|
|
|
|
display: block;
|
|
|
|
@extend .pictos;
|
|
|
|
position: absolute;
|
|
|
|
left: 6px;
|
|
|
|
top: 4px;
|
|
|
|
font-size: .8em;
|
|
|
|
z-index: 20;
|
|
|
|
@include opacity(.8)
|
|
|
|
}
|
|
|
|
input { @extend .sans-font; @include round-corners;
|
2010-11-17 05:03:42 +00:00
|
|
|
@include box-sizing(border-box);
|
2010-11-27 23:13:47 +00:00
|
|
|
max-width: 200px; min-width: 75px; border: 0; margin: 0; padding: 5px 8px 5px 23px;
|
2010-11-21 23:33:58 +00:00
|
|
|
font-size: .8em;
|
2010-11-27 23:13:47 +00:00
|
|
|
float: right;
|
|
|
|
position: relative; } }
|