-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathd7.html
53 lines (49 loc) · 1008 Bytes
/
d7.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!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>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: grid;
place-items: center;
}
.container {
height: 200pt;
width: 200pt;
background: #9797cd;
border: 2pt solid black;
}
.c1 {
height: 100%;
width: 100%;
border-radius: 100%;
background: yellow;
box-shadow: inset 0 0 0 2pt black,
inset 0 0 0 10pt red;
display: grid;
place-items: center;
}
.c2-1 {
height: 50pt;
width: 50pt;
border: 2pt solid green;
border-radius: 100%;
}
</style>
</head>
<body>
<div class="container">
<div class="c1">
<div class="c2-1"></div>
</div>
</div>
</body>
</html>