mirror of
https://github.com/WatchOutNewsAgency/wona.github.com.git
synced 2026-02-10 15:00:54 +00:00
Cleaned out public from repository, updated gitignore, added syntax
highlighting tests, improved syntax highlighting and styling of pre blocks. Overriding dynamic gist styling. Added a plugin for pygments caching which should speed things up terrifically. added ender.js as a lightweight way of scripting the DOM, events, etc. Some general typography and semantic html improvements.
This commit is contained in:
@ -1,279 +1,167 @@
|
||||
.code_window {
|
||||
$base03: #002b36; //darkest blue
|
||||
$base02: #073642; //dark blue
|
||||
$base01: #586e75; //darkest gray
|
||||
$base00: #657b83; //dark gray
|
||||
$base0: #839496; //medium gray
|
||||
$base1: #93a1a1; //medium light gray
|
||||
$base2: #eee8d5; //cream
|
||||
$base3: #fdf6e3; //white
|
||||
$yellow: #b58900;
|
||||
$orange: #cb4b16;
|
||||
$red: #dc322f;
|
||||
$magenta: #d33682;
|
||||
$violet: #6c71c4;
|
||||
$blue: #268bd2;
|
||||
$cyan: #2aa198;
|
||||
$green: #859900;
|
||||
|
||||
// If you prefer light colors, uncomment the following block to change themes
|
||||
//$base03: $base3;
|
||||
//$base02: $base2;
|
||||
//$base01: $base1;
|
||||
//$base00: $base0;
|
||||
//$base0: $base00;
|
||||
//$base1: $base01;
|
||||
//$base2: $base02;
|
||||
//$base3: $base03;
|
||||
|
||||
.gutter {
|
||||
.line-numbers {
|
||||
text-align: right;
|
||||
background: $base02 !important;
|
||||
border-right: 1px solid darken($base03, 2);
|
||||
@include box-shadow(lighten($base02, 2) -1px 0 inset);
|
||||
text-shadow: darken($base02, 10) 0 -1px;
|
||||
span { color: $base01 !important; }
|
||||
}
|
||||
}
|
||||
html .gist .gist-file {
|
||||
margin-bottom: 1.5em;
|
||||
border: none;
|
||||
.gist-syntax {
|
||||
border-bottom: 1px solid #515151 !important;
|
||||
.gist-highlight{
|
||||
background: $base03 !important;
|
||||
pre {
|
||||
@extend .pre;
|
||||
overflow-y: hidden;
|
||||
overflow-x: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
.gist-meta {
|
||||
@include background(linear-gradient(#b0b0b0, #a7a7a7));
|
||||
padding: 0.5em;
|
||||
background-color: #bababa !important;
|
||||
border: 1px solid #9c9c9c;
|
||||
border-top: 1px solid #d0d0d0;
|
||||
border-bottom: 1px solid #777777;
|
||||
font-size: .7em !important;
|
||||
font-family: "Helvetica Neue", Arial, sans-serif !important;
|
||||
color: #464646 !important;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
}
|
||||
pre { @extend .pre; }
|
||||
|
||||
.pre {
|
||||
@extend .mono;
|
||||
font-size: .8em;
|
||||
line-height: 1.45em;
|
||||
padding: 1em 1.2em !important;
|
||||
background: $base03 !important;
|
||||
color: $base1 !important;
|
||||
span { color: $base1 !important; }
|
||||
span { font-style: normal !important; font-weight: normal !important; }
|
||||
|
||||
.c { color: $base01 !important; font-style: italic !important; } /* Comment */
|
||||
.cm { color: $base01 !important; font-style: italic !important; } /* Comment.Multiline */
|
||||
.cp { color: $base01 !important; font-style: italic !important; } /* Comment.Preproc */
|
||||
.c1 { color: $base01 !important; font-style: italic !important; } /* Comment.Single */
|
||||
.cs { color: $base01 !important; font-weight: bold !important; font-style: italic !important; } /* Comment.Special */
|
||||
.err { color: $red !important; background: none !important; } /* Error */
|
||||
.k { color: $orange !important; } /* Keyword */
|
||||
.o { color: $base1 !important; font-weight: bold !important; } /* Operator */
|
||||
.p { color: $base1 !important; } /* Operator */
|
||||
.ow { color: $cyan !important; font-weight: bold !important; } /* Operator.Word */
|
||||
.gd { color: $base1 !important; background-color: mix($red, $base03, 25%) !important; display: block; } /* Generic.Deleted */
|
||||
.gd .x { color: $base1 !important; background-color: mix($red, $base03, 35%) !important; display: block; } /* Generic.Deleted.Specific */
|
||||
.ge { color: $base1 !important; font-style: italic !important; } /* Generic.Emph */
|
||||
//.gr { color: #aa0000 } /* Generic.Error */
|
||||
.gh { color: $base01 !important; } /* Generic.Heading */
|
||||
.gi { color: $base1 !important; background-color: mix($green, $base03, 20%) !important; display: block; } /* Generic.Inserted */
|
||||
.gi .x { color: $base1 !important; background-color: mix($green, $base03, 40%) !important; display: block; } /* Generic.Inserted.Specific */
|
||||
//.go { color: #888888 } /* Generic.Output */
|
||||
//.gp { color: #555555 } /* Generic.Prompt */
|
||||
.gs { color: $base1 !important; font-weight: bold !important; } /* Generic.Strong */
|
||||
.gu { color: $violet !important; } /* Generic.Subheading */
|
||||
//.gt { color: #aa0000 } /* Generic.Traceback */
|
||||
.kc { color: $green !important; font-weight: bold !important; } /* Keyword.Constant */
|
||||
.kd { color: $blue !important; } /* Keyword.Declaration */
|
||||
.kp { color: $orange !important; font-weight: bold !important; } /* Keyword.Pseudo */
|
||||
.kr { color: $magenta !important; font-weight: bold !important; } /* Keyword.Reserved */
|
||||
.kt { color: $cyan !important; } /* Keyword.Type */
|
||||
.n { color: $blue !important; }
|
||||
.na { color: $blue !important; } /* Name.Attribute */
|
||||
.nb { color: $green !important; } /* Name.Builtin */
|
||||
//.nc { color: #445588; font-weight: bold } /* Name.Class */
|
||||
.no { color: $yellow !important; } /* Name.Constant */
|
||||
//.ni { color: #800080 } /* Name.Entity */
|
||||
.ne { color: $blue !important; font-weight: bold !important; } /* Name.Exception */
|
||||
.nf { color: $blue !important; font-weight: bold !important; } /* Name.Function */
|
||||
.nn { color: $yellow !important; } /* Name.Namespace */
|
||||
.nt { color: $blue !important; font-weight: bold !important; } /* Name.Tag */
|
||||
.nx { color: $yellow !Important; }
|
||||
//.bp { color: #999999 } /* Name.Builtin.Pseudo */
|
||||
//.vc { color: #008080 } /* Name.Variable.Class */
|
||||
.vg { color: $blue !important; } /* Name.Variable.Global */
|
||||
.vi { color: $blue !important; } /* Name.Variable.Instance */
|
||||
.nv { color: $blue !important; } /* Name.Variable */
|
||||
//.w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.mf { color: $cyan !important; } /* Literal.Number.Float */
|
||||
.m { color: $cyan !important; } /* Literal.Number */
|
||||
.mh { color: $cyan !important; } /* Literal.Number.Hex */
|
||||
.mi { color: $cyan !important; } /* Literal.Number.Integer */
|
||||
//.mo { color: #009999 } /* Literal.Number.Oct */
|
||||
.s { color: $cyan !important; } /* Literal.String */
|
||||
//.sb { color: #d14 } /* Literal.String.Backtick */
|
||||
//.sc { color: #d14 } /* Literal.String.Char */
|
||||
.sd { color: $cyan !important; } /* Literal.String.Doc */
|
||||
.s2 { color: $cyan !important; } /* Literal.String.Double */
|
||||
.se { color: $red !important; } /* Literal.String.Escape */
|
||||
//.sh { color: #d14 } /* Literal.String.Heredoc */
|
||||
.si { color: $blue !important; } /* Literal.String.Interpol */
|
||||
//.sx { color: #d14 } /* Literal.String.Other */
|
||||
.sr { color: $cyan !important; } /* Literal.String.Regex */
|
||||
.s1 { color: $cyan !important; } /* Literal.String.Single */
|
||||
//.ss { color: #990073 } /* Literal.String.Symbol */
|
||||
//.il { color: #009999 } /* Literal.Number.Integer.Long */
|
||||
}
|
||||
|
||||
.highlight {
|
||||
margin-bottom: 1.5em;
|
||||
overflow-y: hidden;
|
||||
.gutter pre {
|
||||
padding-left: .8em !important;
|
||||
padding-right: .8em !important;
|
||||
}
|
||||
}
|
||||
|
||||
h3.filename {
|
||||
font-size: 13px;
|
||||
line-height: 2em;
|
||||
text-align: center;
|
||||
text-shadow: #cbcccc 0 1px 0;
|
||||
color: #474747;
|
||||
font-style: normal;
|
||||
margin-bottom: 0;
|
||||
|
||||
@include border-top-radius(5px);
|
||||
@include border-bottom-radius(2px);
|
||||
font-family: "Helvetica Neue",Arial, "Lucida Grande", "Lucida Sans Unicode", Lucida, sans-serif;
|
||||
background: #aaaaaa image-url("code_bg.png") top repeat-x;
|
||||
position: relative;
|
||||
margin: 0.3em 0 1.3em;
|
||||
padding: 0 3px 3px;
|
||||
font-size: 14px;
|
||||
border: 1px solid #898989;
|
||||
border: 1px solid #565656;
|
||||
border-top-color: #cbcbcb;
|
||||
border-left-color: #a5a5a5;
|
||||
border-right-color: #a5a5a5;
|
||||
em {
|
||||
text-align: center;
|
||||
text-shadow: #cccccc 1px 1px 1px;
|
||||
display: block;
|
||||
padding: 1px 0;
|
||||
color: #333333;
|
||||
font-style: normal; }
|
||||
.highlight {
|
||||
margin: 0; } }
|
||||
|
||||
pre {
|
||||
color: #cccccc;
|
||||
font-size: 13px;
|
||||
background: #222222;
|
||||
line-height: 1.5em;
|
||||
border: #aaaaaa 1px solid;
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
padding: 25px 20px;
|
||||
.lineno {
|
||||
color: #888888;
|
||||
background: #e3e3e3;
|
||||
display: inline-block;
|
||||
padding: 0 0 0 10px;
|
||||
&:first-child {
|
||||
padding-top: 15px;
|
||||
display: inline-block; } } }
|
||||
|
||||
.highlight {
|
||||
position: relative;
|
||||
.pre_expander {
|
||||
font-size: 10px;
|
||||
text-align: right;
|
||||
padding: 4px 8px;
|
||||
line-height: 150%;
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 2px;
|
||||
right: 2px;
|
||||
@include border-bottom-left-radius;
|
||||
display: block;
|
||||
color: #777777;
|
||||
background: #333333;
|
||||
&:hover {
|
||||
background: #444444;
|
||||
color: #cccccc; } } }
|
||||
|
||||
// based on: http://github.com/mojombo/tpw/raw/master/css/syntax.css
|
||||
.editor {
|
||||
background: rgb(0, 22, 41);
|
||||
line-height: 1.25; }
|
||||
|
||||
pre.console {
|
||||
background-color: black;
|
||||
color: lighten(green, 25);
|
||||
letter-spacing: 1px;
|
||||
padding: 0.5em;
|
||||
.prompt {
|
||||
color: lighten(navy, 50);
|
||||
&:before {
|
||||
color: white;
|
||||
content: "["; }
|
||||
&:after {
|
||||
color: white;
|
||||
content: "]"; } }
|
||||
.stdin {
|
||||
font-weight: bold;
|
||||
color: lighten(green, 75); } }
|
||||
|
||||
.highlight {
|
||||
padding: 0 0 0.1em;
|
||||
color: white;
|
||||
// Comment
|
||||
.c {
|
||||
color: #999988;
|
||||
font-style: italic; }
|
||||
// Error
|
||||
.err {
|
||||
color: #a61717;
|
||||
background-color: #e3d2d2; }
|
||||
// Name
|
||||
.n {
|
||||
color: white; }
|
||||
// Keyword
|
||||
.k {
|
||||
color: rgb(255, 157, 0); }
|
||||
// Paren
|
||||
.p {
|
||||
color: darken(#ff9d00, 33); }
|
||||
// Operator
|
||||
.o {
|
||||
color: rgb(255, 157, 0); }
|
||||
// Comment.Multiline
|
||||
.cm {
|
||||
color: #999988;
|
||||
font-style: italic; }
|
||||
// Comment.Preproc
|
||||
.cp {
|
||||
color: #999999; }
|
||||
// Comment.Single
|
||||
.c1 {
|
||||
color: #999988;
|
||||
font-style: italic; }
|
||||
// Comment.Special
|
||||
.cs {
|
||||
color: #999999;
|
||||
font-style: italic; }
|
||||
// Generic.Deleted
|
||||
.gd {
|
||||
color: black;
|
||||
background-color: #ffdddd; }
|
||||
// Generic.Deleted.Specific
|
||||
.gd .x {
|
||||
color: black;
|
||||
background-color: #ffaaaa; }
|
||||
// Generic.Emph
|
||||
.ge {
|
||||
font-style: italic; }
|
||||
// Generic.Error
|
||||
.gr {
|
||||
color: #aa0000; }
|
||||
// Generic.Heading
|
||||
.gh {
|
||||
color: #999999; }
|
||||
// Generic.Inserted
|
||||
.gi {
|
||||
color: black;
|
||||
background-color: #ddffdd; }
|
||||
// Generic.Inserted.Specific
|
||||
.gi .x {
|
||||
color: black;
|
||||
background-color: #aaffaa; }
|
||||
// Generic.Output
|
||||
.go {
|
||||
color: #888888; }
|
||||
// Generic.Prompt
|
||||
.gp {
|
||||
color: #555555; }
|
||||
// Generic.Strong
|
||||
.gs {
|
||||
color: white; }
|
||||
// Generic.Subheading
|
||||
.gu {
|
||||
color: #aaaaaa; }
|
||||
// Generic.Traceback
|
||||
.gt {
|
||||
color: #aa0000; }
|
||||
// Keyword.Constant
|
||||
.kc {
|
||||
color: white; }
|
||||
// Keyword.Declaration
|
||||
.kd {
|
||||
color: white; }
|
||||
// Keyword.Pseudo
|
||||
.kp {
|
||||
color: white; }
|
||||
// Keyword.Reserved
|
||||
.kr {
|
||||
color: white; }
|
||||
// Keyword.Type
|
||||
.kt {
|
||||
color: #445588; }
|
||||
// Literal.Number
|
||||
.m {
|
||||
color: rgb(255, 98, 140); }
|
||||
// Literal.String
|
||||
.s {
|
||||
color: #dd1144; }
|
||||
// Name.Attribute
|
||||
.na {
|
||||
color: teal; }
|
||||
// Name.Builtin
|
||||
.nb {
|
||||
color: darken(rgb(128, 255, 187), 20); }
|
||||
// Name.Class
|
||||
.nc {
|
||||
color: darken(rgb(128, 255, 187), 20); }
|
||||
// Name.Constant
|
||||
.no {
|
||||
color: rgb(128, 255, 187); }
|
||||
// Name.Entity
|
||||
.ni {
|
||||
color: purple; }
|
||||
// Name.Exception
|
||||
.ne {
|
||||
color: rgb(255, 221, 0); }
|
||||
// Name.Function
|
||||
.nf {
|
||||
color: rgb(255, 221, 0); }
|
||||
// Name.Namespace
|
||||
.nn {
|
||||
color: #555555; }
|
||||
// Name.Tag
|
||||
.nt {
|
||||
color: white; }
|
||||
// Name.Variable
|
||||
.nv {
|
||||
color: teal; }
|
||||
// Operator.Word
|
||||
.ow {
|
||||
color: white; }
|
||||
// Text.Whitespace
|
||||
.w {
|
||||
color: #bbbbbb; }
|
||||
// Literal.Number
|
||||
.nl {
|
||||
color: rgb(255, 98, 140); }
|
||||
// Literal.Number.Float
|
||||
.mf {
|
||||
color: rgb(255, 98, 140); }
|
||||
// Literal.Number.Hex
|
||||
.mh {
|
||||
color: rgb(255, 98, 140); }
|
||||
// Literal.Number.Integer
|
||||
.mi {
|
||||
color: rgb(255, 98, 140); }
|
||||
// Literal.Number.Oct
|
||||
.mo {
|
||||
color: rgb(255, 98, 140); }
|
||||
// Literal.String.Backtick
|
||||
.sb {
|
||||
color: rgb(58, 217, 0); }
|
||||
// Literal.String.Char
|
||||
.sc {
|
||||
color: rgb(58, 217, 0); }
|
||||
// Literal.String.Doc
|
||||
.sd {
|
||||
color: rgb(58, 217, 0); }
|
||||
// Literal.String.Double
|
||||
.s2 {
|
||||
color: rgb(58, 217, 0); }
|
||||
// Literal.String.Escape
|
||||
.se {
|
||||
color: rgb(58, 217, 0); }
|
||||
// Literal.String.Heredoc
|
||||
.sh {
|
||||
color: rgb(58, 217, 0); }
|
||||
// Literal.String.Interpol
|
||||
.si {
|
||||
color: rgb(158, 255, 128); }
|
||||
// Literal.String.Other
|
||||
.sx {
|
||||
color: rgb(58, 217, 0); }
|
||||
// Literal.String.Regex
|
||||
.sr {
|
||||
color: #009926; }
|
||||
// Literal.String.Single
|
||||
.s1 {
|
||||
color: rgb(58, 217, 0); }
|
||||
// Literal.String.Symbol
|
||||
.ss {
|
||||
color: rgb(255, 98, 140); }
|
||||
// Name.Builtin.Pseudo
|
||||
.bp {
|
||||
color: #999999; }
|
||||
// Name.Variable.Class
|
||||
.vc {
|
||||
color: teal; }
|
||||
// Name.Variable.Global
|
||||
.vg {
|
||||
color: teal; }
|
||||
// Name.Variable.Instance
|
||||
.vi {
|
||||
color: teal; }
|
||||
// Literal.Number.Integer.Long
|
||||
.il {
|
||||
color: rgb(255, 98, 140); } }
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user