-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (36 loc) · 764 Bytes
/
style.css
File metadata and controls
41 lines (36 loc) · 764 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
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 20px;
}
#image-container {
display: inline-block;
position: relative;
cursor: crosshair;
border: 2px solid #333;
/* Optional: Hide container if no image is loaded */
min-width: 400px;
min-height: 200px;
background-color: #f0f0f0;
}
#clickable-image {
display: block;
width: 100%;
height: auto;
}
#upload-button {
cursor: pointer;
}
#upload-button:hover {
background-color: lightgrey;
}
/* Style for the point markers remains the same */
.point {
position: absolute;
width: 10px;
height: 10px;
background-color: red;
border-radius: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
}