Update app.py
Browse files
app.py
CHANGED
@@ -687,17 +687,17 @@ css = """
|
|
687 |
}
|
688 |
/* 2) λ°°κ²½μ μμ ν ν¬λͺ
νκ² λ³κ²½ */
|
689 |
body {
|
690 |
-
background: transparent; /*
|
691 |
margin: 0;
|
692 |
padding: 0;
|
693 |
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
694 |
color: #333;
|
695 |
}
|
696 |
-
/*
|
697 |
button, .btn {
|
698 |
-
background:
|
699 |
-
border:
|
700 |
-
color: #333;
|
701 |
padding: 12px 24px;
|
702 |
text-transform: uppercase;
|
703 |
font-weight: bold;
|
@@ -705,29 +705,67 @@ button, .btn {
|
|
705 |
cursor: pointer;
|
706 |
}
|
707 |
button:hover, .btn:hover {
|
708 |
-
background: rgba(
|
709 |
}
|
710 |
-
|
|
|
|
|
711 |
margin: auto;
|
712 |
width: 90%;
|
713 |
-
background:
|
714 |
}
|
715 |
-
#examples_row {
|
716 |
justify-content: center;
|
717 |
-
background: transparent;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
718 |
}
|
|
|
719 |
/* μ±ν
μΈν°νμ΄μ€ μμλ€λ ν¬λͺ
νκ² */
|
720 |
.chatbox, .chatbot, .message {
|
721 |
-
background:
|
722 |
}
|
|
|
723 |
/* μ
λ ₯μ°½ ν¬λͺ
λ μ‘°μ */
|
724 |
-
.multimodal-textbox {
|
725 |
-
background: rgba(255, 255, 255, 0.7) !important;
|
726 |
-
}
|
727 |
-
/* λͺ¨λ 컨ν
μ΄λ μμμ ν¬λͺ
λ μ μ© */
|
728 |
-
.container, .wrap, .box, .panel {
|
729 |
background: rgba(255, 255, 255, 0.5) !important;
|
730 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
731 |
"""
|
732 |
|
733 |
title_html = """
|
|
|
687 |
}
|
688 |
/* 2) λ°°κ²½μ μμ ν ν¬λͺ
νκ² λ³κ²½ */
|
689 |
body {
|
690 |
+
background: transparent; /* μμ ν¬λͺ
λ°°κ²½ */
|
691 |
margin: 0;
|
692 |
padding: 0;
|
693 |
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
694 |
color: #333;
|
695 |
}
|
696 |
+
/* λ²νΌ μμ μμ ν μ κ±°νκ³ ν¬λͺ
νκ² */
|
697 |
button, .btn {
|
698 |
+
background: transparent !important; /* μμ μμ ν μ κ±° */
|
699 |
+
border: 1px solid #ddd; /* κ²½κ³μ λ§ μ΄μ§ μΆκ° */
|
700 |
+
color: #333;
|
701 |
padding: 12px 24px;
|
702 |
text-transform: uppercase;
|
703 |
font-weight: bold;
|
|
|
705 |
cursor: pointer;
|
706 |
}
|
707 |
button:hover, .btn:hover {
|
708 |
+
background: rgba(0, 0, 0, 0.05) !important; /* νΈλ² μ μμ£Ό μ΄μ§ μ΄λ‘κ²λ§ */
|
709 |
}
|
710 |
+
|
711 |
+
/* examples κ΄λ ¨ λͺ¨λ μμ μ κ±° */
|
712 |
+
#examples_container, .examples-container {
|
713 |
margin: auto;
|
714 |
width: 90%;
|
715 |
+
background: transparent !important;
|
716 |
}
|
717 |
+
#examples_row, .examples-row {
|
718 |
justify-content: center;
|
719 |
+
background: transparent !important;
|
720 |
+
}
|
721 |
+
|
722 |
+
/* examples λ²νΌ λ΄λΆμ λͺ¨λ μμ μ κ±° */
|
723 |
+
.gr-samples-table button,
|
724 |
+
.gr-samples-table .gr-button,
|
725 |
+
.gr-samples-table .gr-sample-btn,
|
726 |
+
.gr-examples button,
|
727 |
+
.gr-examples .gr-button,
|
728 |
+
.gr-examples .gr-sample-btn,
|
729 |
+
.examples button,
|
730 |
+
.examples .gr-button,
|
731 |
+
.examples .gr-sample-btn {
|
732 |
+
background: transparent !important;
|
733 |
+
border: 1px solid #ddd;
|
734 |
+
color: #333;
|
735 |
+
}
|
736 |
+
|
737 |
+
/* examples λ²νΌ νΈλ² μμλ μμ μκ² */
|
738 |
+
.gr-samples-table button:hover,
|
739 |
+
.gr-samples-table .gr-button:hover,
|
740 |
+
.gr-samples-table .gr-sample-btn:hover,
|
741 |
+
.gr-examples button:hover,
|
742 |
+
.gr-examples .gr-button:hover,
|
743 |
+
.gr-examples .gr-sample-btn:hover,
|
744 |
+
.examples button:hover,
|
745 |
+
.examples .gr-button:hover,
|
746 |
+
.examples .gr-sample-btn:hover {
|
747 |
+
background: rgba(0, 0, 0, 0.05) !important;
|
748 |
}
|
749 |
+
|
750 |
/* μ±ν
μΈν°νμ΄μ€ μμλ€λ ν¬λͺ
νκ² */
|
751 |
.chatbox, .chatbot, .message {
|
752 |
+
background: transparent !important;
|
753 |
}
|
754 |
+
|
755 |
/* μ
λ ₯μ°½ ν¬λͺ
λ μ‘°μ */
|
756 |
+
.multimodal-textbox, textarea, input {
|
|
|
|
|
|
|
|
|
757 |
background: rgba(255, 255, 255, 0.5) !important;
|
758 |
}
|
759 |
+
|
760 |
+
/* λͺ¨λ 컨ν
μ΄λ μμμ λ°°κ²½μ μ κ±° */
|
761 |
+
.container, .wrap, .box, .panel, .gr-panel {
|
762 |
+
background: transparent !important;
|
763 |
+
}
|
764 |
+
|
765 |
+
/* μμ μΉμ
μ λͺ¨λ μμμμ λ°°κ²½μ μ κ±° */
|
766 |
+
.gr-examples-container, .gr-examples, .gr-sample, .gr-sample-row, .gr-sample-cell {
|
767 |
+
background: transparent !important;
|
768 |
+
}
|
769 |
"""
|
770 |
|
771 |
title_html = """
|