fasttext-demo / style.css
guychuk's picture
Create style.css
afbcfcf verified
raw
history blame contribute delete
798 Bytes
/* style.css */
body {
background-color: #f5f5f5;
font-family: Arial, sans-serif;
}
#title {
color: #333;
text-align: center;
font-size: 2em;
margin-top: 20px;
}
#description {
color: #555;
text-align: center;
font-size: 1.2em;
margin-bottom: 20px;
}
.gradio-container {
border-radius: 10px;
border: 1px solid #ccc;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
padding: 20px;
background-color: #fff;
}
.gradio-button {
background-color: #4CAF50;
color: white;
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 5px;
}
.gradio-button:hover {
background-color: #45a049;
}