blob: 48978ba16aa517f3f5881078e183312df0e60e41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Clock</title>
<style type="text/css">
* {
box-sizing: border-box !important;
}
.inner {
width: 100%;
height: 100%;
background: white;
border-radius: 100%;
box-shadow: 0px 0px 18px black inset;
}
</style>
</head>
<body>
<div style="width: 588px; height: 588px; padding: 26.01px;">
<div class="inner"></div>
</div>
</body></html>
|