Static Site

This commit is contained in:
2024-06-14 16:51:30 -07:00
parent 3aed250488
commit 6737ddfb59
1706 changed files with 628 additions and 323 deletions

View File

@ -0,0 +1,42 @@
@charset "UTF-8";
.list-group-item {
display: flex;
align-items: center;
justify-content: space-between;
height: 40px;
width: 350px;
padding: 8px 16px;
background-color: #FFFFFF;
border: 1px solid #EEEDED;
border-radius: 1px 1px 0px 0px;
font-style: normal;
font-weight: 400;
font-size: 1rem;
line-height: 1.5rem;
font-family: var(--ifx-font-family);
}
.list-group-item.flush {
border: none;
border-bottom: 1px solid #EEEDED;
}
.list-group-item.flush.bulletpoint {
padding: 8px;
}
.list-group-item.bulletpoint .list-group-item-content::before {
content: "•";
display: inline-block;
font-size: 1.125rem;
padding-right: 10px;
}
.list-group-item:hover:not(.show) {
background-color: #EEEDED;
}
.list-group-item:active:not(.show) {
background-color: #0A8276;
color: #FFFFFF;
}
.list-group-item.show {
display: block;
height: 88px;
padding: 16px;
}