-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathninja.css
84 lines (81 loc) · 1.8 KB
/
ninja.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
body{
background: #4D4D4D;
}
.ninja{
background: black;
box-shadow: -18px 29px 0 0 #3C3C3C;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 242px;
height: 255px;
border-radius: 100%;
overflow: hidden;
}
.face{
background: #FDE2D3;
width: 178px;
height: 105px;
border-radius: 100%;
margin-top: 48px;
margin-left: 30px;
z-index: 2;
position: absolute;
}
.eyes{
position: absolute;
z-index: 3;
top: 105px;
left: 50%;
transform: translate(-50%,0%);
display: flex;
}
.eyes::before, .eyes::after {
display: block;
content: '';
width: 25px;
height: 35px;
background: black;
border-radius: 100%;
margin: 0 40px;
}
.whites{
position: absolute;
z-index: 4;
top: 122px;
left: 50%;
margin-left: 3px;
transform: translate(-50%,0%);
display: flex;
}
.whites::before, .whites::after{
display: block;
content: '';
width: 8px;
height: 12px;
background: white;
border-radius: 100%;
margin: 0 48px;
}
.brows {
position: absolute;
z-index: 4;
top: 90px;
left: 50%;
transform: translate(-50%, 0%);
display: flex;
}
.brows::before, .brows::after {
display: block;
content: '';
width: 28px;
height: 11px;
background: #373737;
border-radius: 60px;
margin: 0 46px;
transform: rotate(7deg);
}
.brows::before {
transform: rotate(-7deg);
}