picklecore 0.16.4 → 0.16.5
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/_layouts/error.html +2 -2
- data/assets/css/error-page.css +1 -70
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4323fa78e39b07bc4ce8d196f52a94aa5f0e1f73c96270a39de120a1d512e186
|
|
4
|
+
data.tar.gz: 2a26ccd5c847c2ee39e34f8e1ed2b19e869a7fe9ae7209cc8b7d8d4195a6679c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 243e617f0209198dcbcb6c2ac869b72aa4e4b8383a816feedaf348f1c33caea441a3b5c19980645d07d0cd81651a633b23e59e962c3dc757e59e995f162e10b8
|
|
7
|
+
data.tar.gz: 1a9a3c0dfb863ddfbd7c431df25651e79227aca41559010dc32115a41cf690175da77e521c454d50e745a0736da73dd20a2c59f89e3d1a6305b00ac9c1154ab0
|
data/_layouts/error.html
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
</head>
|
|
7
7
|
<body>
|
|
8
8
|
<main>
|
|
9
|
-
<h1
|
|
10
|
-
<p
|
|
9
|
+
<h1>{{ page.message | default: "Uh oh..." }}</h1>
|
|
10
|
+
<p>
|
|
11
11
|
Error {{ page.code }} ({{ page.desc }})
|
|
12
12
|
{{ content }}
|
|
13
13
|
</p>
|
data/assets/css/error-page.css
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
body {
|
|
7
7
|
overflow: hidden;
|
|
8
8
|
background-color: {%- include styling/theme-color.css -%};
|
|
9
|
+
font-family: "Open Sans";
|
|
9
10
|
}
|
|
10
11
|
|
|
11
12
|
main {
|
|
@@ -14,7 +15,6 @@ main {
|
|
|
14
15
|
flex-direction: column;
|
|
15
16
|
align-items: center;
|
|
16
17
|
justify-content: center;
|
|
17
|
-
font-family: "Open Sans";
|
|
18
18
|
color: white;
|
|
19
19
|
}
|
|
20
20
|
|
|
@@ -29,72 +29,3 @@ main {
|
|
|
29
29
|
.error a:hover {
|
|
30
30
|
color: rgb(206, 206, 206);
|
|
31
31
|
}
|
|
32
|
-
|
|
33
|
-
.animated {
|
|
34
|
-
animation-duration: 1s;
|
|
35
|
-
animation-fill-mode: both;
|
|
36
|
-
animation-delay: 0.5s;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.animated.delay {
|
|
40
|
-
animation-delay: 1s;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
@-webkit-keyframes fadeInRightBig {
|
|
44
|
-
from {
|
|
45
|
-
opacity: 0;
|
|
46
|
-
-webkit-transform: translate3d(2000px, 0, 0);
|
|
47
|
-
transform: translate3d(2000px, 0, 0);
|
|
48
|
-
}
|
|
49
|
-
to {
|
|
50
|
-
opacity: 1;
|
|
51
|
-
-webkit-transform: translate3d(0, 0, 0);
|
|
52
|
-
transform: translate3d(0, 0, 0);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
@keyframes fadeInRightBig {
|
|
57
|
-
from {
|
|
58
|
-
opacity: 0;
|
|
59
|
-
transform: translate3d(2000px, 0, 0);
|
|
60
|
-
}
|
|
61
|
-
to {
|
|
62
|
-
opacity: 1;
|
|
63
|
-
transform: translate3d(0, 0, 0);
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.fadeInRightBig {
|
|
68
|
-
animation-name: fadeInRightBig;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
@-webkit-keyframes fadeInLeftBig {
|
|
72
|
-
from {
|
|
73
|
-
opacity: 0;
|
|
74
|
-
-webkit-transform: translate3d(-2000px, 0, 0);
|
|
75
|
-
transform: translate3d(-2000px, 0, 0);
|
|
76
|
-
}
|
|
77
|
-
to {
|
|
78
|
-
opacity: 1;
|
|
79
|
-
-webkit-transform: translate3d(0, 0, 0);
|
|
80
|
-
transform: translate3d(0, 0, 0);
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
@keyframes fadeInLeftBig {
|
|
85
|
-
from {
|
|
86
|
-
opacity: 0;
|
|
87
|
-
-webkit-transform: translate3d(-2000px, 0, 0);
|
|
88
|
-
transform: translate3d(-2000px, 0, 0);
|
|
89
|
-
}
|
|
90
|
-
to {
|
|
91
|
-
opacity: 1;
|
|
92
|
-
-webkit-transform: translate3d(0, 0, 0);
|
|
93
|
-
transform: translate3d(0, 0, 0);
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.fadeInLeftBig {
|
|
98
|
-
-webkit-animation-name: fadeInLeftBig;
|
|
99
|
-
animation-name: fadeInLeftBig;
|
|
100
|
-
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: picklecore
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.16.
|
|
4
|
+
version: 0.16.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Reece Dunham
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2020-
|
|
12
|
+
date: 2020-03-12 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: jekyll
|