wordllama / style.css
yasserrmd's picture
Create style.css
851e96c verified
raw
history blame contribute delete
No virus
907 Bytes
/* style.css */
body {
background-color: #f8f9fa; /* Light gray background */
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.gradio-container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
border: 1px solid #dee2e6;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1, h2, h3 {
color: #343a40;
text-align: center;
}
.gr-button {
background-color: #007bff !important;
color: #ffffff !important;
border: none !important;
padding: 10px 20px !important;
border-radius: 4px !important;
font-size: 16px !important;
}
.gr-button:hover {
background-color: #0056b3 !important;
}
.gr-input, .gr-textbox {
border: 1px solid #ced4da !important;
border-radius: 4px !important;
padding: 10px !important;
}
.gr-textbox textarea {
min-height: 100px !important;
}