added styles for syntax highlighting
This commit is contained in:
parent
7d2be2e504
commit
e254943f0f
@ -1,4 +1,5 @@
|
||||
@import partials/blog.sass
|
||||
@import partials/syntax.sass
|
||||
@import partials/search.sass
|
||||
@import partials/sidebar.sass
|
||||
@import partials/twitter.sass
|
240
stylesheets/partials/_syntax.sass
Normal file
240
stylesheets/partials/_syntax.sass
Normal file
@ -0,0 +1,240 @@
|
||||
pre
|
||||
color: #ccc
|
||||
font-size: 13px
|
||||
background: #222
|
||||
padding: 0 15px 0 0
|
||||
line-height: 1.625em
|
||||
border: #aaa 1px solid
|
||||
overflow-x: auto
|
||||
.lineno
|
||||
color: #888
|
||||
background: #e3e3e3
|
||||
position: relative
|
||||
line-height: 180%
|
||||
display: inline-block
|
||||
padding: 0 10px
|
||||
&:first-child
|
||||
padding-top: 12px
|
||||
&:last-child
|
||||
padding-bottom: 12px
|
||||
|
||||
// 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(#008000, 25)
|
||||
letter-spacing: 1px
|
||||
padding: 0.5em
|
||||
.prompt
|
||||
color= lighten(#000080, 50)
|
||||
&:before
|
||||
:color white
|
||||
content: "["
|
||||
&:after
|
||||
:color white
|
||||
content: "]"
|
||||
.stdin
|
||||
font-weight: bold
|
||||
color= lighten(#008000, 75)
|
||||
|
||||
.highlight
|
||||
padding: 0.5em
|
||||
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: #000000
|
||||
background-color: #ffdddd
|
||||
// Generic.Deleted.Specific
|
||||
.gd .x
|
||||
color: #000000
|
||||
background-color: #ffaaaa
|
||||
// Generic.Emph
|
||||
.ge
|
||||
font-style: italic
|
||||
// Generic.Error
|
||||
.gr
|
||||
color: #aa0000
|
||||
// Generic.Heading
|
||||
.gh
|
||||
color: #999999
|
||||
// Generic.Inserted
|
||||
.gi
|
||||
color: #000000
|
||||
background-color: #ddffdd
|
||||
// Generic.Inserted.Specific
|
||||
.gi .x
|
||||
color: #000000
|
||||
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: #d14
|
||||
// Name.Attribute
|
||||
.na
|
||||
color: #008080
|
||||
// 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: #800080
|
||||
// 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: #008080
|
||||
// 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: #008080
|
||||
// Name.Variable.Global
|
||||
.vg
|
||||
color: #008080
|
||||
// Name.Variable.Instance
|
||||
.vi
|
||||
color: #008080
|
||||
// Literal.Number.Integer.Long
|
||||
.il
|
||||
color: rgb(255, 98, 140)
|
Loading…
Reference in New Issue
Block a user