Spaces:
Sleeping
Sleeping
File size: 600 Bytes
d3543df |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
/* Centering content and making it visually appealing */
body {
font-family: "Arial", sans-serif;
background-color: #f5f5f5;
}
h1, h2 {
color: #1E88E5;
}
textarea, input, select {
border-radius: 8px !important;
border: 1px solid #d9d9d9;
padding: 10px;
}
.stButton button {
background-color: #1E88E5;
color: white;
border: none;
border-radius: 8px;
padding: 10px 20px;
font-weight: bold;
}
.stButton button:hover {
background-color: #1565C0;
cursor: pointer;
}
div[role="radiogroup"] > label {
color: #1E88E5;
font-weight: bold;
}
|