mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-02-15 17:58:07 +01:00
Add interactive demo page to show how markdownlint handles user content.
This commit is contained in:
parent
43f28b90c1
commit
dce6024e16
7 changed files with 178 additions and 1 deletions
45
demo/default.css
Normal file
45
demo/default.css
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
html, body {
|
||||
height: 100%;
|
||||
}
|
||||
body {
|
||||
margin: 0px;
|
||||
font-family: "Segoe UI", GillSans, Helvetica, sans-serif;
|
||||
font-weight: lighter;
|
||||
}
|
||||
header {
|
||||
font-size: 140%;
|
||||
}
|
||||
footer {
|
||||
font-size: 90%;
|
||||
text-align: right;
|
||||
}
|
||||
textarea {
|
||||
padding: 0;
|
||||
resize: none;
|
||||
}
|
||||
.flex-rows {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
.flex-columns {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
width: 100%;
|
||||
}
|
||||
.flex-fill {
|
||||
flex-grow: 1;
|
||||
flex-basis: 0;
|
||||
}
|
||||
.inset {
|
||||
box-sizing: border-box;
|
||||
padding: 2px;
|
||||
}
|
||||
.outlined {
|
||||
border: 1px solid black;
|
||||
margin: 1px;
|
||||
}
|
||||
.overflow-auto-scroll {
|
||||
overflow-x: auto;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue