Separator with dots

by kuyabiye

HTML

<div class="has-separator">
    
</div>

SCSS

.has-separator {
  padding-top: 35px;
  
  position: relative;
  
  &:before {

    content:"...............................................................................................................................................................................................................................................................";
    letter-spacing: 0; 
    font-size: 10px;
    color: #a6a6a6;
    @include text-shadow(0 1px 0 #fff);
    
    overflow: hidden;
    width: 100%;
    height: 12px;
    
    position: absolute;
    top: 0;
    
    }  
}