2013-06-11 00:26:54 +02:00
|
|
|
//Mixins, cuz they're handy
|
|
|
|
.box-shadow(@shadowsize: 5px, @color:rgba(0,0,0,.25), @left: 0px, @top: 1px) {
|
2013-06-12 00:28:29 +02:00
|
|
|
-moz-box-shadow: @left @top @shadowsize @color;
|
|
|
|
-webkit-box-shadow: @left @top @shadowsize @color;
|
2013-06-11 00:26:54 +02:00
|
|
|
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})";
|
|
|
|
}
|
|
|
|
|
2013-06-12 00:28:29 +02:00
|
|
|
@import "bootstrap.min.less";
|
2013-06-11 00:26:54 +02:00
|
|
|
|
|
|
|
/* ===========================================================================================
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ===========================================================================================
|
2013-06-12 21:42:00 +02:00
|
|
|
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
|
2013-06-11 00:26:54 +02:00
|
|
|
============================================================================================== */
|
|
|
|
|
|
|
|
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;
|
2013-06-12 21:42:00 +02:00
|
|
|
&.fluid-height {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2013-06-11 00:26:54 +02:00
|
|
|
}
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
.right-column {
|
|
|
|
&.span9 {
|
|
|
|
width: 76.4866339334%;
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
.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: 480px) {
|
|
|
|
//display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//CSS For Fluid Tables
|
|
|
|
@media only screen and (max-width: 800px) {
|
2013-06-12 00:28:29 +02:00
|
|
|
|
2013-06-11 00:26:54 +02:00
|
|
|
/* Force table to not be like tables anymore */
|
2013-06-12 00:28:29 +02:00
|
|
|
table,
|
|
|
|
thead,
|
|
|
|
tbody,
|
|
|
|
th,
|
|
|
|
td,
|
|
|
|
tr {
|
|
|
|
display: block;
|
2013-06-11 00:26:54 +02:00
|
|
|
border: none;
|
|
|
|
}
|
2013-06-12 00:28:29 +02:00
|
|
|
|
2013-06-11 00:26:54 +02:00
|
|
|
/* Hide table headers (but not display: none;, for accessibility) */
|
2013-06-12 00:28:29 +02:00
|
|
|
thead tr {
|
2013-06-11 00:26:54 +02:00
|
|
|
position: absolute;
|
|
|
|
top: -9999px;
|
|
|
|
left: -9999px;
|
|
|
|
}
|
2013-06-12 00:28:29 +02:00
|
|
|
|
2013-06-11 00:26:54 +02:00
|
|
|
tr {
|
|
|
|
margin-bottom: 10px;
|
2013-06-12 00:28:29 +02:00
|
|
|
border-bottom: 2px solid #ccc;
|
|
|
|
td, th {
|
|
|
|
border: 1px solid #ccc;
|
2013-06-11 00:26:54 +02:00
|
|
|
border-bottom:none;
|
|
|
|
}
|
|
|
|
}
|
2013-06-12 00:28:29 +02:00
|
|
|
|
|
|
|
td {
|
2013-06-11 00:26:54 +02:00
|
|
|
/* Behave like a "row" */
|
|
|
|
border: none;
|
2013-06-12 00:28:29 +02:00
|
|
|
border-bottom: 1px solid #eee;
|
2013-06-11 00:26:54 +02:00
|
|
|
position: relative;
|
2013-06-12 00:28:29 +02:00
|
|
|
padding-left: 50% !important;
|
2013-06-11 00:26:54 +02:00
|
|
|
white-space: normal;
|
|
|
|
text-align:left;
|
|
|
|
}
|
2013-06-12 00:28:29 +02:00
|
|
|
|
|
|
|
td:before {
|
2013-06-11 00:26:54 +02:00
|
|
|
/* Now like a table header */
|
|
|
|
position: absolute;
|
|
|
|
/* Top/left values mimic padding */
|
|
|
|
top: 6px;
|
|
|
|
left: 6px;
|
2013-06-12 00:28:29 +02:00
|
|
|
width: 45%;
|
|
|
|
padding-right: 10px;
|
2013-06-11 00:26:54 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
text-align:left;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2013-06-12 00:28:29 +02:00
|
|
|
|
2013-06-11 00:26:54 +02:00
|
|
|
/*
|
|
|
|
Label the data
|
|
|
|
*/
|
|
|
|
td:before { content: attr(data-title); }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ===========================================================================================
|
|
|
|
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 30px;
|
|
|
|
.navbar-text {
|
|
|
|
line-height: 16px;
|
|
|
|
margin: 12px 6px;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (min-width: 768px) and (max-width: 979px) {
|
|
|
|
&.navbar-fixed-top {
|
|
|
|
position: fixed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//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 {
|
2013-06-21 18:21:16 +02:00
|
|
|
> ul {
|
2013-06-11 00:26:54 +02:00
|
|
|
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 20px;
|
|
|
|
h1 {
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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, 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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//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;
|
2013-06-12 00:28:29 +02:00
|
|
|
border-color: @lines !important;
|
2013-06-11 00:26:54 +02:00
|
|
|
&: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;
|
|
|
|
}
|