vk3cpu/magloop.css

229 wiersze
4.8 KiB
CSS

2020-10-17 04:04:13 +00:00
body {
background: rgb(226, 226, 226);
2020-10-17 04:04:13 +00:00
margin: 0px;
}
2020-10-17 04:04:13 +00:00
header {
background: rgb(226, 226, 226);
color: black;
2020-10-17 04:04:13 +00:00
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
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);
margin: 0px;
padding: 5px;
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 {
background:white;
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
}
section div.radios {
2023-04-27 13:52:56 +00:00
width: auto;
height: auto;
2021-08-28 04:06:36 +00:00
background: rgb(255, 255, 255);
margin: 0px;
padding: 0px;
/*display: inline-block;*/
box-sizing: border-box;
display: flex;
flex-direction: row;
}
2023-04-27 13:52:56 +00:00
section div.sliders label {
2020-10-18 23:42:27 +00:00
background:white;
2020-10-17 04:04:13 +00:00
display: inline-block;
2023-04-27 13:52:56 +00:00
width: 8%;
2020-10-19 12:33:01 +00:00
font-size: small;
2020-10-17 04:04:13 +00:00
text-align: right;
}
2023-04-27 13:52:56 +00:00
section div.sliders input {
background:lightgrey;
display: inline-block;
width: 90%;
}
2020-10-21 03:39:46 +00:00
div input {
2021-08-28 04:08:30 +00:00
background:lightgrey;
2020-10-17 04:04:13 +00:00
display: inline-block;
2023-04-27 13:52:56 +00:00
width: 7%;
2020-10-17 04:04:13 +00:00
}
2020-10-21 03:39:46 +00:00
section div.antennaSide-container {
background: white;
2020-10-21 03:39:46 +00:00
width: 100%;
height: 100%;
display: block;
box-sizing: border-box;
margin: 0;
padding: 0;
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 150px 300px;
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;
height: 70vh;
width: 100%;
2020-10-24 09:45:34 +00:00
box-sizing: border-box;
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;
}
2021-08-28 04:06:36 +00:00
2020-10-21 05:22:43 +00:00
section div.antennaSide-container {
grid-column-start: 2;
grid-column-end: 3;
grid-row-start: 4;
grid-row-end: 5;
}
2021-08-28 04:06:36 +00:00
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-11-19 08:57:03 +00:00
section div.notes {
grid-column-start: 1;
grid-column-end: 3;
grid-row-start: 6;
grid-row-end: 7;
}
}
2020-10-21 05:22:43 +00:00
@media (orientation: landscape) {
2020-10-23 07:16:48 +00:00
section.gridLayoutClass {
2020-10-21 05:22:43 +00:00
display: grid;
grid-template-columns: repeat(4, 1fr);
2023-04-27 13:52:56 +00:00
grid-template-rows: repeat(2, 1fr) 190px 300px;
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;
height: 80vh;
width: 100%;
2020-10-24 09:45:34 +00:00
box-sizing: border-box;
2020-10-21 05:22:43 +00:00
}
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
}
2021-08-28 04:06:36 +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;
}
2021-08-28 04:06:36 +00:00
2020-10-21 05:22:43 +00:00
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-11-19 08:57:03 +00:00
section div.notes {
grid-column-start: 1;
grid-column-end: 5;
grid-row-start: 4;
grid-row-end: 5;
}
2020-10-21 12:18:20 +00:00
}
/*
2020-10-23 07:16:48 +00:00
@media print (orientation: landscape) {
section.gridLayoutClass {
display: grid;
grid-template-columns: repeat(4, 300px);
grid-template-rows: repeat(1, 300px) 150px;
justify-items: stretch;
}
section div.chart-container {
min-height: 100%;
max-width: 100%;
max-height: 100%;
height: auto!important;
width: auto!important;
2020-10-23 07:16:48 +00:00
}
}
@media print (orientation: portrait) {
section.gridLayoutClass {
display: grid;
grid-template-columns: repeat(2, 200px);
2020-10-23 07:16:48 +00:00
grid-template-rows: repeat(2, 300px) 150px 120px;
justify-items: stretch;
}
section div.chart-container {
min-height: 100%;
max-width: 100%;
max-height: 100%;
height: auto!important;
width: auto!important;
2020-10-23 07:16:48 +00:00
}
}
*/