Advertisement
Guest User

Untitled

a guest
Jan 1st, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.90 KB | None | 0 0
  1. .tags {
  2.     width: 180px;
  3.     margin-left: 8px;
  4.    
  5.   &__navigation {
  6.         .nomargin;
  7.     display: flex;
  8.     flex-direction: row;
  9.     flex-wrap: wrap;
  10.         justify-content: flex-start;
  11.         width: 184px;
  12.     list-style: none;
  13.   }
  14.   &__item {
  15.         flex-basis: 40px;
  16.         margin-right: 10px;
  17.         font-size: 0;
  18.   }
  19.   &__link {
  20.         .font(9px, 15px, #1e7465, 600);
  21.         .gradient(@from: #f9f8f8, @to: #e6e5e4);
  22.         display: inline-block;
  23.         vertical-align: middle;
  24.         max-width: 55px;
  25.         position: relative;
  26.         padding: 1px 0;
  27.         padding-left: 7px;
  28.         padding-right: 10px;
  29.         text-decoration: none;
  30.         text-transform: uppercase;
  31.         border: 1px solid #d5d5d5;
  32.         border-radius: 5px;
  33.        
  34.         &::before {
  35.             content: '';
  36.             position: absolute;
  37.             width: 9px;
  38.             height: 18px;
  39.             top: -1px;
  40.             left: -6px;
  41.             background-image: url(../img/arrow.png);
  42.             background-repeat: no-repeat;
  43.             background-position: 100% 100%;
  44.         }
  45.   }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement