Newer
Older
research / mapping.css
#map {
	width: 80%;
	height: 100vh;
}
#flex {
	display: flex;
}
#panel {
	width: 20%;
	height: 100vh;
}
p {
	font-size: 2vw;
	color: black;
}
h1 {
	font-size: 4vw;
	color: black;
}
.marker {
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: skyblue;
	text-align: center;
	line-height: 30px;
}
.marker1 {
	display: block;
	position: relative;
	top: 1000px;
	width: 1000px;
	height: 1000px;
	background: blue;
	border-radius: 0% 100% 50% 50%/ 0% 50% 50% 100%;
	transform: rotate(45deg) skew(10deg, 10deg);

}