You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

46 lines
618 B

  1. nav {
  2. overflow: hidden;
  3. padding: 0px 0px;
  4. background: #131313;
  5. height: 2.2em;
  6. }
  7. nav ul {
  8. display: block;
  9. float: right;
  10. }
  11. nav ul li {
  12. display: block;
  13. float: left;
  14. padding-left: 1em;
  15. }
  16. nav ul li a img {
  17. padding: .1em;
  18. width: 2em;
  19. }
  20. nav ul li a img:hover {
  21. background: #eee;
  22. }
  23. #container {
  24. min-height: 100%;
  25. position: relative;
  26. }
  27. #body {
  28. padding: 10px;
  29. padding-bottom: 2em; /* Height of the footer */
  30. }
  31. #footer {
  32. position: absolute;
  33. bottom: 0;
  34. width: 100%;
  35. height: 2em; /* Height of the footer */
  36. }
  37. .text-align-right {
  38. text-align: right;
  39. }