Blame view

framework/admin/scss/_typography.scss 802 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
  /**
   * File: typography.scss
   *
   * Contains the basic typography related styles for the admin interface.
   */
  body, html {
  	font-size: $font-base-size;
  	line-height: $grid-y * 2;
  	font-family: $font-family;
  	color: $color-text;
  }
  
  .cms {
  	h2, h3, h4, h5 {
  		font-weight: bold;
  		margin: $grid-y * 2 0 $grid-y * 2 0;
  		line-height: $grid-y * 2;
  	}
  
  	h2 {
  		font-size: $font-base-size + 6;
  		line-height: $grid-y * 3;
  	}
  
  	h3 {
  		font-size: $font-base-size + 4;
  	}
  
  	h4 {
  		font-size: $font-base-size + 2;
  	}
  
  	h5 {
  		font-size: $font-base-size;
  	}
  
  	p {
  		line-height: $grid-y * 2;
  		margin-bottom: $grid-y * 2;
  	}
  	em {
  		font-style: italic;
  	}
  	code {
  		font-family: 'Bitstream Vera Sans Mono','Courier', monospace;
  	}
  	
  	pre {
  		
  	}
  	
  	table {
  		
  		thead {
  			
  		}
  	}
  	
  	ol {
  		
  	}
  	
  	ul {
  		
  	}
  	
  }