|
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; |
|
|
|
min-height: 3vh; |
|
} |
|
|
|
.linkedin-icon img { |
|
width: 50px; |
|
|
|
height: auto; |
|
|
|
} |
|
|
|
|
|
.bunka-logo { |
|
|
|
width: 200px; |
|
|
|
height: fit-content; |
|
|
|
margin-top: 1em; |
|
} |
|
|
|
.topic-title { |
|
word-spacing: 10px; |
|
|
|
} |
|
|
|
|
|
|
|
.linkedin-icon { |
|
position: absolute; |
|
top: 10px; |
|
right: 10px; |
|
|
|
} |
|
|
|
.linkedin-icon img { |
|
width: 50px; |
|
|
|
height: auto; |
|
|
|
} |
|
|
|
.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; |
|
} |
|
|
|
|
|
h2 { |
|
font-size: 50px; |
|
|
|
margin: 10px 0; |
|
color: rgb(24, 113, 222); |
|
align-items: center; |
|
} |
|
|
|
|
|
.text-container p { |
|
margin: 10px; |
|
padding: 2px 0; |
|
|
|
} |
|
|
|
|
|
|
|
circle { |
|
cursor: pointer; |
|
transition: fill 0.3s; |
|
} |
|
|
|
|
|
circle.clicked { |
|
fill: pink; |
|
} |
|
|
|
|
|
path.contour { |
|
fill: none; |
|
stroke: black; |
|
stroke-width: 1; |
|
} |
|
|
|
.box { |
|
border: 3px solid #ccc; |
|
padding: 10px; |
|
background-color: white; |
|
cursor: pointer; |
|
margin: 30px; |
|
|
|
} |
|
|
|
.box.clicked { |
|
background-color: lightgray; |
|
} |
|
|
|
|
|
.topic-container { |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
|
|
|
|
.topic-title { |
|
margin: 0; |
|
} |
|
|
|
|
|
.topic-content { |
|
padding-top: 40px; |
|
|
|
} |
|
|
|
|
|
.content-container { |
|
display: flex; |
|
} |
|
|
|
|
|
.topic-title { |
|
margin: 0; |
|
} |
|
|
|
.csv-upload-container { |
|
margin-top: 50px; |
|
flex: 1; |
|
align-items: left; |
|
margin-left: 0; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
.csv-upload-input { |
|
margin-top: 50px; |
|
flex: 1; |
|
align-items: left; |
|
margin-left: 0; |
|
|
|
|
|
|
|
} |
|
|
|
.topic-box { |
|
|
|
overflow-y: auto; |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
|
|
.topic-box h2 { |
|
position: sticky; |
|
top: 0; |
|
background-color: white; |
|
align-self: center; |
|
|
|
} |
|
|
|
.content-container { |
|
|
|
flex: 1; |
|
overflow-y: auto; |
|
} |