Spaces:
Sleeping
Sleeping
File size: 3,891 Bytes
5450dc1 |
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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
.container {
/* display: flex; */
width: 100%;
/* min-height: 90vh; */
font-family: 'Arial', 'sans-serif';
}
.navbar {
width: 200px;
height: 100%;
border-right: 5px solid #34495e;
display: flex;
flex-direction: column;
padding: 0 10px;
/* justify-content: center; */
justify-content: flex-start;
background-color: #2c3e50;
}
.nav-header {
margin-top: 1rem;
margin-bottom: 2rem;
}
.nav-header h1 {
color: #fcdf1e;
}
.nav-buttons {
display: flex;
flex-direction: column;
gap: 0.5rem;
padding: 0 5px;
}
.nav-btn {
text-align: left;
padding: 10px 15px;
width: 100%;
background-color: #34495e;
color: #ecf0f1;
border: none;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: bold;
}
.nav-btn:hover {
background-color: #3d566e;
color: #fcdf1e;
}
.nav-btn.active {
background-color: #f39c12;
color: #2c3e50;
}
.main-content {
flex-grow: 1;
padding: 1rem;
display: flex;
flex-direction: column;
}
/* Section layout styling */
.content-section {
border: 2px solid #ccc;
padding: 1rem !important;
margin-bottom: 1rem;
background-color: #f9f9f9;
border-radius: 8px;
height: auto !important;
min-height: 80vh;
overflow: visible !important;
/* padding: 20px !important; */
}
.content-section .header h1,
.content-section .header * h1 {
color: #3d3d3c !important;
font-size: 1.5rem;
font-weight: bold;
border-bottom: 2px solid #ccc;
padding-bottom: 0.5rem;
margin-bottom: 1rem;
}
.content {
border: 2px solid #ccc;
padding: 0.5rem;
height: 80vh; /* Fixed height */
margin-bottom: 1rem;
background-color: #f9f9f9;
border-radius: 8px;
overflow-y: auto;
}
p.desc {
color: #3d3d3c !important;
/* color: white; */
}
/* dataset display */
/* Dataset Container */
.datasets-container {
display: flex;
flex-direction: column;
gap: 30px;
width: 100%;
}
/* Dataset Layout */
.dataframe-layout {
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
/* Title Styling */
.subtitle {
font-size: 1.2rem !important;
font-weight: 600;
color: #2c3e50;
margin: 0 !important;
padding: 0 !important;
}
/* Download Button */
.download-button {
background-color: #3498db !important;
color: white !important;
border: none !important;
padding: 8px 16px !important;
border-radius: 4px !important;
font-size: 0.9rem !important;
}
.download-button:hover {
background-color: #2980b9 !important;
}
/* Table Styling */
.dataframe-layout table {
width: 100%;
border-collapse: collapse;
margin-top: 15px;
}
.dataframe-layout th {
background-color: #34495e;
color: white;
padding: 10px;
text-align: left;
}
.dataframe-layout td {
padding: 8px 10px;
border-bottom: 1px solid #dddddd;
}
.dataframe-layout tr:nth-child(even) {
background-color: #85a285;
}
.dataframe-layout tr:nth-child(odd) {
background-color: #466c45;
}
/* EDA */
.subheader{
font-weight: bold;
font-size: 24px;
color: #3d3d3c;
margin-bottom: 10px;
}
/* Recomendation system */
#system .header-title {
color: white;
font-size: 2rem;
}
#system {
background-color: #3d3d3c;
}
.dropdown, .text-input{
height: 100%;
flex: 1 1 auto;
/* background-color: #dddddd; */
border: none;
}
.text-input label.gr-label,
.dropdown label.gr-label {
color: #3d3d3c !important;
}
/* .results-column h2{
color: black;
} */
|