956303669 | 9e95ae3 | 2025-06-02 21:42:11 +0800 | [diff] [blame] | 1 | .publish-page {
|
| 2 | display: flex;
|
| 3 | flex-direction: column;
|
| 4 | align-items: center;
|
| 5 | justify-content: center;
|
| 6 | padding: 20px;
|
| 7 | background-color: #f9f9f9;
|
| 8 | min-height: 100vh;
|
| 9 | }
|
| 10 |
|
| 11 | .page-title {
|
| 12 | font-size: 2rem;
|
| 13 | margin-bottom: 20px;
|
| 14 | color: #333;
|
| 15 | }
|
| 16 |
|
| 17 | .publish-form {
|
| 18 | width: 100%;
|
| 19 | max-width: 500px;
|
| 20 | background: #fff;
|
| 21 | padding: 20px;
|
| 22 | border-radius: 8px;
|
| 23 | box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
| 24 | }
|
| 25 |
|
| 26 | .form-row {
|
| 27 | display: flex;
|
| 28 | flex-direction: column;
|
| 29 | margin-bottom: 15px;
|
| 30 | }
|
| 31 |
|
| 32 | label {
|
| 33 | margin-bottom: 5px;
|
| 34 | font-weight: bold;
|
| 35 | color: #555;
|
| 36 | }
|
| 37 |
|
| 38 | input, select {
|
| 39 | padding: 10px;
|
| 40 | font-size: 1rem;
|
| 41 | border: 1px solid #ccc;
|
| 42 | border-radius: 4px;
|
| 43 | }
|
| 44 |
|
| 45 | input:focus, select:focus {
|
| 46 | outline: none;
|
| 47 | border-color: #007bff;
|
| 48 | box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
|
| 49 | }
|
| 50 |
|
| 51 | .submit-row {
|
| 52 | display: flex;
|
| 53 | justify-content: center;
|
| 54 | }
|
| 55 |
|
| 56 | .submit-button {
|
| 57 | padding: 10px 20px;
|
| 58 | font-size: 1rem;
|
| 59 | color: #fff;
|
| 60 | background-color: #007bff;
|
| 61 | border: none;
|
| 62 | border-radius: 4px;
|
| 63 | cursor: pointer;
|
| 64 | transition: background-color 0.3s;
|
| 65 | }
|
| 66 |
|
| 67 | .submit-button:hover {
|
| 68 | background-color: #0056b3;
|
| 69 | }
|