-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday96.html
More file actions
70 lines (63 loc) · 2.3 KB
/
day96.html
File metadata and controls
70 lines (63 loc) · 2.3 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DAY 96 | CSS CHALLENGE</title>
<style>
*,
*::after,
*::before {
padding: 0;
margin: 0;
box-sizing: border-box;
}
main {
display: grid;
place-items: center;
min-height: 100vh;
background: #424254;
}
.bat {
--b: #424254;
--c: #231f20;
height: 300px;
width: 300px;
position: relative;
}
.bat:after {
content: "";
position: absolute;
inset: 0;
background:
conic-gradient(from -160deg at top, #181617 320deg, #0000 0) 47.8% 71%/3% 3%,
conic-gradient(from -160deg at top, #181617 320deg, #0000 0) 52% 71%/3% 3%,
linear-gradient(#181617 0 0) 48% 68%/1.8% 5%,
linear-gradient(#181617 0 0) 52% 68%/1.8% 5%,
linear-gradient(#fff 0 0) 50% 44%/4% .9%,
radial-gradient(farthest-side, #fff 98%, #0000) 43.5% 35%/1% 1%,
radial-gradient(farthest-side, #fff 98%, #0000) 55% 35%/1% 1%,
radial-gradient(farthest-side, #231f20 98%, #0000) 55.5% 35.4%/4.2% 4.2%,
radial-gradient(farthest-side, #231f20 98%, #0000) 44% 35.4%/4.2% 4.2%,
radial-gradient(farthest-side, #fff 98%, #0000) 44% 36%/7% 7%,
radial-gradient(farthest-side, #fff 98%, #0000) 56% 36%/7% 7%,
radial-gradient(farthest-side, var(--b) 98%, #0000) 50% 11%/21% 25%,
radial-gradient(farthest-side at 50% 40%, var(--c) 98%, #0000) 50% 35%/27% 25%,
radial-gradient(farthest-side, #181617 98%, #0000) 50% 53%/16% 27%,
radial-gradient(50% 100% at bottom, var(--b) 98%, #0000) 50% 62%/37% 8%,
radial-gradient(50% 100% at bottom, var(--b) 98%, #0000) 78% 60%/15% 8%,
radial-gradient(50% 100% at bottom, var(--b) 98%, #0000) 22% 60%/15% 8%,
radial-gradient(50% 100% at bottom, var(--b) 98%, #0000) -4% 59%/22% 12%,
radial-gradient(50% 100% at bottom, var(--b) 98%, #0000) 104% 58%/22% 12%,
radial-gradient(50% 100% at top, var(--b) 98%, #0000) 50% 32%/50% 25%,
radial-gradient(50% 100% at bottom, var(--c) 98%, #0000) 50% 41%/100% 36%;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<main>
<div class="bat"></div>
</main>
</body>
</html>