vk3cpu/magloop.css

71 wiersze
1.2 KiB
CSS
Czysty Zwykły widok Historia

2020-10-17 04:04:13 +00:00
body {
background: rgb(196, 122, 77);
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
svg {
background: white;
width: 100%;
margin: auto;
2020-10-17 13:03:20 +00:00
border: 2px solid #000000;
2020-10-17 13:00:08 +00:00
display: block;
box-sizing: border-box;
}
2020-10-17 04:04:13 +00:00
canvas {
background: white;
width: 100%;
margin: auto;
2020-10-17 13:03:20 +00:00
border: 2px solid #000000;
2020-10-17 04:04:13 +00:00
display: block;
box-sizing: border-box;
}
2020-10-17 13:00:08 +00:00
2020-10-17 04:04:13 +00:00
section.spreadsheet {
background: grey;
display: flex;
flex-direction: row;
}
section.spreadsheet div {
background: lightblue;
display: inline-block;
margin: auto;
margin-top: 0%;
width: auto;
text-align: center;
}
section.spreadsheet div.first-col {
text-align: right;
}
section.controls div {
background:yellow;
font-size: smaller;
2020-10-17 04:04:13 +00:00
}
section.controls div label {
background:rgb(94, 245, 94);
display: inline-block;
2020-10-18 06:16:51 +00:00
width: 20%;
2020-10-17 13:00:08 +00:00
font-size: 0.8em;
2020-10-17 04:04:13 +00:00
text-align: right;
}
section.controls div input {
background:lightsalmon;
display: inline-block;
width: 60%;
2020-10-17 04:04:13 +00:00
}
footer {
background: white;
}