.publish-page { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
justify-content: center; | |
padding: 20px; | |
background-color: #f9f9f9; | |
min-height: 100vh; | |
} | |
.page-title { | |
font-size: 2rem; | |
margin-bottom: 20px; | |
color: #333; | |
} | |
.publish-form { | |
width: 100%; | |
max-width: 500px; | |
background: #fff; | |
padding: 20px; | |
border-radius: 8px; | |
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | |
} | |
.form-row { | |
display: flex; | |
flex-direction: column; | |
margin-bottom: 15px; | |
} | |
label { | |
margin-bottom: 5px; | |
font-weight: bold; | |
color: #555; | |
} | |
input, select { | |
padding: 10px; | |
font-size: 1rem; | |
border: 1px solid #ccc; | |
border-radius: 4px; | |
} | |
input:focus, select:focus { | |
outline: none; | |
border-color: #007bff; | |
box-shadow: 0 0 3px rgba(0, 123, 255, 0.5); | |
} | |
.submit-row { | |
display: flex; | |
justify-content: center; | |
} | |
.submit-button { | |
padding: 10px 20px; | |
font-size: 1rem; | |
color: #fff; | |
background-color: #007bff; | |
border: none; | |
border-radius: 4px; | |
cursor: pointer; | |
transition: background-color 0.3s; | |
} | |
.submit-button:hover { | |
background-color: #0056b3; | |
} |