summaryrefslogtreecommitdiff
path: root/style.css
blob: 934616235f7c0ea9cf8ee8523ac55fafb7417da7 (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
body {
  background: #262A32;
  color: #ffffff;
}

a {
  color: #ffffff;
}

.current-word_matched-segment {
  color: green;
}

.container {
  width: 80%;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.dashboard {
  padding: 100px;
  display: flex;
}

.dashboard_current-word {
  font-size: 3em;
}

.dashboard_prev-word {
  color: #575757;
}

.dashboard_next-word {
  color: #7a7a7a;
}

.dashboard > * {
  margin: 20px;
  width: 300px;
}

#root {
  display: flex;
}

.sidebar_active a {
  color: teal;
}