portosaurus 0.14.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.

Potentially problematic release.


This version of portosaurus might be problematic. Click here for more details.

Files changed (64) hide show
  1. package/.vscode/snippets.code-snippets +79 -0
  2. package/AGENTS.md +37 -0
  3. package/GG/config.js +233 -0
  4. package/GG/package.json +14 -0
  5. package/GG/static/.nojekyll +0 -0
  6. package/GG/static/docusaurus-snippet.css +3 -0
  7. package/GG/static/img/icon-bg.png +0 -0
  8. package/GG/static/img/icon-old.png +0 -0
  9. package/GG/static/img/icon.png +0 -0
  10. package/GG/static/img/project-blank.png +0 -0
  11. package/GG/static/img/social-card.jpeg +0 -0
  12. package/LICENSE +674 -0
  13. package/README.md +57 -0
  14. package/bin/portosaurus.js +136 -0
  15. package/package.json +36 -0
  16. package/src/config/iconMappings.js +329 -0
  17. package/src/config/metaTags.js +240 -0
  18. package/src/config/prism.js +179 -0
  19. package/src/config/sidebar.js +20 -0
  20. package/src/configLoader.js +99 -0
  21. package/src/index.js +79 -0
  22. package/src/pages/index.js +98 -0
  23. package/src/pages/notes.js +88 -0
  24. package/src/pages/tasks.js +251 -0
  25. package/src/theme/components/AboutSection/index.js +67 -0
  26. package/src/theme/components/AboutSection/styles.module.css +492 -0
  27. package/src/theme/components/ContactSection/index.js +87 -0
  28. package/src/theme/components/ContactSection/styles.module.css +327 -0
  29. package/src/theme/components/ExperienceSection/index.js +25 -0
  30. package/src/theme/components/ExperienceSection/styles.module.css +180 -0
  31. package/src/theme/components/HeroSection/index.js +63 -0
  32. package/src/theme/components/HeroSection/styles.module.css +471 -0
  33. package/src/theme/components/NoteIndex/index.js +119 -0
  34. package/src/theme/components/NoteIndex/styles.module.css +143 -0
  35. package/src/theme/components/ProjectsSection/index.js +529 -0
  36. package/src/theme/components/ProjectsSection/styles.module.css +830 -0
  37. package/src/theme/components/ScrollToTop/index.js +98 -0
  38. package/src/theme/components/ScrollToTop/styles.module.css +96 -0
  39. package/src/theme/components/SocialLinks/index.js +129 -0
  40. package/src/theme/components/SocialLinks/styles.module.css +55 -0
  41. package/src/theme/components/Tooltip/index.js +30 -0
  42. package/src/theme/components/Tooltip/styles.module.css +92 -0
  43. package/src/theme/css/bootstrap.css +6 -0
  44. package/src/theme/css/catppuccin.css +632 -0
  45. package/src/theme/css/custom.css +186 -0
  46. package/src/theme/css/tasks.css +868 -0
  47. package/src/theme/staticLink/.nojekyll +0 -0
  48. package/src/theme/staticLink/docusaurus-snippet.css +3 -0
  49. package/src/theme/staticLink/img/icon-bg.png +0 -0
  50. package/src/theme/staticLink/img/icon-old.png +0 -0
  51. package/src/theme/staticLink/img/icon.png +0 -0
  52. package/src/theme/staticLink/img/project-blank.png +0 -0
  53. package/src/theme/staticLink/img/social-card.jpeg +0 -0
  54. package/src/utils/HashNavigation.js +250 -0
  55. package/src/utils/appVersion.js +27 -0
  56. package/src/utils/cssUtils.js +99 -0
  57. package/src/utils/filterEnabledItems.js +21 -0
  58. package/src/utils/generateFavicon.js +256 -0
  59. package/src/utils/generateRobotsTxt.js +97 -0
  60. package/src/utils/iconExtractor.js +159 -0
  61. package/src/utils/imageDownloader.js +88 -0
  62. package/src/utils/imageProcessor.js +134 -0
  63. package/src/utils/linkShortner.js +0 -0
  64. package/src/utils/updateTitle.js +107 -0
