1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- body {
- font-family: Arial;
- margin: 0;
- }
- .wrapper {
- display: grid;
- grid-template-areas:
- "header header"
- "tree settings"
- "tree graphs";
- grid-template-columns: 400px auto;
- grid-template-rows: auto 50px auto;
- width: 100%;
- grid-gap: 30px;
- }
- .main-head {
- grid-area: header;
- padding: 60px;
- text-align: center;
- background: #1abc9c;
- color: white;
- font-size: 48pt;
- }
- #tree {
- grid-area: tree;
- clear: both;
- margin-left: 10px;
- }
- #tree li {
- width: 100%;
- }
- #tree li.spacer {
- margin-top: 20px;
- }
- #tree li.spacer > label .channel {
- font-weight: bold;
- }
- #tree label .channel {
- width: 100%;
- }
- ul {
- list-style-type: none;
- padding-left: 10px;
- border-top: dotted 1px grey;
- border-left: solid 1px grey;
- }
- #tree .count {
- float: right;
- }
- #tree .checkbox {
- float: right;
- clear: right;
- }
- #graphs {
- grid-area: graphs;
- display: flex;
- flex-wrap: wrap;
- align-content: flex-start;
- align-items: stretch;
- margin-right: 10px;
- }
- .demo-container {
- box-sizing: border-box;
- min-width: 850px;
- min-height: 400px;
- max-width: 100vw;
- max-height: 100vh;
- padding: 20px 15px 15px 15px;
- margin: 15px auto 30px auto;
- border: 1px solid #ddd;
- background: #fff;
- background: linear-gradient(#f6f6f6 0, #fff 50px);
- box-shadow: 0 3px 10px rgba(0,0,0,0.15);
- user-select: none;
- flex-grow: 1;
- }
- .demo-placeholder {
- width: 100%;
- height: 100%;
- font-size: 14px;
- }
- #settings {
- grid-area: settings;
- margin-right: 10px;
- }
|