57 lines
559 B
CSS
57 lines
559 B
CSS
table
|
|
{
|
|
width: 100%;
|
|
}
|
|
|
|
.list table, .list th, .list td
|
|
{
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.list table
|
|
{
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.list th, .list td
|
|
{
|
|
padding: 5px;
|
|
}
|
|
|
|
.list th
|
|
{
|
|
background-color: rgb(127, 255, 138);
|
|
}
|
|
|
|
.list button
|
|
{
|
|
width: 100%;
|
|
height: 30px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
|
|
|
|
|
|
.formdiv
|
|
{
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.formdiv table
|
|
{
|
|
border: none;
|
|
}
|
|
|
|
.formdiv button, .formdiv input
|
|
{
|
|
width: 100%;
|
|
height: 60px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.datatable *
|
|
{
|
|
padding: 10;
|
|
} |