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

custom.css « css « static - github.com/wd/hugo-fabric.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96fa0a0a07d5e76660296131477e86c444e17a16 (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
.subtitle {
  float: right;
  font-family: 'Slackey',cursive;
  font-size: 1.5em;
  margin-right: 100px;
}

/* for code */
article code, article pre {
  background: oldlace;
  border: 1px solid oldlace;
  font-family: "Hermit", Monaco, "Andale Mono", "lucida console", "Courier New", monospace; }
article code {
  font-size: 0.9em;
  padding: 1px 3px;
  margin: 0 3px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px; }
article pre {
  font-size: 1 / 0.9em;
  line-height: 1.5;
  margin-top: 10px;
  padding: 5px 15px;
  overflow-x: auto;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px; }
  article pre code {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    word-wrap: break-word;
    word-break: normal;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0; }

figure.highlight {
  background: #dddddd;
  border: 1px solid #cccccc;
  margin-top: 10px;
  padding: 5px 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px; }
  figure.highlight figcaption {
    font-size: 0.9em;
    position: relative; }
    figure.highlight figcaption span {
      margin: -5px -15px 0;
      padding: 5px 15px;
      display: block; }
      figure.highlight figcaption span:empty {
        display: none; }
    figure.highlight figcaption a {
      position: absolute;
      top: 5px;
      right: 0; }
  figure.highlight code, figure.highlight pre {
    font-size: 0.9em;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0; }
  figure.highlight {
    overflow-x: auto; }
  figure.highlight .gutter {
    border-right: 1px solid #cccccc;
    font-family: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace;
    padding-right: 15px;
    text-align: right; }
  figure.highlight table {
    border: none;
    text-align: left;
    margin-top: 0; }
    figure.highlight table td {
      text-align: left; }
  figure.highlight td.highlight {
    width: 100%;
    padding-left: 15px;
    overflow-x: auto; }
  figure.highlight .line {
    height: 18px;}