UI enhancements

This commit is contained in:
2022-04-30 09:56:18 -04:00
parent 19affa2f1f
commit 9747cd809d
9 changed files with 90 additions and 84 deletions

View File

@@ -161,14 +161,15 @@ pre {
table {
display: flex;
flex-direction: column;
border: 1px solid var(--main-border-color);
border-radius: 1rem;
margin: 1rem 0;
overflow: hidden;
}
table thead {
background: var(--secondary-green);
border-top-left-radius: 1rem;
border-top-right-radius: 1rem;
z-index: -1;
border-bottom: 1px solid #999999;
}
table thead tr,
@@ -177,7 +178,7 @@ table tbody tr {
}
table tbody tr+tr {
border-top: 1px solid var(--main-border-color);
border-top: 1px solid #999999;
}
table thead tr th,
@@ -187,6 +188,11 @@ table tbody tr td {
padding: .5em;
}
table th+th,
table td+td {
border-left: 1px solid #999999;
}
.lambda-logo {
width: 256px;
height: 256px;
@@ -203,24 +209,11 @@ table tbody tr td {
}
.block {
display: block;
padding: 1.5rem;
max-width: 100%;
margin: 0 0.25rem;
border: 1px solid var(--main-border-color);
border-bottom: none;
}
.block:first-of-type {
border-top-right-radius: 1rem;
border-top-left-radius: 1rem;
margin-top: 2rem;
}
.block:last-of-type {
border-bottom: 1px solid var(--main-border-color);
border-bottom-right-radius: 1rem;
border-bottom-left-radius: 1rem;
margin-bottom: 2rem;
margin: 1rem 0.25rem;
border-radius: 1rem;
}
code {