ssd.html 984 Bytes
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
	</head>
	<style>
		.P{
			width: 30px;
			height: 30px;
			border-radius: 50%;
			margin:200px auto;
			padding: 3px;
			background: #fff;
			box-sizing: border-box;
			position: relative;
			box-shadow: 0 0 10px rgba(0,0,0,0.4);
			z-index: 100;
		}
		.P>div{
			background: #00FF00;
			width: 100%;
			height: 100%;
			border-radius: 50%;
			position: relative;
			z-index: 101;
		}
		.P>span{
			display: inline-block;
			position: absolute;
			width: 5px;
			height: 5px;
			transform: rotate(135deg);
			background: #CE3C39;
			bottom: -1px;
			left: 12px;
			background: #fff;
			z-index: 99;
		}
		.P>p{
			width: auto;
			border: 1px solid #000;
			position: absolute;
			top: -40px;
			height: 20px;
			left: calc(width);
			/*margin-left: -50%;*/
		}
	</style>
	<body>
		<div class="P">
			<p>6556565665534654666666666666666666666666666</p>
			<span></span>
			<div></div>
		</div>
	</body>
</html>