ammaan commited on
Commit
5b69b6e
1 Parent(s): e7aa2e3

update color of status

Browse files
Files changed (1) hide show
  1. index.css +70 -57
index.css CHANGED
@@ -1,58 +1,71 @@
1
- html,
2
- body {
3
- font-family: Arial, Helvetica, sans-serif;
4
- }
5
-
6
- .container {
7
- margin: 40px auto;
8
- width: max(50vw, 400px);
9
- display: flex;
10
- flex-direction: column;
11
- align-items: center;
12
- }
13
-
14
-
15
- .custom-file-upload {
16
- display: flex;
17
- align-items: center;
18
- cursor: pointer;
19
- gap: 10px;
20
- border: 2px solid black;
21
- padding: 8px 16px;
22
- cursor: pointer;
23
- border-radius: 6px;
24
- }
25
-
26
- #file-upload {
27
- display: none;
28
- }
29
-
30
- .upload-icon {
31
- width: 30px;
32
- }
33
-
34
- #image-container {
35
- width: 100%;
36
- margin-top: 20px;
37
- position: relative;
38
- }
39
-
40
- #image-container>img {
41
- width: 100%;
42
- }
43
-
44
- .bounding-box {
45
- position: absolute;
46
- box-sizing: border-box;
47
- border-width: 2px;
48
- border-style: solid;
49
- }
50
-
51
- .bounding-box-label {
52
- color: white;
53
- position: absolute;
54
- font-size: 12px;
55
- margin-top: -16px;
56
- margin-left: -2px;
57
- padding: 1px;
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  }
 
1
+ html,
2
+ body {
3
+ font-family: Arial, Helvetica, sans-serif;
4
+ }
5
+
6
+ .container {
7
+ margin: 40px auto;
8
+ width: max(50vw, 400px);
9
+ display: flex;
10
+ flex-direction: column;
11
+ align-items: center;
12
+ }
13
+
14
+
15
+ .custom-file-upload {
16
+ display: flex;
17
+ align-items: center;
18
+ cursor: pointer;
19
+ gap: 10px;
20
+ border: 2px solid black;
21
+ padding: 8px 16px;
22
+ cursor: pointer;
23
+ border-radius: 6px;
24
+ }
25
+
26
+ #file-upload {
27
+ display: none;
28
+ }
29
+
30
+ .upload-icon {
31
+ width: 30px;
32
+ }
33
+
34
+ #image-container {
35
+ width: 100%;
36
+ margin-top: 20px;
37
+ position: relative;
38
+ }
39
+
40
+ #image-container>img {
41
+ width: 100%;
42
+ }
43
+
44
+ .bounding-box {
45
+ position: absolute;
46
+ box-sizing: border-box;
47
+ border-width: 2px;
48
+ border-style: solid;
49
+ }
50
+
51
+ .bounding-box-label {
52
+ color: white;
53
+ position: absolute;
54
+ font-size: 12px;
55
+ margin-top: -16px;
56
+ margin-left: -2px;
57
+ padding: 1px;
58
+ }
59
+
60
+
61
+ #status{
62
+ font-size: 20px;
63
+ font-weight: bold;
64
+ }
65
+ .warn{
66
+ color: red;
67
+ }
68
+
69
+ .done{
70
+ color: green;
71
  }