2011-08-26 04:09:25 +02:00
|
|
|
/**
|
|
|
|
* File: typography.scss
|
|
|
|
*
|
|
|
|
* Contains the basic typography related styles for the admin interface.
|
|
|
|
*/
|
2012-02-28 18:07:55 +01:00
|
|
|
body, html {
|
|
|
|
font-size: $font-base-size;
|
|
|
|
line-height: $grid-y * 2;
|
|
|
|
font-family: $font-family;
|
|
|
|
color: $color-text;
|
|
|
|
}
|
2011-08-26 04:09:25 +02:00
|
|
|
|
|
|
|
.cms {
|
|
|
|
h2, h3, h4, h5 {
|
|
|
|
font-weight: bold;
|
2012-02-14 11:18:58 +01:00
|
|
|
margin: $grid-y * 2 0 $grid-y * 2 0;
|
|
|
|
line-height: $grid-y * 2;
|
2011-08-26 04:09:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: $font-base-size + 6;
|
2012-02-14 11:18:58 +01:00
|
|
|
line-height: $grid-y * 3;
|
2011-08-26 04:09:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: $font-base-size + 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: $font-base-size + 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
font-size: $font-base-size;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
2012-02-14 11:18:58 +01:00
|
|
|
line-height: $grid-y * 2;
|
|
|
|
margin-bottom: $grid-y * 2;
|
2011-08-26 04:09:25 +02:00
|
|
|
}
|
2012-03-24 01:20:19 +01:00
|
|
|
em {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
2011-08-26 04:09:25 +02:00
|
|
|
code {
|
|
|
|
font-family: 'Bitstream Vera Sans Mono','Courier', monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
|
|
|
|
thead {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ol {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|