-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce conditions and confirmations
- Loading branch information
Showing
4 changed files
with
454 additions
and
116 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ ABSTRACT_FROM = abstract.md | |
include makespec/Makefile | ||
|
||
HTML_ARGS+="--toc-depth=2" | ||
HTML_ARGS+="--css=makespec.css" |
Submodule makespec
updated
4 files
+2 −2 | formats.make | |
+15 −3 | include.pl | |
+4 −0 | plugins.md | |
+46 −0 | templates/default.css |
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,46 @@ | ||
a[href^="#"] em { border-bottom: 1px dotted #666 } | ||
a[href^="#"] em { color: #000; } | ||
|
||
body { | ||
counter-reset: examples; | ||
} | ||
|
||
section > pre { | ||
font-weight: bold; | ||
background-color: #ddd; | ||
padding: 0.5em; | ||
} | ||
|
||
.example, .note { | ||
margin-top: 0.5em; | ||
margin-bottom: 0.5em; | ||
padding: 0.5em; | ||
} | ||
.example:before, .note:before { | ||
display: block; | ||
padding-bottom: 0.5em; | ||
} | ||
.example { | ||
border-left: 0.5em solid #E0CB52; | ||
background-color: #FCFAEE; | ||
} | ||
.example:before { | ||
content: "EXAMPLE " counter(examples); | ||
counter-increment: examples; | ||
color: #B9AB2D; | ||
} | ||
.example pre { | ||
padding-left: 1em; | ||
} | ||
|
||
.note { | ||
border-left: 0.5em solid #52E052; | ||
background-color: #E9FBE9; | ||
padding-left: 1em; | ||
} | ||
.note:before { | ||
content: "NOTE"; | ||
color: #2B2; | ||
} | ||
|
||
|
Oops, something went wrong.