39 lines
397 B
CSS
39 lines
397 B
CSS
|
table
|
||
|
{
|
||
|
width: 100%;
|
||
|
}
|
||
|
table, th, td, .legende
|
||
|
{
|
||
|
border: 1px solid black;
|
||
|
border-collapse: collapse;
|
||
|
}
|
||
|
.legende
|
||
|
{
|
||
|
display: inline-block;
|
||
|
width: 1em;
|
||
|
height: 1em;
|
||
|
}
|
||
|
td, h1
|
||
|
{
|
||
|
text-align: center;
|
||
|
}
|
||
|
.left
|
||
|
{
|
||
|
text-align: left;
|
||
|
}
|
||
|
.up
|
||
|
{
|
||
|
background-color: lightgreen;
|
||
|
}
|
||
|
.down
|
||
|
{
|
||
|
background-color: lightpink;
|
||
|
}
|
||
|
h1
|
||
|
{
|
||
|
font-size: 2em;
|
||
|
}
|
||
|
select
|
||
|
{
|
||
|
font-size: 1em;
|
||
|
}
|