~maas-committers/maas/trunk

« back to all changes in this revision

Viewing changes to src/maasserver/static/scss/cloud/base/_typography.scss

Adding all assets and new theme files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* @section general
2
 
-------------------------------------------------------------- */
3
 
 
4
 
body,
5
 
a:link,
6
 
a:visited {
7
 
        -webkit-font-smoothing: antialiased;
8
 
}
9
 
 
10
 
code,
11
 
pre,
12
 
p {
13
 
    line-height: 1.5;
14
 
}
15
 
 
16
 
body {
17
 
    font-size: $base + px;
18
 
}
19
 
 
20
 
@media only screen and (min-width : 768px) {
21
 
    code,
22
 
    pre,
23
 
    p {
24
 
        line-height: 1.6;
25
 
    }
26
 
 
27
 
    body {
28
 
        font-size: $base + px;
29
 
    }
30
 
}
31
 
 
32
 
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
33
 
    body {
34
 
        font-size: $hd_base + px;
35
 
    }
36
 
}