+awsm, markdown, mini

pull/4/head
dohliam 7 years ago
parent a40acb4fc0
commit 661dc79959

@ -17,6 +17,7 @@ That's it! You should now be able to cycle through the different frameworks by c
If you know of a minimal framework that hasn't been included here, by all means create an [issue](https://github.com/dohliam/dropin-minimal-css/issues) or [pull request](https://github.com/dohliam/dropin-minimal-css/pulls) so that we can add it to the list!
## List of frameworks
* [awsm](https://github.com/igoradamenko/awsm.css) by @igoradamenko ([MIT](https://github.com/igoradamenko/awsm.css/blob/master/LICENSE.md))
* [base](https://github.com/matthewhartman/base) by @matthewhartman ([MIT](https://github.com/matthewhartman/base#license))
* [bullframe](https://github.com/marcopontili/bullframe.css) by @marcopontili ([MIT](http://opensource.org/licenses/MIT))
* [bulma](https://github.com/jgthms/bulma) by @jgthms ([MIT](https://github.com/jgthms/bulma/blob/master/LICENSE))
@ -28,9 +29,11 @@ If you know of a minimal framework that hasn't been included here, by all means
* [kathamo](https://github.com/kathamo/Kathamo) by @debashisbarman ([MIT](https://github.com/kathamo/Kathamo/blob/master/LICENSE))
* [kraken](https://github.com/cferdinandi/kraken) by @cferdinandi ([MIT](https://github.com/cferdinandi/kraken/blob/master/LICENSE.md))
* [kube](https://github.com/imperavi/kube) by @imperavi ([MIT](https://github.com/imperavi/kube/blob/master/LICENSE))
* [lotus](https://github.com/goatslacker/lotus.css) by @goatslacker (MIT)
* [lotus](https://github.com/goatslacker/lotus.css) by @goatslacker ([MIT](https://github.com/goatslacker/lotus.css#license))
* [markdown-css](https://github.com/mrcoles/markdown-css) by @mrcoles ([MIT](https://github.com/mrcoles/markdown-css/blob/master/license.txt))
* [milligram](https://github.com/milligram/milligram) by @cjpatoilo ([MIT](http://cjpatoilo.mit-license.org/))
* [min](https://github.com/owenversteeg/min) by @owenversteeg (MIT)
* [min](https://github.com/owenversteeg/min) by @owenversteeg ([MIT](https://github.com/owenversteeg/min#license))
* [mini](https://github.com/Chalarangelo/mini.css) by @Chalarangelo ([MIT](https://github.com/Chalarangelo/mini.css/blob/master/LICENSE))
* [motherplate](https://github.com/leemunroe/motherplate) by @leemunroe ([MIT](https://github.com/leemunroe/motherplate/blob/master/LICENSE))
* [mui](https://github.com/muicss/mui) by @amorey ([MIT](https://github.com/muicss/mui/blob/master/LICENSE.txt))
* [normalize](https://github.com/necolas/normalize.css) by @necolas ([MIT](https://github.com/necolas/normalize.css/blob/master/LICENSE.md))

@ -1,4 +1,4 @@
var frameworks = "base,bullframe,bulma,cardinal,caramel,caiuss,flat-ui,html-starterkit,kathamo,kube,lotus,milligram,min,motherplate,mui,normalize,oh-my-css,papier,pavilion,picnic,pure,sanitize-10up,sanitize-zdroid,semantic-ui,siimple,simple,skeleton-framework,skeleton-plus,skeleton,tacit,thao,vital,wing,ads-gazette,ads-medium,ads-notebook,ads-tufte,boot-cerulean,boot-cosmo,boot-cyborg,boot-darkly,boot-flatly,boot-journal,boot-lumen,boot-paper,boot-readable,boot-sandstone,boot-slate,boot-spacelab,boot-superhero,boot-yeti";
var frameworks = "awsm,base,bullframe,bulma,cardinal,caramel,caiuss,flat-ui,html-starterkit,kathamo,kube,lotus,markdown,milligram,min,mini,motherplate,mui,normalize,oh-my-css,papier,pavilion,picnic,pure,sanitize-10up,sanitize-zdroid,semantic-ui,siimple,simple,skeleton-framework,skeleton-plus,skeleton,tacit,thao,vital,wing,ads-gazette,ads-medium,ads-notebook,ads-tufte,boot-cerulean,boot-cosmo,boot-cyborg,boot-darkly,boot-flatly,boot-journal,boot-lumen,boot-paper,boot-readable,boot-sandstone,boot-slate,boot-spacelab,boot-superhero,boot-yeti";
add_switcher();

File diff suppressed because one or more lines are too long

@ -0,0 +1,286 @@
body {
word-wrap: break-word;
font-family: consolas, monaco, courier, "courier new", fixed-width;
}
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
blockquote,
em,
strong,
code {
font-size: 14px;
line-height: 20px;
font-weight: normal;
font-style: normal;
font-family: consolas, monaco, courier, "courier new", fixed-width;
color: #333333;
}
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
blockquote,
ol,
ul,
li,
p,
section,
header,
footer {
float: none;
margin: 0;
padding: 0;
}
h1,
p,
ul,
ol,
pre,
blockquote {
margin-top: 20px;
margin-bottom: 20px;
}
h1 {
position: relative;
display: inline-block;
display: table-cell;
padding: 20px 0 40px;
margin: 0;
overflow: hidden;
}
h1:after {
content: "====================================================================================================";
position: absolute;
bottom: 20px;
left: 0;
}
h1 + * {
margin-top: 0;
}
h2,
h3,
h4,
h5,
h6 {
position: relative;
margin-bottom: 20px;
}
h2:before,
h3:before,
h4:before,
h5:before,
h6:before {
content: "## ";
display: inline;
}
h3:before {
content: "### ";
}
h4:before {
content: "#### ";
}
h5:before {
content: "##### ";
}
h6:before {
content: "###### ";
}
li {
position: relative;
display: block;
padding-left: 34px;
padding-left: 4ch;
}
li:after {
position: absolute;
top: 0;
left: 0;
}
ul > li:after {
content: "*";
}
ol {
counter-reset: ol;
}
ol > li:after {
content: counter(ol) ".";
counter-increment: ol;
}
pre {
margin-left: 34px;
padding-left: 4ch;
}
blockquote {
position: relative;
padding-left: 17px;
padding-left: 2ch;
overflow: hidden;
}
blockquote:after {
content: ">\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>\A>";
white-space: pre;
position: absolute;
top: 0;
left: 0;
font-size: 14px;
line-height: 20px;
}
strong:before,
strong:after {
content: "__";
display: inline;
}
em:before,
em:after {
content: "*";
display: inline;
}
a {
text-decoration: none;
color: black;
cursor: pointer;
}
a:before {
content: "[";
display: inline;
color: #333333;
}
a:after {
content: "](" attr(href) ")";
display: inline;
color: #333333;
}
code {
font-weight: 100;
}
code:before,
code:after {
content: "`";
display: inline;
}
pre code:before,
pre code:after {
content: none;
}
hr {
position: relative;
height: 20px;
font-size: 0;
line-height: 0;
overflow: hidden;
border: 0;
margin-bottom: 20px;
}
hr:after {
content: "----------------------------------------------------------------------------------------------------";
position: absolute;
top: 0;
left: 0;
font-size: 14px;
line-height: 20px;
width: 100%;
word-wrap: break-word;
}
img {
display: inline;
content: "";
height: 1px
}
img:before {
content: "![" attr(alt) "](" attr(src) ")";
display: inline;
color: #333333;
}
/*th:after {
content: "---";
}*/
td:after {
content: " | ";
}
td:last-child:after {
content: "";
}
td {
margin: 0;
padding: 0;
}
th {
float: none;
position: relative;
display: inline-block;
display: table-cell;
padding: 20px 0 40px;
margin: 0;
overflow: hidden;
font-weight: normal;
}
th:after {
content: "----------";
position: absolute;
bottom: 20px;
left: 15px;
}
th:before {
content: " | ";
position: absolute;
bottom: 20px;
left: 0;
padding-right: 2px;
}
th:first-child:before {
content: "";
position: absolute;
bottom: 20px;
left: 0;
}
/*th:last-child:after {
content: "--------------";
position: absolute;
bottom: 20px;
left: 0;
}*/
tfoot {
display: none;
}
/*video {
display: inline;
content: "";
height: 1px
}
audio {
display: inline;
content: "";
height: 1px
}
source {
display: inline;
content: "";
height: 1px
}
source:before {
content: "![](" attr(src) ")";
display: inline;
color: #333333;
}*/
@-moz-document url-prefix() {
h1 {
display: block;
}
}
.markdown-ones ol > li:after {
content: "1.";
}

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save