Spaces:
Sleeping
Sleeping
Update static/styles.css
Browse files- static/styles.css +76 -13
static/styles.css
CHANGED
|
@@ -1,14 +1,77 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
}
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: Arial, sans-serif;
|
| 3 |
+
margin: 0;
|
| 4 |
+
padding: 2rem;
|
| 5 |
+
background-color: #f4f4f9;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
.container {
|
| 9 |
+
max-width: 800px;
|
| 10 |
+
margin: 0 auto;
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
h1, h2 {
|
| 14 |
+
color: #333;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
form {
|
| 18 |
+
margin-bottom: 2rem;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
.form-group {
|
| 22 |
+
margin-bottom: 1rem;
|
| 23 |
+
}
|
| 24 |
+
|
| 25 |
+
label {
|
| 26 |
+
display: block;
|
| 27 |
+
margin-bottom: 0.5rem;
|
| 28 |
+
font-weight: 16px;
|
| 29 |
+
color: #555;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
input[type="url"], input[type="text"], input[type="password"] {
|
| 33 |
+
width: 100%;
|
| 34 |
+
padding: 10px;
|
| 35 |
+
border: 0.5rem;
|
| 36 |
+
border-radius: 5px;
|
| 37 |
+
border: 1px solid #e2e8f0;
|
| 38 |
+
background-color: #f8fafc;
|
| 39 |
+
font-size: 16px;
|
| 40 |
+
box-sizing: border-box;
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
input[type="url"]:focus, input[type="text"]:focus, input[type="password"]:focus {
|
| 44 |
+
outline: none;
|
| 45 |
+
border-color: #007bff;
|
| 46 |
+
box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
button {
|
| 50 |
+
background-color: #007bff;
|
| 51 |
+
color: white;
|
| 52 |
+
padding: 10px 20px;
|
| 53 |
+
border: none;
|
| 54 |
+
border-radius: 5px;
|
| 55 |
+
font-size: 16px;
|
| 56 |
+
cursor: pointer;
|
| 57 |
+
transition: background-color 0.3s;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
button:hover {
|
| 61 |
+
background-color: #0056b3;
|
| 62 |
+
}
|
| 63 |
+
|
| 64 |
+
textarea {
|
| 65 |
+
width: 100%;
|
| 66 |
+
min-height: 400px;
|
| 67 |
+
max-height: 600px;
|
| 68 |
+
overflow-y: auto;
|
| 69 |
+
background-color: #f8fafc;
|
| 70 |
+
padding: 1rem;
|
| 71 |
+
border-radius: 0.5rem;
|
| 72 |
+
border: 1px solid #e2e8f0;
|
| 73 |
+
resize: vertical;
|
| 74 |
+
font-family: monospace;
|
| 75 |
+
font-size: 14px;
|
| 76 |
+
box-sizing: border-box;
|
| 77 |
}
|