summaryrefslogtreecommitdiffstats
path: root/base.css
blob: 59428894d34ed1175af9acbfaca81f57551edb68 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* http://paletton.com/#uid=31c0s0kievNiOL7iHDdh6sMg2o2 */

body {
    font-family: "Helvetica Neue", Helvetica, sans-serif;
}

form {
    display: table;
    border: 1px solid #c0a860;
    border-radius: 10px;
    background-color: #fdda6d;
    box-shadow: 0 5px 5px #888;
}

#op1, #op2 {
    display: inline-block;
    width: 1.5em;
    text-align: center;
}

#answer {
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    margin-left: 0.5em;
}

#submit {
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    border: 1px outset #63add0;
    border-radius: 8px;
    color: white;

    background: linear-gradient(to bottom, rgba(122,188,255,1) 0%,rgba(96,171,248,1) 44%,rgba(64,150,238,1) 100%); /* W3C */
}

#submit:hover {
    background: linear-gradient(to bottom, rgba(122,188,255,1) 37%,rgba(96,171,248,1) 82%,rgba(64,150,238,1) 100%); /* W3C */
}

#submit:active {
    border-style: inset;
    background: linear-gradient(to bottom, rgba(64,150,238,1) 0%,rgba(96,171,248,1) 56%,rgba(122,188,255,1) 100%); /* W3C */
}

#is-correct {
    text-align: center;
}

#correct {
    display: none;
    color: green;
}

#incorrect {
    display: none;
    color: red;
}

#timer {
    display: none;
}

#history {
    border: 1px outset #5f4782;
    border-radius: 10px;
    background-color: #9363d6;
    padding: 0.5em;
    width: 3em;
    position: absolute;
    text-align: right;
}

#history-list {
    list-style: none;
    padding: 0;
}

#history li::after {
    content: "s"
}

#history summary::after {
    content: "s"
}