55 lines
965 B
CSS
55 lines
965 B
CSS
main>table.list{
|
|
width:100%;
|
|
border-collapse:collapse;
|
|
}
|
|
main>table.list tr{
|
|
height:2.5rem;
|
|
}
|
|
main>table.list th{
|
|
padding:0 1rem 0 1rem;
|
|
|
|
text-align:center;
|
|
font-size:1.2rem;
|
|
font-weight:bold;
|
|
|
|
background-color:#383838;
|
|
color:#f0f0f0;
|
|
border-bottom:1px solid #404040;
|
|
}
|
|
main>table.list td{
|
|
height:100%;
|
|
padding:0 1rem 0 1rem;
|
|
|
|
text-align:center;
|
|
|
|
background-color:#303030;
|
|
color:#f0f0f0;
|
|
}
|
|
main>table.list td:last-child{
|
|
display:flex;
|
|
flex-flow:row nowrap;
|
|
align-items:flex-start;
|
|
justify-content:flex-end;
|
|
flex-grow:1;
|
|
}
|
|
|
|
main>table.list td:last-child>button{
|
|
display:block;
|
|
position:relative;
|
|
width:auto;
|
|
height:100%;
|
|
padding:0 1rem 0 1rem;
|
|
|
|
text-align:left;
|
|
font-size:1.25rem;
|
|
cursor:pointer;
|
|
|
|
background-color:#303030;
|
|
color:#e0e0e0;
|
|
border:0;
|
|
outline:0;
|
|
}
|
|
main>table.list td:last-child>button:hover{
|
|
background-color:#343434;
|
|
}
|