summaryrefslogtreecommitdiff
path: root/index.css
blob: f960b0d78ba59e1d7b240276bcaf27f4eb3c6ef2 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body {
    font-family: "Noto Sans", Roboto, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    position: relative;
    width: 90%;
    margin-left: 0;
    left: 5%;
    text-align: center;
}

#main {
    width: 100%;
}

h1 {
    font-weight: normal;
}

.block {
    background-color: #ccc;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#word {
    font-weight: bolder;
    font-size: 2em;
}

#input {
    height: 2em;
    width: 90%;
    max-width: 900px;
    font-size: 1.5em;
}

#candidate-container {
    background-color: #eee;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 1em;
}

#candidate-list {
    width: 100%;
}

.candidate {
    text-align: left;
    cursor: pointer;
}

.candidate:first-child {
    font-weight: bold;
}

.album-cover {
    width: 50px;
}

#report {
    font-weight: bold;
    font-size: 1.5em;
}

#controls {
    position: relative;
    width: 300px;
    left: 50%;
    margin-left: -150px;
    padding-top: 1em;
    padding-bottom: 1em;
}

#controls button {
    width: 100%;
    margin-top: 0.5em;
    padding: 1em;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: #eee;
}

#next {
    background-color: #6cc0da;
}

#hint {
    background-color: black;
}

#show-answer {
    background-color: #ef4523;
}

#track {
    font-size: 1.5em;
    font-weight: bold;
}

ul {
    text-align: left;
}

#all-words, #frequent-words {
    overflow-x: scroll;
}

.word-table {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.word-table td, th {
    border: 1px solid black;
    padding: 5px;
}