Prevent top margin for first element in markdown/wiki/readme typography

This commit is contained in:
Dmitriy Zaporozhets 2013-07-29 21:24:38 +03:00
parent 2c6577a15e
commit bd7e569f72
2 changed files with 12 additions and 4 deletions

View file

@ -76,6 +76,10 @@
}
@mixin md-typography {
*:first-child {
margin-top: 0;
}
code { padding: 0 4px; }
h1 { margin-top: 30px;}
h2 { margin-top: 25px;}

View file

@ -94,12 +94,16 @@ a:focus {
*
*/
.wiki {
font-size: 14px;
line-height: 1.6;
@include md-typography;
.white .highlight pre { background: #f5f5f5; }
ul { margin: 0 0 9px 25px !important; }
font-size: 14px;
line-height: 1.6;
.white .highlight pre {
background: #f5f5f5;
}
ul {
margin: 0 0 9px 25px !important;
}
}
.md {