setup_analyser/analyser.css
Taylor Courage 98e0a1ffdb Added a print button to output a nicely formatted display
Fixed clear-screen button when there were several reductions on screen
2025-01-21 12:43:55 -05:00

130 lines
1.8 KiB
CSS

.content {
display: flex;
flex-direction: column;
max-width: 650px;
min-height: 250px;
position: relative;
border: 1px solid black;
border-radius: 5px;
padding-left: 17px;
padding-right: 17px;
margin: auto;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.body {
flex-grow: 1;
flex-shrink: 1;
margin: 0;
padding: 0;
color: black;
}
#data {
table-layout: fixed;
width: 40%;
text-align: center;
border-collapse: collapse;
border: solid;
border-width: 1px;
}
#data tr {
border:solid;
border-width: 1px 0;
}
#data td {
padding-bottom: 5px;
padding-top: 5px;
}
#output {
table-layout: fixed;
width: 100%;
}
#output td {
position: relative;
border: 1px solid;
padding-top: 2px;
padding-bottom: 2px;
}
#outputHeader {
font-size: 75%;
}
#reductionNum {
text-align: right;
}
#reductionNumHeader {
text-align: center;
}
#headerSpacer {
width: 16%;
text-align: center;
}
#startFinish {
width: 300px;
text-align: center;
}
#roa {
width: 12%;
text-align: center;
}
#elong {
width: 12%;
text-align: center;
}
#delta {
width: 12%;
text-align: center;
}
.footer {
position: relative;
bottom: 15px;
width: 100%;
font-size: 75%;
margin: auto;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.results {
font-size: 200%;
margin: auto;
}
.results h1 {
font-family:'Courier New', Courier, monospace;
}
#vanity {
font-family: serif;
font-style: oblique;
font-size: 0.8em;
}
.printHeader {
display: none;
text-align: center;
}
@media print {
#inputArea {
display: none;
}
.header {
display: none;
}
.printHeader {
display: inline;
}
}