22301009 | 4952a0f | 2025-06-07 18:58:16 +0800 | [diff] [blame^] | 1 | .publish-seed-container { |
| 2 | background: #333; |
| 3 | color: #333; |
| 4 | min-height: 100vh; |
| 5 | padding: 20px 0; |
| 6 | font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| 7 | } |
| 8 | |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 9 | .pub-card { |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 10 | background-color: #e9ded2; |
| 11 | border-radius: 16px; |
22301009 | 4952a0f | 2025-06-07 18:58:16 +0800 | [diff] [blame^] | 12 | max-width: 800px; |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 13 | margin: 0 auto; |
| 14 | margin-top: 40px; |
22301009 | 4952a0f | 2025-06-07 18:58:16 +0800 | [diff] [blame^] | 15 | padding: 40px 48px; |
| 16 | box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 17 | } |
| 18 | |
22301009 | 4952a0f | 2025-06-07 18:58:16 +0800 | [diff] [blame^] | 19 | form > div { |
| 20 | margin-bottom: 20px; |
| 21 | } |
| 22 | |
| 23 | label { |
| 24 | display: block; |
| 25 | font-weight: bold; |
| 26 | margin-bottom: 8px; |
| 27 | color: #5F4437; |
| 28 | } |
| 29 | |
| 30 | input[type="text"], |
| 31 | textarea, |
| 32 | select { |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 33 | width: 100%; |
22301009 | 4952a0f | 2025-06-07 18:58:16 +0800 | [diff] [blame^] | 34 | padding: 10px 12px; |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 35 | border-radius: 6px; |
22301009 | 4952a0f | 2025-06-07 18:58:16 +0800 | [diff] [blame^] | 36 | border: 1px solid #e0c4a1; |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 37 | background-color: #fff5f5; |
| 38 | color: #5F4437; |
| 39 | font-size: 1rem; |
22301009 | 4952a0f | 2025-06-07 18:58:16 +0800 | [diff] [blame^] | 40 | transition: border-color 0.3s; |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 41 | } |
| 42 | |
22301009 | 4952a0f | 2025-06-07 18:58:16 +0800 | [diff] [blame^] | 43 | input[type="text"]:focus, |
| 44 | textarea:focus, |
| 45 | select:focus { |
| 46 | outline: none; |
| 47 | border-color: #c49c6b; |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 48 | } |
| 49 | |
22301009 | 4952a0f | 2025-06-07 18:58:16 +0800 | [diff] [blame^] | 50 | textarea { |
| 51 | resize: vertical; |
| 52 | min-height: 80px; |
| 53 | } |
| 54 | |
| 55 | .seed-file-label, |
| 56 | .cover-upload button { |
| 57 | display: inline-block; |
| 58 | padding: 8px 16px; |
| 59 | border: 1px solid #e0c4a1; |
| 60 | background-color: #fff5f5; |
| 61 | border-radius: 6px; |
| 62 | cursor: pointer; |
| 63 | font-size: 14px; |
| 64 | font-weight: 500; |
| 65 | color: #5F4437; |
| 66 | transition: all 0.2s ease; |
| 67 | } |
| 68 | |
| 69 | .seed-file-label:hover, |
| 70 | .cover-upload button:hover { |
| 71 | background-color: #f1e0d0; |
| 72 | } |
| 73 | |
| 74 | .seed-file input, |
| 75 | .cover-upload input { |
| 76 | display: none; |
| 77 | } |
| 78 | |
| 79 | .message { |
| 80 | background-color: #fff3cd; |
| 81 | color: #856404; |
| 82 | padding: 12px; |
| 83 | border-radius: 8px; |
| 84 | margin-bottom: 20px; |
| 85 | border: 1px solid #ffeeba; |
Krishya | c0f7e9b | 2025-04-22 15:28:28 +0800 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | .upload-button { |
22301009 | 4952a0f | 2025-06-07 18:58:16 +0800 | [diff] [blame^] | 89 | text-align: center; |
Krishya | f1d0ea8 | 2025-05-03 17:01:58 +0800 | [diff] [blame] | 90 | } |
| 91 | |
22301009 | 4952a0f | 2025-06-07 18:58:16 +0800 | [diff] [blame^] | 92 | .upload-button button { |
| 93 | background-color: #5F4437; |
| 94 | color: #fff; |
| 95 | padding: 12px 32px; |
| 96 | border: none; |
| 97 | border-radius: 8px; |
| 98 | font-size: 16px; |
Krishya | f1d0ea8 | 2025-05-03 17:01:58 +0800 | [diff] [blame] | 99 | cursor: pointer; |
22301009 | 4952a0f | 2025-06-07 18:58:16 +0800 | [diff] [blame^] | 100 | transition: background-color 0.2s ease; |
| 101 | } |
| 102 | |
| 103 | .upload-button button:hover { |
| 104 | background-color: #472f23; |
| 105 | } |
| 106 | |
| 107 | .upload-button button:disabled { |
| 108 | background-color: #9c8c84; |
| 109 | cursor: not-allowed; |
| 110 | } |
| 111 | |
| 112 | img { |
| 113 | border-radius: 8px; |
| 114 | border: 1px solid #ccc; |
| 115 | max-width: 100%; |
| 116 | max-height: 200px; |
| 117 | object-fit: contain; |
| 118 | } |