-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (96 loc) · 1.29 KB
/
style.css
File metadata and controls
119 lines (96 loc) · 1.29 KB
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
body {
font-family: 'Consolas', sans-serif;
}
h1 {
font-size: 140%;
}
/* Layout */
.flex-container {
display: flex;
}
.flex-item {
flex: 1;
}
.flex-map {
flex: 2;
}
/* Elements */
.character {
font-weight: bold;
}
label {
margin-right: 10px;
}
.form-section input {
width: 40px;
}
footer {
text-align: center;
font-size: 50%;
}
.big-map {
border-collapse: collapse;
border: 1px solid black;
table-layout: fixed;
text-align: center;
}
.big-map td {
border: 1px solid black;
overflow: hidden;
}
.unvisited {
background-color: gray;
}
.unwalkable {
background-color: black;
}
.my-character {
background-color: #AD24E3;
}
.entity-monster {
background-color: red;
}
.location {
background-color: green;
}
.info {
font-size: 120%;
font-weight: bold;
}
.warning {
color: red;
font-size: 120%;
font-weight: bold;
}
.inventory {
margin:0;
padding: 0;
}
.inventory li {
margin: 0;
padding: 0;
}
.target {
background-color: yellow;
}
/* JSON */
.json-markup {
line-height: 17px;
font-size: 13px;
font-family: monospace;
white-space: pre;
}
.json-markup-key {
font-weight: bold;
}
.json-markup-bool {
color: firebrick;
}
.json-markup-string {
color: green;
}
.json-markup-null {
color: gray;
}
.json-markup-number {
color: blue;