aboutsummaryrefslogtreecommitdiffstats
path: root/doc/functional/stylesheets/help.scss
blob: 1923a494ebe6e92dabd284bb51d6c4692acb1281 (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
#workspace h2 {
    font-size: 17px;
}

#workspace h3 {
    font-size: 15px;
}

#workspace h4 {
    font-weight: bold;
    padding: 7px 0;
}

#workspace ul li {
    list-style: circle;
    margin: 7px 0 7px 20px;
}

#workspace ol {
    list-style: none; 
    margin: 7px 0 7px 20px;
    padding: 0;
    counter-reset: num;
}

#workspace ol li:before {
    content: counter(num) '. ';
    counter-increment: num;
}

#workspace ol ol li:before {
    content: counters(num, '.') ' ';
}

#workspace em {
    font-style: italic;
}

#workspace strong {
    font-weight: bold;
}

#workspace cite {
  font-style: italic;
}

#workspace p.attr_data {
  font-style: italic;
  text-decoration: underline;
}

#workspace table {
    width: 100%;
}

#workspace table td {
    padding: 3px 5px;
    width: 30%;
}

#workspace dt {
    font-style:italic;
    margin: 5px 0; 
}

#workspace dd {
    padding-left: 10px;
}