-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (49 loc) · 1.03 KB
/
style.css
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(133,196,238);
}
.face{
width: 500px;
height: 450px;
background-color: #fff;
border-radius: 50%;
display: flex;
justify-content: space-around;
align-items: center;
flex-direction: column;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.eyes{
width: inherit;
height: 300px;
display: flex;
justify-content: space-around;
align-items: center;
}
.eye{
width: 200px;
height: 200px;
background-color: #fff;
border-radius: 50%;
display: flex;
justify-content: space-around;
align-items: center;
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,rgba(0, 0, 0, 0.3) 0px 30px 100px -20px;
overflow: hidden;
}
.pupil{
width: 30px;
height: 30px;
background-color: black;
border-radius: 50%;
box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}