Update style.css
Browse files
style.css
CHANGED
|
@@ -12,6 +12,7 @@ body {
|
|
| 12 |
|
| 13 |
body {
|
| 14 |
padding: 32px;
|
|
|
|
| 15 |
}
|
| 16 |
|
| 17 |
body,
|
|
@@ -25,22 +26,47 @@ body,
|
|
| 25 |
#container {
|
| 26 |
position: relative;
|
| 27 |
gap: 0.4rem;
|
| 28 |
-
|
| 29 |
width: 640px;
|
| 30 |
height: 640px;
|
| 31 |
max-width: 100%;
|
| 32 |
max-height: 100%;
|
| 33 |
-
|
| 34 |
-
border: 2px dashed #D1D5DB;
|
| 35 |
border-radius: 0.75rem;
|
| 36 |
overflow: hidden;
|
| 37 |
cursor: pointer;
|
| 38 |
margin: 1rem;
|
| 39 |
-
|
| 40 |
background-size: 100% 100%;
|
| 41 |
background-position: center;
|
| 42 |
background-repeat: no-repeat;
|
| 43 |
font-size: 18px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
}
|
| 45 |
|
| 46 |
#upload {
|
|
@@ -54,6 +80,7 @@ svg {
|
|
| 54 |
#example {
|
| 55 |
font-size: 14px;
|
| 56 |
text-decoration: underline;
|
|
|
|
| 57 |
cursor: pointer;
|
| 58 |
}
|
| 59 |
|
|
@@ -73,4 +100,15 @@ svg {
|
|
| 73 |
font-size: 12px;
|
| 74 |
margin: -16px 0 0 -2px;
|
| 75 |
padding: 1px;
|
| 76 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
body {
|
| 14 |
padding: 32px;
|
| 15 |
+
background-color: #f5f5f5; /* Light background for contrast */
|
| 16 |
}
|
| 17 |
|
| 18 |
body,
|
|
|
|
| 26 |
#container {
|
| 27 |
position: relative;
|
| 28 |
gap: 0.4rem;
|
|
|
|
| 29 |
width: 640px;
|
| 30 |
height: 640px;
|
| 31 |
max-width: 100%;
|
| 32 |
max-height: 100%;
|
| 33 |
+
border: 2px dashed #3572A5; /* Python blue */
|
|
|
|
| 34 |
border-radius: 0.75rem;
|
| 35 |
overflow: hidden;
|
| 36 |
cursor: pointer;
|
| 37 |
margin: 1rem;
|
| 38 |
+
background-color: #FFD43B; /* Python yellow */
|
| 39 |
background-size: 100% 100%;
|
| 40 |
background-position: center;
|
| 41 |
background-repeat: no-repeat;
|
| 42 |
font-size: 18px;
|
| 43 |
+
color: #282c34; /* Dark text color for readability */
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
textarea {
|
| 47 |
+
width: 95%;
|
| 48 |
+
height: 200px;
|
| 49 |
+
padding: 10px;
|
| 50 |
+
margin: 10px 0;
|
| 51 |
+
border: 1px solid #3572A5;
|
| 52 |
+
border-radius: 5px;
|
| 53 |
+
background-color: #FFFFFF;
|
| 54 |
+
font-family: 'Courier New', Courier, monospace;
|
| 55 |
+
font-size: 16px;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
button {
|
| 59 |
+
padding: 10px 20px;
|
| 60 |
+
background-color: #3572A5;
|
| 61 |
+
color: white;
|
| 62 |
+
border: none;
|
| 63 |
+
border-radius: 5px;
|
| 64 |
+
cursor: pointer;
|
| 65 |
+
font-size: 16px;
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
button:hover {
|
| 69 |
+
background-color: #285e8e;
|
| 70 |
}
|
| 71 |
|
| 72 |
#upload {
|
|
|
|
| 80 |
#example {
|
| 81 |
font-size: 14px;
|
| 82 |
text-decoration: underline;
|
| 83 |
+
color: #3572A5;
|
| 84 |
cursor: pointer;
|
| 85 |
}
|
| 86 |
|
|
|
|
| 100 |
font-size: 12px;
|
| 101 |
margin: -16px 0 0 -2px;
|
| 102 |
padding: 1px;
|
| 103 |
+
}
|
| 104 |
+
|
| 105 |
+
#results {
|
| 106 |
+
width: 95%;
|
| 107 |
+
max-width: 640px;
|
| 108 |
+
background-color: #f0f0f0;
|
| 109 |
+
border: 1px solid #ddd;
|
| 110 |
+
border-radius: 5px;
|
| 111 |
+
padding: 10px;
|
| 112 |
+
margin-top: 10px;
|
| 113 |
+
overflow: auto;
|
| 114 |
+
}
|