screen.css 897 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. body {
  2. background-color: #fff;
  3. color: #333;
  4. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  5. }
  6. #register {
  7. float: left;
  8. display: inline-block;
  9. }
  10. h1 {
  11. -webkit-border-radius: 4px;
  12. -moz-border-radius: 4px;
  13. background-color: #E9E9E9;
  14. border: 1px solid #CFCFCF;
  15. border-radius: 4px;
  16. }
  17. .nav li {
  18. float: left;
  19. list-style: none;
  20. padding: 5px;
  21. }
  22. .navbar {
  23. text-align: right;
  24. padding: 5px;
  25. margin-bottom: 10px;
  26. }
  27. #container {
  28. height: auto;
  29. margin-bottom: 10px;
  30. }
  31. #footer {
  32. width: 95%;
  33. margin-left: 1%;
  34. margin-right: 1%;
  35. position:absolute;
  36. bottom:0;
  37. font-size: 11px;
  38. font-weight: bold;
  39. height: auto;
  40. text-align: center;
  41. padding-top: 10px;
  42. -webkit-border-radius: 4px;
  43. -moz-border-radius: 4px;
  44. background-color: #E9E9E9;
  45. border: 1px solid #CFCFCF;
  46. border-radius: 4px;
  47. }