teatro-vecchio 0.2.5 → 0.2.6
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 +4 -4
- data/_includes/footer.html +2 -0
- data/_includes/head.html +32 -53
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e7ba15f5ea3b687121deda085b8c0a11eeaebbcf2d4afd93ba303fdf7b25baa
|
|
4
|
+
data.tar.gz: 4e9752028a269809f4dff45bb9f76cf4ab1010f8f15728c4d188ec951a2d63a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8d481d2dd6d63f99fb7655fd911c083d042360666501717ca3509047f5972a827d2d6174c6ee9c27121066d8cb856c320a60e0496fd3ed4373893940e5433daa
|
|
7
|
+
data.tar.gz: b101f3642193b63e5648bf001e569144e0b315b8299b00be618981cafa520f1bf98a4f9310403e738ba084f0674d6f31f91e2950aa0fef47eedb113f72a0ee71
|
data/_includes/footer.html
CHANGED
|
@@ -31,6 +31,8 @@
|
|
|
31
31
|
<p>{% t global.description %}</p>
|
|
32
32
|
|
|
33
33
|
</footer>
|
|
34
|
+
<!-- Main font -->
|
|
35
|
+
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" async="async">
|
|
34
36
|
|
|
35
37
|
{%- if site.google_analytics_account -%}
|
|
36
38
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
data/_includes/head.html
CHANGED
|
@@ -8,88 +8,67 @@
|
|
|
8
8
|
<style>
|
|
9
9
|
|
|
10
10
|
body{
|
|
11
|
-
font-family:
|
|
11
|
+
font-family: 'Inconsolata', monospace;
|
|
12
12
|
font-size: 100%;
|
|
13
13
|
max-width: 75%;
|
|
14
14
|
margin: 0 auto;
|
|
15
15
|
padding-top: 20px;
|
|
16
|
-
background-color: #
|
|
17
|
-
color: #
|
|
16
|
+
background-color: #282c34;
|
|
17
|
+
color: #abb2bf;
|
|
18
18
|
line-height: 1.375
|
|
19
19
|
}
|
|
20
|
+
|
|
20
21
|
blockquote, time {
|
|
21
|
-
font-family:
|
|
22
|
+
font-family: monospace;
|
|
22
23
|
}
|
|
23
24
|
pre {
|
|
24
|
-
background-color: #
|
|
25
|
+
background-color: #111;
|
|
25
26
|
color: #ccc;
|
|
26
27
|
padding: 20px;
|
|
27
28
|
border-radius: 6px;
|
|
28
29
|
overflow-x: auto;
|
|
29
30
|
}
|
|
30
31
|
|
|
31
|
-
h1, h2, h3, h4 {font-size: 100%}
|
|
32
|
-
h1 {color: #
|
|
33
|
-
h2 {color: #
|
|
34
|
-
h3 {color: #
|
|
35
|
-
h4 {color: #
|
|
32
|
+
h1, h2, h3, h4, h5, h6 {font-size: 100%}
|
|
33
|
+
h1 {color: #b36ec8;}
|
|
34
|
+
h2 {color: #e06c75;}
|
|
35
|
+
h3 {color: #dfbb78;}
|
|
36
|
+
h4 {color: #98c379;}
|
|
37
|
+
h5 {color: #c1c3ca;}
|
|
38
|
+
|
|
39
|
+
a {text-decoration: none;}
|
|
40
|
+
a {color: #52a9b5;}
|
|
41
|
+
a:hover {color: #427c86}
|
|
36
42
|
|
|
37
|
-
a {
|
|
38
|
-
text-decoration: none
|
|
39
|
-
}
|
|
40
43
|
.post-content a {text-decoration: underline}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
+
|
|
45
|
+
hr{
|
|
46
|
+
border: none;
|
|
47
|
+
border-bottom: 1px solid #686f7b
|
|
48
|
+
}
|
|
49
|
+
|
|
44
50
|
.site-title {
|
|
45
51
|
font-weight: bold;
|
|
46
52
|
padding-bottom: 10px;
|
|
47
53
|
display: inline-block;
|
|
48
|
-
color: #
|
|
54
|
+
color: #e06c75 !important;
|
|
55
|
+
}
|
|
56
|
+
.post-title{
|
|
57
|
+
color: #cb9663 !important;
|
|
49
58
|
}
|
|
59
|
+
.footer-heading {
|
|
60
|
+
color: #dfbb78 !important
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
th { color: #c1c3ca;}
|
|
50
64
|
|
|
51
65
|
strong {
|
|
52
|
-
color: #
|
|
66
|
+
color: #b36ec8;
|
|
53
67
|
}
|
|
54
68
|
img {
|
|
55
69
|
max-width: 100%
|
|
56
70
|
}
|
|
57
71
|
|
|
58
|
-
/* gist */
|
|
59
|
-
|
|
60
|
-
/* Customizzazione di Ale */
|
|
61
|
-
/* colore bordo */
|
|
62
|
-
.gist-file { border: none !important;}
|
|
63
|
-
/* colore sfondo */
|
|
64
|
-
.gist-meta { background-color: #002b36 !important; }
|
|
65
|
-
.gist-data {
|
|
66
|
-
border: none !important;
|
|
67
|
-
background-color: inherit !important;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
/* Gist Embed - Dark Theme Styling - Thanks to MattD */
|
|
72
|
-
|
|
73
|
-
/* Body */
|
|
74
|
-
.gist-data tbody { background-color: #002b36; }
|
|
75
|
-
/* Line Numbers */
|
|
76
|
-
.gist-data tbody td:nth-of-type(1) { color: #2B91AF !important;}
|
|
77
|
-
/* Code */
|
|
78
|
-
.gist-data tbody td:nth-of-type(2){ color: #FFFFFF !important;}
|
|
79
|
-
/* Comments */
|
|
80
|
-
.pl-c { color: #57A64A !important; }
|
|
81
|
-
/* Function */
|
|
82
|
-
.pl-k, tbody tr:first-child .blob-code, tbody tr:last-child .blob-code{ color: #569CD6 !important; }
|
|
83
|
-
/* Function Name */
|
|
84
|
-
.pl-en { color: #FFFFFF !important; }
|
|
85
|
-
/* Function Method */
|
|
86
|
-
.pl-c1 { color: #FFFFFF !important; }
|
|
87
|
-
/* "'s around Strings */
|
|
88
|
-
.pl-pds { color: #D69D85 !important; }
|
|
89
|
-
/* Strings */
|
|
90
|
-
.pl-s { color: #D69D85 !important; }
|
|
91
|
-
.pl-smi{ color: #FFFFFF !important; }
|
|
92
|
-
|
|
93
72
|
</style>
|
|
94
73
|
|
|
95
74
|
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
|