style.css 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* Typography - Choose your font and size (base.css default is 16px) */
  2. body
  3. {
  4. font-size:80%;
  5. line-height:1.5em;
  6. font-family:Helvetica,"Helvetica Neue",Arial,sans-serif;
  7. } /*IE*/
  8. html>body{font-size:13px}
  9. pre,code
  10. {
  11. font-family:"DejaVu Sans Mono","Bitstream Vera Sans Mono",Monaco,"Courier New",monospace;
  12. }
  13. header, #main, footer { float: left; width: 100%; }
  14. #main { margin: 2em 0; }
  15. a { text-decoration: none; color: #4B6E89;font-weight: bold; }
  16. a:hover { color: #000; }
  17. header { border-bottom: 1px solid #ddd; }
  18. header h1 { color: #ddd; margin: 0;line-height: 100px; }
  19. nav ul{ list-style: none;margin: 0;padding: 0;}
  20. nav ul li { float: right;margin: 0 2em 0 0;line-height: 100px; }
  21. #sidebar h3 { margin-bottom: 5px; }
  22. #sidebar ul { margin: 0; }
  23. #sidebar ul li {list-style: none;border-bottom: 1px solid #eee;line-height: 2.4em;}
  24. #sidebar ul li:hover { background: #f8f8f8; }
  25. footer { border-top: 1px solid #ddd; padding: 1em 0;color: #999;font-size: 12px; }
  26. footer .stats { text-align:right; }
  27. /* Form element label */
  28. form.formstyle label
  29. {
  30. margin: 0px;
  31. display: inline;
  32. line-height: 2em;
  33. float: left;
  34. width: 100%;
  35. }
  36. form.formstyle label b { float: left; }
  37. form.formstyle label span
  38. {
  39. color: #999;
  40. display: block;
  41. font-size: 12px;
  42. float: right;
  43. text-align: right;
  44. }
  45. form.formstyle .form_error
  46. {
  47. color: #E83D1B;
  48. font-weight: bold;
  49. margin: -1.5em 0 1.5em 0;
  50. }
  51. /* Messages Boxes use the great Silk icons from http://famfamfam.com/ */
  52. .message, .warning, .error, .success
  53. {
  54. margin: 1em auto;
  55. display: block;
  56. clear: both;
  57. padding: .8em 50px;
  58. border: 1px solid #fff;
  59. }
  60. .message
  61. {
  62. background: #F8FAFC url(../Images/message.png) 20px center no-repeat;
  63. border-color: #B5D4FE;
  64. }
  65. .warning
  66. {
  67. background: #fff6bf url(../Images/warning.png) 20px center no-repeat;
  68. border-color: #ffd324;
  69. }
  70. .error
  71. {
  72. background: #fde6e9 url(../Images/error.png) 20px center no-repeat;
  73. border-color: #fb939f;
  74. }
  75. .success
  76. {
  77. background: #EBFCE1 url(../Images/success.png) 20px center no-repeat;
  78. border-color: #B9DAA6;
  79. }