0
0

mark headers in section

This commit makes the headers in a section a bit smaller and underlines
them over 75% over the article width, which gives them a nicer look.
This commit is contained in:
Gibheer 2013-11-08 19:53:44 +01:00
parent bcb992b231
commit 7ca8100d23

View File

@ -1,5 +1,5 @@
// normal text color
$normal_color: black;
$normal_color: hsl(0,0, 90%);
// the nice orange
$action_color: hsl(32, 100%, 50%);
// the blue
@ -65,7 +65,7 @@ a {
background-color: fade-out($alternate-color, 0.7);
}
article {
color: hsl(0, 0%, 90%);
color: $normal_color;
padding: $standard-width;
header {
padding: $standard-width / 4;
@ -90,5 +90,12 @@ article {
section {
border-top: $standard-width/5 solid $alternate-color;
word-wrap: break-word;
h1 { font-size: $standard-width * 1.3 }
h2 { font-size: $standard-width * 1.2 }
h3 { font-size: $standard-width * 1.1; font-weight: normal; }
h1, h2, h3 {
border-bottom: $standard-width / 10 solid $normal-color;
margin-right: 25%;
}
}
}