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

_code.scss « content « _post « _partial « sass « assets - github.com/xianmin/hugo-theme-jane.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8796e4534f445969b9d216af4e294644674b434a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// ==============================
// Post code
// ==============================

// normal <code> style
code {
  padding: 3px 7px;
  background: $code-background;
  border-radius: 4px;
  color: $code-color;
}

code, pre {
  overflow-x: auto;
  font-size: $code-font-size;
  font-family: $code-font-family;
}


// chroma code block style


// @import '_chroma_highlight';