22301009 | 5b28c67 | 2025-04-10 20:12:45 +0800 | [diff] [blame^] | 1 | .publish-seed-container { |
| 2 | background-color: #5c3f31; |
| 3 | color: white; |
| 4 | padding: 20px; |
| 5 | border-radius: 12px; |
| 6 | box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); |
| 7 | } |
| 8 | |
| 9 | h2 { |
| 10 | text-align: center; |
| 11 | font-size: 1.8rem; |
| 12 | margin-bottom: 20px; |
| 13 | color: #fff; |
| 14 | } |
| 15 | |
| 16 | .message { |
| 17 | text-align: center; |
| 18 | margin-bottom: 20px; |
| 19 | color: #ff6f61; |
| 20 | font-weight: bold; |
| 21 | } |
| 22 | |
| 23 | .form-group { |
| 24 | margin-bottom: 20px; |
| 25 | } |
| 26 | |
| 27 | label { |
| 28 | font-size: 1rem; |
| 29 | margin-bottom: 8px; |
| 30 | display: block; |
| 31 | } |
| 32 | |
| 33 | input[type="text"], |
| 34 | textarea, |
| 35 | select, |
| 36 | input[type="url"], |
| 37 | input[type="file"] { |
| 38 | width: 100%; |
| 39 | padding: 8px 12px; |
| 40 | border-radius: 6px; |
| 41 | border: 1px solid #ddd; |
| 42 | background-color: #f9f9f9; |
| 43 | color: #333; |
| 44 | font-size: 1rem; |
| 45 | } |
| 46 | |
| 47 | textarea { |
| 48 | height: 100px; |
| 49 | resize: none; |
| 50 | } |
| 51 | |
| 52 | input[type="file"] { |
| 53 | padding: 6px; |
| 54 | } |
| 55 | |
| 56 | input[type="url"] { |
| 57 | padding: 8px 12px; |
| 58 | } |
| 59 | |
| 60 | input[type="text"]:focus, |
| 61 | textarea:focus, |
| 62 | select:focus, |
| 63 | input[type="url"]:focus, |
| 64 | input[type="file"]:focus { |
| 65 | outline: none; |
| 66 | border-color: #b38867; |
| 67 | } |
| 68 | |
| 69 | button[type="submit"] { |
| 70 | padding: 12px 20px; |
| 71 | border: none; |
| 72 | background-color: #007bff; |
| 73 | color: white; |
| 74 | font-size: 1rem; |
| 75 | border-radius: 6px; |
| 76 | cursor: pointer; |
| 77 | width: 100%; |
| 78 | transition: background-color 0.2s ease; |
| 79 | } |
| 80 | |
| 81 | button[type="submit"]:disabled { |
| 82 | background-color: #d6d6d6; |
| 83 | cursor: not-allowed; |
| 84 | } |
| 85 | |
| 86 | button[type="submit"]:hover { |
| 87 | background-color: #0056b3; |
| 88 | } |
| 89 | |
| 90 | input[type="text"], |
| 91 | input[type="url"], |
| 92 | select { |
| 93 | margin-bottom: 10px; |
| 94 | } |
| 95 | |
| 96 | input[type="file"] { |
| 97 | margin-bottom: 10px; |
| 98 | } |
| 99 | |
| 100 | .publish-seed-container .form-group:last-child { |
| 101 | margin-bottom: 0; |
| 102 | } |
| 103 | |
| 104 | .publish-seed-container .form-group label { |
| 105 | color: #ddd; |
| 106 | font-size: 1rem; |
| 107 | } |
| 108 | |
| 109 | .publish-seed-container .form-group input, |
| 110 | .publish-seed-container .form-group select, |
| 111 | .publish-seed-container .form-group textarea { |
| 112 | background-color: #4e3b30; |
| 113 | color: white; |
| 114 | } |
| 115 | |
| 116 | .publish-seed-container .form-group input:focus, |
| 117 | .publish-seed-container .form-group select:focus, |
| 118 | .publish-seed-container .form-group textarea:focus { |
| 119 | border-color: #b38867; |
| 120 | outline: none; |
| 121 | } |
| 122 | |
| 123 | input[type="file"] { |
| 124 | border: none; |
| 125 | background-color: #4e3b30; |
| 126 | } |
| 127 | |
| 128 | input[type="file"]:focus { |
| 129 | outline: none; |
| 130 | } |
| 131 | |
| 132 | .form-group button { |
| 133 | background-color: #5c3f31; |
| 134 | color: #fff; |
| 135 | padding: 12px; |
| 136 | font-size: 1rem; |
| 137 | border-radius: 8px; |
| 138 | cursor: pointer; |
| 139 | width: 100%; |
| 140 | } |
| 141 | |
| 142 | .form-group button:hover { |
| 143 | background-color: #b38867; |
| 144 | } |
| 145 | |