Действия

MediaWiki

Common.css: различия между версиями

Материал из Blood on the Clocktower Wiki на русском

(Отмена правки 2872, сделанной Andrey Tikhomirov (обсуждение))
Метки: отмена отменено
Нет описания правки
 
(не показано 18 промежуточных версий 2 участников)
Строка 3: Строка 3:
#ca-viewsource { display: none !important; }
#ca-viewsource { display: none !important; }


%full-star {
tr.border-bottom {
  &:after {
    border-bottom: 1px solid #BDA89A;
  content: "\f005";
    padding: 50px;
  }
    margin: 50px;
};
}
tr.border-bottom td {
    padding-top: 20px;
    padding-bottom: 20px;
}


%half-star {
#edition-details,#character-details,#jinxes{
  &:after {
     background-color:rgba(255,255,255,0.75);
     content: "\f123";
     padding-bottom:0.3em;
  }
     padding-top:1.5em;
};
     margin-bottom:1.5em;
 
     border:1px #BDA89A solid
.rating {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #900;
  $this: &;
 
  &__item {
     font-size: 24px;
     display: block;
    font-family: FontAwesome;
 
     &::after {
      content: '\f006 ';
    }
  }
 
  @for $i from 0 to 6 {
    &[data-rating='#{$i}'] {
      #{$this}__item:nth-child(-n + #{$i}) {
        @extend %full-star;
      }
     }
 
    &[data-rating='#{$i + 0.5}'] {
      #{$this}__item:nth-child(-n + #{$i}) {
        @extend %full-star;
      }
 
      #{$this}__item:nth-child(#{$i + 1}) {
        @extend %half-star;
      }
    }
  }
}
}

Текущая версия от 22:40, 5 октября 2024

/* Размещённый здесь CSS будет применяться ко всем темам оформления */
#ca-talk { display: none !important; }
#ca-viewsource { display: none !important; }

tr.border-bottom {
    border-bottom: 1px solid #BDA89A;
    padding: 50px;
    margin: 50px;
}
tr.border-bottom td {
    padding-top: 20px;
    padding-bottom: 20px;
}

#edition-details,#character-details,#jinxes{
    background-color:rgba(255,255,255,0.75);
    padding-bottom:0.3em;
    padding-top:1.5em;
    margin-bottom:1.5em;
    border:1px #BDA89A solid
}