comparison app/assets/stylesheets/tabs.css.scss @ 354:5ac923264129

css -> scss.
author edogawaconan <me@myconan.net>
date Thu, 03 Jul 2014 15:22:24 +0900
parents app/assets/stylesheets/tabs.scss@22c4b5f90e24
children
comparison
equal deleted inserted replaced
353:c33fd676e35f 354:5ac923264129
1 #md {
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 p {
15 margin: 0;
16 }
17
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; }
30 }