picklecore 0.16.4 → 1.0.1

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.
@@ -1,6 +0,0 @@
1
- <div id="nav-btn" class="openbtn" onclick="toggleNav()">
2
- <span></span>
3
- <span></span>
4
- <span></span>
5
- </div>
6
- {% include components/sidebar.html %}
@@ -1,6 +0,0 @@
1
- <div class="card">
2
- <h1>{{ include.cardtitle }}</h1>
3
- <p>
4
- {{ include.cardbody }}
5
- </p>
6
- </div>
File without changes
@@ -1,12 +0,0 @@
1
- @font-face {
2
- font-family: 'Open Sans';
3
- font-style: normal;
4
- font-weight: 400;
5
- src: url('/assets/fonts/open-sans-v17-latin-regular.eot');
6
- src: local('Open Sans Regular'), local('OpenSans-Regular'),
7
- url('/assets/fonts/open-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'),
8
- url('/assets/fonts/open-sans-v17-latin-regular.woff2') format('woff2'),
9
- url('/assets/fonts/open-sans-v17-latin-regular.woff') format('woff'),
10
- url('/assets/fonts/open-sans-v17-latin-regular.ttf') format('truetype'),
11
- url('/assets/fonts/open-sans-v17-latin-regular.svg#OpenSans') format('svg');
12
- }
@@ -1 +0,0 @@
1
- #{%- if site.dark -%}24292e{%- else -%}303f9f{%- endif -%}
@@ -1,6 +0,0 @@
1
- ---
2
- layout: default
3
- ---
4
- {% include components/binds/sidebar-anchor.html %}
5
-
6
- {{ content }}
@@ -1,16 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- {% include metadata/metadata.html pagename=page.title %}
5
- <link rel="stylesheet" href="/assets/css/error-page.css"></link>
6
- </head>
7
- <body>
8
- <main>
9
- <h1 class="animated fadeInRightBig">{{ page.message | default: "Uh oh..." }}</h1>
10
- <p class="animated delay fadeInLeftBig">
11
- Error {{ page.code }} ({{ page.desc }})
12
- {{ content }}
13
- </p>
14
- </main>
15
- </body>
16
- </html>
@@ -1,100 +0,0 @@
1
- ---
2
- ---
3
-
4
- {% include styling/font.css %}
5
-
6
- body {
7
- overflow: hidden;
8
- background-color: {%- include styling/theme-color.css -%};
9
- }
10
-
11
- main {
12
- height: 100vh;
13
- display: flex;
14
- flex-direction: column;
15
- align-items: center;
16
- justify-content: center;
17
- font-family: "Open Sans";
18
- color: white;
19
- }
20
-
21
- .error p {
22
- font-size: 1.4em;
23
- }
24
-
25
- .error a {
26
- color: white;
27
- }
28
-
29
- .error a:hover {
30
- color: rgb(206, 206, 206);
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
- }
@@ -1,12 +0,0 @@
1
- navOpen = false;
2
-
3
- function toggleNav() {
4
- if (navOpen) {
5
- document.getElementById("nav").style.width = "0";
6
- navOpen = false;
7
- } else {
8
- document.getElementById("nav").style.width = "265px";
9
- navOpen = true;
10
- }
11
- document.getElementById("nav-btn").classList.toggle("open");
12
- }