Advertisement
Guest User

Base.Css

a guest
Dec 5th, 2011
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. /*========================================================
  2. [10] Menus __menus
  3. ========================================================*/
  4.  
  5. /* ---- Main Menu styles ---- */
  6.  
  7. .ow_main_menu{
  8. position: absolute;
  9. bottom: -13px;
  10. right: 0px;
  11. z-index: 1;
  12. }
  13.  
  14. .ow_main_menu li{
  15. float: left;
  16. padding: 0;
  17. }
  18.  
  19. .ow_main_menu li a{
  20. color: #666; /** OW_Control type:color, key:menuColor, section:2. Colors, label:Menu item text color **/
  21. display: block;
  22. padding: 0 7px 20px 7px;
  23. text-decoration: none;
  24. text-shadow: #fff 0 1px 0;
  25. }
  26.  
  27. .ow_main_menu li.active
  28. {
  29. background: transparent url('images/menu-active.png') no-repeat 50% 100%;
  30. }
  31.  
  32. .ow_main_menu li.active a,
  33. .ow_main_menu li a:hover{
  34. color: #CF3513; /** OW_Control key: titleColor **/
  35. }
  36.  
  37. .ow_main_menu li.active a
  38. {
  39. font-weight: bold;
  40. }
  41.  
  42. .ow_box .ow_box_menu{
  43. border-bottom: 1px solid #d3d3d3;
  44. margin: -10px;
  45. margin-bottom: 10px;
  46. text-align: right;
  47. padding-right: 5px;
  48. }
  49.  
  50. .ow_box_menu a{
  51. display: inline-block;
  52. font-size:11px;
  53. margin-right: 5px;
  54. color: #666;
  55. text-shadow: #fff 1px 1px 0;
  56. }
  57.  
  58. .ow_box_empty .ow_box_menu{
  59. float: right;
  60. margin: -15px 10px 9px 10px;
  61. background: #f5f4f4;
  62. padding-left: 5px;
  63. -moz-border-radius: 0 0 5px 5px;
  64. -webkit-border-radius: 0 0 5px 5px;
  65. }
  66.  
  67. .ow_box_menu a.active,
  68. .ow_box_menu a:hover{
  69. color:#CF3513; /** OW_Control key:titleColor **/
  70. text-decoration:none;
  71. }
  72.  
  73. /* ---- End of Main Menu styles ---- */
  74.  
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement