-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (38 loc) · 1.11 KB
/
style.css
File metadata and controls
44 lines (38 loc) · 1.11 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
body{
background: rgb(255, 255, 255);
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
}
.parent::after{
content: '';
position: absolute;
background: whitesmoke;
height: 20px;
width: 20px;
border-radius: 51% 49% 55% 45% / 55% 29% 71% 45% ;
left: 50px;
top: 50px;
box-shadow: inset 0 0 5px rgb(247, 241, 241) ,
0 0 20px rgb(255, 255, 255) ,
inset 0 10px 10px rgb(238, 223, 223),
inset 0 -5px 5px rgb(206, 201, 201) ,
inset 15px 15px 15px white ;
opacity: 0.6;
}
.parent{
position: relative;
width:200px;
height:200px;
opacity: 0.6;
background:rgb(165, 162, 162);
border-radius:62% 38% 58% 42% / 34% 42% 58% 66% ;
box-shadow: inset 0 0 30px rgb(255, 255, 255) ,
0 0 20px gainsboro ,
inset 10px 30px 30px rgb(155, 153, 153),
inset 0 -5px 150px whitesmoke ,
30px 20px 10px rgb(184, 180, 180) ,
inset 0 30px 40px whitesmoke;
}