jekyll-theme-primerpages 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +65 -0
- data/_config.yml +149 -0
- data/_includes/awesome-nav-breadcrumb-trail.html +33 -0
- data/_includes/awesome-nav-breadcrumbs.html +51 -0
- data/_includes/awesome-nav-menu-tree.html +21 -0
- data/_includes/awesome-nav-menu.html +68 -0
- data/_includes/awesome-nav-sidebar.html +7 -0
- data/_includes/awesome-nav-tree.html +52 -0
- data/_includes/breadcrumbs.html +62 -0
- data/_includes/category_index.html +18 -0
- data/_includes/collection-menu.html +79 -0
- data/_includes/collection-sidebar.html +23 -0
- data/_includes/custom-colors.html +99 -0
- data/_includes/footer.html +13 -0
- data/_includes/head.html +43 -0
- data/_includes/header-appbar.html +53 -0
- data/_includes/header-sidebar.html +60 -0
- data/_includes/header-stacked.html +33 -0
- data/_includes/header-topbar.html +59 -0
- data/_includes/link-card.html +52 -0
- data/_includes/links.html +12 -0
- data/_includes/masthead.html +18 -0
- data/_includes/mini-repo-info-card.html +30 -0
- data/_includes/nav-overlay.html +53 -0
- data/_includes/nav.html +51 -0
- data/_includes/navbar-underline.html +51 -0
- data/_includes/paginator_nav.html +28 -0
- data/_includes/post-card.html +27 -0
- data/_includes/post-feature-card.html +24 -0
- data/_includes/post-gallery.html +52 -0
- data/_includes/post-index.html +35 -0
- data/_includes/post-tease-image-card.html +22 -0
- data/_includes/post-tease-text-card.html +12 -0
- data/_includes/post-timeline-card.html +84 -0
- data/_includes/post-timeline.html +31 -0
- data/_includes/posts.html +12 -0
- data/_includes/related.html +116 -0
- data/_includes/repo-card.html +43 -0
- data/_includes/repositories.html +27 -0
- data/_includes/resolve-versioning.html +16 -0
- data/_includes/social.html +390 -0
- data/_includes/toggle.html +4 -0
- data/_includes/user-metadata.html +36 -0
- data/_includes/version-selector.html +22 -0
- data/_includes/version-warning.html +15 -0
- data/_layouts/category_index.html +16 -0
- data/_layouts/category_layout.html +33 -0
- data/_layouts/default.html +33 -0
- data/_layouts/docs.html +189 -0
- data/_layouts/docs_index.html +32 -0
- data/_layouts/home.html +3 -0
- data/_layouts/landing.html +38 -0
- data/_layouts/linktree.html +36 -0
- data/_layouts/page.html +22 -0
- data/_layouts/paginate.html +16 -0
- data/_layouts/paginate_timeline.html +17 -0
- data/_layouts/post.html +136 -0
- data/_layouts/profile.html +48 -0
- data/_layouts/repositories.html +11 -0
- data/_layouts/tag_index.html +16 -0
- data/_layouts/tags.html +12 -0
- data/_sass/_admonitions.scss +69 -0
- data/_sass/_highlight-syntax.scss +96 -0
- data/_sass/_language-colors.scss +1443 -0
- data/_sass/_main.scss +274 -0
- data/_sass/jekyll-theme-primerpages-compat.scss +5 -0
- data/_sass/jekyll-theme-primerpages.scss +7 -0
- data/assets/css/style.scss +2 -0
- data/assets/css/theme.scss +16 -0
- data/assets/img/default.png +0 -0
- data/assets/img/favicon.ico +0 -0
- data/assets/img/social-preview.png +0 -0
- data/assets/img/user-image.jpg +0 -0
- data/assets/js/anchor-links.js +47 -0
- data/assets/js/mermaid.js +61 -0
- data/assets/js/theme-toggle.js +84 -0
- data/assets/js/topbar.js +19 -0
- data/assets/js/versioning.js +300 -0
- metadata +184 -0
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
.highlight { overflow: auto; background-color: var(--color-canvas-inset) !important; padding: 8px; }
|
|
2
|
+
.highlight .c { color: #999988; font-style: italic } /* Comment */
|
|
3
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
|
4
|
+
.highlight .k { font-weight: bold } /* Keyword */
|
|
5
|
+
.highlight .o { font-weight: bold } /* Operator */
|
|
6
|
+
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
|
7
|
+
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
|
|
8
|
+
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
|
|
9
|
+
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
|
10
|
+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
|
11
|
+
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
|
|
12
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
|
13
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
|
14
|
+
.highlight .gh { color: #999999 } /* Generic.Heading */
|
|
15
|
+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
|
16
|
+
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
|
|
17
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
|
18
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
|
19
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
|
20
|
+
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
|
|
21
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
|
22
|
+
.highlight .kc { font-weight: bold } /* Keyword.Constant */
|
|
23
|
+
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
|
|
24
|
+
.highlight .kn { font-weight: bold } /* Keyword.Pseudo */
|
|
25
|
+
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
|
|
26
|
+
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
|
|
27
|
+
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
|
28
|
+
.highlight .m { color: #009999 } /* Literal.Number */
|
|
29
|
+
.highlight .s { color: #d14 } /* Literal.String */
|
|
30
|
+
.highlight .na { color: #008080 } /* Name.Attribute */
|
|
31
|
+
.highlight .nb { color: #0086B3 } /* Name.Builtin */
|
|
32
|
+
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
|
|
33
|
+
.highlight .no { color: #008080 } /* Name.Constant */
|
|
34
|
+
.highlight .ni { color: #800080 } /* Name.Entity */
|
|
35
|
+
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
|
36
|
+
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
|
|
37
|
+
.highlight .nn { color: #555555 } /* Name.Namespace */
|
|
38
|
+
.highlight .nt { color: #0969da } /* Name.Tag */
|
|
39
|
+
.highlight .nv { color: #008080 } /* Name.Variable */
|
|
40
|
+
.highlight .ow { font-weight: bold } /* Operator.Word */
|
|
41
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
|
42
|
+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
|
43
|
+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
|
44
|
+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
|
45
|
+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
|
46
|
+
.highlight .sb { color: #d14 } /* Literal.String.Backtick */
|
|
47
|
+
.highlight .sc { color: #d14 } /* Literal.String.Char */
|
|
48
|
+
.highlight .sd { color: #d14 } /* Literal.String.Doc */
|
|
49
|
+
.highlight .s2 { color: #d14 } /* Literal.String.Double */
|
|
50
|
+
.highlight .se { color: #d14 } /* Literal.String.Escape */
|
|
51
|
+
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
|
|
52
|
+
.highlight .si { color: #d14 } /* Literal.String.Interpol */
|
|
53
|
+
.highlight .sx { color: #d14 } /* Literal.String.Other */
|
|
54
|
+
.highlight .sr { color: #009926 } /* Literal.String.Regex */
|
|
55
|
+
.highlight .s1 { color: #d14 } /* Literal.String.Single */
|
|
56
|
+
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
|
|
57
|
+
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
|
58
|
+
.highlight .vc { color: #008080 } /* Name.Variable.Class */
|
|
59
|
+
.highlight .vg { color: #008080 } /* Name.Variable.Global */
|
|
60
|
+
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
|
|
61
|
+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
|
62
|
+
|
|
63
|
+
/* Make line numbers unselectable: excludes line numbers from copy-paste user ops */
|
|
64
|
+
.highlight .lineno {-webkit-user-select: none;-moz-user-select: none; -o-user-select: none;}
|
|
65
|
+
.lineno::-moz-selection {background-color: transparent;} /* Mozilla specific */
|
|
66
|
+
.lineno::selection {background-color: transparent;} /* Other major browsers */
|
|
67
|
+
.lineno { opacity: 0.5;}
|
|
68
|
+
|
|
69
|
+
.highlight table {
|
|
70
|
+
margin: inherit;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.highlight table tr {
|
|
74
|
+
background-color: inherit;
|
|
75
|
+
border-top: inherit;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.highlight table td {
|
|
79
|
+
padding: inherit;
|
|
80
|
+
border: inherit;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.highlight pre {
|
|
84
|
+
background-color: inherit !important;
|
|
85
|
+
border-radius: 0px !important;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.highlight code pre {
|
|
89
|
+
padding: 0px !important;
|
|
90
|
+
background-color: inherit;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.highlight code .gutter,
|
|
94
|
+
.highlight code .rouge-gutter {
|
|
95
|
+
padding-right: 16px !important;
|
|
96
|
+
}
|