Update app.py
Browse files
app.py
CHANGED
@@ -623,20 +623,25 @@ def create_interface():
|
|
623 |
margin: 0;
|
624 |
}
|
625 |
/* 로고 이미지 스타일 */
|
626 |
-
|
|
|
|
|
|
|
627 |
text-align: center;
|
628 |
-
margin-top: 20px;
|
629 |
}
|
630 |
-
|
631 |
-
|
632 |
-
width: 150px;
|
633 |
-
|
|
|
|
|
634 |
}
|
635 |
|
636 |
.main-image-container {
|
|
|
637 |
text-align: center;
|
638 |
margin-top: 20px;
|
639 |
-
margin-bottom:
|
640 |
}
|
641 |
|
642 |
#main-image {
|
@@ -675,6 +680,19 @@ def create_interface():
|
|
675 |
)
|
676 |
name_submit_btn = gr.Button("굿판 시작하기", variant="primary")
|
677 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
678 |
# 2단계: 세계관 설명
|
679 |
story_section = gr.Column(visible=False)
|
680 |
with story_section:
|
|
|
623 |
margin: 0;
|
624 |
}
|
625 |
/* 로고 이미지 스타일 */
|
626 |
+
#logo-container {
|
627 |
+
background: none; /* Remove any background color */
|
628 |
+
padding: 0; /* Remove padding around the logo */
|
629 |
+
margin: 0 auto; /* Center the logo with no extra space */
|
630 |
text-align: center;
|
|
|
631 |
}
|
632 |
+
|
633 |
+
#logo-image {
|
634 |
+
width: 150px; /* Adjust as necessary */
|
635 |
+
height: auto;
|
636 |
+
display: block;
|
637 |
+
margin: 0 auto; /* Ensure the image is centered */
|
638 |
}
|
639 |
|
640 |
.main-image-container {
|
641 |
+
background: none; /* Remove any background color */
|
642 |
text-align: center;
|
643 |
margin-top: 20px;
|
644 |
+
margin-bottom: 80px;
|
645 |
}
|
646 |
|
647 |
#main-image {
|
|
|
680 |
)
|
681 |
name_submit_btn = gr.Button("굿판 시작하기", variant="primary")
|
682 |
|
683 |
+
gr.Markdown(
|
684 |
+
"""
|
685 |
+
<p style="color: #374151; text-align: center; font-size: 0.9em;">
|
686 |
+
‘디지털 굿판’은 부산문화재단의 지원으로 루츠리딤이 제작한 다원예술 프로젝트입니다.<br>
|
687 |
+
본 프로젝트에서 기록된 정보 중<br>
|
688 |
+
‘송신’ 단계의 ‘소원전하기’를 제외한 모든 과정의 정보는 (목소리, 감상 등)<br>
|
689 |
+
별도로 저장되지 않으며 AI 학습이나 외부 공유에 사용되지 않습니다.
|
690 |
+
</p>
|
691 |
+
""",
|
692 |
+
visible=True
|
693 |
+
)
|
694 |
+
|
695 |
+
|
696 |
# 2단계: 세계관 설명
|
697 |
story_section = gr.Column(visible=False)
|
698 |
with story_section:
|