vk3cpu/magloop.css

156 wiersze
3.3 KiB
CSS
Czysty Zwykły widok Historia

2020-10-17 04:04:13 +00:00
body {
background: rgb(201, 201, 201);
2020-10-17 04:04:13 +00:00
margin: 0px;
}
2020-10-17 04:04:13 +00:00
header {
background: black;
color: white;
font-family: 'Courier New', Courier, monospace;
font-size: smaller;
2020-10-17 04:04:13 +00:00
text-align: center;
}
2020-10-17 13:00:08 +00:00
2020-10-20 01:19:12 +00:00
canvas.chartCanvasClass {
background: rgb(255, 255, 255);
2020-10-21 04:10:02 +00:00
margin: 0;
2020-10-19 10:01:28 +00:00
border: 1px solid rgb(0, 0, 0);
2020-10-21 03:39:46 +00:00
display: block;
box-sizing: border-box;
2020-10-17 04:04:13 +00:00
}
2020-10-17 13:00:08 +00:00
2020-10-21 03:39:46 +00:00
section div.slider_container {
width: 100%;
height: 100%;
background: rgb(255, 255, 255);
border: 1px solid rgb(0, 0, 0);
margin: 0px;
padding: 0px;
/*display: inline-block;*/
box-sizing: border-box;
display: flex;
flex-direction: column;
2020-10-17 04:04:13 +00:00
}
2020-10-20 01:19:12 +00:00
2020-10-21 03:39:46 +00:00
section div.antennaFront-container {
width: 100%;
height: 100%;
display: block;
box-sizing: border-box;
margin: 0px;
padding: 0px;
2020-10-21 03:39:46 +00:00
background: white;
2020-10-21 12:18:20 +00:00
border: 1px solid rgb(0, 0, 0);
2020-10-21 03:39:46 +00:00
position: absolute;
2020-10-17 04:04:13 +00:00
}
2020-10-21 03:39:46 +00:00
section div.sliders {
2020-10-20 01:19:12 +00:00
background:rgb(255, 255, 255);
display: inline-block;
2020-10-19 12:33:01 +00:00
font-size: small;
margin: 0px;
padding: 0px;
2020-10-21 03:39:46 +00:00
width: auto;
height: auto;
2020-10-17 04:04:13 +00:00
}
2020-10-21 03:39:46 +00:00
div label {
2020-10-18 23:42:27 +00:00
background:white;
2020-10-17 04:04:13 +00:00
display: inline-block;
2020-10-19 12:33:01 +00:00
width: 12%;
font-size: small;
2020-10-17 04:04:13 +00:00
text-align: right;
}
2020-10-21 03:39:46 +00:00
div input {
2020-10-17 04:04:13 +00:00
background:lightsalmon;
display: inline-block;
2020-10-21 05:22:43 +00:00
width: 60%;
2020-10-17 04:04:13 +00:00
}
2020-10-21 03:39:46 +00:00
section div.antennaSide-container {
width: 100%;
height: 100%;
display: block;
box-sizing: border-box;
margin: 0;
padding: 0;
2020-10-17 04:04:13 +00:00
background: white;
2020-10-21 12:18:20 +00:00
border: 1px solid rgb(0, 0, 0);
2020-10-21 03:39:46 +00:00
position: absolute;
2020-10-17 04:04:13 +00:00
}
2020-10-21 03:39:46 +00:00
@media (orientation: portrait) {
section.gridLayoutClass {
display: grid;
2020-10-21 05:22:43 +00:00
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(3, 1fr) 150px 120px;
2020-10-21 03:39:46 +00:00
justify-items: stretch;
}
section div.chart-container {
grid-column-start: 1;
2020-10-21 05:22:43 +00:00
grid-column-end: 3;
2020-10-21 03:39:46 +00:00
grid-row-start: 1;
2020-10-21 05:22:43 +00:00
grid-row-end: 4;
2020-10-21 12:18:20 +00:00
height: 85vh;
2020-10-21 05:22:43 +00:00
width: 100vw;
2020-10-21 03:39:46 +00:00
}
2020-10-21 05:22:43 +00:00
section div.antennaFront-container {
grid-column-start: 1;
grid-column-end: 2;
grid-row-start: 4;
grid-row-end: 5;
}
section div.antennaSide-container {
grid-column-start: 2;
grid-column-end: 3;
grid-row-start: 4;
grid-row-end: 5;
}
2020-10-21 03:39:46 +00:00
section div.slider_container {
grid-column-start: 1;
2020-10-21 05:22:43 +00:00
grid-column-end: 3;
grid-row-start: 5;
grid-row-end: 6;
2020-10-21 03:39:46 +00:00
}
2020-10-21 05:22:43 +00:00
}
@media (orientation: landscape) {
2020-10-21 12:18:20 +00:00
section.gridLayoutClass {
2020-10-21 05:22:43 +00:00
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(2, 1fr) 150px;
justify-items: stretch;
2020-10-21 05:22:43 +00:00
}
section div.chart-container {
grid-column-start: 1;
grid-column-end: 5;
grid-row-start: 1;
grid-row-end: 3;
2020-10-21 12:18:20 +00:00
height: 85vh;
2020-10-21 05:22:43 +00:00
width: 100vw;
}
section div.slider_container {
2020-10-21 03:39:46 +00:00
grid-column-start: 1;
grid-column-end: 3;
2020-10-21 05:22:43 +00:00
grid-row-start: 3;
grid-row-end: 4;
2020-10-21 03:39:46 +00:00
}
2020-10-21 05:22:43 +00:00
section div.antennaFront-container {
2020-10-21 03:39:46 +00:00
grid-column-start: 3;
2020-10-21 05:22:43 +00:00
grid-column-end: 4;
grid-row-start: 3;
grid-row-end: 4;
}
section div.antennaSide-container {
grid-column-start: 4;
grid-column-end: 5;
grid-row-start: 3;
grid-row-end: 4;
2020-10-21 03:39:46 +00:00
}
2020-10-21 12:18:20 +00:00
}