default.css 1.8 KB

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