Skip to content
Snippets Groups Projects
challengeCardDone.scss 956 B
Newer Older
  • Learn to ignore specific revisions
  • @import '../../styles/base/typo-variables';
    
    Rémi PAPIN's avatar
    Rémi PAPIN committed
    @import '../../styles/base/color';
    
    .cardContent {
      &.cardDone {
        border: 1px solid $grey-bright;
        border-radius: 4px;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
        display: flex;
    
        flex-direction: column;
        justify-content: space-between;
    
        gap: 1rem;
    
        align-items: center;
    
    
        .challengeName {
    
          text-align: center;
    
        .iconResult {
          display: flex;
          @media all and(max-height: 700px) {
            width: 55%;
            margin: auto;
          }
        }
        .imgResult {
          width: 100%;
          height: 100%;
        }
        .labelResult {
          font-weight: bold;
    
          font-size: 28px;
    
          line-height: 120%;
    
          text-transform: uppercase;
          margin-bottom: 0.5rem;
    
          color: $gold-shadow;
    
        }
        .lost {
          color: $red-primary;
        }
        .statsResult {
          text-align: center;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
        }
    
        .review-btn {
          padding: 0.625rem;
    
          margin: 0;
    
          border: 1px solid $grey-bright;
        }