Mercurial > zeropaste
annotate app/assets/stylesheets/tabs.scss @ 187:f0ffe17469a1
Set margin for markdown tab content to 0.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Sat, 23 Feb 2013 13:24:40 +0900 |
parents | c9dc1eeeea9a |
children | 45ec309a3fa8 |
rev | line source |
---|---|
152 | 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 | |
187
f0ffe17469a1
Set margin for markdown tab content to 0.
Edho Arief <edho@myconan.net>
parents:
152
diff
changeset
|
14 p { |
f0ffe17469a1
Set margin for markdown tab content to 0.
Edho Arief <edho@myconan.net>
parents:
152
diff
changeset
|
15 margin: 0; |
f0ffe17469a1
Set margin for markdown tab content to 0.
Edho Arief <edho@myconan.net>
parents:
152
diff
changeset
|
16 } |
f0ffe17469a1
Set margin for markdown tab content to 0.
Edho Arief <edho@myconan.net>
parents:
152
diff
changeset
|
17 |
152 | 18 // copypasta from bootstrap's type.scss |
19 h1, | |
20 h2, | |
21 h3 { line-height: $baseLineHeight * 2; } | |
22 | |
23 // more copypasta from bootstrap's type.scss | |
24 h1 { font-size: $baseFontSize * 2.75; } | |
25 h2 { font-size: $baseFontSize * 2.25; } | |
26 h3 { font-size: $baseFontSize * 1.75; } | |
27 h4 { font-size: $baseFontSize * 1.25; } | |
28 h5 { font-size: $baseFontSize; } | |
29 h6 { font-size: $baseFontSize * 0.85; } | |
119
52fa2536a102
Set bg color for markdown to white.
Edho Arief <edho@myconan.net>
parents:
117
diff
changeset
|
30 } |