Files
2026-06-11 18:47:38 +09:00

380 lines
6.2 KiB
CSS

/* 설문 작성/수정 폼 스타일 */
.survey-form-container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
}
.form-header {
background: linear-gradient(135deg, #AA20FF 0%, #8A1ACC 100%);
color: white;
padding: 30px;
border-radius: 15px;
margin-bottom: 30px;
text-align: center;
}
.form-header h1 {
margin: 0 0 10px 0;
font-size: 2.2em;
}
.form-tabs {
display: flex;
background: white;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
margin-bottom: 20px;
overflow: hidden;
}
.form-tab {
flex: 1;
padding: 15px 20px;
background: #fff;
border: none;
cursor: pointer;
font-size: 1em;
font-weight: 600;
transition: all 0.3s ease;
position: relative;
}
.form-tab.active {
background: #AA20FF;
color: white;
}
.form-tab:not(.active):hover {
background: #e9ecef;
}
.tab-content {
display: none;
background: white;
border-radius: 15px;
padding: 30px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
margin-bottom: 20px;
}
.tab-content.active {
display: block;
}
.form-group {
margin-bottom: 25px;
}
.form-label {
display: block;
font-weight: 600;
color: #333;
margin-bottom: 8px;
font-size: 1em;
}
.form-label.required::after {
content: ' *';
color: #e74c3c;
}
.form-input,
.form-textarea,
.form-select {
width: 100%;
padding: 12px 15px;
border: 2px solid #e0e0e0;
border-radius: 8px;
font-size: 1em;
transition: all 0.3s ease;
background: #fafafa;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
outline: none;
border-color: #AA20FF;
background: white;
box-shadow: 0 0 0 3px rgba(170, 32, 255, 0.1);
}
.form-textarea {
min-height: 100px;
resize: vertical;
}
.form-row {
display: flex;
gap: 20px;
}
.form-col {
flex: 1;
}
.checkbox-group {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.checkbox-item {
display: flex;
align-items: center;
gap: 8px;
}
.checkbox-item input[type="checkbox"] {
transform: scale(1.2);
accent-color: #AA20FF;
}
.color-picker {
width: 60px;
height: 40px;
border: none;
border-radius: 8px;
cursor: pointer;
}
/* 템플릿 선택 섹션 */
.template-section {
background: #fff;
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
}
.template-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
margin-top: 15px;
}
.template-card {
background: white;
padding: 20px;
border-radius: 10px;
border: 2px solid #e0e0e0;
cursor: pointer;
transition: all 0.3s ease;
}
.template-card:hover {
border-color: #AA20FF;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.template-card.selected {
border-color: #AA20FF;
background: rgba(170, 32, 255, 0.05);
}
/* 질문 관리 섹션 */
.questions-container {
margin-top: 20px;
}
.question-item {
background: #fff;
border: 2px solid #e0e0e0;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
position: relative;
}
.question-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}
.question-number {
background: #AA20FF;
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
margin-right: 15px;
}
.question-controls {
display: flex;
gap: 10px;
}
.btn-sm {
padding: 5px 10px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 0.8em;
transition: all 0.3s ease;
}
.btn-danger {
background: #dc3545;
color: white;
}
.btn-secondary {
background: #6c757d;
color: white;
}
.btn-sm:hover {
transform: translateY(-1px);
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.question-type-select {
margin-bottom: 15px;
}
.options-container {
margin-top: 15px;
}
.option-item {
display: flex;
gap: 10px;
align-items: center;
margin-bottom: 10px;
}
.option-input {
flex: 1;
padding: 8px 12px;
border: 1px solid #ddd;
border-radius: 5px;
}
.add-option-btn {
background: #28a745;
color: white;
border: none;
padding: 8px 15px;
border-radius: 5px;
cursor: pointer;
font-size: 0.9em;
}
.add-question-btn {
width: 100%;
padding: 15px;
background: #AA20FF;
color: white;
border: none;
border-radius: 10px;
font-size: 1.1em;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
margin-bottom: 20px;
}
.add-question-btn:hover {
background: #8A1ACC;
transform: translateY(-2px);
}
/* 폼 액션 버튼 */
.form-actions {
display: flex;
gap: 15px;
justify-content: center;
padding: 20px;
background: white;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.btn {
padding: 12px 30px;
border: none;
border-radius: 8px;
font-size: 1em;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
text-align: center;
}
.btn-primary {
background: #AA20FF;
color: white;
}
.btn-success {
background: #28a745;
color: white;
}
.btn-secondary {
background: #6c757d;
color: white;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.help-text {
font-size: 0.9em;
color: #666;
margin-top: 5px;
line-height: 1.4;
}
/* 셀렉트 박스 높이 수정 */
select,
.form-select,
.question-type-select {
height: 43px !important;
line-height: 41px !important;
padding: 8px 12px !important;
vertical-align: middle !important;
}
/* 반응형 */
@media (max-width: 768px) {
.survey-form-container {
padding: 10px;
}
.form-row {
flex-direction: column;
}
.form-tabs {
flex-direction: column;
}
.template-grid {
grid-template-columns: 1fr;
}
.form-actions {
flex-direction: column;
}
.question-header {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
}