2022-12-27 07:35:36 +00:00
|
|
|
<style>
|
|
|
|
.accordion {
|
|
|
|
cursor: pointer;
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
padding: 8px 0 8px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.acc-panel {
|
|
|
|
max-height: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
transition: max-height 0.2s ease-out;
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.acc-panel-content {
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.acc-panel p{
|
|
|
|
padding-bottom: 8px;
|
2022-12-27 07:37:01 +00:00
|
|
|
font-weight: 400;
|
|
|
|
font-size: 18px;
|
2022-12-27 07:35:36 +00:00
|
|
|
}
|
|
|
|
.acc-panel a {
|
|
|
|
color: #0C84DC;
|
|
|
|
text-decoration: underline;
|
2022-12-27 07:37:01 +00:00
|
|
|
font-weight: 600;
|
2022-12-27 07:35:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#writing-page .thead {
|
2022-12-27 11:05:26 +00:00
|
|
|
font-family: IBMPlexSans, sans-serif;
|
2022-12-27 07:35:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.accordion .level-item {
|
2022-12-27 11:05:26 +00:00
|
|
|
font-family: IBMPlexSans, sans-serif;
|
2022-12-27 07:35:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.accordion .icon {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.writing-section {
|
|
|
|
padding-bottom: 64px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#books-section {
|
|
|
|
padding-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#books-section h3 {
|
|
|
|
font-size: 21px;
|
|
|
|
font-weight: 700;
|
|
|
|
text-align: center;
|
|
|
|
height: 7rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-cell {
|
2022-12-27 11:05:26 +00:00
|
|
|
font-family: IBMPlexMono, monospace;
|
2022-12-27 07:35:36 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.book-cover img {
|
|
|
|
max-width: 140px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-blurb {
|
2022-12-27 11:05:26 +00:00
|
|
|
font-family: IBMPlexMono, monospace;
|
2022-12-27 07:35:36 +00:00
|
|
|
font-size: 12px;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-detail {
|
2022-12-27 11:05:26 +00:00
|
|
|
font-family: IBMPlexMono, monospace;
|
2022-12-27 07:35:36 +00:00
|
|
|
font-size: 18px;
|
|
|
|
padding-top: 10px;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-detail a {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script src="https://kit.fontawesome.com/a42e899e51.js" crossorigin="anonymous"></script>
|