$borderRadius: 5px; .container { max-width: 480px; } body { background-color: #F7F9FA; color: #787878; padding: 50px 0 30px; } h1, h2 { font-size: 18px; margin: 0 0 20px; padding-bottom: 13px; position: relative; &:after { background-color: rgba(0, 0, 0, .08); bottom: 0; content: ''; display: block; height: 2px; left: 0; position: absolute; width: 25px; } &.text-center:after { left: 50%; } } h1 { margin: 0 0 40px; } ul { list-style: none; margin: 0 0 20px; padding: 0; } .form-control { border-color: #E1E1E1; } .task-list { margin-bottom: 45px; } .task, .completed-task { position: relative; a { bottom: 0; color: #EEE; display: block; position: absolute; right: 0; text-align: center; top: 0; width: 40px; &:hover { color: #75B51B; cursor: pointer; } i { height: 20px; line-height: 20px; margin-top: -10px; position: absolute; right: 10px; top: 50%; width: 20px; } } } .task { background-color: #FFF; border-radius: $borderRadius; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); margin: 0 0 5px; padding: 10px 55px 10px 15px; } .completed-task { color: #999; font-size: 13px; text-decoration: line-through; a { color: #DDD; &:hover { color: #D6563A; } } }