2014-02-16 12:43:16 +01:00
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
*, *::after, *::before {
|
|
|
|
box-sizing: border-box;
|
2014-02-16 12:28:06 +01:00
|
|
|
}
|
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2014-02-16 12:28:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ===========================================================================================
|
|
|
|
Docs Body & Page Structure
|
|
|
|
============================================================================================== */
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
height: 100%;
|
2015-07-21 22:40:13 +02:00
|
|
|
background-color: #fff;
|
2014-02-16 12:28:06 +01:00
|
|
|
color: @text;
|
|
|
|
}
|
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
.Columns {
|
|
|
|
&__left {
|
2016-05-05 23:43:37 +02:00
|
|
|
background-color: @sidebar-background;
|
2014-02-16 12:43:16 +01:00
|
|
|
}
|
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
&__right {
|
|
|
|
&__content {
|
2015-07-21 22:40:13 +02:00
|
|
|
padding: 10px;
|
2016-05-05 23:43:37 +02:00
|
|
|
background-color: #fff;
|
2014-02-16 12:43:16 +01:00
|
|
|
}
|
|
|
|
}
|
2014-02-16 12:28:06 +01:00
|
|
|
}
|
2014-02-16 12:43:16 +01:00
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
.Collapsible {
|
|
|
|
&__container {
|
|
|
|
padding: 10px 15px;
|
|
|
|
display: block;
|
|
|
|
background-color: @lines;
|
|
|
|
border-bottom: 1px solid @lines;
|
|
|
|
}
|
2014-02-16 12:28:06 +01:00
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
//mobile friendly sub-nav
|
|
|
|
&__content {
|
|
|
|
display: none;
|
|
|
|
}
|
2014-02-16 12:43:16 +01:00
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
&__trigger {
|
|
|
|
padding: 7px 10px;
|
|
|
|
background-color: @sidebar-hover;
|
|
|
|
border: none;
|
2015-07-21 22:40:13 +02:00
|
|
|
|
2016-08-06 00:14:15 +02:00
|
|
|
.kill-background-image;
|
|
|
|
.kill-box-shadow;
|
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
&--bar {
|
|
|
|
display: block;
|
|
|
|
width: 18px;
|
|
|
|
height: 2px;
|
|
|
|
margin-top: 2px;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
background-color: @dark;
|
|
|
|
.kill-box-shadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: @dark;
|
2016-08-06 00:14:15 +02:00
|
|
|
.kill-box-shadow;
|
2016-05-23 20:09:15 +02:00
|
|
|
|
|
|
|
.icon-bar {
|
|
|
|
background-color: @light;
|
|
|
|
.kill-box-shadow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-21 22:40:13 +02:00
|
|
|
}
|
|
|
|
|
2016-05-05 23:43:37 +02:00
|
|
|
@media screen and (min-width: 768px) {
|
2015-07-21 22:40:13 +02:00
|
|
|
body {
|
|
|
|
//Needed only for floating code blocks
|
2016-05-05 23:43:37 +02:00
|
|
|
background-color: @light;
|
2015-07-21 22:40:13 +02:00
|
|
|
}
|
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
.Navbar {
|
2016-05-05 23:43:37 +02:00
|
|
|
position: fixed;
|
2015-07-21 22:40:13 +02:00
|
|
|
z-index: @zindex-navbar-fixed;
|
2016-05-05 23:43:37 +02:00
|
|
|
width: 100%;
|
2015-07-21 22:40:13 +02:00
|
|
|
}
|
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
.Collapsible {
|
|
|
|
&__container {
|
|
|
|
display: none;
|
|
|
|
}
|
2014-02-16 12:43:16 +01:00
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
&__content {
|
|
|
|
display: block !important;
|
|
|
|
}
|
2015-07-21 22:40:13 +02:00
|
|
|
}
|
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
.Columns {
|
|
|
|
height: 100%;
|
|
|
|
padding-top: @navbar-height;
|
2015-07-21 22:40:13 +02:00
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
&::after,
|
|
|
|
&::before {
|
|
|
|
content: " ";
|
|
|
|
display: table;
|
2015-07-21 22:40:13 +02:00
|
|
|
}
|
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
&::after {
|
|
|
|
clear: both;
|
|
|
|
}
|
2015-07-21 22:40:13 +02:00
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
&__left, &__right {
|
|
|
|
position: relative;
|
|
|
|
min-height: 1px;
|
|
|
|
float: left;
|
|
|
|
overflow: auto;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2015-07-21 22:40:13 +02:00
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
&__left {
|
|
|
|
width: 25%;
|
2016-05-05 23:43:37 +02:00
|
|
|
border-right: 1px solid @lines;
|
|
|
|
overflow-x: hidden;
|
2015-07-21 22:40:13 +02:00
|
|
|
}
|
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
&__right {
|
|
|
|
width: 75%;
|
2016-08-06 00:14:15 +02:00
|
|
|
|
2016-05-23 20:09:15 +02:00
|
|
|
&__content {
|
2016-05-05 23:43:37 +02:00
|
|
|
padding: 20px;
|
|
|
|
min-height: 100%;
|
2015-07-21 22:40:13 +02:00
|
|
|
}
|
|
|
|
}
|
2014-02-16 12:43:16 +01:00
|
|
|
}
|
2014-02-16 12:28:06 +01:00
|
|
|
}
|