12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .App {
- text-align: center;
- }
- .App-logo {
- animation: App-logo-spin infinite 20s linear;
- height: 40vmin;
- pointer-events: none;
- }
- .App-header {
- background-color: #282c34;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- font-size: calc(10px + 2vmin);
- color: white;
- }
- .App-link {
- color: #61dafb;
- }
- @keyframes App-logo-spin {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(360deg);
- }
- }
- .GridHeader {
- display: flex;
- justify-content: space-between;
- }
- .Row {
- display: flex;
- justify-content: space-between;
- }
- .GridContent {
- }
- .GridViewport {
- /*max-height: 500px;*/
- /*height: 500px;*/
- overflow: auto;
- }
- .Cell {
- max-width: 200px;
- width: 200px;
- overflow: hidden;
- font-size: 0.8em;
- }
- .Th {
- max-width: 200px;
- width: 200px;
- overflow: hidden;
- font-size: 1.2em;
- font-weight: bold;
- }
- .Row {
- max-height: 50px;
- height: 50px;
- }
|