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




                   

                           
                         
























                                  



                              
 
/* app css stylesheet */

* {
	margin: 0;
	padding: 0;
}

.world {
	position: relative;
	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;
}