default.css 1.8 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. /* 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. .widget .widget-content pre {
  52. padding: 0.5em 5px;
  53. color: #EEE;
  54. font-size: 12px;
  55. }
  56. .widget .widget-content ul {
  57. padding: 5px 0 5px 20px;
  58. list-style: disc;
  59. }
  60. .widget .widget-content ul li {padding: 3px 0;}
  61. .widget .widget-content ul.images {
  62. padding: 7px 0 0 0;
  63. list-style: none;
  64. height: 1%;
  65. }
  66. .widget .widget-content ul.images li {
  67. display: inline;
  68. float: left;
  69. }
  70. .widget .widget-content ul.images img {
  71. display: inline;
  72. float: left;
  73. margin: 0 0 7px 7px;
  74. }
  75. .widget-actions {text-align:right;margin-right:5px;margin-top:5px;}
  76. .widget-actions img {
  77. margin-bottom: 15px;
  78. }