DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: f69a4743145b036106b5668381ce5f1b6ab4e104 deck-builder/client/assets/ui.ess -rw-r--r-- 795 bytes
f69a4743Jonni Liljamo chore(client): rename sdbclient to client 1 year, 8 months ago
                                                                                
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
/* default font size */
* {
  font: "fonts/FiraMono-Regular.ttf";
  font-size: 38px;
}

.hidden {
  display: none;
}

.menu {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.settingsmenu {
  justify-content: center;
  width: 100%;
  height: 100%;
}

.settingstab {
  width: 200px;
  height: 65px;
}

.menutitle {
  font-size: 60px;
  margin: 40px;
  color: #E6E6E6;
}

.mainmenutitle {
  font-size: 80;
  margin: 50px;
  color: #E6E6E6;
}

.menubutton {
  width: 200px;
  height: 65px;
  margin: 20px;
}

.menubutton .button-foreground {
  background-color: #262626;
  color: #E6E6E6;
}

.menubutton:hover .button-foreground {
  background-color: #404040;
}

.menubutton:pressed .button-foreground {
  background-color: #59BF59;
}