summaryrefslogtreecommitdiffhomepage
path: root/style.css
blob: bbeb91bf4c8404e9a2ae3b4150eb6b83b5a4fdb3 (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
body {
	margin: 0;
}

.wreck {
	width: 20px;
	cursor: pointer;
	padding: 2px;
	fill: none;
	stroke: #eee;
	stroke-width: 0.4;
	stroke-dasharray: 1;
}

.wreck.killed {
	stroke: none;
	fill: #eee;
}

.wreck:hover {
	border: 2px solid #eee;
}

#wrapper {
	display: flex;
	width: 100vw;
	height: 100vh;
	flex-direction: column;
}

#container {
	position: relative;
	overflow: hidden;
	flex-grow: 1;
}

#toolbar {
	background: #eee;
	padding: 1em;
}