2013-11-18 22:09:20 +01:00
|
|
|
/////////////////////////////////////
|
|
|
|
// NAVIGATION
|
|
|
|
/////////////////////////////////////
|
|
|
|
|
2013-11-30 17:13:19 +01:00
|
|
|
//
|
|
|
|
// Topbar
|
|
|
|
//
|
|
|
|
.topbar {
|
|
|
|
.clearfix;
|
|
|
|
background: #f1f4f7;
|
|
|
|
padding: @line-height-computed/3 @line-height-computed;
|
|
|
|
}
|
|
|
|
|
2013-11-18 22:09:20 +01:00
|
|
|
|
2013-11-30 17:13:19 +01:00
|
|
|
//
|
2013-11-18 22:09:20 +01:00
|
|
|
// Main Navigation
|
2013-11-30 17:13:19 +01:00
|
|
|
//
|
2013-11-18 22:09:20 +01:00
|
|
|
|
|
|
|
.nav-main {
|
2013-11-30 17:13:19 +01:00
|
|
|
position: relative;
|
|
|
|
float: right;
|
|
|
|
width: 5%;
|
2013-11-18 22:09:20 +01:00
|
|
|
|
|
|
|
li { display: inline-block; }
|
2013-11-30 17:13:19 +01:00
|
|
|
|
|
|
|
.nav-popover {
|
|
|
|
right: 0;
|
|
|
|
top: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-link {
|
|
|
|
display: block;
|
|
|
|
padding: .5em 1em;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: rgba(255,255,255,.5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-popover {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 5; // so it's always above page content
|
|
|
|
.border-bottom-radius;
|
|
|
|
background: rgba(255,255,255,.85);
|
|
|
|
box-shadow: 0 2px 7px rgba(0,0,0,.05);
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-btn,
|
|
|
|
.search-btn {
|
|
|
|
line-height: 1em;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
display: inline-block;
|
|
|
|
padding: .6em .7em .5em .7em;
|
|
|
|
margin: 0;
|
2013-11-18 22:09:20 +01:00
|
|
|
}
|
|
|
|
|
2013-11-30 17:13:19 +01:00
|
|
|
//
|
|
|
|
// Site Search
|
|
|
|
//
|
2013-11-18 22:09:20 +01:00
|
|
|
|
2013-11-30 17:13:19 +01:00
|
|
|
.site-search {
|
|
|
|
position: relative;
|
|
|
|
clear: both;
|
|
|
|
width: 80%;
|
|
|
|
float: left;
|
|
|
|
|
|
|
|
@media @breakpoint2 {
|
|
|
|
clear: none;
|
|
|
|
margin-right: 1%;
|
|
|
|
width: 60%;
|
|
|
|
}
|
|
|
|
// loupe icon
|
|
|
|
.search-btn {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-field {
|
|
|
|
padding-left: 40px;
|
|
|
|
position: relative;
|
|
|
|
width: 90%;
|
|
|
|
border: none;
|
|
|
|
.box-shadow(none);
|
|
|
|
background: transparent;
|
|
|
|
|
2013-11-30 17:32:17 +01:00
|
|
|
.placeholder(rgba(46, 79, 92, .2));
|
2013-11-30 17:13:19 +01:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background: rgba(255,255,255,.7) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-results {
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
2013-11-18 22:09:20 +01:00
|
|
|
// Pager
|
2013-11-30 17:13:19 +01:00
|
|
|
//
|
2013-11-18 22:09:20 +01:00
|
|
|
|
|
|
|
.pager {
|
|
|
|
.clearfix;
|
2013-11-20 23:33:58 +01:00
|
|
|
|
|
|
|
p { position: relative; }
|
2013-11-18 22:09:20 +01:00
|
|
|
a { display: block; }
|
2013-11-20 23:33:58 +01:00
|
|
|
|
|
|
|
i {
|
2013-11-18 22:09:20 +01:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
2013-11-20 23:33:58 +01:00
|
|
|
|
|
|
|
.alignright { text-align: right; }
|
|
|
|
|
|
|
|
.alignleft i { margin-right: .5em; }
|
2013-11-18 22:09:20 +01:00
|
|
|
|
2013-11-20 23:33:58 +01:00
|
|
|
.alignright i {
|
|
|
|
margin-left: .5em;
|
2013-11-18 22:09:20 +01:00
|
|
|
left: auto;
|
|
|
|
right: 0;
|
2013-11-20 23:33:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.alignleft a { margin-left: 1.5em; }
|
|
|
|
.alignright a { margin-right: 1.5em; }
|
|
|
|
|
2013-11-18 22:09:20 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Infinite Loader
|
|
|
|
/////////////////////////////////////
|
|
|
|
|
2013-11-23 21:53:52 +01:00
|
|
|
.infiniteLoader .next {
|
|
|
|
width: 100%;
|
|
|
|
float: none;
|
2013-11-24 19:15:34 +01:00
|
|
|
margin-left: 0;
|
2013-11-18 22:09:20 +01:00
|
|
|
}
|
|
|
|
|
2013-11-23 21:53:52 +01:00
|
|
|
.infiniteLoader .previous,
|
|
|
|
.infiniteLoader .pagenumber,
|
2013-11-18 22:09:20 +01:00
|
|
|
.infiniteLoader i {
|
|
|
|
.hide;
|
|
|
|
}
|
|
|
|
|
2013-11-23 21:53:52 +01:00
|
|
|
.infiniteLoader .next a {
|
2013-11-18 22:09:20 +01:00
|
|
|
.btn;
|
|
|
|
.aligncenter;
|
2013-11-24 19:15:34 +01:00
|
|
|
padding-top: @line-height-computed/1.5;
|
|
|
|
padding-bottom: @line-height-computed/1.5;
|
2013-11-18 22:09:20 +01:00
|
|
|
}
|