connorblikre

vertical divider less mixin

Aug 5th, 2014
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.30 KB | None | 0 0
  1. .vertical-divider(@color: #fff){
  2.     position: relative;
  3.  
  4.     &:before, &:after {
  5.         content: "";
  6.         position: absolute;
  7.         top: 0;
  8.         bottom: 0;
  9.         width: 1px;
  10.         background-color: @color;
  11.     }
  12.  
  13.     &:before { left: 0; }
  14.     &:after { right: -1px; }
  15.  
  16.     &:first-child:before, &:last-child:after { display: none; }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment