1/** CSS Stylesheet for Dokuwki Survey Plugin **/
2
3.DokuwikiSurvey {
4
5    background-color: white;
6    border: 1px solid black;
7    padding: 1em;
8    margin: 0px;
9
10}
11
12.DokuwikiSurvey .lastSurvey {
13
14    font-family: sans-serif;
15    font-size: 1em;
16    font-weight: bold;
17
18    cursor: pointer;
19
20    border-bottom: 1px solid black;
21
22    padding: 1em;
23    margin: 0px;
24
25    background-color: white;
26
27}
28
29.DokuwikiSurvey .lastSurvey:hover {
30
31    background-color: #cccccc;
32
33}
34
35.DokuwikiSurvey .lastSurvey p {
36
37    margin: 0px;
38
39}
40
41.DokuwikiSurvey .surveyQuestion {
42
43    font-family: serif;
44    font-size: 2.5em;
45    line-height: 1em;
46    color: black;
47    font-style: italic;
48
49    margin: 0px;
50    padding: 0.5em 0em;
51
52}
53
54.DokuwikiSurvey .surveyAnswers ul {
55    margin-left: 0px;
56    padding-left: 0px;
57    list-style: none;
58    list-style-position: inside;
59
60}
61
62.DokuwikiSurvey .surveyAnswers li {
63
64    border-top: 1px solid gray;
65    line-height: 2em;
66    background-color: #999999;
67    font-family: serif;
68    font-size: 2em;
69    color: white !important;
70    padding: 0em 1em;
71    cursor: pointer;
72
73}
74
75.DokuwikiSurvey .surveyAnswers li:hover {
76
77    background-color: #cccccc;
78
79}