@import '~style/helpers';

.queue {

  .upgrading_notice {
    position: relative;
    background: #419ccb;
    color: #fff;
    font-weight: bold;
    padding: 10px 10px 10px 35px;

    img {
      display: block;
      position: absolute;
      left: 12px;
      top: 12px;
      width: 15px;
      height: 15px;
      z-index: 10;
    }
  }

  ul {
    width: 100%;
    padding: 10px 0;

    li {
      display: inline-block;
      width: 50%;
      &:before {
        .iconbefore("\f147");
        font-size: 1.5em;
      }

      &.todo {
        &:before {
          color: black;
        }
      }

      &.done {
        &:before {
          color: green;
        }
      }
    }

  }
}
