Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
695 blopes 1
h1, h2, h3, h4, h5, h6 {
2
    margin: 1.5rem 0 1rem 0;
3
    font-family: inherit;
4
    font-weight: 600;
5
    line-height: 1.2;
6
    color: inherit;
7
 
8
    &:first-child {
9
        margin-top: 0;
10
    }
11
}
12
 
13
h1 {
14
    font-size: 2.5rem;
15
}
16
 
17
h2 {
18
    font-size: 2rem;
19
}
20
 
21
h3 {
22
    font-size: 1.75rem;
23
}
24
 
25
h4 {
26
    font-size: 1.5rem;
27
}
28
 
29
h5 {
30
    font-size: 1.25rem;
31
}
32
 
33
h6 {
34
    font-size: 1rem;
35
}
36
 
37
mark {
38
    background: #FFF8E1;
39
    padding: .25rem .4rem;
40
    border-radius: $borderRadius;
41
    font-family: 'Open Sans';
42
}
43
 
44
blockquote {
45
    margin: 1rem 0;
46
    padding: 0 2rem;
47
    border-left: 4px solid #90A4AE;
48
}
49
 
50
hr {
51
    border-top: solid $dividerColor;
52
    border-width: 1px 0 0 0;
53
    margin: 1rem 0;
54
}
55
 
56
p {
57
    margin: 0 0 1rem 0;
58
    line-height: 1.5;
59
 
60
    &:last-child {
61
        margin-bottom: 0;
62
    }
63
}