lyceum-site/assets/_custom.scss

52 lines
724 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;
justify-content: space-between;
align-items: flex-start;
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;
}
.left-section {
flex-direction: column;
flex: 1;
}
2024-10-03 22:08:11 +00:00
2024-10-04 08:47:15 +00:00
.commit-info {
2024-10-04 11:25:09 +00:00
text-align: right;
flex: 1;
margin-left: 1rem;
}
.disclaimer, .theme, .commit-info {
2024-10-04 08:47:15 +00:00
background-color: var(--gray-500);
2024-10-04 11:25:09 +00:00
padding: 0.9rem;
margin: 0.8rem;
}
.disclaimer, .theme {
font-size: 0.9rem;
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;
}
}