-
Notifications
You must be signed in to change notification settings - Fork 399
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
8 changed files
with
286 additions
and
119 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,101 +1,80 @@ | ||
|
||
pre { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
border: 1px solid #ccc; | ||
word-wrap: break-word; | ||
padding: 6px 10px; | ||
line-height: 19px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
/* Code examples & syntax highlighting. Syntax-related CSS classes added via Rainbow.js */ | ||
pre, | ||
code { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
border: 1px solid #eaeaea; | ||
margin: 0px 2px; | ||
padding: 0px 5px; | ||
font-size: 12px; | ||
} | ||
font-size: 0.9em; /* Looks balanced against surrounding inline text */ | ||
|
||
pre code { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
border: 0px; | ||
padding: 0px; | ||
margin: 0px; | ||
-moz-border-radius: 0px; | ||
-webkit-border-radius: 0px; | ||
border-radius: 0px; | ||
border: 1px solid #eaeaea; | ||
font-family : Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
color : #333; | ||
background : #fcfcfc; | ||
border-radius: 3px; | ||
} | ||
|
||
pre, code { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
color: #333; | ||
background: #fcfcfc; | ||
-moz-border-radius: 3px; | ||
-webkit-border-radius: 3px; | ||
border-radius: 3px; | ||
pre { | ||
word-wrap : break-word; | ||
padding : 6px 10px; | ||
line-height : 19px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
pre, pre code { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
font-size: 13px; | ||
code { | ||
margin : 0px 2px; | ||
padding : 0px 5px; | ||
} | ||
|
||
pre .comment { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
color: #679b7c; | ||
/* Sometimes a <code> inside a <pre> is being informally used to denote command-line content */ | ||
pre code, .rainbow { | ||
border : 0px; | ||
padding : 0px; | ||
margin : 0px; | ||
border-radius : 0px; | ||
} | ||
|
||
pre .keyword { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
font-weight: bold; | ||
color: #0080c0; | ||
.rainbow .comment { | ||
color : #679b7c; | ||
} | ||
|
||
pre .keyword.operator { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
color: #0000a0; | ||
.rainbow .keyword { | ||
font-weight: bold; | ||
color : #0080c0; | ||
} | ||
|
||
pre .keyword.builtin { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
color: #800000; | ||
.rainbow .operator { | ||
color : #0000a0; | ||
} | ||
|
||
pre .constant.numeric { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
color: #ff8000; | ||
.rainbow .builtin { | ||
color : #800000; | ||
} | ||
|
||
pre .constant.string { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
color: #808080; | ||
.rainbow .numeric { | ||
color : #ff8000; | ||
} | ||
|
||
pre .constant.character { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
color: #808080; | ||
.rainbow .string { | ||
color : #808080; | ||
} | ||
|
||
pre .meta { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
font-weight: bold; | ||
color: #2f2f46; | ||
.rainbow .character { | ||
color : #808080; | ||
} | ||
|
||
pre .meta.preprocessor { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
font-weight: normal; | ||
color: #808040; | ||
.rainbow .meta { | ||
font-weight: bold; | ||
color : #2f2f46; | ||
} | ||
|
||
pre .support.type { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
font-weight: bold; | ||
color: #800000; | ||
.rainbow .preprocessor { | ||
font-weight: normal; | ||
color : #808040; | ||
} | ||
|
||
pre .storage { | ||
font-family: Consolas, 'Liberation Mono', 'DejaVu Sans Mono', 'Courier New', monospace; | ||
font-weight: bold; | ||
color: #ae3f71; | ||
.rainbow .type { | ||
font-weight: bold; | ||
color : #800000; | ||
} | ||
|
||
.rainbow .storage { | ||
font-weight: bold; | ||
color : #ae3f71; | ||
} |
Oops, something went wrong.
2aa9e22
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
lispy.py
changes in this commit are all just stripping trailing whitespace.