-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
46 lines (40 loc) · 842 Bytes
/
Copy pathstyles.css
File metadata and controls
46 lines (40 loc) · 842 Bytes
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
#image {
width: 100%;
height: 100%;
object-fit: cover; /* To ensure the image fills the screen without distortion */
}
.emoji-source {
position: absolute;
top: 20px;
left: 20px;
cursor: pointer;
}
#emoji-container {
position: absolute;
top: 0;
left: 0;
}
.emoji {
position: absolute;
cursor: pointer;
box-shadow: 0 0 2px 1px rgba(255, 255, 255, 0.5);
border-radius: 50%; /* For circular emojis */
padding: 2px;
font-size: 35px;
}
#emoji-options {
position: absolute;
top: 40px;
left: 20px;
background-color: #fff;
border: 1px solid #ccc;
padding: 5px;
display: none;
display: grid;
grid-template-columns: repeat(3, 1fr); /* Adjust the number of columns as needed */
gap: 10px; /* Adjust the gap between emojis as needed */
}
.emoji-option {
cursor: pointer;
text-align: center;
}