create-seed-detail
Change-Id: I7dcce81a7510b6fa97781d3ce509a8dc2ac229d4
diff --git a/src/pages/PublishSeed/PublishSeed.css b/src/pages/PublishSeed/PublishSeed.css
index e69de29..61b1405 100644
--- a/src/pages/PublishSeed/PublishSeed.css
+++ b/src/pages/PublishSeed/PublishSeed.css
@@ -0,0 +1,145 @@
+.publish-seed-container {
+ background-color: #5c3f31;
+ color: white;
+ padding: 20px;
+ border-radius: 12px;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ h2 {
+ text-align: center;
+ font-size: 1.8rem;
+ margin-bottom: 20px;
+ color: #fff;
+ }
+
+ .message {
+ text-align: center;
+ margin-bottom: 20px;
+ color: #ff6f61;
+ font-weight: bold;
+ }
+
+ .form-group {
+ margin-bottom: 20px;
+ }
+
+ label {
+ font-size: 1rem;
+ margin-bottom: 8px;
+ display: block;
+ }
+
+ input[type="text"],
+ textarea,
+ select,
+ input[type="url"],
+ input[type="file"] {
+ width: 100%;
+ padding: 8px 12px;
+ border-radius: 6px;
+ border: 1px solid #ddd;
+ background-color: #f9f9f9;
+ color: #333;
+ font-size: 1rem;
+ }
+
+ textarea {
+ height: 100px;
+ resize: none;
+ }
+
+ input[type="file"] {
+ padding: 6px;
+ }
+
+ input[type="url"] {
+ padding: 8px 12px;
+ }
+
+ input[type="text"]:focus,
+ textarea:focus,
+ select:focus,
+ input[type="url"]:focus,
+ input[type="file"]:focus {
+ outline: none;
+ border-color: #b38867;
+ }
+
+ button[type="submit"] {
+ padding: 12px 20px;
+ border: none;
+ background-color: #007bff;
+ color: white;
+ font-size: 1rem;
+ border-radius: 6px;
+ cursor: pointer;
+ width: 100%;
+ transition: background-color 0.2s ease;
+ }
+
+ button[type="submit"]:disabled {
+ background-color: #d6d6d6;
+ cursor: not-allowed;
+ }
+
+ button[type="submit"]:hover {
+ background-color: #0056b3;
+ }
+
+ input[type="text"],
+ input[type="url"],
+ select {
+ margin-bottom: 10px;
+ }
+
+ input[type="file"] {
+ margin-bottom: 10px;
+ }
+
+ .publish-seed-container .form-group:last-child {
+ margin-bottom: 0;
+ }
+
+ .publish-seed-container .form-group label {
+ color: #ddd;
+ font-size: 1rem;
+ }
+
+ .publish-seed-container .form-group input,
+ .publish-seed-container .form-group select,
+ .publish-seed-container .form-group textarea {
+ background-color: #4e3b30;
+ color: white;
+ }
+
+ .publish-seed-container .form-group input:focus,
+ .publish-seed-container .form-group select:focus,
+ .publish-seed-container .form-group textarea:focus {
+ border-color: #b38867;
+ outline: none;
+ }
+
+ input[type="file"] {
+ border: none;
+ background-color: #4e3b30;
+ }
+
+ input[type="file"]:focus {
+ outline: none;
+ }
+
+ .form-group button {
+ background-color: #5c3f31;
+ color: #fff;
+ padding: 12px;
+ font-size: 1rem;
+ border-radius: 8px;
+ cursor: pointer;
+ width: 100%;
+ }
+
+ .form-group button:hover {
+ background-color: #b38867;
+ }
+
\ No newline at end of file