comparison app/assets/stylesheets/tabs.scss @ 152:c9dc1eeeea9a

Better-styled markdown tab.
author Edho Arief <edho@myconan.net>
date Mon, 26 Nov 2012 22:46:24 +0700
parents app/assets/stylesheets/tabs.css@bf214f66874d
children f0ffe17469a1
comparison
equal deleted inserted replaced
151:db5164ff73a9 152:c9dc1eeeea9a
1 #markdown {
2 // copypasta from bootstrap's variables.scss
3 $baseFontSize_orig: 14px;
4 $baseLineHeight_orig: 20px;
5
6 // reduce for paste show
7 $baseFontSize: $baseFontSize_orig * 0.8;
8 $baseLineHeight: $baseLineHeight_orig * 0.8;
9
10 .well {
11 background-color: darken(white, 2%);
12 }
13
14 // copypasta from bootstrap's type.scss
15 h1,
16 h2,
17 h3 { line-height: $baseLineHeight * 2; }
18
19 // more copypasta from bootstrap's type.scss
20 h1 { font-size: $baseFontSize * 2.75; }
21 h2 { font-size: $baseFontSize * 2.25; }
22 h3 { font-size: $baseFontSize * 1.75; }
23 h4 { font-size: $baseFontSize * 1.25; }
24 h5 { font-size: $baseFontSize; }
25 h6 { font-size: $baseFontSize * 0.85; }
26 }