Spaces:
Running
Running
File size: 1,391 Bytes
2c72e40 |
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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
/* Custom styles for Web Scraper API */
/* Code blocks formatting */
pre {
background-color: #1e1e1e;
color: #d4d4d4;
border-radius: 5px;
padding: 15px;
overflow-x: auto;
}
/* Result containers */
.result-pre {
max-height: 500px;
overflow-y: auto;
}
/* Sticky footer */
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 60px; /* Margin bottom by footer height */
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px; /* Set the fixed height of the footer here */
line-height: 60px; /* Vertically center the text there */
}
/* Custom accordion styling */
.accordion-button {
background-color: #2c2c2c !important;
}
.accordion-button:not(.collapsed) {
background-color: #3c3c3c !important;
color: white;
}
.accordion-button:focus {
box-shadow: none;
}
/* Custom spinner colors */
.spinner-border {
color: #17a2b8 !important;
}
/* Custom button styling */
.btn-primary {
background-color: #17a2b8;
border-color: #17a2b8;
}
.btn-primary:hover {
background-color: #138496;
border-color: #117a8b;
}
/* Icons in buttons and headers */
[data-feather] {
vertical-align: text-bottom;
margin-right: 0.25rem;
}
/* Custom card styling */
.card {
border-color: #444;
}
.card-header {
background-color: #2c2c2c;
border-bottom-color: #444;
}
|