Separate files for separate structure
This commit is contained in:
parent
446ba1a399
commit
b7d2ab2594
318
less/import/components.less
Normal file
318
less/import/components.less
Normal file
@ -0,0 +1,318 @@
|
||||
/* ===========================================================================================
|
||||
Componenets
|
||||
============================================================================================== */
|
||||
a {
|
||||
color: @light;
|
||||
}
|
||||
|
||||
.btn {
|
||||
&.btn-sidebar {
|
||||
padding: 7px 10px;
|
||||
.kill-background-image;
|
||||
.kill-box-shadow;
|
||||
background-color: @sidebar-hover;
|
||||
border: none;
|
||||
.icon-bar {
|
||||
display: block;
|
||||
width: 18px;
|
||||
height: 2px;
|
||||
margin-top: 2px;
|
||||
margin-bottom: 3px;
|
||||
background-color: @dark;
|
||||
.kill-box-shadow;
|
||||
}
|
||||
&:hover {
|
||||
.kill-box-shadow;
|
||||
background-color: @dark;
|
||||
.icon-bar {
|
||||
background-color: @light;
|
||||
.kill-box-shadow;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
code {
|
||||
color: @light;
|
||||
}
|
||||
|
||||
//Navbar
|
||||
.navbar {
|
||||
.box-shadow();
|
||||
z-index: 1;
|
||||
margin-bottom: 0px;
|
||||
z-index: 200;
|
||||
.navbar-inner {
|
||||
.kill-background-image;
|
||||
background-color: @dark;
|
||||
border-bottom: none;
|
||||
padding: 6px 20px;
|
||||
.brand {
|
||||
color: @light;
|
||||
text-shadow:none;
|
||||
.roboto-slab.bold;
|
||||
}
|
||||
.navbar-text {
|
||||
color: @light;
|
||||
a {
|
||||
color: @light;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
padding: 6px 10px;
|
||||
.navbar-text {
|
||||
line-height: 16px;
|
||||
margin: 12px 6px;
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 979px) {
|
||||
&.navbar-fixed-top {
|
||||
position: fixed;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
&.navbar-fixed-top {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//Sidebar Nav List
|
||||
.nav.nav-list {
|
||||
padding-left: 0px;
|
||||
padding-right: 0px;
|
||||
li {
|
||||
a {
|
||||
margin: 0px;
|
||||
padding: 6px 15px;
|
||||
.roboto-slab.regular;
|
||||
color: @dark;
|
||||
font-size: 15px;
|
||||
text-shadow:none;
|
||||
border-top: 1px solid @lines;
|
||||
&:hover {
|
||||
color: @dark;
|
||||
text-shadow:none;
|
||||
background-color: @sidebar-hover;
|
||||
}
|
||||
}
|
||||
&.active {
|
||||
a {
|
||||
background-color: @sidebar-hover;
|
||||
}
|
||||
}
|
||||
&.open {
|
||||
> ul {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
&.open {
|
||||
//border-bottom: none;
|
||||
}
|
||||
}
|
||||
ul {
|
||||
display: none;
|
||||
margin-left: 15px;
|
||||
li {
|
||||
a {
|
||||
.sans-serif(normal, 14px);
|
||||
margin: 0px;
|
||||
margin-left: -15px;
|
||||
padding: 3px 30px;
|
||||
border: none;
|
||||
color: @text;
|
||||
.opacity(0.70);
|
||||
&:hover {
|
||||
.opacity(1.0);
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
&.active {
|
||||
a {
|
||||
color: @dark;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.page-header {
|
||||
margin: 10px 0px;
|
||||
padding: 0px;
|
||||
h1 {
|
||||
margin-top: 0px;
|
||||
}
|
||||
sub-heading {
|
||||
padding: 0px, 0px, 20px;
|
||||
}
|
||||
}
|
||||
pre {
|
||||
border: none;
|
||||
background-color: @light;
|
||||
.border-radius(0px);
|
||||
padding: 10px;
|
||||
margin-left: -20px;
|
||||
padding-left: 30px;
|
||||
margin-right: -20px;
|
||||
padding-right: 30px;
|
||||
code {
|
||||
background: transparent;
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
|
||||
//Content pages float view
|
||||
.float-view {
|
||||
@media (min-width: 1150px) {
|
||||
.content-page {
|
||||
height: 100%;
|
||||
overflow:auto;
|
||||
padding: 0px !important;
|
||||
background-color: transparent !important;
|
||||
position: relative;
|
||||
|
||||
article {
|
||||
width: 100%;
|
||||
min-height: 100%;
|
||||
overflow: auto;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
&:before {
|
||||
content: "";
|
||||
width: 50%;
|
||||
min-height: 100%;
|
||||
overflow: auto;
|
||||
background-color: white;
|
||||
display: block;
|
||||
margin: 0px;
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
.hideCode:before {
|
||||
width:100% !important;
|
||||
}
|
||||
table {
|
||||
float: left;
|
||||
clear: left;
|
||||
width: 47%;
|
||||
margin-left: 1.5%;
|
||||
margin-right: 1.5%;
|
||||
background-color: white;
|
||||
white-space: normal;
|
||||
pre, code {
|
||||
white-space: normal;
|
||||
}
|
||||
}
|
||||
.page-header {
|
||||
padding: 0px;
|
||||
}
|
||||
.page-header,
|
||||
p, ul, ol, dl, h2, h3,h4, h5, h6 {
|
||||
float: left;
|
||||
clear: left;
|
||||
width: 47%;
|
||||
margin-left: 1.5%;
|
||||
margin-right: 1.5%;
|
||||
background-color: white;
|
||||
&:before {
|
||||
content: "";
|
||||
width: 100%;
|
||||
height: 10px;
|
||||
display: block;
|
||||
clear: both;
|
||||
//border-top: 1px solid @dark;
|
||||
}
|
||||
p, ul, ol, dl, h2, h3,h4, h5, h6, pre {
|
||||
float: none;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
.hideCode2 {
|
||||
width: 900px !important;
|
||||
width: calc(100% - 130px) !important;
|
||||
}
|
||||
ul,ol {
|
||||
li {
|
||||
margin-left: 30px;
|
||||
}
|
||||
}
|
||||
pre {
|
||||
float: left;
|
||||
clear: right;
|
||||
width: 47%;
|
||||
border: none;
|
||||
border-left: 10px solid white;
|
||||
margin: 0px 0px 10px 0px;
|
||||
padding: 0px 0px 0px 10px;
|
||||
}
|
||||
hideCode3 {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//Tables
|
||||
table {
|
||||
width: 100%;
|
||||
border-bottom: 1px solid @lines;
|
||||
margin-bottom: 10px;
|
||||
tr {
|
||||
th, td {
|
||||
padding: 8px;
|
||||
line-height: 20px;
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
border-top: 1px solid @lines;
|
||||
border-left: 1px solid @lines;
|
||||
border-color: @lines !important;
|
||||
&:last-child {
|
||||
border-right: 1px solid @lines;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//Footer
|
||||
.footer {
|
||||
position: fixed;
|
||||
bottom:0;
|
||||
left: 0;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
//github ribbon
|
||||
#github-ribbon {
|
||||
position: absolute;
|
||||
top: 50px;
|
||||
right: 0;
|
||||
z-index: 200;
|
||||
}
|
||||
|
||||
.well {
|
||||
&.well-sidebar {
|
||||
.kill-box-shadow;
|
||||
background-color: transparent;
|
||||
.border-radius(0px);
|
||||
border: none;
|
||||
a {
|
||||
font-size: 13px;
|
||||
.roboto-slab.regular;
|
||||
color: @light;
|
||||
line-height: 28px;
|
||||
}
|
||||
.twitter {
|
||||
hr {
|
||||
border-bottom: none;
|
||||
margin-left: -20px;
|
||||
margin-right: -20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,819 +1,15 @@
|
||||
//Mixins, cuz they're handy
|
||||
.box-shadow(@shadowsize: 5px, @color:rgba(0,0,0,.25), @left: 0px, @top: 1px) {
|
||||
-moz-box-shadow: @left @top @shadowsize @color;
|
||||
-webkit-box-shadow: @left @top @shadowsize @color;
|
||||
box-shadow: @left @top @shadowsize @color;
|
||||
}
|
||||
.border-radius(@radius: 5px) {
|
||||
-moz-border-radius: @radius;
|
||||
-webkit-border-radius: @radius;
|
||||
border-radius: @radius;
|
||||
}
|
||||
.kill-background-image() {
|
||||
background-image: none;
|
||||
-ms-filter: none;
|
||||
filter: none;
|
||||
}
|
||||
.kill-box-shadow() {
|
||||
box-shadow: none;
|
||||
-webkit-box-shadow: none;
|
||||
-moz-box-shadow: none;
|
||||
}
|
||||
.sans-serif(@weight: normal, @size: 14px, @lineheight: 20px) {
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: @size;
|
||||
font-weight: @weight;
|
||||
line-height: @lineheight;
|
||||
}
|
||||
.opacity(@opacity: 0.5) {
|
||||
-moz-opacity: @opacity;
|
||||
-khtml-opacity: @opacity;
|
||||
-webkit-opacity: @opacity;
|
||||
opacity: @opacity;
|
||||
@opperc: @opacity * 100;
|
||||
-ms-filter: ~"progid:DXImageTransform.Microsoft.Alpha(opacity=@{opperc})";
|
||||
filter: ~"alpha(opacity=@{opperc})";
|
||||
}
|
||||
/*!
|
||||
* DAUX.IO
|
||||
* http://daux.io/
|
||||
* MIT License
|
||||
*/
|
||||
|
||||
// Import Bootstrap
|
||||
@import "bootstrap/bootstrap.less";
|
||||
|
||||
/* ===========================================================================================
|
||||
Base CSS
|
||||
============================================================================================== */
|
||||
|
||||
//Fonts
|
||||
.roboto-slab {
|
||||
&.light {
|
||||
font-family: 'Roboto Slab', serif;
|
||||
font-weight: 100;
|
||||
}
|
||||
&.book {
|
||||
font-family: 'Roboto Slab', serif;
|
||||
font-weight: 300;
|
||||
}
|
||||
&.regular {
|
||||
font-family: 'Roboto Slab', serif;
|
||||
font-weight: 400;
|
||||
}
|
||||
&.bold {
|
||||
font-family: 'Roboto Slab', serif;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
|
||||
//Typography
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
.roboto-slab.book;
|
||||
}
|
||||
a {
|
||||
|
||||
}
|
||||
pre {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* ===========================================================================================
|
||||
Homepage
|
||||
============================================================================================== */
|
||||
|
||||
.homepage-hero {
|
||||
padding-top: 50px !important;
|
||||
background-color: @light;
|
||||
.kill-box-shadow;
|
||||
.border-radius(0px);
|
||||
border: none;
|
||||
color: @dark;
|
||||
overflow: hidden;
|
||||
@media (max-width: 767px) {
|
||||
padding-top: 0px !important;
|
||||
}
|
||||
.text-center {
|
||||
.roboto-slab.bold;
|
||||
margin: 10px 0px;
|
||||
}
|
||||
h2 {
|
||||
margin: 20px 0px;
|
||||
}
|
||||
.homepage-image {
|
||||
//.box-shadow(10px, rgba(0,0,0,0.20), 0px, 0px);
|
||||
}
|
||||
}
|
||||
.hero-buttons.container-fluid {
|
||||
padding: 20px 0px;
|
||||
background-color: @sidebar-hover;
|
||||
.btn-hero.btn {
|
||||
.roboto-slab.bold;
|
||||
padding: 20px 30px;
|
||||
.kill-background-image;
|
||||
.kill-box-shadow;
|
||||
.border-radius(0px);
|
||||
text-shadow:none;
|
||||
border: none;
|
||||
.opacity(0.80);
|
||||
margin: 0px 10px;
|
||||
text-transform: uppercase;
|
||||
border: 5px solid @dark;
|
||||
@media (max-width: 767px) {
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
&:hover {
|
||||
.opacity(1.0);
|
||||
}
|
||||
&.btn-secondary {
|
||||
background-color: @sidebar-hover;
|
||||
color: @dark;
|
||||
}
|
||||
&.btn-primary {
|
||||
background-color: @dark;
|
||||
color: @sidebar-background;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.homepage-content.container-fluid {
|
||||
// color: white;
|
||||
// background-color: @text;
|
||||
background-color: white;
|
||||
padding: 40px 0px;
|
||||
.lead {
|
||||
.roboto-slab.regular;
|
||||
}
|
||||
ul, ol {
|
||||
padding: 20px 0px;
|
||||
margin: 0 0 10px 0px;
|
||||
li {
|
||||
list-style: none;
|
||||
padding-bottom: 5px;
|
||||
&:before {
|
||||
content: '';
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
border: 3px solid transparent;
|
||||
border-left: 3px solid @light;
|
||||
float: left;
|
||||
display: block;
|
||||
margin: 6px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
padding: 40px 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.homepage-footer.container-fluid {
|
||||
background-color: @dark;
|
||||
.kill-box-shadow;
|
||||
.border-radius(0px);
|
||||
color: light;
|
||||
border: none;
|
||||
@media (max-width: 767px) {
|
||||
padding: 0 20px;
|
||||
}
|
||||
.footer-nav {
|
||||
margin: 40px 0px;
|
||||
li {
|
||||
list-style: none;
|
||||
a {
|
||||
.roboto-slab.bold;
|
||||
font-size: 16px;
|
||||
line-height: 32px;
|
||||
&:hover {
|
||||
color: @light;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.twitter {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.twitter:first-child {
|
||||
margin-top: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
/* ===========================================================================================
|
||||
Docs Body & Page Structure
|
||||
============================================================================================== */
|
||||
|
||||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
background-color: @light;
|
||||
color: @text;
|
||||
}
|
||||
|
||||
//100% Height Columns
|
||||
.container-fluid {
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
&.fluid-height {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.columns {
|
||||
height: 100%;
|
||||
.left-column,
|
||||
.right-column {
|
||||
padding-top: 50px;
|
||||
@media (max-width: 767px) {
|
||||
width: 100% !important;
|
||||
padding-top: 0px;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
.left-column {
|
||||
background-color: @sidebar-background;
|
||||
border-right: 1px solid @lines;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
.right-column {
|
||||
&.span9 {
|
||||
width: 76.4866339334%;
|
||||
margin-left: 0px;
|
||||
@media (min-width: 1200px) {
|
||||
width: 76.8866339334%;
|
||||
}
|
||||
}
|
||||
.content-page {
|
||||
padding: 20px;
|
||||
min-height: 100%;
|
||||
background-color: white;
|
||||
}
|
||||
}
|
||||
}
|
||||
.content-area, .article-tree {
|
||||
overflow:auto;
|
||||
height: 100%;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
//mobile friendly sub-nav
|
||||
.responsive-collapse {
|
||||
padding: 10px 15px;
|
||||
display: none;
|
||||
background-color: @lines;
|
||||
border-bottom: 1px solid @lines;
|
||||
@media (max-width: 767px) {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
.sub-nav-collapse {
|
||||
@media (max-width: 768px) {
|
||||
display: none;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
//CSS For Fluid Tables
|
||||
@media only screen and (max-width: 800px) {
|
||||
|
||||
/* Force table to not be like tables anymore */
|
||||
table,
|
||||
thead,
|
||||
tbody,
|
||||
th,
|
||||
td,
|
||||
tr {
|
||||
display: block;
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* Hide table headers (but not display: none;, for accessibility) */
|
||||
thead tr {
|
||||
position: absolute;
|
||||
top: -9999px;
|
||||
left: -9999px;
|
||||
}
|
||||
|
||||
tr {
|
||||
margin-bottom: 10px;
|
||||
border-bottom: 2px solid #ccc;
|
||||
td, th {
|
||||
border: 1px solid #ccc;
|
||||
border-bottom:none;
|
||||
}
|
||||
}
|
||||
|
||||
td {
|
||||
/* Behave like a "row" */
|
||||
border: none;
|
||||
border-bottom: 1px solid #eee;
|
||||
position: relative;
|
||||
padding-left: 50% !important;
|
||||
white-space: normal;
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
td:before {
|
||||
/* Now like a table header */
|
||||
position: absolute;
|
||||
/* Top/left values mimic padding */
|
||||
top: 6px;
|
||||
left: 6px;
|
||||
width: 45%;
|
||||
padding-right: 10px;
|
||||
white-space: nowrap;
|
||||
text-align:left;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/*
|
||||
Label the data
|
||||
*/
|
||||
td:before { content: attr(data-title); }
|
||||
}
|
||||
|
||||
/* ===========================================================================================
|
||||
Markdown editor
|
||||
============================================================================================== */
|
||||
|
||||
.editor {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
padding: 20px;
|
||||
padding-bottom: 100px;
|
||||
min-height: 100%;
|
||||
height: auto;
|
||||
display: none;
|
||||
h3 {
|
||||
width: 100%!important;
|
||||
}
|
||||
&.paddingTop {
|
||||
padding-top: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
#markdown_editor {
|
||||
width: 85%;
|
||||
margin: 0 auto;
|
||||
padding: 10px;
|
||||
height: auto;
|
||||
font-size: 16px;
|
||||
min-height: 100px;
|
||||
font-family: "Ubuntu Mono", "Consolas", monospace;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* ===========================================================================================
|
||||
Componenets
|
||||
============================================================================================== */
|
||||
a {
|
||||
color: @light;
|
||||
}
|
||||
|
||||
.btn {
|
||||
&.btn-sidebar {
|
||||
padding: 7px 10px;
|
||||
.kill-background-image;
|
||||
.kill-box-shadow;
|
||||
background-color: @sidebar-hover;
|
||||
border: none;
|
||||
.icon-bar {
|
||||
display: block;
|
||||
width: 18px;
|
||||
height: 2px;
|
||||
margin-top: 2px;
|
||||
margin-bottom: 3px;
|
||||
background-color: @dark;
|
||||
.kill-box-shadow;
|
||||
}
|
||||
&:hover {
|
||||
.kill-box-shadow;
|
||||
background-color: @dark;
|
||||
.icon-bar {
|
||||
background-color: @light;
|
||||
.kill-box-shadow;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
code {
|
||||
color: @light;
|
||||
}
|
||||
|
||||
//Navbar
|
||||
.navbar {
|
||||
.box-shadow();
|
||||
z-index: 1;
|
||||
margin-bottom: 0px;
|
||||
z-index: 200;
|
||||
.navbar-inner {
|
||||
.kill-background-image;
|
||||
background-color: @dark;
|
||||
border-bottom: none;
|
||||
padding: 6px 20px;
|
||||
.brand {
|
||||
color: @light;
|
||||
text-shadow:none;
|
||||
.roboto-slab.bold;
|
||||
}
|
||||
.navbar-text {
|
||||
color: @light;
|
||||
a {
|
||||
color: @light;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
padding: 6px 10px;
|
||||
.navbar-text {
|
||||
line-height: 16px;
|
||||
margin: 12px 6px;
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 979px) {
|
||||
&.navbar-fixed-top {
|
||||
position: fixed;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
&.navbar-fixed-top {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//Sidebar Nav List
|
||||
.nav.nav-list {
|
||||
padding-left: 0px;
|
||||
padding-right: 0px;
|
||||
li {
|
||||
a {
|
||||
margin: 0px;
|
||||
padding: 6px 15px;
|
||||
.roboto-slab.regular;
|
||||
color: @dark;
|
||||
font-size: 15px;
|
||||
text-shadow:none;
|
||||
border-top: 1px solid @lines;
|
||||
&:hover {
|
||||
color: @dark;
|
||||
text-shadow:none;
|
||||
background-color: @sidebar-hover;
|
||||
}
|
||||
}
|
||||
&.active {
|
||||
a {
|
||||
background-color: @sidebar-hover;
|
||||
}
|
||||
}
|
||||
&.open {
|
||||
> ul {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
&.open {
|
||||
//border-bottom: none;
|
||||
}
|
||||
}
|
||||
ul {
|
||||
display: none;
|
||||
margin-left: 15px;
|
||||
li {
|
||||
a {
|
||||
.sans-serif(normal, 14px);
|
||||
margin: 0px;
|
||||
margin-left: -15px;
|
||||
padding: 3px 30px;
|
||||
border: none;
|
||||
color: @text;
|
||||
.opacity(0.70);
|
||||
&:hover {
|
||||
.opacity(1.0);
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
&.active {
|
||||
a {
|
||||
color: @dark;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.page-header {
|
||||
margin: 10px 0px;
|
||||
padding: 0px;
|
||||
h1 {
|
||||
margin-top: 0px;
|
||||
}
|
||||
sub-heading {
|
||||
padding: 0px, 0px, 20px;
|
||||
}
|
||||
}
|
||||
pre {
|
||||
border: none;
|
||||
background-color: @light;
|
||||
.border-radius(0px);
|
||||
padding: 10px;
|
||||
margin-left: -20px;
|
||||
padding-left: 30px;
|
||||
margin-right: -20px;
|
||||
padding-right: 30px;
|
||||
code {
|
||||
background: transparent;
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
|
||||
//Content pages float view
|
||||
.float-view {
|
||||
@media (min-width: 1150px) {
|
||||
.content-page {
|
||||
height: 100%;
|
||||
overflow:auto;
|
||||
padding: 0px !important;
|
||||
background-color: transparent !important;
|
||||
position: relative;
|
||||
|
||||
article {
|
||||
width: 100%;
|
||||
min-height: 100%;
|
||||
overflow: auto;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
&:before {
|
||||
content: "";
|
||||
width: 50%;
|
||||
min-height: 100%;
|
||||
overflow: auto;
|
||||
background-color: white;
|
||||
display: block;
|
||||
margin: 0px;
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
.hideCode:before {
|
||||
width:100% !important;
|
||||
}
|
||||
table {
|
||||
float: left;
|
||||
clear: left;
|
||||
width: 47%;
|
||||
margin-left: 1.5%;
|
||||
margin-right: 1.5%;
|
||||
background-color: white;
|
||||
white-space: normal;
|
||||
pre, code {
|
||||
white-space: normal;
|
||||
}
|
||||
}
|
||||
.page-header {
|
||||
padding: 0px;
|
||||
}
|
||||
.page-header,
|
||||
p, ul, ol, dl, h2, h3,h4, h5, h6 {
|
||||
float: left;
|
||||
clear: left;
|
||||
width: 47%;
|
||||
margin-left: 1.5%;
|
||||
margin-right: 1.5%;
|
||||
background-color: white;
|
||||
&:before {
|
||||
content: "";
|
||||
width: 100%;
|
||||
height: 10px;
|
||||
display: block;
|
||||
clear: both;
|
||||
//border-top: 1px solid @dark;
|
||||
}
|
||||
p, ul, ol, dl, h2, h3,h4, h5, h6, pre {
|
||||
float: none;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
.hideCode2 {
|
||||
width: 900px !important;
|
||||
width: calc(100% - 130px) !important;
|
||||
}
|
||||
ul,ol {
|
||||
li {
|
||||
margin-left: 30px;
|
||||
}
|
||||
}
|
||||
pre {
|
||||
float: left;
|
||||
clear: right;
|
||||
width: 47%;
|
||||
border: none;
|
||||
border-left: 10px solid white;
|
||||
margin: 0px 0px 10px 0px;
|
||||
padding: 0px 0px 0px 10px;
|
||||
}
|
||||
hideCode3 {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//Tables
|
||||
table {
|
||||
width: 100%;
|
||||
border-bottom: 1px solid @lines;
|
||||
margin-bottom: 10px;
|
||||
tr {
|
||||
th, td {
|
||||
padding: 8px;
|
||||
line-height: 20px;
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
border-top: 1px solid @lines;
|
||||
border-left: 1px solid @lines;
|
||||
border-color: @lines !important;
|
||||
&:last-child {
|
||||
border-right: 1px solid @lines;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//Footer
|
||||
.footer {
|
||||
position: fixed;
|
||||
bottom:0;
|
||||
left: 0;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
//github ribbon
|
||||
#github-ribbon {
|
||||
position: absolute;
|
||||
top: 50px;
|
||||
right: 0;
|
||||
z-index: 200;
|
||||
}
|
||||
|
||||
.well {
|
||||
&.well-sidebar {
|
||||
.kill-box-shadow;
|
||||
background-color: transparent;
|
||||
.border-radius(0px);
|
||||
border: none;
|
||||
a {
|
||||
font-size: 13px;
|
||||
.roboto-slab.regular;
|
||||
color: @light;
|
||||
line-height: 28px;
|
||||
}
|
||||
.twitter {
|
||||
hr {
|
||||
border-bottom: none;
|
||||
margin-left: -20px;
|
||||
margin-right: -20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* ===========================================================================================
|
||||
Code Highlighting
|
||||
============================================================================================== */
|
||||
|
||||
pre code {
|
||||
display: block; padding: 0.5em;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre .subst,
|
||||
pre .tag .title,
|
||||
pre .lisp .title,
|
||||
pre .clojure .built_in,
|
||||
pre .nginx .title {
|
||||
color: @dark;
|
||||
}
|
||||
|
||||
pre .string,
|
||||
pre .title,
|
||||
pre .constant,
|
||||
pre .parent,
|
||||
pre .tag .value,
|
||||
pre .rules .value,
|
||||
pre .rules .value .number,
|
||||
pre .preprocessor,
|
||||
pre .ruby .symbol,
|
||||
pre .ruby .symbol .string,
|
||||
pre .aggregate,
|
||||
pre .template_tag,
|
||||
pre .django .variable,
|
||||
pre .smalltalk .class,
|
||||
pre .addition,
|
||||
pre .flow,
|
||||
pre .stream,
|
||||
pre .bash .variable,
|
||||
pre .apache .tag,
|
||||
pre .apache .cbracket,
|
||||
pre .tex .command,
|
||||
pre .tex .special,
|
||||
pre .erlang_repl .function_or_atom,
|
||||
pre .markdown .header {
|
||||
color: @syntax-string;
|
||||
}
|
||||
|
||||
pre .comment,
|
||||
pre .annotation,
|
||||
pre .template_comment,
|
||||
pre .diff .header,
|
||||
pre .chunk,
|
||||
pre .markdown .blockquote {
|
||||
color: @syntax-comment;
|
||||
}
|
||||
|
||||
pre .number,
|
||||
pre .date,
|
||||
pre .regexp,
|
||||
pre .literal,
|
||||
pre .smalltalk .symbol,
|
||||
pre .smalltalk .char,
|
||||
pre .go .constant,
|
||||
pre .change,
|
||||
pre .markdown .bullet,
|
||||
pre .markdown .link_url {
|
||||
color: @syntax-number;
|
||||
}
|
||||
|
||||
pre .label,
|
||||
pre .javadoc,
|
||||
pre .ruby .string,
|
||||
pre .decorator,
|
||||
pre .filter .argument,
|
||||
pre .localvars,
|
||||
pre .array,
|
||||
pre .attr_selector,
|
||||
pre .important,
|
||||
pre .pseudo,
|
||||
pre .pi,
|
||||
pre .doctype,
|
||||
pre .deletion,
|
||||
pre .envvar,
|
||||
pre .shebang,
|
||||
pre .apache .sqbracket,
|
||||
pre .nginx .built_in,
|
||||
pre .tex .formula,
|
||||
pre .erlang_repl .reserved,
|
||||
pre .prompt,
|
||||
pre .markdown .link_label,
|
||||
pre .vhdl .attribute,
|
||||
pre .clojure .attribute,
|
||||
pre .coffeescript .property {
|
||||
color: @syntax-label;
|
||||
}
|
||||
|
||||
pre .keyword,
|
||||
pre .id,
|
||||
pre .phpdoc,
|
||||
pre .title,
|
||||
pre .built_in,
|
||||
pre .aggregate,
|
||||
pre .css .tag,
|
||||
pre .javadoctag,
|
||||
pre .phpdoc,
|
||||
pre .yardoctag,
|
||||
pre .smalltalk .class,
|
||||
pre .winutils,
|
||||
pre .bash .variable,
|
||||
pre .apache .tag,
|
||||
pre .go .typename,
|
||||
pre .tex .command,
|
||||
pre .markdown .strong,
|
||||
pre .request,
|
||||
pre .status {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre .markdown .emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
pre .nginx .built_in {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
// Daux Style
|
||||
@import "mixins.less";
|
||||
@import "structure.less";
|
||||
@import "components.less";
|
||||
@import "tools.less";
|
||||
@import "highlight.less";
|
||||
|
135
less/import/highlight.less
Normal file
135
less/import/highlight.less
Normal file
@ -0,0 +1,135 @@
|
||||
/* ===========================================================================================
|
||||
Code Highlighting
|
||||
============================================================================================== */
|
||||
|
||||
@hljs-css-prefix: hljs;
|
||||
|
||||
.@{hljs-css-prefix} {
|
||||
display: block;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.@{hljs-css-prefix},
|
||||
.@{hljs-css-prefix}-subst,
|
||||
.@{hljs-css-prefix}-tag .@{hljs-css-prefix}-title,
|
||||
.@{hljs-css-prefix}-lisp .@{hljs-css-prefix}-title,
|
||||
.@{hljs-css-prefix}-clojure .@{hljs-css-prefix}-built_in,
|
||||
.@{hljs-css-prefix}-nginx .@{hljs-css-prefix}-title {
|
||||
color: @dark;
|
||||
}
|
||||
|
||||
.@{hljs-css-prefix}-string,
|
||||
.@{hljs-css-prefix}-title,
|
||||
.@{hljs-css-prefix}-constant,
|
||||
.@{hljs-css-prefix}-parent,
|
||||
.@{hljs-css-prefix}-tag .@{hljs-css-prefix}-value,
|
||||
.@{hljs-css-prefix}-rules .@{hljs-css-prefix}-value,
|
||||
.@{hljs-css-prefix}-rules .@{hljs-css-prefix}-value .@{hljs-css-prefix}-number,
|
||||
.@{hljs-css-prefix}-preprocessor,
|
||||
.@{hljs-css-prefix}-ruby .@{hljs-css-prefix}-symbol,
|
||||
.@{hljs-css-prefix}-ruby .@{hljs-css-prefix}-symbol .@{hljs-css-prefix}-string,
|
||||
.@{hljs-css-prefix}-aggregate,
|
||||
.@{hljs-css-prefix}-template_tag,
|
||||
.@{hljs-css-prefix}-django .@{hljs-css-prefix}-variable,
|
||||
.@{hljs-css-prefix}-smalltalk .@{hljs-css-prefix}-class,
|
||||
.@{hljs-css-prefix}-addition,
|
||||
.@{hljs-css-prefix}-flow,
|
||||
.@{hljs-css-prefix}-stream,
|
||||
.@{hljs-css-prefix}-bash .@{hljs-css-prefix}-variable,
|
||||
.@{hljs-css-prefix}-apache .@{hljs-css-prefix}-tag,
|
||||
.@{hljs-css-prefix}-apache .@{hljs-css-prefix}-cbracket,
|
||||
.@{hljs-css-prefix}-tex .@{hljs-css-prefix}-command,
|
||||
.@{hljs-css-prefix}-tex .@{hljs-css-prefix}-special,
|
||||
.@{hljs-css-prefix}-erlang_repl .@{hljs-css-prefix}-function_or_atom,
|
||||
.@{hljs-css-prefix}-markdown .@{hljs-css-prefix}-header {
|
||||
color: @syntax-string;
|
||||
}
|
||||
|
||||
.@{hljs-css-prefix}-comment,
|
||||
.@{hljs-css-prefix}-annotation,
|
||||
.@{hljs-css-prefix}-template_comment,
|
||||
.@{hljs-css-prefix}-diff .@{hljs-css-prefix}-header,
|
||||
.@{hljs-css-prefix}-chunk,
|
||||
.@{hljs-css-prefix}-markdown .@{hljs-css-prefix}-blockquote {
|
||||
color: @syntax-comment;
|
||||
}
|
||||
|
||||
.@{hljs-css-prefix}-number,
|
||||
.@{hljs-css-prefix}-date,
|
||||
.@{hljs-css-prefix}-regexp,
|
||||
.@{hljs-css-prefix}-literal,
|
||||
.@{hljs-css-prefix}-smalltalk .@{hljs-css-prefix}-symbol,
|
||||
.@{hljs-css-prefix}-smalltalk .@{hljs-css-prefix}-char,
|
||||
.@{hljs-css-prefix}-go .@{hljs-css-prefix}-constant,
|
||||
.@{hljs-css-prefix}-change,
|
||||
.@{hljs-css-prefix}-markdown .@{hljs-css-prefix}-bullet,
|
||||
.@{hljs-css-prefix}-markdown .@{hljs-css-prefix}-link_url {
|
||||
color: @syntax-number;
|
||||
}
|
||||
|
||||
.@{hljs-css-prefix}-label,
|
||||
.@{hljs-css-prefix}-javadoc,
|
||||
.@{hljs-css-prefix}-ruby .@{hljs-css-prefix}-string,
|
||||
.@{hljs-css-prefix}-decorator,
|
||||
.@{hljs-css-prefix}-filter .@{hljs-css-prefix}-argument,
|
||||
.@{hljs-css-prefix}-localvars,
|
||||
.@{hljs-css-prefix}-array,
|
||||
.@{hljs-css-prefix}-attr_selector,
|
||||
.@{hljs-css-prefix}-important,
|
||||
.@{hljs-css-prefix}-pseudo,
|
||||
.@{hljs-css-prefix}-pi,
|
||||
.@{hljs-css-prefix}-doctype,
|
||||
.@{hljs-css-prefix}-deletion,
|
||||
.@{hljs-css-prefix}-envvar,
|
||||
.@{hljs-css-prefix}-shebang,
|
||||
.@{hljs-css-prefix}-apache .@{hljs-css-prefix}-sqbracket,
|
||||
.@{hljs-css-prefix}-nginx .@{hljs-css-prefix}-built_in,
|
||||
.@{hljs-css-prefix}-tex .@{hljs-css-prefix}-formula,
|
||||
.@{hljs-css-prefix}-erlang_repl .@{hljs-css-prefix}-reserved,
|
||||
.@{hljs-css-prefix}-prompt,
|
||||
.@{hljs-css-prefix}-markdown .@{hljs-css-prefix}-link_label,
|
||||
.@{hljs-css-prefix}-vhdl .@{hljs-css-prefix}-attribute,
|
||||
.@{hljs-css-prefix}-clojure .@{hljs-css-prefix}-attribute,
|
||||
.@{hljs-css-prefix}-coffeescript .@{hljs-css-prefix}-property {
|
||||
color: @syntax-label;
|
||||
}
|
||||
|
||||
.@{hljs-css-prefix}-keyword,
|
||||
.@{hljs-css-prefix}-id,
|
||||
.@{hljs-css-prefix}-phpdoc,
|
||||
.@{hljs-css-prefix}-title,
|
||||
.@{hljs-css-prefix}-built_in,
|
||||
.@{hljs-css-prefix}-aggregate,
|
||||
.@{hljs-css-prefix}-css .@{hljs-css-prefix}-tag,
|
||||
.@{hljs-css-prefix}-javadoctag,
|
||||
.@{hljs-css-prefix}-phpdoc,
|
||||
.@{hljs-css-prefix}-yardoctag,
|
||||
.@{hljs-css-prefix}-smalltalk .@{hljs-css-prefix}-class,
|
||||
.@{hljs-css-prefix}-winutils,
|
||||
.@{hljs-css-prefix}-bash .@{hljs-css-prefix}-variable,
|
||||
.@{hljs-css-prefix}-apache .@{hljs-css-prefix}-tag,
|
||||
.@{hljs-css-prefix}-go .@{hljs-css-prefix}-typename,
|
||||
.@{hljs-css-prefix}-tex .@{hljs-css-prefix}-command,
|
||||
.@{hljs-css-prefix}-markdown .@{hljs-css-prefix}-strong,
|
||||
.@{hljs-css-prefix}-request,
|
||||
.@{hljs-css-prefix}-status {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.@{hljs-css-prefix}-markdown .@{hljs-css-prefix}-emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.@{hljs-css-prefix}-nginx .@{hljs-css-prefix}-built_in {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.@{hljs-css-prefix}-coffeescript .@{hljs-css-prefix}-javascript,
|
||||
.@{hljs-css-prefix}-javascript .@{hljs-css-prefix}-xml,
|
||||
.@{hljs-css-prefix}-tex .@{hljs-css-prefix}-formula,
|
||||
.@{hljs-css-prefix}-xml .@{hljs-css-prefix}-javascript,
|
||||
.@{hljs-css-prefix}-xml .@{hljs-css-prefix}-vbscript,
|
||||
.@{hljs-css-prefix}-xml .@{hljs-css-prefix}-css,
|
||||
.@{hljs-css-prefix}-xml .@{hljs-css-prefix}-cdata {
|
||||
opacity: 0.5;
|
||||
}
|
39
less/import/mixins.less
Normal file
39
less/import/mixins.less
Normal file
@ -0,0 +1,39 @@
|
||||
/* ===========================================================================================
|
||||
Mixins
|
||||
============================================================================================== */
|
||||
|
||||
.box-shadow(@shadowsize: 5px, @color:rgba(0,0,0,.25), @left: 0px, @top: 1px) {
|
||||
-moz-box-shadow: @left @top @shadowsize @color;
|
||||
-webkit-box-shadow: @left @top @shadowsize @color;
|
||||
box-shadow: @left @top @shadowsize @color;
|
||||
}
|
||||
.border-radius(@radius: 5px) {
|
||||
-moz-border-radius: @radius;
|
||||
-webkit-border-radius: @radius;
|
||||
border-radius: @radius;
|
||||
}
|
||||
.kill-background-image() {
|
||||
background-image: none;
|
||||
-ms-filter: none;
|
||||
filter: none;
|
||||
}
|
||||
.kill-box-shadow() {
|
||||
box-shadow: none;
|
||||
-webkit-box-shadow: none;
|
||||
-moz-box-shadow: none;
|
||||
}
|
||||
.sans-serif(@weight: normal, @size: 14px, @lineheight: 20px) {
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: @size;
|
||||
font-weight: @weight;
|
||||
line-height: @lineheight;
|
||||
}
|
||||
.opacity(@opacity: 0.5) {
|
||||
-moz-opacity: @opacity;
|
||||
-khtml-opacity: @opacity;
|
||||
-webkit-opacity: @opacity;
|
||||
opacity: @opacity;
|
||||
@opperc: @opacity * 100;
|
||||
-ms-filter: ~"progid:DXImageTransform.Microsoft.Alpha(opacity=@{opperc})";
|
||||
filter: ~"alpha(opacity=@{opperc})";
|
||||
}
|
295
less/import/structure.less
Normal file
295
less/import/structure.less
Normal file
@ -0,0 +1,295 @@
|
||||
/* ===========================================================================================
|
||||
Base CSS
|
||||
============================================================================================== */
|
||||
|
||||
//Fonts
|
||||
.roboto-slab {
|
||||
&.light {
|
||||
font-family: 'Roboto Slab', serif;
|
||||
font-weight: 100;
|
||||
}
|
||||
&.book {
|
||||
font-family: 'Roboto Slab', serif;
|
||||
font-weight: 300;
|
||||
}
|
||||
&.regular {
|
||||
font-family: 'Roboto Slab', serif;
|
||||
font-weight: 400;
|
||||
}
|
||||
&.bold {
|
||||
font-family: 'Roboto Slab', serif;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
|
||||
//Typography
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
.roboto-slab.book;
|
||||
}
|
||||
a {
|
||||
|
||||
}
|
||||
pre {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* ===========================================================================================
|
||||
Homepage
|
||||
============================================================================================== */
|
||||
|
||||
.homepage-hero {
|
||||
padding-top: 50px !important;
|
||||
background-color: @light;
|
||||
.kill-box-shadow;
|
||||
.border-radius(0px);
|
||||
border: none;
|
||||
color: @dark;
|
||||
overflow: hidden;
|
||||
@media (max-width: 767px) {
|
||||
padding-top: 0px !important;
|
||||
}
|
||||
.text-center {
|
||||
.roboto-slab.bold;
|
||||
margin: 10px 0px;
|
||||
}
|
||||
h2 {
|
||||
margin: 20px 0px;
|
||||
}
|
||||
.homepage-image {
|
||||
//.box-shadow(10px, rgba(0,0,0,0.20), 0px, 0px);
|
||||
}
|
||||
}
|
||||
.hero-buttons.container-fluid {
|
||||
padding: 20px 0px;
|
||||
background-color: @sidebar-hover;
|
||||
.btn-hero.btn {
|
||||
.roboto-slab.bold;
|
||||
padding: 20px 30px;
|
||||
.kill-background-image;
|
||||
.kill-box-shadow;
|
||||
.border-radius(0px);
|
||||
text-shadow:none;
|
||||
border: none;
|
||||
.opacity(0.80);
|
||||
margin: 0px 10px;
|
||||
text-transform: uppercase;
|
||||
border: 5px solid @dark;
|
||||
@media (max-width: 767px) {
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
&:hover {
|
||||
.opacity(1.0);
|
||||
}
|
||||
&.btn-secondary {
|
||||
background-color: @sidebar-hover;
|
||||
color: @dark;
|
||||
}
|
||||
&.btn-primary {
|
||||
background-color: @dark;
|
||||
color: @sidebar-background;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.homepage-content.container-fluid {
|
||||
// color: white;
|
||||
// background-color: @text;
|
||||
background-color: white;
|
||||
padding: 40px 0px;
|
||||
.lead {
|
||||
.roboto-slab.regular;
|
||||
}
|
||||
ul, ol {
|
||||
padding: 20px 0px;
|
||||
margin: 0 0 10px 0px;
|
||||
li {
|
||||
list-style: none;
|
||||
padding-bottom: 5px;
|
||||
&:before {
|
||||
content: '';
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
border: 3px solid transparent;
|
||||
border-left: 3px solid @light;
|
||||
float: left;
|
||||
display: block;
|
||||
margin: 6px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
padding: 40px 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.homepage-footer.container-fluid {
|
||||
background-color: @dark;
|
||||
.kill-box-shadow;
|
||||
.border-radius(0px);
|
||||
color: light;
|
||||
border: none;
|
||||
@media (max-width: 767px) {
|
||||
padding: 0 20px;
|
||||
}
|
||||
.footer-nav {
|
||||
margin: 40px 0px;
|
||||
li {
|
||||
list-style: none;
|
||||
a {
|
||||
.roboto-slab.bold;
|
||||
font-size: 16px;
|
||||
line-height: 32px;
|
||||
&:hover {
|
||||
color: @light;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.twitter {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.twitter:first-child {
|
||||
margin-top: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
/* ===========================================================================================
|
||||
Docs Body & Page Structure
|
||||
============================================================================================== */
|
||||
|
||||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
background-color: @light;
|
||||
color: @text;
|
||||
}
|
||||
|
||||
//100% Height Columns
|
||||
.container-fluid {
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
&.fluid-height {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.columns {
|
||||
height: 100%;
|
||||
.left-column,
|
||||
.right-column {
|
||||
padding-top: 50px;
|
||||
@media (max-width: 767px) {
|
||||
width: 100% !important;
|
||||
padding-top: 0px;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
.left-column {
|
||||
background-color: @sidebar-background;
|
||||
border-right: 1px solid @lines;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
.right-column {
|
||||
&.span9 {
|
||||
width: 76.4866339334%;
|
||||
margin-left: 0px;
|
||||
@media (min-width: 1200px) {
|
||||
width: 76.8866339334%;
|
||||
}
|
||||
}
|
||||
.content-page {
|
||||
padding: 20px;
|
||||
min-height: 100%;
|
||||
background-color: white;
|
||||
}
|
||||
}
|
||||
}
|
||||
.content-area, .article-tree {
|
||||
overflow:auto;
|
||||
height: 100%;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
//mobile friendly sub-nav
|
||||
.responsive-collapse {
|
||||
padding: 10px 15px;
|
||||
display: none;
|
||||
background-color: @lines;
|
||||
border-bottom: 1px solid @lines;
|
||||
@media (max-width: 767px) {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
.sub-nav-collapse {
|
||||
@media (max-width: 768px) {
|
||||
display: none;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
//CSS For Fluid Tables
|
||||
@media only screen and (max-width: 800px) {
|
||||
|
||||
/* Force table to not be like tables anymore */
|
||||
table,
|
||||
thead,
|
||||
tbody,
|
||||
th,
|
||||
td,
|
||||
tr {
|
||||
display: block;
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* Hide table headers (but not display: none;, for accessibility) */
|
||||
thead tr {
|
||||
position: absolute;
|
||||
top: -9999px;
|
||||
left: -9999px;
|
||||
}
|
||||
|
||||
tr {
|
||||
margin-bottom: 10px;
|
||||
border-bottom: 2px solid #ccc;
|
||||
td, th {
|
||||
border: 1px solid #ccc;
|
||||
border-bottom:none;
|
||||
}
|
||||
}
|
||||
|
||||
td {
|
||||
/* Behave like a "row" */
|
||||
border: none;
|
||||
border-bottom: 1px solid #eee;
|
||||
position: relative;
|
||||
padding-left: 50% !important;
|
||||
white-space: normal;
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
td:before {
|
||||
/* Now like a table header */
|
||||
position: absolute;
|
||||
/* Top/left values mimic padding */
|
||||
top: 6px;
|
||||
left: 6px;
|
||||
width: 45%;
|
||||
padding-right: 10px;
|
||||
white-space: nowrap;
|
||||
text-align:left;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/*
|
||||
Label the data
|
||||
*/
|
||||
td:before { content: attr(data-title); }
|
||||
}
|
33
less/import/tools.less
Normal file
33
less/import/tools.less
Normal file
@ -0,0 +1,33 @@
|
||||
/* ===========================================================================================
|
||||
Markdown editor
|
||||
============================================================================================== */
|
||||
|
||||
.editor {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
padding: 20px;
|
||||
padding-bottom: 100px;
|
||||
min-height: 100%;
|
||||
height: auto;
|
||||
display: none;
|
||||
h3 {
|
||||
width: 100%!important;
|
||||
}
|
||||
&.paddingTop {
|
||||
padding-top: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
#markdown_editor {
|
||||
width: 85%;
|
||||
margin: 0 auto;
|
||||
padding: 10px;
|
||||
height: auto;
|
||||
font-size: 16px;
|
||||
min-height: 100px;
|
||||
font-family: "Ubuntu Mono", "Consolas", monospace;
|
||||
display: block;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user