-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (76 loc) · 1.4 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
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
85
86
87
88
89
90
91
.face{
height: 220px;
width: 220px;
background: pink;
border-radius: 50%;
margin-top: -9rem;
border: 0.2px solid black;
/* margin-left: 0.1rem; */
}
.eyes{
display:flex;
justify-content: space-evenly;
padding-top: 50px;
}
h1{
margin-bottom: 2rem;
margin-top: 15rem;
}
.leye{
height: 22px;
width: 22px;
background: black;
border-radius: 50%;
border: 10px solid white;
}
.reye{
height: 22px;
width: 22px;
background: black;
border-radius: 50%;
border: 10px solid white;
}
.mouth{
height: 52px;
width: 85px;
background: red;
margin: auto;
margin-top: 10%;
border: 3px pink;
border-radius: 25px;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.mouth div{
background-color: black;
width: 1rem;
height: 1rem;
border-radius: 50%;
}
.ears{
display: flex;
justify-content: space-between;
width: 17rem;
height: 10rem;
}
.ears div{
background-color: pink;
width: 6rem;
height: 6rem;
border-radius: 50%;
z-index: -1;
border: .1px solid black;
}
/* .main:hover .face{
background: red;
}
.main:hover .leye{
height: 10px;
border-radius: 50%;
padding-top: 20px;
}
.main:hover .tongue{
height: 0px;
width:
} */