-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (102 loc) · 1.71 KB
/
styles.css
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
:root {
--color: #000000;
--white: #ffffff;
}
#imageMap {
position: relative;
border: 2px solid var(--color);
border-radius: 5px;
}
.dot {
position: absolute;
width: 10px;
height: 10px;
background-color: red;
border-radius: 50%;
}
.ansDot {
position: absolute;
width: 10px;
height: 10px;
background-color: var(--color);
border-radius: 50%;
}
body {
background-color: rgb(238, 233, 210);
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden; /* Make the page non-scrollable */
}
#markHeading {
background-color: white;
text-align: center;
margin-bottom: 20px;
padding: 10px;
border: 2px solid var(--color);
border-radius: 5px;
}
#imageMap {
max-width: 100%;
margin-bottom: 10px; /* Add margin-bottom for spacing */
}
#submitBtn {
padding: 10px 240px;
margin-bottom: 25px;
font-size: 16px;
background-color: var(--color);
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
#submitBtn:hover {
background-color: var(--color);
}
#submitBtn:disabled {
background-color: #ccc;
color: #666;
cursor: not-allowed;
}
.topright {
position: absolute;
top: 8px;
right: 16px;
font-size: 18px;
}
.bottomright {
position: absolute;
bottom: 28px;
right: 16px;
font-size: 18px;
}
.bottomleft {
position: absolute;
bottom: 8px;
left: 16px;
font-size: 17px;
}
.github{
position: absolute;
bottom: 4px;
right: 18px;
font-size: 18px;
}
.fa {
font-size: 22px;
text-align: center;
}
.fa:hover {
opacity: 0.7;
}
.bugsfeedback {
position: absolute;
bottom: 8px;
right: 42px;
font-size: 18px;
}