vk3cpu/magloop.css

69 wiersze
1.2 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;
}
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
section.flexLayoutClass {
display: flex;
flex-direction: column;
2020-10-17 13:00:08 +00:00
}
2020-10-20 01:19:12 +00:00
canvas.chartCanvasClass {
background: rgb(255, 255, 255);
/*width: 100%;*/
2020-10-17 04:04:13 +00:00
margin: auto;
2020-10-19 10:01:28 +00:00
border: 1px solid rgb(0, 0, 0);
2020-10-20 01:19:12 +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-20 01:19:12 +00:00
section.controls {
2020-10-17 04:04:13 +00:00
display: flex;
}
2020-10-20 01:19:12 +00:00
section.controls div.slider_container {
width: 70%;
border: 1px solid rgb(0, 0, 0);
/*display: flex;*/
/*flex-direction: column;*/
2020-10-17 04:04:13 +00:00
display: inline-block;
}
2020-10-20 01:19:12 +00:00
section.controls canvas.antennaClass {
background: white;
width: 30%;
margin: auto;
border: 1px solid rgb(0, 0, 0);
/*display: block;*/
/*box-sizing: border-box;*/
2020-10-17 04:04:13 +00:00
}
2020-10-20 01:19:12 +00:00
section.controls div.sliders {
background:rgb(255, 255, 255);
2020-10-19 12:33:01 +00:00
font-size: small;
2020-10-17 04:04:13 +00:00
}
section.controls 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;
}
section.controls div input {
background:lightsalmon;
display: inline-block;
2020-10-19 12:33:01 +00:00
width: 75%;
2020-10-17 04:04:13 +00:00
}
footer {
background: white;
}