blob: 1daafca282eeb34e3cc0752c0cdd65db30567672 (
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
body {
background: #000;
color: #ddd;
overflow: hidden;
font-family: "Roboto", sans-serif;
font-size: 0.875rem;
height: 100%;
width: 100%;
}
.gray {
color: #888;
}
/* layout */
.container {
height: 100%;
width: 100%;
}
.app {
/*display: flex;*/
height: 100%;
width: 100%;
}
.app > div {
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
}
.app .body {
display: flex;
flex-direction: column;
flex-grow: 1;
position: relative;
height: 100%;
width: 100%;
}
.row {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
}
.row > div {
margin-right: 1.5rem;
}
.row > div:last-child {
margin-right: 0;
}
@font-face {
font-family: "Roboto";
src: url("{{SITE_PATH}}/static/fonts/Roboto-Bold.ttf") format("truetype");
font-weight: bold;
}
@font-face {
font-family: "Roboto";
src: url("{{SITE_PATH}}/static/fonts/Roboto-BoldItalic.ttf")
format("truetype");
font-weight: bold;
font-style: italic;
}
/*
@font-face {
font-family: 'Roboto';
src: url('{{SITE_PATH}}/static/fonts/Roboto-Light.ttf') format('truetype');
font-weight: 100;
}
@font-face {
font-family: 'Roboto';
src: url('{{SITE_PATH}}/static/fonts/Roboto-LightItalic.ttf') format('truetype');
font-weight: 100;
}
*/
@font-face {
font-family: "Roboto";
src: url("{{SITE_PATH}}/static/fonts/Roboto-Medium.ttf") format("truetype");
font-weight: 300;
}
@font-face {
font-family: "Roboto";
src: url("{{SITE_PATH}}/static/fonts/Roboto-MediumItalic.ttf")
format("truetype");
font-style: italic;
font-weight: 300;
}
@font-face {
font-family: "Roboto";
src: url("{{SITE_PATH}}/static/fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
font-family: "Roboto";
src: url("{{SITE_PATH}}/static/fonts/Roboto-Italic.ttf") format("truetype");
font-style: italic;
}
/*
@font-face {
font-family: 'Roboto';
src: url('{{SITE_PATH}}/static/fonts/Roboto-Thin.ttf') format('truetype');
font-weight: 100;
}
@font-face {
font-family: 'Roboto';
src: url('{{SITE_PATH}}/static/fonts/Roboto-ThinItalic.ttf') format('truetype');
font-weight: 100;
}
*/
.tile.hand_up {
cursor: url({{SITE_PATH}}/static/img/hand_up.png) 40 10, pointer;
}
.tile.hand_right {
cursor: url({{SITE_PATH}}/static/img/hand_right.png) 90 40, pointer;
}
.tile.hand_down {
cursor: url({{SITE_PATH}}/static/img/hand_down.png) 60 90, pointer;
}
.tile.hand_left {
cursor: url({{SITE_PATH}}/static/img/hand_left.png) 10 60, pointer;
}
.tile.unclickable {
cursor: default;
pointer-events: none;
}
.tile.none {
cursor: default;
}
.tile.link {
border: 0 !important;
background: transparent !important;
}
|