Merge branch 'geekplux-patch'

* geekplux-patch:
  Revert "Make ReadTheOrg responsive (thanks to geekplux!)"
  Revert "Update perms"
  Revert "Change text"
  Change text
  Update perms
  Make ReadTheOrg responsive (thanks to geekplux!)
  fix TOC height in mobile screen
  add close button when sidebar showed in mobile screen
  add toc button for mobile screen
  hide the sidebar for mobile screen
This commit is contained in:
Fabrice Niessen 2016-06-12 22:05:03 +02:00
commit b9ba90f2be
1 changed files with 52 additions and 1 deletions

View File

@ -1034,4 +1034,55 @@ h2.footnotes{
/* padding: 10px 20px 10px 60px; */
padding: 9px 12px;
margin-bottom: 24px;
font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif}
font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif
}
/******** responsive for sidebar *******/
#toggle-sidebar,
#table-of-contents .close-sidebar {
display: none;
}
@media screen and (max-width: 768px) {
#table-of-contents {
display: none;
width: 60%;
}
#table-of-contents h2 a {
display: block;
}
#table-of-contents:target {
display: block;
}
#copyright, #postamble {
display: none;
}
#toggle-sidebar {
display: block;
background-color: #E0D6E9;
text-align: center;
padding: 0.6em;
margin-bottom: 0.6em;
}
#toggle-sidebar h2 {
margin: 0;
padding: 0;
}
#table-of-contents .close-sidebar {
display: block;
}
}
/******** End responsive for sidebar *******/