• This project
    • Loading...
  • Sign in

fe / yohoblk-wap · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yohoblk-wap
  • public
  • scss
  • common
  • _list.css
  • 整理头部
    e2bfc6df
    by ccbikai
    2016-07-28 12:11:15 +0800  
    Browse Files
_list.css 419 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
.list {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.list-item {
    position: relative;
    padding: 30px;

    &:after {
        content: "";
        position: absolute;
        left: 30px;
        bottom: -1px;
        width: 690px;
        height: 0;
        border-bottom: 1px solid #eee;
        z-index: 1;
    }

    &:last-of-type:after {
        display: none;
    }
}