CoolFace
Apppublic

charlesdedampierre/citeo-plastic

sourceHugging Faceupdated 3y agoView on Hugging Face
1likes
App.css58 linesDownload Raw Back to src
1.App {2  text-align: center;3}4 5.App-logo {6  height: 40vmin;7  pointer-events: none;8}9 10@media (prefers-reduced-motion: no-preference) {11  .App-logo {12    animation: App-logo-spin infinite 20s linear;13  }14}15 16.App-header {17  background-color: #282c34;18  min-height: 100vh;19  display: flex;20  flex-direction: column;21  align-items: center;22  justify-content: center;23  font-size: calc(10px + 2vmin);24  color: white;25}26 27.App-link {28  color: #61dafb;29}30 31@keyframes App-logo-spin {32  from {33    transform: rotate(0deg);34  }35 36  to {37    transform: rotate(360deg);38  }39}40 41.scatter-plot-and-text-container {42  display: flex;43  flex-direction: row;44  justify-content: space-between;45}46 47.scatter-plot-container {48  flex: 1;49  /* This makes it flexible and takes remaining space */50  /* Add some margin to push it down slightly */51  /* Add other styling for scatter-plot-container as needed */52}53 54.text-container {55  flex: 1;56  /* This makes it flexible and takes remaining space */57  /* Add other styling for text-container as needed */58}