default.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* Colors */
  2. .color-yellow {background:#f2bc00;}
  3. .color-red {background:#dd0000;}
  4. .color-blue {background:#00A9E0;}
  5. .color-white {background:#dfdfdf;}
  6. .color-orange {background:#f66e00;}
  7. .color-green {background:#8dc100;}
  8. .color-yellow h3,
  9. .color-white h3,
  10. .color-green h3
  11. {color:#000;}
  12. .color-red h3,
  13. .color-blue h3,
  14. .color-orange h3 {
  15. color: #FFF;
  16. }
  17. /* End Colors */
  18. .widget {
  19. margin: 30px 20px 0 20px;
  20. padding: 2px;
  21. -moz-border-radius: 4px;
  22. -webkit-border-radius: 4px;
  23. }
  24. .widget .widget-head {
  25. color: #000;
  26. overflow: hidden;
  27. width: 100%;
  28. height: 30px;
  29. line-height: 30px;
  30. }
  31. .widget .widget-head h3 {
  32. padding: 0 5px;
  33. float: left;
  34. }
  35. .widget .widget-content {
  36. background: #FFF url(img/widget-content-bg.png) repeat-x;
  37. padding: 0 5px;
  38. color: #000;
  39. -moz-border-radius-bottomleft: 2px;
  40. -moz-border-radius-bottomright: 2px;
  41. -webkit-border-bottom-left-radius: 2px;
  42. -webkit-border-bottom-right-radius: 2px;
  43. line-height: 1.2em;
  44. overflow: hidden;
  45. }
  46. .widget .widget-content p {
  47. padding: 0.8em 0;
  48. border-bottom: 1px solid #666;
  49. }
  50. .widget .widget-content pre {
  51. padding: 0.5em 5px;
  52. color: #EEE;
  53. font-size: 12px;
  54. }
  55. .widget .widget-content ul {
  56. padding: 5px 0 5px 20px;
  57. list-style: disc;
  58. }
  59. .widget .widget-content ul li {padding: 3px 0;}
  60. .widget .widget-content ul.images {
  61. padding: 7px 0 0 0;
  62. list-style: none;
  63. height: 1%;
  64. }
  65. .widget .widget-content ul.images li {
  66. display: inline;
  67. float: left;
  68. }
  69. .widget .widget-content ul.images img {
  70. display: inline;
  71. float: left;
  72. margin: 0 0 7px 7px;
  73. }
  74. .widget-actions {text-align:right;margin-right:5px;margin-top:5px;}
  75. .widget-actions img {
  76. margin-bottom: 15px;
  77. }