Spaces:
Build error
Build error
| /* General Styling */ | |
| body { | |
| font-family: 'Serif', sans-serif ; | |
| background-color: #e9eef3 ; | |
| color: #161616 ; | |
| } | |
| /* Button Styling */ | |
| .stButton>button { | |
| background-color: #6ff383 ; | |
| color: #fff ; | |
| border-radius: 8px ; | |
| font-weight: bold ; | |
| padding: 10px 20px ; | |
| border: none ; | |
| cursor: pointer ; | |
| transition: background-color 0.3s ease ; | |
| } | |
| .stButton>button:hover { | |
| background-color: #5fc971 ; | |
| } | |
| /* Main Title Styling */ | |
| .main-title { | |
| text-align: center ; | |
| font-weight: bold ; | |
| font-size: 36px ; | |
| color: #161616 ; | |
| margin-bottom: 20px ; | |
| } | |
| /* Translated Text Box */ | |
| .translated-text { | |
| font-size: 18px ; | |
| padding: 15px ; | |
| background-color: #f2f3f7 ; | |
| border: 1px solid #ccc ; | |
| border-radius: 8px ; | |
| margin: 10px 0 ; | |
| color: #161616 ; | |
| line-height: 1.6 ; | |
| } | |
| /* Sidebar Styling */ | |
| .stSidebar { | |
| background-color: #ccdbf7 ; | |
| border-right: 1px solid #ddd ; | |
| padding: 20px ; | |
| } | |
| .stSidebar .sidebar-content h1 { | |
| color: #6ff383 ; | |
| font-weight: bold ; | |
| font-size: 24px ; | |
| padding-bottom: 15px ; | |
| } | |
| .stSidebar .sidebar-content select, .stSidebar .sidebar-content input { | |
| border-radius: 6px ; | |
| border: 1px solid #ddd ; | |
| padding: 8px ; | |
| font-size: 16px ; | |
| width: 100% ; | |
| margin-bottom: 10px ; | |
| } | |
| /* File Uploader Styling */ | |
| .stFileUploader { | |
| border: 2px dashed #ddd ; | |
| padding: 10px ; | |
| border-radius: 6px ; | |
| background-color: #f9f9f9 ; | |
| transition: border-color 0.3s ease ; | |
| } | |
| .stFileUploader:hover { | |
| border-color: #6ff383 ; | |
| } | |
| /* Footer Styling */ | |
| footer { | |
| text-align: center ; | |
| font-size: 12px ; | |
| color: #888 ; | |
| margin-top: 20px ; | |
| } |