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

actions_mobile.sass « post « partial « sass « assets - github.com/monkeyWzr/hugo-theme-cactus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8a602ac5c28d05a0e50fb6cf7bd0937aff413e68 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#footer-post
  position: fixed
  right: 0
  bottom: 0
  left: 0
  z-index: 5000000
  width: 100%
  border-top: 1px solid $color-border
  background: $color-footer-mobile-1
  transition: opacity .2s

  a
    background: none
    color: inherit
    text-decoration: none

  a.icon
    background: none

    &:hover
      color: $color-link

  #nav-footer
    padding-right: 1rem
    padding-left: 1rem
    background: $color-footer-mobile-2
    text-align: center

    a
      color: $color-accent-1
      font-size: 1em

    a:hover
      @include underline(5px, $color-accent-1)

    ul
      display: table
      margin: 0
      padding: 0
      width: 100%
      list-style-type: none

      li
        display: inline-table
        padding: 10px
        width: 20%
        vertical-align: middle

  #actions-footer
    overflow: auto
    margin-top: 1rem
    margin-bottom: 1rem
    padding-right: 1rem
    padding-left: 1rem
    width: 100%
    text-align: center
    white-space: nowrap

    a
      display: inline-block
      padding-left: 1rem
      color: $color-accent-1

  #share-footer
    padding-right: 1rem
    padding-left: 1rem
    background: $color-footer-mobile-2
    text-align: center

    ul
      display: table
      margin: 0
      padding: 0
      width: 100%
      list-style-type: none

      li
        display: inline-table
        padding: 10px
        width: 20%
        vertical-align: middle

  #toc-footer
    clear: both
    padding-top: 1rem
    padding-bottom: 1rem
    background: $color-footer-mobile-2
    text-align: left

    #TableOfContents
      ul
        margin: 0
        padding-left: 20px
        list-style-type: none

        li
          line-height: 30px

    a:hover
      color: $color-link

    // .toc-level-1 > .toc-link
    //   display: none

    #TableOfContents > ul > li
      color: $color-text
      font-size: .8rem

      &:before
        color: $color-accent-1
        content: "#"
        margin-right: 8px;

    #TableOfContents > ul > li > ul > li
      color: $color-meta
      font-size: .7rem
      line-height: 15px

      &:before
        color: $color-accent-1
        content: "·";
        font-weight: bold;
        margin-right: 3px;

    #TableOfContents > ul > li > ul > li > ul > li
      display: none

    // .toc-level-5
    //   display: none

    // .toc-level-6
    //   display: none

    // .toc-number
    //   display: none

@media screen and (min-width: 500px)
  #footer-post-container
    display: none