ui.css 637 B

12345678910111213141516171819202122232425262728293031
  1. /******************************************
  2. * Hide elements intended for desktop and *
  3. * show elements for mobile. *
  4. ******************************************/
  5. .mobile{
  6. display: initial;
  7. }
  8. .desktop{
  9. display: none !important;
  10. }
  11. /******************************************
  12. * Styles for the main block that compose *
  13. * the site. Most of the pages share the *
  14. * same structure.
  15. ******************************************/
  16. /* Content */
  17. div#content{
  18. margin: 2em auto auto auto;
  19. width: 95%;
  20. max-width: initial;
  21. min-width: initial;
  22. }
  23. div#toolbar img{
  24. margin-bottom: -1em;
  25. opacity: 0.3;
  26. }