Advertisement
Punk_UnDeaD

стилизация меню

Feb 11th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.40 KB | None | 0 0
  1. #primary-nav {
  2.   direction: rtl;
  3.   position: absolute;
  4.   left: 0;
  5.   right: 0;
  6.   bottom: 0;
  7.   font-size: round(1.3*@rem);
  8.   line-height: round(2.33*@rem);
  9.   text-transform: uppercase;
  10.   font-family: 'Arial Narrow';
  11.   font-weight: bold;
  12.   border: @thin solid #065e70;
  13.   .l-g-v(#116b7d, #133b44);
  14.   box-shadow: 0 @thick 0 fade(#95c7de, 75%) inset;
  15.   .t-s(@thin @thin 0 #062c3e);
  16.   .b-r(@thick*1.5);
  17.   overflow: hidden;
  18.   .main-menu {
  19.     z-index: 0;
  20.     position: relative;
  21.     margin: 0;
  22.     .list2table();
  23.     a { display: block; text-align: center; text-decoration: none;
  24.       padding: 2*@thick @rex;
  25.       position: relative;
  26.     }
  27.     a:hover, a
  28.     .active {
  29.       background: @white;
  30.       color: #145c6c;
  31.       .b-r(@thick);
  32.       .t-s(@thin @thin 0 #579ab9);
  33.     }
  34.     a:after {
  35.       z-index: -1;
  36.       position: absolute; //      background: fade(green, 50%);
  37.       content: '';
  38.       top: 50%;
  39.       right: -18px;
  40.       width: 70%;
  41.       border: round(18*0.7px) solid transparent;
  42.       padding-top: 70%;
  43.       transform-origin: top right;
  44.       transform: rotate(45deg);
  45.       background-image: linear-gradient(-45deg, fade(#fff, 0%), fade(#fff, 0%) 50%, #fff 54%), linear-gradient(45deg, yellow,#2a88ff);
  46.       background-origin: border-box;
  47.       background-size: 300px 300px, cover;
  48.       background-position: center;
  49.       background-repeat: no-repeat;
  50.     }
  51.   }
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement