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

_documentation-styles.css « css « assets « gohugoioTheme « themes « docs - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ea8e9b72657f81b6208ce282134d0ffb57d050f (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
.note,
.warning {

  border-left-width: 4px;
  border-left-style: solid;
  position: relative;
  border-color: var(--primary-color);

  display: block;
}
.note #exclamation-icon,
.warning #exclamation-icon {

  fill: var(--primary-color);
  position: absolute;
  top: 35%;
  left: -12px;
  /*background-color: white;*/
}

  .admonition-content {
    display: block;
    margin: 0px;
    padding: .125em 1em;
    /*margin-left: 1em;*/
    margin-top: 2em;
    margin-bottom: 2em;
    overflow-x: auto;
    /*font-size: .9375em;*/
    background-color: var(--black-05);
  }


  .hide-child-menu .child-menu {
    display: none;
  }
  .hide-child-menu:hover  .child-menu,
  .hide-child-menu:focus  .child-menu,
  .hide-child-menu:active .child-menu {
  display: block;
  }


/*documentation-copy headings exaggerate spacing and size to chunk content */
  .documentation-copy h2 {
    margin-top: 3em;
    &.minor {
      font-size: inherit;
      margin-top: inherit;
      border-bottom: none;
    }
  }