43 lines
612 B
CSS
43 lines
612 B
CSS
/*
|
|
|
|
setPiecesDirector.css
|
|
|
|
Created by David Rowe on 8 Aug 2019.
|
|
Copyright 2019 David Rowe.
|
|
|
|
Distributed under the Apache License, Version 2.0.
|
|
See: http://www.apache.org/licenses/LICENSE-2.0.html
|
|
|
|
*/
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
font-size: 15px;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
vertical-align: middle;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
td {
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
td:first-child {
|
|
font-weight: bold;
|
|
}
|
|
|
|
input {
|
|
width: 50px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
input.in {
|
|
background-color: #f04040;
|
|
}
|
|
|
|
input.out {
|
|
background-color: #40f040;
|
|
}
|