Fix Pro headings.

master
Nick Sergeant 2013-04-10 11:43:50 -04:00
parent f3930c5343
commit 7cbf1213af
4 changed files with 30 additions and 4 deletions

View File

@ -33,7 +33,7 @@
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/highlightjs-themes/tomorrow.css" />
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/themes.css" />
{% else %}
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pro.css?24" />
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pro.css?25" />
{% endif %}
<link rel="shortcut icon" href="/static/img/blog-favicon.ico" >

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,5 @@
@charset "UTF-8";
// Fonts
$Helvetica: 'Helvetica Neue', Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif;
$Consolas: Consolas, Menlo, "Courier New", monospace;
@ -429,7 +431,7 @@ article {
}
}
div.markdown {
h4 {
h1, h2, h3, h4, h5, h6 {
border-top: 1px dashed #CCC;
margin-bottom: 30px;
padding-top: 30px;
@ -453,6 +455,30 @@ article {
@include border-radius(20px);
}
}
h1 {
font-size: 20px;
padding-top: 28px;
}
h2 {
font-size: 18px;
padding-top: 19px;
}
h3 {
font-size: 16px;
padding-top: 20px;
}
h4 {
font-size: 14px;
padding-top: 31px;
}
h5 {
font-size: 14px;
padding-top: 31px;
}
h6 {
font-size: 14px;
padding-top: 31px;
}
p {
strong {
font-weight: bold;

File diff suppressed because one or more lines are too long