summaryrefslogtreecommitdiffstats
path: root/theme/stylesheets/website/quiz.less
blob: 0abdaf6912f740de785f70f9e3de5488bf636120 (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
.book .book-body .page-wrapper .page-inner {
    section.quiz {
        padding: 0px;
        margin: 20px 15px;
        border: 3px solid #2f8cde;

        .header {
            padding: 5px 15px;

            color: #fff;
            background: #2f8cde;

            h2 {
                margin: 0px;
                font-size: 20px;
            }
        }

        .message {
            margin: 15px;
        }

        .question {
            .question-header {
                padding: 5px 15px;
                color: #fff;
                background: #2f8cde;
            }

            .question-inner {
                padding: 15px;
                .quiz-label {
                    font-weight: normal;
                    cursor: pointer;
                }
            }

            table {
                margin-bottom: 10px;
                width: 100%;
            }
            th, td {
                padding-right: 5px;
            }
            li {
                list-style-type: none;
                input {
                    margin-right: 10px;
                }
            }
        }
    }
}