-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
38 lines (38 loc) · 755 Bytes
/
styles.css
File metadata and controls
38 lines (38 loc) · 755 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
.selection-button {
position: absolute;
display: none;
background-color: white;
background-position: center;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
cursor: pointer;
border: 1px solid gray;
border-radius: 5px;
z-index: 9999;
padding: 10px;
color: gray;
}
.selection-button div {
display: flex;
flex-direction: row;
}
.selection-button img {
width: 50px;
height: 50px;
margin-right: 10px;
}
.speech-bubble {
position: absolute;
display: none;
max-width: min(90%, 400px);
max-height: 400px;
overflow-y: auto;
padding: 15px 20px;
font-size: 1rem;
background-color: black;
color: white;
border: 1px solid #ccc;
border-radius: 8px;
z-index: 10000;
}