summaryrefslogtreecommitdiff
path: root/public/style.css
blob: 25b35cc05676356221beefa8cd33d861011f7538 (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
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
  transition-timing-function: ease-in-out;
}

body {
  text-align: center;

          user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

h1 {
  text-transform: uppercase;
}

#help-btn { float: left; }
#settings-btn, #stats-btn { float: right; }

#keyboard {
  width: 100%;
  table-layout: fixed;
  border-spacing: 1vw;
}

td[data-key] {
  background: #eee;
  padding: 0.5em;
  font-size: 4vw;
  border-radius: 2vw;
}