-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonsterStyle.css
99 lines (89 loc) · 1.81 KB
/
monsterStyle.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
92
93
94
95
96
97
98
99
h1 {
text-align: center;
color: purple;
}
.container{
height: 80vh;
width: 95vw;
padding: 0 5vh 5vh 5vh;
text-align: center;
}
button{
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px 25px 2px;
transition-duration: 0.4s;
cursor: pointer;
background-color: white;
color: black;
border: 2px solid purple;
}
button:hover {
background-color: purple;
color: white;
}
#body{
border: 1px solid #333;
border-radius: 50%;
min-height: auto;
position: relative;
display: inline-block;
}
/* ------EYES---------------------------------------------------- */
.eye{
border: 2px black solid;
width: 20px;
height: 20px;
border-radius: 50%;
float: left;
background-color: white;
margin: 15px;
}
#eyes{
display: flex;
justify-content: center;
}
.iris{
border-radius: 50%;
width: 70%;
height: 70%;
border: 1px solid #333;
text-align: center;
position: relative;
margin: 10%;
}
.pupil{
border-radius: 50%;
background-color: black;
align-self: center;
width: 50%;
height: 50%;
display: inline-block;
margin: 10%;
}
/* ---------MOUTH-------------------------------------------------- */
#mouth{
border-radius: 52% 51% 41% 41% / 38% 32% 95% 95%;
background-color: #7C0000;
width: 70%;
height: 30%;
border: solid 1px #333;
overflow: hidden;
position: absolute;
display: flex;
align-content: space-between;
justify-content: space-around;
flex-wrap: wrap;
margin: 10% 15% 5% 15%;
}
.tooth{
border: black solid 1px;
float: left;
background: linear-gradient(yellow, white);
border-radius: 0 0 30% 10%;
}