jekyll-calconnect-theme 0.1.0 → 0.2.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.
@@ -0,0 +1,60 @@
1
+ .page-nav {
2
+ display: flex;
3
+ justify-content: space-between;
4
+ gap: 1rem;
5
+ margin-top: 3rem;
6
+ padding-top: 2rem;
7
+ border-top: 1px solid var(--color-gray-200, #e2e8f0);
8
+ }
9
+
10
+ .page-nav a {
11
+ display: flex;
12
+ flex-direction: column;
13
+ gap: 0.25rem;
14
+ padding: 0.75rem 1rem;
15
+ border: 1px solid var(--color-gray-200, #e2e8f0);
16
+ border-radius: 0.5rem;
17
+ text-decoration: none;
18
+ transition: all 0.15s ease;
19
+ max-width: 45%;
20
+ }
21
+
22
+ .page-nav a:hover {
23
+ border-color: var(--color-primary-200, #c7d2fe);
24
+ background: var(--color-gray-50, #f8fafc);
25
+ }
26
+
27
+ .page-nav .page-nav-label {
28
+ font-size: 0.75rem;
29
+ color: var(--color-gray-400, #94a3b8);
30
+ text-transform: uppercase;
31
+ letter-spacing: 0.05em;
32
+ }
33
+
34
+ .page-nav .page-nav-title {
35
+ font-size: 0.875rem;
36
+ font-weight: 500;
37
+ color: var(--color-primary-600, #4f46e5);
38
+ }
39
+
40
+ .page-nav a.next {
41
+ text-align: right;
42
+ margin-left: auto;
43
+ }
44
+
45
+ .dark .page-nav {
46
+ border-top-color: var(--color-gray-800, #334155);
47
+ }
48
+
49
+ .dark .page-nav a {
50
+ border-color: var(--color-gray-800, #334155);
51
+ }
52
+
53
+ .dark .page-nav a:hover {
54
+ border-color: var(--color-primary-800, #4338ca);
55
+ background: var(--color-gray-800, #1e293b);
56
+ }
57
+
58
+ .dark .page-nav .page-nav-title {
59
+ color: var(--color-primary-400, #818cf8);
60
+ }
@@ -0,0 +1,10 @@
1
+ #scroll-progress {
2
+ position: fixed;
3
+ top: 64px;
4
+ left: 0;
5
+ height: 2px;
6
+ background: linear-gradient(90deg, var(--color-primary-500, #6366f1), var(--color-accent-500, #06b6d4));
7
+ z-index: 40;
8
+ width: 0%;
9
+ transition: width 0.1s linear;
10
+ }
@@ -10,11 +10,11 @@
10
10
  .documentation .body td {
11
11
  padding: 0.75rem 1rem;
12
12
  text-align: left;
13
- border-bottom: 1px solid #e2e8f0;
13
+ border-bottom: 1px solid var(--color-gray-200, #e2e8f0);
14
14
  }
15
15
 
16
16
  .documentation .body th {
17
- background: #f8fafc;
17
+ background: var(--color-gray-50, #f8fafc);
18
18
  font-weight: 600;
19
- color: #1e293b;
19
+ color: var(--color-gray-800, #1e293b);
20
20
  }
@@ -10,7 +10,7 @@
10
10
  font-weight: 600;
11
11
  margin-top: 2.5rem;
12
12
  margin-bottom: 1rem;
13
- color: #1e293b;
13
+ color: var(--color-gray-800, #1e293b);
14
14
  }
15
15
 
16
16
  .documentation .body h3 {
@@ -18,22 +18,22 @@
18
18
  font-weight: 600;
19
19
  margin-top: 2rem;
20
20
  margin-bottom: 0.75rem;
21
- color: #334155;
21
+ color: var(--color-gray-700, #334155);
22
22
  }
23
23
 
24
24
  .documentation .body p {
25
25
  margin-bottom: 1rem;
26
- color: #475569;
26
+ color: var(--color-gray-600, #475569);
27
27
  }
28
28
 
29
29
  .documentation .body a {
30
- color: #6366f1;
30
+ color: var(--color-primary-500, #6366f1);
31
31
  text-decoration: underline;
32
32
  text-underline-offset: 2px;
33
33
  }
34
34
 
35
35
  .documentation .body a:hover {
36
- color: #4f46e5;
36
+ color: var(--color-primary-600, #4f46e5);
37
37
  }
38
38
 
39
39
  // Lists
@@ -48,7 +48,7 @@
48
48
  .documentation .sectionbody dl {
49
49
  margin-bottom: 1.25rem;
50
50
  padding-left: 1.75rem;
51
- color: #475569;
51
+ color: var(--color-gray-600, #475569);
52
52
  list-style-position: outside;
53
53
  }
54
54
 
@@ -95,18 +95,18 @@ ol.list-none {
95
95
  .documentation .body li::marker,
96
96
  .documentation .post-content li::marker,
97
97
  .documentation .sectionbody li::marker {
98
- color: #6366f1;
98
+ color: var(--color-primary-500, #6366f1);
99
99
  }
100
100
 
101
101
  // Definition lists
102
102
  .documentation .body dt {
103
103
  font-weight: 600;
104
- color: #1e293b;
104
+ color: var(--color-gray-800, #1e293b);
105
105
  margin-bottom: 0.25rem;
106
106
  }
107
107
 
108
108
  .documentation .body dd {
109
109
  margin-left: 1.5rem;
110
110
  margin-bottom: 0.75rem;
111
- color: #475569;
111
+ color: var(--color-gray-600, #475569);
112
112
  }
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module CalconnectTheme
5
- VERSION = "0.1.0"
5
+ VERSION = "0.2.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-calconnect-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - CalConnect
@@ -42,14 +42,29 @@ files:
42
42
  - _includes/google-analytics.html
43
43
  - _includes/head.html
44
44
  - _includes/header.html
45
+ - _includes/icons/external-link.svg
46
+ - _includes/icons/github.svg
47
+ - _includes/icons/linkedin.svg
48
+ - _includes/icons/menu.svg
49
+ - _includes/icons/moon.svg
50
+ - _includes/icons/sun.svg
51
+ - _includes/icons/twitter.svg
52
+ - _includes/icons/youtube.svg
53
+ - _includes/sidebar-nav-item.html
54
+ - _includes/sidebar-nav.html
45
55
  - _layouts/base.html
46
56
  - _layouts/default.html
47
57
  - _layouts/page.html
48
58
  - _sass/calconnect.scss
59
+ - _sass/calconnect/_code-copy.scss
49
60
  - _sass/calconnect/_code.scss
50
61
  - _sass/calconnect/_dark-mode.scss
62
+ - _sass/calconnect/_edit-on-github.scss
51
63
  - _sass/calconnect/_layout.scss
64
+ - _sass/calconnect/_mobile-sidebar-toggle.scss
52
65
  - _sass/calconnect/_navigation.scss
66
+ - _sass/calconnect/_page-nav.scss
67
+ - _sass/calconnect/_scroll-progress.scss
53
68
  - _sass/calconnect/_tables.scss
54
69
  - _sass/calconnect/_typography.scss
55
70
  - jekyll-calconnect-theme.gemspec