@prosophia/personal-cv 0.0.2 → 0.0.3

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 @@
1
+ "use strict";
File without changes
@@ -0,0 +1 @@
1
+ "use strict";
File without changes
@@ -0,0 +1,204 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');
2
+
3
+ :root {
4
+ --primary-color: #000000;
5
+ --background-color: #ffffff;
6
+ --text-color: #111418;
7
+ --text-secondary: #637588;
8
+ --border-color: #e5e7eb;
9
+ --border-light: #f0f2f4;
10
+ --card-background: #ffffff;
11
+ --hover-background: #fcfcfd;
12
+ --header-bg: rgba(255, 255, 255, 0.9);
13
+ --shadow-color: rgba(0, 0, 0, 0.1);
14
+ --link-btn-bg: rgba(0, 0, 0, 0.1);
15
+ --link-btn-hover: rgba(0, 0, 0, 0.2);
16
+ }
17
+
18
+ [data-theme="dark"] {
19
+ --primary-color: #ffffff;
20
+ --background-color: #000000;
21
+ --text-color: #f5f5f5;
22
+ --text-secondary: #a0a0a0;
23
+ --border-color: #333333;
24
+ --border-light: #1a1a1a;
25
+ --card-background: #111111;
26
+ --hover-background: #222222;
27
+ --header-bg: rgba(0, 0, 0, 0.9);
28
+ --shadow-color: rgba(255, 255, 255, 0.05);
29
+ --link-btn-bg: rgba(255, 255, 255, 0.1);
30
+ --link-btn-hover: rgba(255, 255, 255, 0.2);
31
+ }
32
+
33
+ * {
34
+ box-sizing: border-box;
35
+ padding: 0;
36
+ margin: 0;
37
+ }
38
+
39
+ html {
40
+ scroll-behavior: smooth;
41
+ }
42
+
43
+ body {
44
+ font-family: 'Raleway', sans-serif;
45
+ background-color: var(--background-color);
46
+ color: var(--text-color);
47
+ -webkit-font-smoothing: antialiased;
48
+ -moz-osx-font-smoothing: grayscale;
49
+ line-height: 1.5;
50
+ transition: background-color 0.3s ease, color 0.3s ease;
51
+ }
52
+
53
+ a {
54
+ color: inherit;
55
+ text-decoration: none;
56
+ }
57
+
58
+ img {
59
+ max-width: 100%;
60
+ height: auto;
61
+ }
62
+
63
+ .layout-container {
64
+ width: 100%;
65
+ display: flex;
66
+ justify-content: center;
67
+ }
68
+
69
+ .content-container {
70
+ width: 100%;
71
+ max-width: 960px;
72
+ margin: 0 auto;
73
+ padding: 0 16px;
74
+ }
75
+
76
+ @media (min-width: 768px) {
77
+ .content-container {
78
+ padding: 0 40px;
79
+ }
80
+ }
81
+
82
+ .page-wrapper {
83
+ min-height: 100vh;
84
+ display: flex;
85
+ flex-direction: column;
86
+ }
87
+
88
+ .main-content {
89
+ flex: 1;
90
+ width: 100%;
91
+ }
92
+
93
+ /* Material Symbols */
94
+ .material-symbols-outlined {
95
+ font-family: 'Material Symbols Outlined';
96
+ font-weight: normal;
97
+ font-style: normal;
98
+ font-size: 24px;
99
+ line-height: 1;
100
+ letter-spacing: normal;
101
+ text-transform: none;
102
+ display: inline-block;
103
+ white-space: nowrap;
104
+ word-wrap: normal;
105
+ direction: ltr;
106
+ -webkit-font-feature-settings: 'liga';
107
+ -webkit-font-smoothing: antialiased;
108
+ }
109
+
110
+ /* Button base styles */
111
+ .btn {
112
+ display: inline-flex;
113
+ align-items: center;
114
+ justify-content: center;
115
+ gap: 8px;
116
+ padding: 12px 24px;
117
+ border-radius: 8px;
118
+ font-size: 14px;
119
+ font-weight: 700;
120
+ cursor: pointer;
121
+ transition: all 0.2s ease;
122
+ border: none;
123
+ }
124
+
125
+ .btn-primary {
126
+ background-color: var(--primary-color);
127
+ color: white;
128
+ }
129
+
130
+ .btn-primary:hover {
131
+ opacity: 0.9;
132
+ }
133
+
134
+ .btn-white {
135
+ background-color: var(--card-background);
136
+ color: var(--primary-color);
137
+ }
138
+
139
+ .btn-white:hover {
140
+ background-color: var(--hover-background);
141
+ }
142
+
143
+ /* Link button styles */
144
+ .link-btn {
145
+ display: inline-flex;
146
+ align-items: center;
147
+ gap: 4px;
148
+ padding: 6px 12px;
149
+ background-color: var(--link-btn-bg);
150
+ color: var(--primary-color);
151
+ font-size: 12px;
152
+ font-weight: 700;
153
+ border-radius: 9999px;
154
+ transition: background-color 0.2s ease;
155
+ }
156
+
157
+ .link-btn:hover {
158
+ background-color: var(--link-btn-hover);
159
+ }
160
+
161
+ /* Section styles */
162
+ .section {
163
+ scroll-margin-top: 96px;
164
+ margin-bottom: 48px;
165
+ }
166
+
167
+ .section-header {
168
+ display: flex;
169
+ align-items: center;
170
+ justify-content: space-between;
171
+ margin-bottom: 24px;
172
+ padding: 0 8px;
173
+ }
174
+
175
+ .section-title {
176
+ font-size: 24px;
177
+ font-weight: 700;
178
+ letter-spacing: -0.015em;
179
+ color: var(--text-color);
180
+ }
181
+
182
+ .section-link {
183
+ font-size: 14px;
184
+ font-weight: 500;
185
+ color: var(--primary-color);
186
+ transition: text-decoration 0.2s ease;
187
+ }
188
+
189
+ .section-link:hover {
190
+ text-decoration: underline;
191
+ }
192
+
193
+ /* Visually hidden (for accessibility) */
194
+ .visually-hidden {
195
+ position: absolute;
196
+ width: 1px;
197
+ height: 1px;
198
+ padding: 0;
199
+ margin: -1px;
200
+ overflow: hidden;
201
+ clip: rect(0, 0, 0, 0);
202
+ white-space: nowrap;
203
+ border: 0;
204
+ }
package/package.json CHANGED
@@ -1,21 +1,25 @@
1
1
  {
2
2
  "name": "@prosophia/personal-cv",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Personal academic CV template for Prosophia",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
7
- "types": "./dist/index.d.ts",
8
7
  "exports": {
9
8
  ".": {
10
9
  "import": "./dist/index.mjs",
11
- "require": "./dist/index.js",
12
- "types": "./dist/index.d.ts"
10
+ "require": "./dist/index.js"
13
11
  },
14
- "./styles": "./dist/styles/index.css"
12
+ "./schemas": {
13
+ "import": "./dist/schemas/index.mjs",
14
+ "require": "./dist/schemas/index.js"
15
+ },
16
+ "./layouts": {
17
+ "import": "./dist/layouts/index.mjs",
18
+ "require": "./dist/layouts/index.js"
19
+ },
20
+ "./styles": "./dist/styles/globals.css"
15
21
  },
16
- "files": [
17
- "dist"
18
- ],
22
+ "files": ["dist"],
19
23
  "scripts": {
20
24
  "build": "tsup",
21
25
  "dev": "tsup --watch",