1div.dokuwiki {
2  div.qna-toc {
3    & > ul {
4      padding: 0;
5    }
6
7    span.qna-toc-header * {
8      font-weight: bold !important;
9    }
10
11    span.qna-toc-question * {
12      font-weight: normal !important;
13    }
14  }
15
16  div.qna-header {
17    h1, h2, h3, h4 {
18      border-bottom: 1px solid @ini_border;
19    }
20  }
21
22  div.qna-block {
23    border: 1px solid @ini_border;
24    margin-bottom: 1em;
25  }
26
27  div.qna-question {
28    background-color: @ini_background_alt;
29    background-image: url(images/question-symbols.png);
30    background-repeat: no-repeat;
31    background-position: 4px center;
32    padding: 1em 1em 1em 40px;
33
34    & > * {
35      margin-top: 1em;
36      margin-bottom: 0;
37    }
38
39    div.qna-title {
40      font-weight: bold;
41      margin-top: 0;
42    }
43  }
44
45  div.qna-answer {
46    background-color: @ini_background_alt;
47    background-image: url(images/answer-symbols.png);
48    background-repeat: no-repeat;
49    background-position: 4px center;
50    padding: 1em 1em 1em 40px;
51    border-top: 1px solid @ini_border;
52
53    & > * {
54      margin-top: 1em;
55      margin-bottom: 0;
56    }
57
58    & > *:first-child {
59      margin-top: 0;
60    }
61  }
62}
63