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      border-top: 1px solid @ini_border;
20    }
21  }
22
23  div.qna-block {
24    border: 1px dashed @ini_border;
25    margin-bottom: 1em;
26  }
27
28  div.qna-question {
29    background-image: url(images/question-memes.png);
30    background-repeat: no-repeat;
31    background-position: 12px center;
32    padding: 1em 1em 1em 100px;
33    min-height: 75px;
34
35    & > * {
36      margin-top: 1em;
37      margin-bottom: 0;
38    }
39
40    div.qna-title {
41      font-size: 120%;
42      font-weight: bold;
43      margin-top: 0;
44    }
45  }
46
47  div.qna-answer {
48    background-image: url(images/answer-memes.png);
49    background-repeat: no-repeat;
50    background-position: 2px center;
51    padding: 1em 1em 1em 100px;
52    border-top: 1px dashed @ini_border;
53    min-height: 75px;
54
55    & > * {
56      margin-top: 1em;
57      margin-bottom: 0;
58    }
59
60    & > *:first-child {
61      margin-top: 0;
62    }
63  }
64}
65