File size: 1,066 Bytes
adcd9ba |
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
.vertical-center {
display: flex;
align-items: center;
}
.logo-image {
min-width: 60px !important;
max-width: 80px !important;
width: 60px !important;
flex-shrink: 0 !important;
}
.big-title h2 {
font-size: 2.5em;
margin: 0;
}
.ask-me p {
font-weight: bold;
font-style: italic;
color: #555;
margin-bottom: 10px;
font-size: 1.5em;
}
button.button_color {
background-color: #366b91 !important;
border-color: #366b91 !important;
}
/* Match title sizes */
.section-title h3 {
font-size: 18px !important;
font-weight: 600 !important;
margin: 0 0 12px 0 !important;
color: #333 !important;
}
/* Make dataframe font consistent with the rest of the interface */
* table,
* table th,
* table td,
* table tbody,
* table thead,
* table tr {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, sans-serif !important;
font-size: 14px !important;
}
.scroll-column {
height: 700px !important;
overflow-y: auto !important;
}
|