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

fonticons.less « site « less « assets - github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2caada1c3527da3c673c65e2cc1faf6fe414b870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
.fonticons {
  @fonticons-bg: #1c1e29;
  @fonticons-orange: desaturate(#ff7f3f, 5%);
  background-color: @fonticons-orange;
  color: #fff;
  padding: 10px 0;
  border-bottom: solid 1px mix(@fonticons-bg, @fonticons-orange, 15%);
  .message-container {
    display: table;
    width: auto;
    margin: 0 auto;
  }
  .tagline, .action {
    display: table-cell;
    vertical-align: middle;
  }
  .tagline {
    font-weight: 200;
    font-size: 16px;
    padding-right: 20px;
  }
  .btn-primary {
    @color: #fff;
    @background: mix(#fff,@fonticons-bg,10%);
    @border: @fonticons-bg;
    font-weight: bold;
    color: @color;
    background-color: @background;
    border-color: @border;
    border-bottom-width: 2px;
    text-shadow: none;
    border-radius: 4px;

    &:hover,
    &:focus,
    &:active,
    &.active,
    .open > &.dropdown-toggle {
      color: #fff;
      background-color: darken(@border, 3%);
      border-color: darken(@border, 12%);
      border-bottom-color: darken(@border, 18%);
    }
    &:active,
    &.active,
    .open > &.dropdown-toggle {
      background-image: none;
    }
    &.disabled,
    &[disabled],
    fieldset[disabled] & {
      &,
      &:hover,
      &:focus,
      &:active,
      &.active {
        background-color: @background;
        border-color: @border;
      }
    }
  }
}