-
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
135 changed files
with
45,850 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
Name: Kimbie (dark) | ||
Author: Jan T. Sott | ||
License: Creative Commons Attribution-ShareAlike 4.0 Unported License | ||
URL: https://github.com/idleberg/Kimbie-highlight.js | ||
*/ | ||
|
||
/* Kimbie Comment */ | ||
.hljs-comment, | ||
.hljs-quote { | ||
color: #d6baad; | ||
} | ||
|
||
/* Kimbie Red */ | ||
.hljs-variable, | ||
.hljs-template-variable, | ||
.hljs-tag, | ||
.hljs-name, | ||
.hljs-selector-id, | ||
.hljs-selector-class, | ||
.hljs-regexp, | ||
.hljs-meta { | ||
color: #dc3958; | ||
} | ||
|
||
/* Kimbie Orange */ | ||
.hljs-number, | ||
.hljs-built_in, | ||
.hljs-builtin-name, | ||
.hljs-literal, | ||
.hljs-type, | ||
.hljs-params, | ||
.hljs-deletion, | ||
.hljs-link { | ||
color: #f79a32; | ||
} | ||
|
||
/* Kimbie Yellow */ | ||
.hljs-title, | ||
.hljs-section, | ||
.hljs-attribute { | ||
color: #f06431; | ||
} | ||
|
||
/* Kimbie Green */ | ||
.hljs-string, | ||
.hljs-symbol, | ||
.hljs-bullet, | ||
.hljs-addition { | ||
color: #889b4a; | ||
} | ||
|
||
/* Kimbie Purple */ | ||
.hljs-keyword, | ||
.hljs-selector-tag, | ||
.hljs-function { | ||
color: #98676a; | ||
} | ||
|
||
.hljs { | ||
display: block; | ||
overflow-x: auto; | ||
background: #221a0f; | ||
color: #d3af86; | ||
padding: 0.5em; | ||
} | ||
|
||
.hljs-emphasis { | ||
font-style: italic; | ||
} | ||
|
||
.hljs-strong { | ||
font-weight: bold; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
.primary { | ||
background-color: #284060; | ||
color: #fff; | ||
} | ||
|
||
.primary.light,.primary .light { | ||
background-color: #556b8e; | ||
color: #fff; | ||
} | ||
|
||
.primary.dark,.primary .dark { | ||
background-color: #001a36; | ||
color: #fff; | ||
} | ||
|
||
.warn { | ||
background-color: #fcf8e3; | ||
border-color: #faf2cc; | ||
color: #8a6d3b; | ||
font-weight: bolder; | ||
padding: 5px; | ||
} | ||
|
||
nav { | ||
line-height: 80px; | ||
height: 80px; | ||
} | ||
nav ul { | ||
padding-left: 0; | ||
list-style-type: none; | ||
margin: 0; | ||
} | ||
nav ul li { | ||
float: left; | ||
padding: 0; | ||
} | ||
nav ul a { | ||
font-size: 1rem; | ||
display: block; | ||
padding: 0 15px; | ||
cursor: pointer; | ||
text-decoration: none; | ||
} | ||
nav ul li a:hover { | ||
background-color: rgba(0,0,0,0.1); | ||
} | ||
|
||
table { | ||
border-collapse: collapse; | ||
margin-bottom: 30px; | ||
} | ||
th { | ||
border-top: solid 1.5px #aaa; | ||
border-bottom: solid 1.5px #aaa; | ||
padding: 5px 10px; | ||
} | ||
td { | ||
border-bottom: solid 1px #aaa; | ||
padding: 5px 10px; | ||
} | ||
|
||
code { | ||
border: .1rem solid #E5E5E5; | ||
margin: 0 .3rem; | ||
padding: .2rem .4rem; | ||
background-color: #F4F9F9; | ||
} | ||
|
||
.contents h1, .contents h2 { | ||
border-bottom: 1px solid #ddd; | ||
padding-bottom: .1em; | ||
} | ||
|
||
.right { | ||
float: right !important; | ||
} | ||
|
||
.share-buttons>* { | ||
line-height: 20px; | ||
} | ||
|
||
.share-buttons>*>* { | ||
vertical-align: bottom; | ||
} | ||
|
||
.share-buttons { | ||
text-align: right; | ||
padding: 5px; | ||
} | ||
|
||
.icon-arrow { | ||
display: inline-block; | ||
background: -moz-linear-gradient(-45deg, transparent 0%, transparent 50%, #DDD 51%, #DDD 100%); /* FF3.6-15 */ | ||
background: -webkit-linear-gradient(-45deg, transparent 0%, transparent 50%, #DDD 51%, #DDD 100%); /* Chrome10-25,Safari5.1-6 */ | ||
background: linear-gradient(135deg, transparent 0%, transparent 50%, #DDD 51%, #DDD 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ | ||
width: 10px; | ||
height: 10px; | ||
transform: rotate(45deg) translateY(-5px); | ||
vertical-align: middle; | ||
} | ||
|
||
.nav-dropdown-container { | ||
position: relative; | ||
} | ||
|
||
@media screen and (min-width: 500px) { | ||
.mobile-only { | ||
display: none; | ||
} | ||
|
||
.nav-dropdown { | ||
display: none; | ||
position: absolute; | ||
background-color: #f9f9f9; | ||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); | ||
z-index: 1; | ||
} | ||
|
||
.nav-dropdown.show { | ||
display:block; | ||
} | ||
|
||
.nav-dropdown.right-dropdown { | ||
right: 0; | ||
} | ||
|
||
nav ul.nav-dropdown li { | ||
float: none; | ||
line-height: 50px; | ||
white-space: nowrap; | ||
} | ||
|
||
} | ||
@media screen and (max-width: 499px) { | ||
.mobile-only { | ||
} | ||
|
||
.mobile-nav-dropdown { | ||
display: none; | ||
position: absolute; | ||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); | ||
z-index: 1; | ||
} | ||
|
||
.mobile-nav-dropdown.show { | ||
display:block; | ||
} | ||
|
||
.mobile-nav-dropdown.right-dropdown { | ||
right: 0; | ||
} | ||
|
||
nav ul.mobile-nav-dropdown li { | ||
float: none; | ||
line-height: 50px; | ||
white-space: nowrap; | ||
} | ||
nav ul.mobile-nav-dropdown ul { | ||
padding-left: 5px; | ||
} | ||
|
||
} | ||
|
Oops, something went wrong.