Spaces:
Sleeping
Sleeping
Update static/style.css
Browse files- static/style.css +50 -11
static/style.css
CHANGED
|
@@ -1,32 +1,71 @@
|
|
| 1 |
body {
|
| 2 |
-
font-family: Arial;
|
| 3 |
-
background: #
|
|
|
|
| 4 |
padding: 20px;
|
| 5 |
}
|
| 6 |
|
| 7 |
.container {
|
| 8 |
-
max-width:
|
| 9 |
margin: auto;
|
| 10 |
background: white;
|
| 11 |
-
padding:
|
| 12 |
-
border-radius:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
}
|
| 14 |
|
| 15 |
textarea {
|
| 16 |
width: 100%;
|
| 17 |
-
height:
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
}
|
| 20 |
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
margin-top: 10px;
|
| 24 |
}
|
| 25 |
|
| 26 |
pre {
|
| 27 |
background: #111;
|
| 28 |
color: #0f0;
|
| 29 |
-
padding:
|
| 30 |
-
|
| 31 |
overflow-x: auto;
|
|
|
|
| 32 |
}
|
|
|
|
| 1 |
body {
|
| 2 |
+
font-family: Arial, sans-serif;
|
| 3 |
+
background: #f4f6f9;
|
| 4 |
+
margin: 0;
|
| 5 |
padding: 20px;
|
| 6 |
}
|
| 7 |
|
| 8 |
.container {
|
| 9 |
+
max-width: 900px;
|
| 10 |
margin: auto;
|
| 11 |
background: white;
|
| 12 |
+
padding: 25px;
|
| 13 |
+
border-radius: 12px;
|
| 14 |
+
box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
h2 {
|
| 18 |
+
text-align: center;
|
| 19 |
+
margin-bottom: 20px;
|
| 20 |
}
|
| 21 |
|
| 22 |
textarea {
|
| 23 |
width: 100%;
|
| 24 |
+
height: 180px;
|
| 25 |
+
padding: 10px;
|
| 26 |
+
font-size: 14px;
|
| 27 |
+
border-radius: 8px;
|
| 28 |
+
border: 1px solid #ccc;
|
| 29 |
+
margin-bottom: 15px;
|
| 30 |
}
|
| 31 |
|
| 32 |
+
.buttons {
|
| 33 |
+
display: flex;
|
| 34 |
+
gap: 10px;
|
| 35 |
+
margin-bottom: 20px;
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
button {
|
| 39 |
+
flex: 1;
|
| 40 |
+
padding: 12px;
|
| 41 |
+
border: none;
|
| 42 |
+
border-radius: 8px;
|
| 43 |
+
font-size: 15px;
|
| 44 |
+
cursor: pointer;
|
| 45 |
+
color: white;
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
button.ner {
|
| 49 |
+
background: #2e86de;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
button.re {
|
| 53 |
+
background: #10ac84;
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
button:hover {
|
| 57 |
+
opacity: 0.9;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
.output-box {
|
| 61 |
margin-top: 10px;
|
| 62 |
}
|
| 63 |
|
| 64 |
pre {
|
| 65 |
background: #111;
|
| 66 |
color: #0f0;
|
| 67 |
+
padding: 15px;
|
| 68 |
+
border-radius: 8px;
|
| 69 |
overflow-x: auto;
|
| 70 |
+
min-height: 150px;
|
| 71 |
}
|