aboutsummaryrefslogblamecommitdiff
path: root/app/css/app.css
blob: d0abf835845800dbb203e1e004a4c3cecf1a66a2 (plain) (tree)
1
2
3
4
5
6
7
8
9
                        
 




                   

                           

                                      
























                                  



                              
 
/* app css stylesheet */

* {
	margin: 0;
	padding: 0;
}

.world {
	position: relative;
	background-color: lightyellow;
	overflow: hidden;
}

.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;
}