forked from pharth/Nanas-code-review
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
31 lines (29 loc) · 688 Bytes
/
Copy pathstyles.css
File metadata and controls
31 lines (29 loc) · 688 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
#imageContainer {
background-color: rgba(0, 0, 0, 0) !important; /* Transparent background */
position: fixed;
top: 10px;
right: 10px;
z-index: 9999;
padding: 10px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: flex-start;
flex-direction: column;
}
#imageToggleButton {
padding: 5px;
border-radius: 5px;
cursor: pointer;
margin-right: 10px;
font-size: 18px; /* Increase font size */
font-weight: bold;
display: flex;
align-items: flex-start;
margin-bottom: 10px; /* Space between button and image */
}
#resultImage {
width: 300px;
height: 200px;
border-radius: 8px;
}