Add interactive demo page to show how markdownlint handles user content.

This commit is contained in:
David Anson 2015-05-03 21:50:25 -07:00
parent 43f28b90c1
commit dce6024e16
7 changed files with 178 additions and 1 deletions

45
demo/default.css Normal file
View 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;
}