general.css 524 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /**
  2. * Generelles CSS für LCARS.
  3. * @author Daniel
  4. */
  5. html, body {
  6. height: 100%;
  7. }
  8. #wrap {
  9. min-height: 100%;
  10. height: auto !important;
  11. height: 100%;
  12. margin: 0 auto -80px;
  13. }
  14. #footer, #push {
  15. height: 80px;
  16. }
  17. #footer {
  18. background-color: cccccc;
  19. }
  20. @media (max-width: 767px) {
  21. #footer {
  22. margin-left: -20px;
  23. margin-right: -20px;
  24. padding-left: 20px;
  25. padding-right: 20px;
  26. }
  27. }
  28. #content {
  29. margin-top: 40px;
  30. }
  31. .annotation {
  32. margin-top: 5px;
  33. font-size: smaller;
  34. font-color: 666;
  35. font-style: italic;
  36. }