-
Notifications
You must be signed in to change notification settings - Fork 4
/
hex.css
92 lines (78 loc) · 968 Bytes
/
hex.css
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
body
{
background-color : #222;
color : #fff;
font-family: 'sans';
}
nav#main
{
position : fixed;
top : 10px;
right : 10px;
}
nav#main * {
margin : 5px;
}
nav#main ul {
margin : 0;
padding : 0;
}
nav#main .handle
{
margin : 0;
width : 100%;
height : 1em;
cursor: pointer;
background-color: #666;
content : '-';
}
nav#main .active.handle
{
background-color: #8aa;
content : '+';
}
#tribeConfig input
{
display: list-item;
}
.stats
{
position: fixed;
bottom : 10px;
right : 10px;
padding : 20px;
width : 10em;
}
text
{
text-anchor : middle;
alignment-baseline: text-before-edge;
fill : white;
}
#worldCreateForm
{
display : none;
margin : 30px auto;
width : 20em;
padding : 20px;
}
.panel
{
background-color: rgba(40,40,40,0.8);
border : 1px solid #aaa;
}
.inputList
{
list-style-type: none;
padding : 0;
margin : 0;
}
.inputList li
{
margin-top : 10px;
}
.inputList li label
{
width : 10em;
display : inline-block;
}