Add border to profile history.

This commit is contained in:
yukirij 2024-10-18 19:12:12 -07:00
parent 0bccc8f1bf
commit ee7f39daa9
2 changed files with 45 additions and 45 deletions

View File

@ -27,8 +27,53 @@ main.profile>section.history {
width: 100%;
flex-grow: 1;
overflow-y: scroll;
border: 2px solid #181818;
}
main.profile>section.history>table {
width: 100%;
}
main.profile table.info{
width:100%;
border-collapse:collapse;
}
main.profile table.info tr{
height:2.5rem;
font-size: 1.08rem;
background-color:#242424;
}
main.profile table.info th{
width:1px;
padding:0 2rem 0 2rem;
text-align:center;
font-size:1.2rem;
font-weight:bold;
white-space:nowrap;
background-color:#383838;
color:#f0f0f0;
border-bottom:1px solid #404040;
}
main.profile table.info td{
width:1px;
height:100%;
padding:0 2rem 0 2rem;
text-align:center;
white-space:nowrap;
background-color:inherit;
color:#f0f0f0;
border-right: 1px solid #282828;
}
main.profile table.info td:last-child, main table.info th:last-child{
width:auto;
padding:0;
text-align:left;
}
main.profile table.info td:last-child{
background-color: #282828;
border:0;
}

View File

@ -86,51 +86,6 @@ main table.list td>canvas {
}
main table.info{
width:100%;
border-collapse:collapse;
}
main table.info tr{
height:2.5rem;
font-size: 1.08rem;
background-color:#242424;
}
main table.info th{
width:1px;
padding:0 2rem 0 2rem;
text-align:center;
font-size:1.2rem;
font-weight:bold;
white-space:nowrap;
background-color:#383838;
color:#f0f0f0;
border-bottom:1px solid #404040;
}
main table.info td{
width:1px;
height:100%;
padding:0 2rem 0 2rem;
text-align:center;
white-space:nowrap;
background-color:inherit;
color:#f0f0f0;
border-right: 1px solid #282828;
}
main table.info td:last-child, main table.info th:last-child{
width:auto;
padding:0;
text-align:left;
}
main table.info td:last-child{
background-color: #282828;
border:0;
}
main div.turn-slider-padding{
display:block;
position:relative;