Welcome to mirror list, hosted at ThFree Co, Russian Federation.

labels.less « mixins « less « static - github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f7a67ee3d08a03ad10277d703805d315cd43d54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Labels

.label-variant(@color) {
  background-color: @color;

  &[href] {
    &:hover,
    &:focus {
      background-color: darken(@color, 10%);
    }
  }
}