Spaces:
Runtime error
Runtime error
File size: 3,573 Bytes
b68f453 |
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 210 211 |
body {
margin: 0;
padding: 0;
}
.json-display {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
min-height: 90vh;
overflow-y: hidden;
}
.top-right {
display: flex;
flex-direction: row;
align-items: center;
/* Center vertically */
min-height: 3vh;
}
.linkedin-icon img {
width: 50px;
/* Adjust the width to your desired size */
height: auto;
/* Maintain aspect ratio */
}
/* Style for the Bunka logo */
.bunka-logo {
/* Set the width and height to make the logo smaller */
width: 200px;
/* Adjust the width as desired */
height: fit-content;
/* Maintain aspect ratio */
margin-top: 1em;
}
.topic-title {
word-spacing: 10px;
/* Adjust the spacing as needed */
}
/* Add or modify the following CSS for the LinkedIn icon */
.linkedin-icon {
position: absolute;
top: 10px;
right: 10px;
/* Adjust the width and height to make the logo smaller */
}
.linkedin-icon img {
width: 50px;
/* Adjust the width to your desired size */
height: auto;
/* Maintain aspect ratio */
}
.scatter-plot-and-text-container {
display: flex;
min-height: 89vh;
}
.scatter-plot-container {
display: flex;
width: 100%;
}
svg {
border: none;
}
.scatter-plot-container svg {
background-color: #9bdbfb;
border: 1px solid #ddd;
cursor: grab;
}
.scatter-plot-container svg .tick text {
font-size: 1.4em;
}
.text-container {
width: 35%;
min-width: 100px;
font-size: 30px;
align-items: center;
justify-content: center;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
/* Style for the title */
h2 {
font-size: 50px;
/* Specify the unit, e.g., 'px' */
margin: 10px 0;
color: rgb(24, 113, 222);
align-items: center;
}
/* Style for the text content within the text container */
.text-container p {
margin: 10px;
padding: 2px 0;
}
/* Style for the scatter plot circles */
circle {
cursor: pointer;
transition: fill 0.3s;
}
/* Style for clicked circles */
circle.clicked {
fill: pink;
}
/* Style for the contour lines */
path.contour {
fill: none;
stroke: black;
stroke-width: 1;
}
.box {
border: 3px solid #ccc;
padding: 10px;
background-color: white;
cursor: pointer;
margin: 30px;
/* Add margin to create space between each box */
}
.box.clicked {
background-color: lightgray;
}
/* Style for the fixed header container */
.topic-container {
display: flex;
flex-direction: column;
}
/* Style for the topic title inside the title box */
.topic-title {
margin: 0;
}
/* Style for the main content box */
.topic-content {
padding-top: 40px;
/* Adjust as needed to provide space for the fixed title */
}
/* Style for the content container */
.content-container {
display: flex;
}
/* Style for the topic title inside the title box */
.topic-title {
margin: 0;
}
.csv-upload-container {
margin-top: 50px;
flex: 1;
align-items: left;
margin-left: 0;
/* Remove margin from the left side */
/* Adjust the margin as needed */
}
.csv-upload-input {
margin-top: 50px;
flex: 1;
align-items: left;
margin-left: 0;
/* Remove margin from the left side */
/* Adjust the margin as needed */
}
.topic-box {
/* Adjust the maximum height as needed */
overflow-y: auto;
display: flex;
flex-direction: column;
}
.topic-box h2 {
position: sticky;
top: 0;
background-color: white;
align-self: center;
/* Set the background color to your desired value */
}
.content-container {
/* Adjust these styles as needed */
flex: 1;
overflow-y: auto;
} |