aboutsummaryrefslogtreecommitdiffstats
path: root/site/static/styles/scss/_sections.scss
blob: 889e12a152434d17eeba3901bc2903185426c1b7 (plain)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* section-note blocks */

div.section-note {
    background: #FCF8E3 none repeat scroll 0% 0%;
    color: #4e4e4e;
    padding: 15px;
    margin-bottom: 10px;
    border-bottom: 5px solid #DDD;
    border-color: #FAEBCC;
    page-break-inside: avoid;
}
div.section-note table {
    background: white;
}

div.section-note p {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* section-warning blocks */

div.section-warning {
    background: #FD9595 none repeat scroll 0% 0%;
    color: #4e4e4e;
    padding: 15px;
    margin-bottom: 10px;
    border-bottom: 5px solid #DDD;
    border-color: #FF6B6B;
    page-break-inside: avoid;
}

div.section-warning table {
    background: white;
}

div.section-warning p {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* section-config blocks */

div.section-config {
    background: #d2e2ee none repeat scroll 0% 0%;
    color: #4e4e4e;
    padding: 15px;
    margin-bottom: 10px;
    border-bottom: 5px solid #DDD;
    border-color: #b5c5d1;
    page-break-inside: avoid;
}

div.section-config table {
    background: white;
}

div.section-config p {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* section-todo blocks */

div.section-todo {
    background: #d3eed2 none repeat scroll 0% 0%;
    color: #4e4e4e;
    padding: 15px;
    margin-bottom: 10px;
    border-bottom: 5px solid #DDD;
    border-color: #b1d5b0;
    page-break-inside: avoid;
}

div.section-todo table {
    background: white;
}

div.section-todo p {
    padding-bottom: 0;
    margin-bottom: 0;
}