lyceum-site/assets/_custom.scss

49 lines
706 B
SCSS
Raw Normal View History

2024-10-04 11:36:58 +00:00
.book-page {
margin-top: 2rem;
}
2024-10-04 12:41:03 +00:00
.book-toc-content {
margin-top: 2rem;
}
2024-10-04 11:36:58 +00:00
.book-menu-bot {
bottom: 0;
position: relative;
}
2024-10-04 11:25:09 +00:00
.info-container {
display: flex;
background-color: var(--gray-100);
width: 100%;
2024-10-04 12:31:40 +00:00
min-width: 30rem;
2024-10-04 11:25:09 +00:00
bottom: 0;
left: 0;
right: 0;
}
2024-11-05 22:13:46 +00:00
.disclaimer, .commit-info {
background-color: var(--gray-500);
font-size: 0.8rem;
padding: 1rem;
margin: 1rem;
box-sizing: border-box; /* Ensures padding is included in the width */
2024-10-04 11:25:09 +00:00
flex: 1;
}
2024-10-03 22:08:11 +00:00
2024-10-04 08:47:15 +00:00
.commit-info {
2024-11-05 22:13:46 +00:00
float: right;
2024-10-04 11:25:09 +00:00
text-align: right;
}
2024-11-05 22:13:46 +00:00
.disclaimer {
float: left;
2024-10-04 11:25:09 +00:00
font-size: 0.9rem;
2024-11-05 22:13:46 +00:00
margin: 1rem;
2024-10-04 08:47:15 +00:00
}
2024-10-04 11:25:09 +00:00
2024-10-04 12:31:40 +00:00
@media screen and (max-width: $mobile-breakpoint) {
.info-container {
min-width: 0;
}
}