Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding bottom to toc #1681

Merged
merged 7 commits into from
Jan 3, 2019
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,14 @@ footer {
#toc {
position: fixed;
left: 1%;
bottom: 1%;
max-width: calc(48% - 450px);
font-size: 80%;
opacity: .3;
z-index: 999;
background: rgb(255, 255, 255);
RunDevelopment marked this conversation as resolved.
Show resolved Hide resolved
color: rgba(0,0,0,.5);
padding: 0 15px 10px;
border-radius: 3px;
}

@media (max-width: 1200px) {
Expand All @@ -350,6 +355,7 @@ footer {

#toc h1 {
font-size: 180%;
margin-top: .75rem;
}

#toc li {
Expand Down