-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathBody.css
More file actions
89 lines (83 loc) · 1.45 KB
/
Body.css
File metadata and controls
89 lines (83 loc) · 1.45 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
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
.body-container {
/* border-radius: 25%; */
/* width: 100%;
height: 100vh; */
}
img {
max-width: 100%;
min-height: 100%;
object-fit: cover;
position: relative;
}
/* .buds img {
width: 50px;
height: 50px;
} */
.emoticons {
display: flex;
flex-direction: column;
justify-content: center;
border-radius: 2rem 2rem 10% 10%;
/* clip-path: polygon(0 0, 100% 0%, 7% 100%, 0% 100%); */
width: 70px;
height: 250px;
align-items: center;
background-color: white;
position: absolute;
top: 50%;
left: 10%;
gap: 5px;
border: 1px solid lightgrey;
}
.emoticon {
width: fit-content;
height: fit-content;
padding: 5px;
background-color: lightgrey;
border-radius: 50%;
}
.super-happy {
font-size: xx-large;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.happy {
font-size: x-large;
width: 45px;
height: 45px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.neutral {
font-size: larger;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.sad {
font-size: medium;
width: 35px;
height: 35px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.angry {
font-size: smaller;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}