default.css 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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: 30px;
  31. }
  32. .widget .widget-head h3 {
  33. padding: 0 5px;
  34. float: left;
  35. }
  36. .widget .widget-content {
  37. background: #FFF url(img/widget-content-bg.png) repeat-x;
  38. padding: 0 5px;
  39. color: #000;
  40. -moz-border-radius-bottomleft: 2px;
  41. -moz-border-radius-bottomright: 2px;
  42. -webkit-border-bottom-left-radius: 2px;
  43. -webkit-border-bottom-right-radius: 2px;
  44. line-height: 1.2em;
  45. overflow: hidden;
  46. }
  47. .widget .widget-content p {
  48. padding: 0.8em 0;
  49. border-bottom: 1px solid #666;
  50. }
  51. /*
  52. .widget .widget-content img {
  53. float: right;
  54. margin: 10px;
  55. border: 1px solid #FFF;
  56. }
  57. */
  58. .widget .widget-content pre {
  59. padding: 0.5em 5px;
  60. color: #EEE;
  61. font-size: 12px;
  62. }
  63. .widget .widget-content ul {
  64. padding: 5px 0 5px 20px;
  65. list-style: disc;
  66. }
  67. .widget .widget-content ul li {padding: 3px 0;}
  68. .widget .widget-content ul.images {
  69. padding: 7px 0 0 0;
  70. list-style: none;
  71. height: 1%;
  72. }
  73. .widget .widget-content ul.images li {
  74. display: inline;
  75. float: left;
  76. }
  77. .widget .widget-content ul.images img {
  78. display: inline;
  79. float: left;
  80. margin: 0 0 7px 7px;
  81. }
  82. .widget-actions {text-align:right;margin-right:5px;margin-top:5px;}