123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .face {
- float: left;
- margin: 16px;
- padding: 4px;
- background-color: #e7e7e7;
- width: 104px;
- height: 104px;
- box-shadow: inset 0 5px white, inset 0 -5px #bbb, inset 5px 0 #d7d7d7, inset -5px 0 #d7d7d7;
- border-radius: 10%;
- }
- .face span {
- display: block;
- width: 24px;
- height: 24px;
- border-radius: 50%;
- margin: 4px;
- background-color: #333;
- box-shadow: inset 0 3px #111, inset 0 -3px #555;
- }
-
- </style>
- </head>
- <body>
- <div class="face">
- <span></span>
- </div>
-
- </body>
- </html>
|