summaryrefslogtreecommitdiff
path: root/_sass/misc/article-menu.scss
blob: bc168f54076478a2a0c6dc038a15f3ef69b2709b (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
/*
 * Post menu
 */

.post-menu {
  padding-left: 20px;
  min-width: 200px;
  max-width: 230px;

  .post-menu-title {
    font-size: $base-font-size * 1.5;
    margin-bottom: 14px;
    font-weight: 600;
    color: #222;
  }

  .post-menu-content {
    ul {
      border-left: 1px solid #e9ecef;
      $indent: $base-font-size / 4;
      $active-bgcolor: #ecebec;

      @for $i from 2 to 7 {
        .h-h#{$i} {
          padding-inline-start: $indent + ($i - 2) * $base-font-size * 1.3;
          font-size: $base-font-size * 1.1;
          line-height: 1.4;
        }
      }

      a {
        display: flex;
        padding: 2px 8px;
        color: darken($text-color, 10%);

        * {
          pointer-events: none;
        }

        &:hover {
          text-decoration: none;
          color: lighten($text-color, 20%)!important;
        }
      }

      .active {
        background-color: $active-bgcolor;
        transition: background 0.5s;
        border-left: 2px solid #202020;
        margin-left: -2px;

        &:hover {
          background-color: lighten($active-bgcolor, 2%);
        }

        a {
          color: #121416;
        }
      }
    }
  }
}