midaswiki.css 622 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. html, body {
  2. height: 100%;
  3. }
  4. #midaswiki-wrap {
  5. min-height: 100%;
  6. }
  7. #midaswiki-main {
  8. overflow: auto;
  9. padding-bottom: 100px;
  10. } /* must be same height as the footer */
  11. #midaswiki-footer {
  12. position: relative;
  13. margin-top: -100px; /* negative value of footer height */
  14. height: 100px;
  15. clear: both;
  16. text-align: center;
  17. }
  18. #midaswiki-edit {
  19. min-height: 300px;
  20. }
  21. #content ul {
  22. list-style-position: outside;
  23. display: block;
  24. -webkit-margin-before: 1em;
  25. -webkit-margin-after: 1em;
  26. -webkit-margin-start: 0px;
  27. -webkit-margin-end: 0px;
  28. -webkit-padding-start: 40px
  29. }
  30. #content ul li {
  31. list-style-type: disc;
  32. }