Add files via upload
|
After Width: | Height: | Size: 7.5 KiB |
@@ -0,0 +1,40 @@
|
||||
/* ================================== SCROLL ============================== */
|
||||
$(function() {
|
||||
$('a.page-scroll').bind('click', function(event) {
|
||||
var $anchor = $(this);
|
||||
$('html, body').stop().animate({
|
||||
scrollTop: $($anchor.attr('href')).offset().top + 10
|
||||
}, 1500, 'easeInOutExpo');
|
||||
event.preventDefault();
|
||||
});
|
||||
});
|
||||
/**
|
||||
* Prism: Lightweight, robust, elegant syntax highlighting
|
||||
* MIT license http://www.opensource.org/licenses/mit-license.php/
|
||||
* @author Lea Verou http://lea.verou.me
|
||||
*/(function(){var e=/\blang(?:uage)?-(?!\*)(\w+)\b/i,t=self.Prism={util:{type:function(e){return Object.prototype.toString.call(e).match(/\[object (\w+)\]/)[1]},clone:function(e){var n=t.util.type(e);switch(n){case"Object":var r={};for(var i in e)e.hasOwnProperty(i)&&(r[i]=t.util.clone(e[i]));return r;case"Array":return e.slice()}return e}},languages:{extend:function(e,n){var r=t.util.clone(t.languages[e]);for(var i in n)r[i]=n[i];return r},insertBefore:function(e,n,r,i){i=i||t.languages;var s=i[e],o={};for(var u in s)if(s.hasOwnProperty(u)){if(u==n)for(var a in r)r.hasOwnProperty(a)&&(o[a]=r[a]);o[u]=s[u]}return i[e]=o},DFS:function(e,n){for(var r in e){n.call(e,r,e[r]);t.util.type(e)==="Object"&&t.languages.DFS(e[r],n)}}},highlightAll:function(e,n){var r=document.querySelectorAll('code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code');for(var i=0,s;s=r[i++];)t.highlightElement(s,e===!0,n)},highlightElement:function(r,i,s){var o,u,a=r;while(a&&!e.test(a.className))a=a.parentNode;if(a){o=(a.className.match(e)||[,""])[1];u=t.languages[o]}if(!u)return;r.className=r.className.replace(e,"").replace(/\s+/g," ")+" language-"+o;a=r.parentNode;/pre/i.test(a.nodeName)&&(a.className=a.className.replace(e,"").replace(/\s+/g," ")+" language-"+o);var f=r.textContent;if(!f)return;f=f.replace(/&/g,"&").replace(/</g,"<").replace(/\u00a0/g," ");var l={element:r,language:o,grammar:u,code:f};t.hooks.run("before-highlight",l);if(i&&self.Worker){var c=new Worker(t.filename);c.onmessage=function(e){l.highlightedCode=n.stringify(JSON.parse(e.data),o);t.hooks.run("before-insert",l);l.element.innerHTML=l.highlightedCode;s&&s.call(l.element);t.hooks.run("after-highlight",l)};c.postMessage(JSON.stringify({language:l.language,code:l.code}))}else{l.highlightedCode=t.highlight(l.code,l.grammar,l.language);t.hooks.run("before-insert",l);l.element.innerHTML=l.highlightedCode;s&&s.call(r);t.hooks.run("after-highlight",l)}},highlight:function(e,r,i){return n.stringify(t.tokenize(e,r),i)},tokenize:function(e,n,r){var i=t.Token,s=[e],o=n.rest;if(o){for(var u in o)n[u]=o[u];delete n.rest}e:for(var u in n){if(!n.hasOwnProperty(u)||!n[u])continue;var a=n[u],f=a.inside,l=!!a.lookbehind,c=0;a=a.pattern||a;for(var h=0;h<s.length;h++){var p=s[h];if(s.length>e.length)break e;if(p instanceof i)continue;a.lastIndex=0;var d=a.exec(p);if(d){l&&(c=d[1].length);var v=d.index-1+c,d=d[0].slice(c),m=d.length,g=v+m,y=p.slice(0,v+1),b=p.slice(g+1),w=[h,1];y&&w.push(y);var E=new i(u,f?t.tokenize(d,f):d);w.push(E);b&&w.push(b);Array.prototype.splice.apply(s,w)}}}return s},hooks:{all:{},add:function(e,n){var r=t.hooks.all;r[e]=r[e]||[];r[e].push(n)},run:function(e,n){var r=t.hooks.all[e];if(!r||!r.length)return;for(var i=0,s;s=r[i++];)s(n)}}},n=t.Token=function(e,t){this.type=e;this.content=t};n.stringify=function(e,r,i){if(typeof e=="string")return e;if(Object.prototype.toString.call(e)=="[object Array]")return e.map(function(t){return n.stringify(t,r,e)}).join("");var s={type:e.type,content:n.stringify(e.content,r,i),tag:"span",classes:["token",e.type],attributes:{},language:r,parent:i};s.type=="comment"&&(s.attributes.spellcheck="true");t.hooks.run("wrap",s);var o="";for(var u in s.attributes)o+=u+'="'+(s.attributes[u]||"")+'"';return"<"+s.tag+' class="'+s.classes.join(" ")+'" '+o+">"+s.content+"</"+s.tag+">"};if(!self.document){self.addEventListener("message",function(e){var n=JSON.parse(e.data),r=n.language,i=n.code;self.postMessage(JSON.stringify(t.tokenize(i,t.languages[r])));self.close()},!1);return}var r=document.getElementsByTagName("script");r=r[r.length-1];if(r){t.filename=r.src;document.addEventListener&&!r.hasAttribute("data-manual")&&document.addEventListener("DOMContentLoaded",t.highlightAll)}})();;
|
||||
Prism.languages.markup={comment:/<!--[\w\W]*?-->/g,prolog:/<\?.+?\?>/,doctype:/<!DOCTYPE.+?>/,cdata:/<!\[CDATA\[[\w\W]*?]]>/i,tag:{pattern:/<\/?[\w:-]+\s*(?:\s+[\w:-]+(?:=(?:("|')(\\?[\w\W])*?\1|\w+))?\s*)*\/?>/gi,inside:{tag:{pattern:/^<\/?[\w:-]+/i,inside:{punctuation:/^<\/?/,namespace:/^[\w-]+?:/}},"attr-value":{pattern:/=(?:('|")[\w\W]*?(\1)|[^\s>]+)/gi,inside:{punctuation:/=|>|"/g}},punctuation:/\/?>/g,"attr-name":{pattern:/[\w:-]+/g,inside:{namespace:/^[\w-]+?:/}}}},entity:/&#?[\da-z]{1,8};/gi};Prism.hooks.add("wrap",function(e){e.type==="entity"&&(e.attributes.title=e.content.replace(/&/,"&"))});;
|
||||
Prism.languages.css={comment:/\/\*[\w\W]*?\*\//g,atrule:{pattern:/@[\w-]+?.*?(;|(?=\s*{))/gi,inside:{punctuation:/[;:]/g}},url:/url\((["']?).*?\1\)/gi,selector:/[^\{\}\s][^\{\};]*(?=\s*\{)/g,property:/(\b|\B)[\w-]+(?=\s*:)/ig,string:/("|')(\\?.)*?\1/g,important:/\B!important\b/gi,ignore:/&(lt|gt|amp);/gi,punctuation:/[\{\};:]/g};Prism.languages.markup&&Prism.languages.insertBefore("markup","tag",{style:{pattern:/(<|<)style[\w\W]*?(>|>)[\w\W]*?(<|<)\/style(>|>)/ig,inside:{tag:{pattern:/(<|<)style[\w\W]*?(>|>)|(<|<)\/style(>|>)/ig,inside:Prism.languages.markup.tag.inside},rest:Prism.languages.css}}});;
|
||||
Prism.languages.clike={comment:{pattern:/(^|[^\\])(\/\*[\w\W]*?\*\/|(^|[^:])\/\/.*?(\r?\n|$))/g,lookbehind:!0},string:/("|')(\\?.)*?\1/g,"class-name":{pattern:/((?:(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[a-z0-9_\.\\]+/ig,lookbehind:!0,inside:{punctuation:/(\.|\\)/}},keyword:/\b(if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/g,"boolean":/\b(true|false)\b/g,"function":{pattern:/[a-z0-9_]+\(/ig,inside:{punctuation:/\(/}}, number:/\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee]-?\d+)?)\b/g,operator:/[-+]{1,2}|!|<=?|>=?|={1,3}|(&){1,2}|\|?\||\?|\*|\/|\~|\^|\%/g,ignore:/&(lt|gt|amp);/gi,punctuation:/[{}[\];(),.:]/g};
|
||||
;
|
||||
Prism.languages.javascript=Prism.languages.extend("clike",{keyword:/\b(var|let|if|else|while|do|for|return|in|instanceof|function|new|with|typeof|try|throw|catch|finally|null|break|continue)\b/g,number:/\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee]-?\d+)?|NaN|-?Infinity)\b/g});Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/(^|[^/])\/(?!\/)(\[.+?]|\\.|[^/\r\n])+\/[gim]{0,3}(?=\s*($|[\r\n,.;})]))/g,lookbehind:!0}});Prism.languages.markup&&Prism.languages.insertBefore("markup","tag",{script:{pattern:/(<|<)script[\w\W]*?(>|>)[\w\W]*?(<|<)\/script(>|>)/ig,inside:{tag:{pattern:/(<|<)script[\w\W]*?(>|>)|(<|<)\/script(>|>)/ig,inside:Prism.languages.markup.tag.inside},rest:Prism.languages.javascript}}});
|
||||
;
|
||||
Prism.hooks.add("after-highlight",function(e){var t=e.element.parentNode;if(!t||!/pre/i.test(t.nodeName)||t.className.indexOf("line-numbers")===-1){return}var n=1+e.code.split("\n").length;var r;lines=new Array(n);lines=lines.join("<span></span>");r=document.createElement("span");r.className="line-numbers-rows";r.innerHTML=lines;if(t.hasAttribute("data-start")){t.style.counterReset="linenumber "+(parseInt(t.getAttribute("data-start"),10)-1)}e.element.appendChild(r)})
|
||||
;
|
||||
$(function(){
|
||||
|
||||
$('.navbar li').click(function(e) {
|
||||
$('.navbar li.active').removeClass('active');
|
||||
var $this = $(this);
|
||||
if (!$this.hasClass('active')) {
|
||||
$this.addClass('active');
|
||||
}
|
||||
e.preventDefault();
|
||||
});
|
||||
|
||||
})
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 313 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 5.4 KiB |
|
After Width: | Height: | Size: 6.4 KiB |
|
After Width: | Height: | Size: 386 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 390 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 70 KiB |
@@ -0,0 +1,5 @@
|
||||
/* jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
|
||||
* Copyright © 2001 Robert Penner
|
||||
* Open source under the BSD License.
|
||||
* Copyright © 2008 George McGinley Smith*/
|
||||
jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return -(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e},easeOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return g*Math.pow(2,-10*h)*Math.sin((h*k-i)*(2*Math.PI)/j)+l+e},easeInOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k/2)==2){return e+l}if(!j){j=k*(0.3*1.5)}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}if(h<1){return -0.5*(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e}return g*Math.pow(2,-10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j)*0.5+l+e},easeInBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*(f/=h)*f*((g+1)*f-g)+a},easeOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*((f=f/h-1)*f*((g+1)*f+g)+1)+a},easeInOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}if((f/=h/2)<1){return i/2*(f*f*(((g*=(1.525))+1)*f-g))+a}return i/2*((f-=2)*f*(((g*=(1.525))+1)*f+g)+2)+a},easeInBounce:function(e,f,a,h,g){return h-jQuery.easing.easeOutBounce(e,g-f,0,h,g)+a},easeOutBounce:function(e,f,a,h,g){if((f/=g)<(1/2.75)){return h*(7.5625*f*f)+a}else{if(f<(2/2.75)){return h*(7.5625*(f-=(1.5/2.75))*f+0.75)+a}else{if(f<(2.5/2.75)){return h*(7.5625*(f-=(2.25/2.75))*f+0.9375)+a}else{return h*(7.5625*(f-=(2.625/2.75))*f+0.984375)+a}}}},easeInOutBounce:function(e,f,a,h,g){if(f<g/2){return jQuery.easing.easeInBounce(e,f*2,0,h,g)*0.5+a}return jQuery.easing.easeOutBounce(e,f*2-g,0,h,g)*0.5+h*0.5+a}});
|
||||
@@ -0,0 +1,119 @@
|
||||
/*! Color themes for Google Code Prettify | MIT License | github.com/jmblog/color-themes-for-google-code-prettify */
|
||||
.prettyprint {
|
||||
background: #1d1f21;
|
||||
font-family: Menlo, "Bitstream Vera Sans Mono", "DejaVu Sans Mono", Monaco, Consolas, monospace;
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
.pln {
|
||||
color: #c5c8c6;
|
||||
}
|
||||
|
||||
/* Specify class=linenums on a pre to get line numbering */
|
||||
ol.linenums {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
color: #969896;
|
||||
}
|
||||
|
||||
li.L0,
|
||||
li.L1,
|
||||
li.L2,
|
||||
li.L3,
|
||||
li.L4,
|
||||
li.L5,
|
||||
li.L6,
|
||||
li.L7,
|
||||
li.L8,
|
||||
li.L9 {
|
||||
padding-left: 1em;
|
||||
background-color: #1d1f21;
|
||||
list-style-type: decimal;
|
||||
}
|
||||
|
||||
@media screen {
|
||||
|
||||
/* string content */
|
||||
|
||||
.str {
|
||||
color: #b5bd68;
|
||||
}
|
||||
|
||||
/* keyword */
|
||||
|
||||
.kwd {
|
||||
color: #b294bb;
|
||||
}
|
||||
|
||||
/* comment */
|
||||
|
||||
.com {
|
||||
color: #969896;
|
||||
}
|
||||
|
||||
/* type name */
|
||||
|
||||
.typ {
|
||||
color: #81a2be;
|
||||
}
|
||||
|
||||
/* literal value */
|
||||
|
||||
.lit {
|
||||
color: #de935f;
|
||||
}
|
||||
|
||||
/* punctuation */
|
||||
|
||||
.pun {
|
||||
color: #c5c8c6;
|
||||
}
|
||||
|
||||
/* lisp open bracket */
|
||||
|
||||
.opn {
|
||||
color: #c5c8c6;
|
||||
}
|
||||
|
||||
/* lisp close bracket */
|
||||
|
||||
.clo {
|
||||
color: #c5c8c6;
|
||||
}
|
||||
|
||||
/* markup tag name */
|
||||
|
||||
.tag {
|
||||
color: #cc6666;
|
||||
}
|
||||
|
||||
/* markup attribute name */
|
||||
|
||||
.atn {
|
||||
color: #de935f;
|
||||
}
|
||||
|
||||
/* markup attribute value */
|
||||
|
||||
.atv {
|
||||
color: #8abeb7;
|
||||
}
|
||||
|
||||
/* declaration */
|
||||
|
||||
.dec {
|
||||
color: #de935f;
|
||||
}
|
||||
|
||||
/* variable name */
|
||||
|
||||
.var {
|
||||
color: #cc6666;
|
||||
}
|
||||
|
||||
/* function name */
|
||||
|
||||
.fun {
|
||||
color: #81a2be;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,728 @@
|
||||
body,
|
||||
h3 {
|
||||
font-size: 14px
|
||||
}
|
||||
|
||||
*,
|
||||
h3,
|
||||
ol li {
|
||||
padding: 0
|
||||
}
|
||||
|
||||
.mainpanel ul li a,
|
||||
h3,
|
||||
ol li {
|
||||
color: #a1b1c1
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0
|
||||
}
|
||||
|
||||
body,
|
||||
html {
|
||||
height: 100%
|
||||
}
|
||||
|
||||
body {
|
||||
letter-spacing: .5px;
|
||||
font-family: Lato, sans-serif
|
||||
}
|
||||
|
||||
h3 {
|
||||
text-decoration: underline;
|
||||
font-weight: 700
|
||||
}
|
||||
|
||||
ol {
|
||||
padding-left: 20px;
|
||||
padding-top: 20px
|
||||
}
|
||||
|
||||
a {
|
||||
color: #316fb5;
|
||||
transition: .5s
|
||||
}
|
||||
|
||||
a:focus,
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
color: #2c88c0
|
||||
}
|
||||
|
||||
.navbar {
|
||||
border-radius: 0;
|
||||
clear: both;
|
||||
margin-bottom: 0
|
||||
}
|
||||
|
||||
.navbar-default {
|
||||
background-color: #f8f8f8;
|
||||
border-right: 1px solid #f2f2f2
|
||||
}
|
||||
|
||||
.navbar-default .navbar-nav>.active>a,
|
||||
.navbar-default .navbar-nav>.active>a:focus,
|
||||
.navbar-default .navbar-nav>.active>a:hover {
|
||||
background-color: #f2f2f2;
|
||||
border-bottom: 1px solid #eaebec;
|
||||
border-top: 1px solid #eaebec;
|
||||
color: #a9a9a9
|
||||
}
|
||||
|
||||
.navbar-default .navbar-nav>li>a:focus,
|
||||
.navbar-default .navbar-nav>li>a:hover {
|
||||
color: #a9a9a9;
|
||||
background-color: transparent
|
||||
}
|
||||
|
||||
.navbar-default .navbar-nav>li>a {
|
||||
padding-left: 30px;
|
||||
text-transform: uppercase;
|
||||
color: #a1b1c1;
|
||||
font-weight: 700
|
||||
}
|
||||
|
||||
.main,
|
||||
nav.sidebar {
|
||||
-webkit-transition: margin .2s ease-out;
|
||||
-moz-transition: margin .2s ease-out;
|
||||
-o-transition: margin .2s ease-out;
|
||||
transition: margin .2s ease-out
|
||||
}
|
||||
|
||||
@media (max-width:767px) {
|
||||
.copyright {
|
||||
display: none
|
||||
}
|
||||
.wrapper {
|
||||
padding: 20px!important
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width:767px) {
|
||||
.leftpanel {
|
||||
left: 0!important
|
||||
}
|
||||
.mainpanel {
|
||||
margin-left: 250px
|
||||
}
|
||||
.navbar-nav {
|
||||
margin-top: 100px
|
||||
}
|
||||
.navbar-brand img {
|
||||
margin: 50px auto 0
|
||||
}
|
||||
nav.sidebar:hover+.main {
|
||||
margin-left: 200px
|
||||
}
|
||||
.navbar>.container-fluid .navbar-brand,
|
||||
nav.sidebar,
|
||||
nav.sidebar.navbar.sidebar>.container .navbar-brand,
|
||||
nav.sidebar:hover {
|
||||
margin-left: 0
|
||||
}
|
||||
nav.sidebar .navbar-brand,
|
||||
nav.sidebar .navbar-header {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
margin-left: 0
|
||||
}
|
||||
nav.sidebar a {
|
||||
padding-right: 13px
|
||||
}
|
||||
nav.sidebar .navbar-nav>li:first-child {
|
||||
border-top: 1px #f5f5f5 solid
|
||||
}
|
||||
nav.sidebar .navbar-nav>li {
|
||||
border-bottom: 1px #f5f5f5 solid
|
||||
}
|
||||
nav.sidebar .navbar-nav .open .dropdown-menu {
|
||||
position: static;
|
||||
float: none;
|
||||
width: auto;
|
||||
margin-top: 0;
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none
|
||||
}
|
||||
nav.sidebar .container-fluid,
|
||||
nav.sidebar .navbar-collapse {
|
||||
padding: 0
|
||||
}
|
||||
.navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
|
||||
color: #777
|
||||
}
|
||||
nav.sidebar {
|
||||
position: fixed;
|
||||
width: 250px;
|
||||
height: 100%;
|
||||
margin-bottom: 0;
|
||||
float: left
|
||||
}
|
||||
nav.sidebar li {
|
||||
width: 100%
|
||||
}
|
||||
.forAnimate {
|
||||
opacity: 0
|
||||
}
|
||||
nav.sidebar .forAnimate {
|
||||
opacity: 1
|
||||
}
|
||||
}
|
||||
|
||||
h2,
|
||||
h4,
|
||||
h5,
|
||||
p {
|
||||
margin: 0
|
||||
}
|
||||
|
||||
nav.sidebar .navbar-nav .open .dropdown-menu>li>a:focus,
|
||||
nav.sidebar .navbar-nav .open .dropdown-menu>li>a:hover {
|
||||
color: #CCC;
|
||||
background-color: transparent
|
||||
}
|
||||
|
||||
nav:hover .forAnimate {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
.leftpanel .copyright {
|
||||
position: absolute;
|
||||
bottom: 30px;
|
||||
margin-bottom: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
color: #a9a9a9;
|
||||
font-size: 13px
|
||||
}
|
||||
|
||||
.leftpanel .copyright a {
|
||||
color: #a9a9a9;
|
||||
padding-right: 0;
|
||||
letter-spacing: 1px
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
padding: 50px
|
||||
}
|
||||
|
||||
.title {
|
||||
padding: 80px;
|
||||
text-align: center;
|
||||
background: #316fb5
|
||||
}
|
||||
|
||||
.title h1 {
|
||||
color: #fff;
|
||||
font-size: 40px
|
||||
}
|
||||
|
||||
.title small {
|
||||
font-size: 12px;
|
||||
color: #fff
|
||||
}
|
||||
|
||||
h2,
|
||||
h4 {
|
||||
color: #a1b1c1
|
||||
}
|
||||
|
||||
.alert {
|
||||
padding: 10px;
|
||||
border-radius: 1px;
|
||||
font-size: .9em
|
||||
}
|
||||
|
||||
h5,
|
||||
p {
|
||||
padding: 20px 0;
|
||||
font-weight: 400
|
||||
}
|
||||
|
||||
h2 {
|
||||
padding-top: 40px;
|
||||
font-weight: 700;
|
||||
font-size: 24px;
|
||||
text-transform: uppercase
|
||||
}
|
||||
|
||||
h4 {
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
font-weight: 400;
|
||||
font-size: 20px
|
||||
}
|
||||
|
||||
.mainpanel ul li,
|
||||
h5,
|
||||
p {
|
||||
color: #929292
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 15px
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 14px
|
||||
}
|
||||
|
||||
.mainpanel ul {
|
||||
padding: 20px 50px 10px
|
||||
}
|
||||
|
||||
.mt0 {
|
||||
margin-top: 0!important
|
||||
}
|
||||
|
||||
.mt5 {
|
||||
margin-top: 5px!important
|
||||
}
|
||||
|
||||
.mt10 {
|
||||
margin-top: 10px!important
|
||||
}
|
||||
|
||||
.mt15 {
|
||||
margin-top: 15px!important
|
||||
}
|
||||
|
||||
.mt20 {
|
||||
margin-top: 20px!important
|
||||
}
|
||||
|
||||
.mt25 {
|
||||
margin-top: 25px!important
|
||||
}
|
||||
|
||||
.mt30 {
|
||||
margin-top: 30px!important
|
||||
}
|
||||
|
||||
.mt35 {
|
||||
margin-top: 35px!important
|
||||
}
|
||||
|
||||
.mt40 {
|
||||
margin-top: 40px!important
|
||||
}
|
||||
|
||||
.mt45 {
|
||||
margin-top: 45px!important
|
||||
}
|
||||
|
||||
.mt50 {
|
||||
margin-top: 50px!important
|
||||
}
|
||||
|
||||
.mt55 {
|
||||
margin-top: 55px!important
|
||||
}
|
||||
|
||||
.mt60 {
|
||||
margin-top: 60px!important
|
||||
}
|
||||
|
||||
.mt65 {
|
||||
margin-top: 65px!important
|
||||
}
|
||||
|
||||
.mt70 {
|
||||
margin-top: 70px!important
|
||||
}
|
||||
|
||||
.mt75 {
|
||||
margin-top: 75px!important
|
||||
}
|
||||
|
||||
.mt80 {
|
||||
margin-top: 80px!important
|
||||
}
|
||||
|
||||
.mt85 {
|
||||
margin-top: 85px!important
|
||||
}
|
||||
|
||||
.mt90 {
|
||||
margin-top: 90px!important
|
||||
}
|
||||
|
||||
.mt95 {
|
||||
margin-top: 95px!important
|
||||
}
|
||||
|
||||
.mt100 {
|
||||
margin-top: 100px!important
|
||||
}
|
||||
|
||||
.mb0 {
|
||||
margin-bottom: 0!important
|
||||
}
|
||||
|
||||
.mb5 {
|
||||
margin-bottom: 5px!important
|
||||
}
|
||||
|
||||
.mb10 {
|
||||
margin-bottom: 10px!important
|
||||
}
|
||||
|
||||
.mb15 {
|
||||
margin-bottom: 15px!important
|
||||
}
|
||||
|
||||
.mb20 {
|
||||
margin-bottom: 20px!important
|
||||
}
|
||||
|
||||
.mb25 {
|
||||
margin-bottom: 25px!important
|
||||
}
|
||||
|
||||
.mb30 {
|
||||
margin-bottom: 30px!important
|
||||
}
|
||||
|
||||
.mb35 {
|
||||
margin-bottom: 35px!important
|
||||
}
|
||||
|
||||
.mb40 {
|
||||
margin-bottom: 40px!important
|
||||
}
|
||||
|
||||
.mb45 {
|
||||
margin-bottom: 45px!important
|
||||
}
|
||||
|
||||
.mb50 {
|
||||
margin-bottom: 50px!important
|
||||
}
|
||||
|
||||
.mb55 {
|
||||
margin-bottom: 55px!important
|
||||
}
|
||||
|
||||
.mb60 {
|
||||
margin-bottom: 60px!important
|
||||
}
|
||||
|
||||
.mb65 {
|
||||
margin-bottom: 65px!important
|
||||
}
|
||||
|
||||
.mb70 {
|
||||
margin-bottom: 70px!important
|
||||
}
|
||||
|
||||
.mb75 {
|
||||
margin-bottom: 75px!important
|
||||
}
|
||||
|
||||
.mb80 {
|
||||
margin-bottom: 80px!important
|
||||
}
|
||||
|
||||
.mb85 {
|
||||
margin-bottom: 85px!important
|
||||
}
|
||||
|
||||
.mb90 {
|
||||
margin-bottom: 90px!important
|
||||
}
|
||||
|
||||
.mb95 {
|
||||
margin-bottom: 95px!important
|
||||
}
|
||||
|
||||
.mb100 {
|
||||
margin-bottom: 100px!important
|
||||
}
|
||||
|
||||
.directory-list ul {
|
||||
margin-left: 10px;
|
||||
padding-left: 20px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
border-left: 1px dashed #ddd
|
||||
}
|
||||
|
||||
.directory-list li {
|
||||
list-style: none;
|
||||
color: #a9a9a9;
|
||||
font-size: 14px;
|
||||
font-style: italic;
|
||||
font-weight: 400
|
||||
}
|
||||
|
||||
.directory-list a {
|
||||
border-bottom: 1px solid transparent;
|
||||
color: #888;
|
||||
text-decoration: none;
|
||||
transition: all .2s ease
|
||||
}
|
||||
|
||||
.directory-list a:hover {
|
||||
border-color: #eee;
|
||||
color: #000
|
||||
}
|
||||
|
||||
.directory-list .folder,
|
||||
.directory-list .folder>a {
|
||||
color: #777;
|
||||
font-weight: 700
|
||||
}
|
||||
|
||||
.directory-list li:before {
|
||||
margin-right: 10px;
|
||||
content: "";
|
||||
height: 20px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
background-repeat: no-repeat;
|
||||
display: inline-block;
|
||||
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path fill='lightgrey' d='M85.714,42.857V87.5c0,1.487-0.521,2.752-1.562,3.794c-1.042,1.041-2.308,1.562-3.795,1.562H19.643 c-1.488,0-2.753-0.521-3.794-1.562c-1.042-1.042-1.562-2.307-1.562-3.794v-75c0-1.487,0.521-2.752,1.562-3.794 c1.041-1.041,2.306-1.562,3.794-1.562H50V37.5c0,1.488,0.521,2.753,1.562,3.795s2.307,1.562,3.795,1.562H85.714z M85.546,35.714 H57.143V7.311c3.05,0.558,5.505,1.767,7.366,3.627l17.41,17.411C83.78,30.209,84.989,32.665,85.546,35.714z' /></svg>");
|
||||
background-position: center 2px;
|
||||
background-size: 60% auto
|
||||
}
|
||||
|
||||
.directory-list li.folder:before {
|
||||
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path fill='lightblue' d='M96.429,37.5v39.286c0,3.423-1.228,6.361-3.684,8.817c-2.455,2.455-5.395,3.683-8.816,3.683H16.071 c-3.423,0-6.362-1.228-8.817-3.683c-2.456-2.456-3.683-5.395-3.683-8.817V23.214c0-3.422,1.228-6.362,3.683-8.817 c2.455-2.456,5.394-3.683,8.817-3.683h17.857c3.422,0,6.362,1.228,8.817,3.683c2.455,2.455,3.683,5.395,3.683,8.817V25h37.5 c3.422,0,6.361,1.228,8.816,3.683C95.201,31.138,96.429,34.078,96.429,37.5z' /></svg>");
|
||||
background-position: center top;
|
||||
background-size: 75% auto
|
||||
}
|
||||
|
||||
.alert-success {
|
||||
color: #929292;
|
||||
padding: 20px!important;
|
||||
background: #f8f8f8;
|
||||
border-color: #f2f2f2
|
||||
}
|
||||
|
||||
.editor {
|
||||
margin-top: 20px
|
||||
}
|
||||
|
||||
.ml-20 {
|
||||
margin-left: -20px
|
||||
}
|
||||
|
||||
.editor .editor-title {
|
||||
color: #a9a9a9;
|
||||
position: relative;
|
||||
padding-top: 4px;
|
||||
text-align: center;
|
||||
top: 1px;
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
border: 1px solid #f2f2f2;
|
||||
border-bottom: none;
|
||||
background-color: #f5f5f5;
|
||||
border-radius: 5px 5px 0 0;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
-o-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0
|
||||
}
|
||||
|
||||
.editor .controls {
|
||||
float: left;
|
||||
padding-top: 2px
|
||||
}
|
||||
|
||||
.editor span.control {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
margin-left: 10px;
|
||||
border-radius: 20px;
|
||||
display: inline-block;
|
||||
-moz-border-radius: 20px;
|
||||
-o-border-radius: 20px;
|
||||
-webkit-border-radius: 20px
|
||||
}
|
||||
|
||||
.editor span.control-1 {
|
||||
background: #df6963;
|
||||
margin-left: 20px
|
||||
}
|
||||
|
||||
.editor span.control-2 {
|
||||
background: #f5e18a
|
||||
}
|
||||
|
||||
.editor span.control-3 {
|
||||
background: #97c38a
|
||||
}
|
||||
|
||||
#codes {
|
||||
border-bottom: 1px solid #5F5F5F;
|
||||
background-color: #34312c;
|
||||
border-top-right-radius: 4px;
|
||||
border-top-left-radius: 4px
|
||||
}
|
||||
|
||||
#codes>li {
|
||||
padding: 8px 0 8px 8px
|
||||
}
|
||||
|
||||
#codes>li>a {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 3px 15px;
|
||||
border-radius: 4px;
|
||||
color: #fefdf9;
|
||||
cursor: pointer!important
|
||||
}
|
||||
|
||||
#codes>li.active>a,
|
||||
#codes>li.active>a:focus,
|
||||
#codes>li.active>a:hover,
|
||||
#codes>li>a:active,
|
||||
#codes>li>a:focus,
|
||||
#codes>li>a:hover {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 3px 15px;
|
||||
border-radius: 4px;
|
||||
color: #fdb839;
|
||||
cursor: default;
|
||||
background-color: #655F56;
|
||||
border: 1px solid #3e3a33;
|
||||
border-bottom-color: transparent
|
||||
}
|
||||
|
||||
code,
|
||||
pre {
|
||||
white-space: normal;
|
||||
border: 0!important;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0
|
||||
}
|
||||
|
||||
xmp {
|
||||
margin-left: 10px
|
||||
}
|
||||
|
||||
pre.prettyprint {
|
||||
display: block;
|
||||
background-color: #1d1f21
|
||||
}
|
||||
|
||||
pre .nocode {
|
||||
background-color: none;
|
||||
color: #000
|
||||
}
|
||||
|
||||
pre .str {
|
||||
color: #96b38a
|
||||
}
|
||||
|
||||
pre .kwd {
|
||||
color: #fdb839
|
||||
}
|
||||
|
||||
pre .com {
|
||||
color: #B3B3B3
|
||||
}
|
||||
|
||||
pre .typ {
|
||||
color: #fdb839
|
||||
}
|
||||
|
||||
pre .lit {
|
||||
color: #cd5c5c
|
||||
}
|
||||
|
||||
pre .pun {
|
||||
color: #fff
|
||||
}
|
||||
|
||||
pre .pln {
|
||||
color: #ccc
|
||||
}
|
||||
|
||||
pre .tag {
|
||||
color: #fdb839
|
||||
}
|
||||
|
||||
pre .atn {
|
||||
color: #bdb76b
|
||||
}
|
||||
|
||||
pre .atv,
|
||||
pre .dec {
|
||||
color: #fdb839
|
||||
}
|
||||
|
||||
ol.linenums {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
color: #666;
|
||||
margin-left: 20px;
|
||||
padding-bottom: 20px
|
||||
}
|
||||
|
||||
li.L0,
|
||||
li.L1,
|
||||
li.L2,
|
||||
li.L3,
|
||||
li.L4,
|
||||
li.L5,
|
||||
li.L6,
|
||||
li.L7,
|
||||
li.L8 {
|
||||
list-style-type: decimal!important
|
||||
}
|
||||
|
||||
li.L1,
|
||||
li.L3,
|
||||
li.L5,
|
||||
li.L7,
|
||||
li.L9 {
|
||||
background-color: transparent!important
|
||||
}
|
||||
|
||||
@media print {
|
||||
code .str,
|
||||
pre .str {
|
||||
color: #060
|
||||
}
|
||||
code .kwd,
|
||||
pre .kwd {
|
||||
color: #006
|
||||
}
|
||||
code .com,
|
||||
pre .com {
|
||||
color: #600
|
||||
}
|
||||
code .typ,
|
||||
pre .typ {
|
||||
color: #404
|
||||
}
|
||||
code .lit,
|
||||
pre .lit {
|
||||
color: #044
|
||||
}
|
||||
code .pun,
|
||||
pre .pun {
|
||||
color: #440
|
||||
}
|
||||
code .pln,
|
||||
pre .pln {
|
||||
color: #000
|
||||
}
|
||||
code .tag,
|
||||
pre .tag {
|
||||
color: #006
|
||||
}
|
||||
code .atn,
|
||||
pre .atn {
|
||||
color: #404
|
||||
}
|
||||
code .atv,
|
||||
pre .atv {
|
||||
color: #060
|
||||
}
|
||||
}
|
||||