@@ -0,0 +1,186 @@
1
+ /* Catppuccin colors */
2
+ @import url('./catppuccin.css');
3
+
4
+ /* Bootstrap (some prebuilt) */
5
+ @import url(./bootstrap.css);
6
+
7
+
8
+ /* === Component overrides === */
9
+
10
+ html {
11
+ scroll-behavior: smooth;
12
+ color: var(--ifm-font-color-base);
13
+ background-color: var(--ifm-footer-background-color) !important;
14
+ }
15
+
16
+ .main-wrapper {
17
+ background-color: var(--ifm-background-color) !important;
18
+ }
19
+
20
+ .navbar {
21
+ background-color: var(--ifm-navbar-background-color) !important;
22
+ }
23
+
24
+ /* Reduce gap between navbar items */
25
+ .navbar__items .navbar__item {
26
+ padding-left: 0.5rem;
27
+ padding-right: 0.5rem;
28
+ margin-left: 0;
29
+ margin-right: 0;
30
+ }
31
+
32
+ .navbar__link {
33
+ font-size: 0.95rem;
34
+ }
35
+
36
+ ._navbar-more-items {
37
+ padding-left: 8px;
38
+ margin-left: -7px;
39
+ border-left: 1.5px solid var(--ifm-background-surface-color) !important;
40
+ }
41
+
42
+ ._nav-protosaurus-version {
43
+ opacity: 64%;
44
+ margin-top: 10px;
45
+ border-top: 1.2px solid var(--ifm-background-color) !important;
46
+ }
47
+
48
+ @media (max-width: 768px) {
49
+ ._navbar-more-items {
50
+ border-left: 0 !important;
51
+ padding-left: 13px !important;
52
+ margin-left: 0 !important;
53
+ }
54
+ }
55
+
56
+ /* Search local styles */
57
+ :root {
58
+ --search-local-modal-background: var(--ifm-background-color);
59
+ --search-local-modal-shadow: 0 2px 8px 0 var(--ifm-shadow-color);
60
+ --search-local-hit-background: var(--ifm-card-background-color);
61
+ --search-local-hit-shadow: 0 1px 3px 0 var(--ifm-shadow-color);
62
+ --search-local-hit-color: var(--ifm-font-color-base);
63
+ --search-local-highlight-color: var(--ifm-color-primary);
64
+ --search-local-muted-color: var(--ifm-font-color-base);
65
+ --search-local-hit-active-color: var(--ifm-background-color);
66
+ --search-local-input-active-border-color: var(--ifm-color-primary);
67
+ }
68
+
69
+ /* Hide keyboard shortcut hint */
70
+ .searchHintContainer_Pkmr {
71
+ display: none !important;
72
+ }
73
+
74
+ .navbar__search-input {
75
+ width: 130px;
76
+ font-size: 0.85rem;
77
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23cdd6f4' d='M6.02945,10.20327a4.17382,4.17382,0,1,1,4.17382-4.17382A4.15609,4.15609,0,0,1,6.02945,10.20327Zm9.69195,4.2199L10.8989,9.59979A5.88021,5.88021,0,0,0,12.058,6.02856,6.00467,6.00467,0,1,0,9.59979,10.8989l4.82338,4.82338a.89729.89729,0,0,0,1.29912,0,.89749.89749,0,0,0-.00087-1.29909Z'/%3E%3C/svg%3E");
78
+ }
79
+
80
+ [data-theme='light'] .navbar__search-input {
81
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%234c4f69' d='M6.02945,10.20327a4.17382,4.17382,0,1,1,4.17382-4.17382A4.15609,4.15609,0,0,1,6.02945,10.20327Zm9.69195,4.2199L10.8989,9.59979A5.88021,5.88021,0,0,0,12.058,6.02856,6.00467,6.00467,0,1,0,9.59979,10.8989l4.82338,4.82338a.89729.89729,0,0,0,1.29912,0,.89749.89749,0,0,0-.00087-1.29909Z'/%3E%3C/svg%3E");
82
+ }
83
+
84
+ .footer {
85
+ background-color: var(--ifm-footer-background-color) !important;
86
+ padding-top: 0rem !important;
87
+ padding-bottom: 0.15rem !important;
88
+ margin: 0 !important;
89
+ }
90
+
91
+ .footer__copyright {
92
+ margin-top: 0 !important;
93
+ padding-top: 0 !important;
94
+ font-size: 0.8rem;
95
+ }
96
+
97
+ .cardDescription_PWke {
98
+ color: var(--ifm-font-color-base) !important;
99
+ opacity: 0.6;
100
+ }
101
+
102
+ .hide-this {
103
+ display: none !important;
104
+ }
105
+
106
+ /* Docs Styling */
107
+
108
+ /* .docs-wrapper {
109
+ background-color:darksalmon !important;
110
+ } article {
111
+ background-color: red !important;
112
+ } .markdown {
113
+ background-color: blue !important;
114
+ } .hide-this {
115
+ display: none !important;
116
+ }
117
+ */
118
+
119
+ .breadcrumbs__link {
120
+ font-size: 0.7rem;
121
+ padding: 0.1rem 0.2rem !important;
122
+ opacity: 76%;
123
+ }
124
+
125
+ .breadcrumbs__item--active .breadcrumbs__link {
126
+ border: none !important;
127
+ background-color: transparent !important;
128
+ }
129
+
130
+ .markdown h1 {
131
+ text-align: center;
132
+ color: var(--ifm-color-primary);
133
+ margin-top: 0.3rem;
134
+ margin-bottom: 2.7rem !important;
135
+ }
136
+
137
+ .markdown h2 {
138
+ color: var(--ifm-color-primary);
139
+ }
140
+
141
+ .markdown img {
142
+ display: block;
143
+ margin: 0 auto;
144
+ padding: 1px;
145
+ border: 2px solid var(--ifm-background-surface-color);
146
+ border-radius: 14px;
147
+ }
148
+
149
+ mark {
150
+ background-color: rgba(var(--ctp-peach-rgb), 0.2);
151
+ color: var(--ifm-font-color-base);
152
+ padding: 0.17rem 0.27rem;
153
+ border-radius: 0.2rem;
154
+ border-bottom: 1px solid var(--ifm-color-primary);
155
+ }
156
+
157
+ .pagination-nav__link {
158
+ border: 1px solid var(--ifm-background-color);
159
+ background-color: var(--ifm-background-surface-color);
160
+ }
161
+
162
+ .pagination-nav__link:hover {
163
+ border: 1px solid var(--ifm-color-primary);
164
+ border-color: var(--ifm-color-primary);
165
+ }
166
+
167
+ .table-of-contents__link--active {
168
+ font-weight: bold;
169
+ }
170
+
171
+
172
+
173
+ /* Reduced motion preferences */
174
+ @media (prefers-reduced-motion: reduce) {
175
+ html {
176
+ scroll-behavior: auto;
177
+ }
178
+ }
179
+
180
+ .center {
181
+ display: flex;
182
+ justify-content: center;
183
+ align-items: center;
184
+ }
185
+
186
+