aboutsummaryrefslogtreecommitdiff
path: root/app/css/app.css
blob: 5f3e698d05aa4eac4d4ac4ab9b911aef4e5e3e26 (plain) (blame)
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
/* app css stylesheet */

.world {
	position: relative;
}

.world .line {
	position: absolute;
}

.point {
	position: absolute;
}

.point > div {
	position: relative;
	border-radius: 50%;
	margin-left: -10px;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	border: solid #aaaaaa 2px;
}

.point > div:hover {
	margin-left: -15px;
	margin-top: -15px;
	width: 30px;
	height: 30px;
}

.selected > div {
	background-color: red;
}