slidev-theme-measurelab 0.1.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.
- package/README.md +132 -0
- package/global.css +646 -0
- package/layouts/cover.vue +154 -0
- package/layouts/default.vue +254 -0
- package/layouts/full-image.vue +167 -0
- package/layouts/quote.vue +267 -0
- package/layouts/section-1.vue +217 -0
- package/layouts/section-2.vue +217 -0
- package/layouts/section-3.vue +217 -0
- package/layouts/three-cols.vue +291 -0
- package/layouts/two-cols-pic.vue +276 -0
- package/layouts/two-cols.vue +275 -0
- package/package.json +54 -0
- package/public/background-header-circles.svg +69 -0
- package/public/background-illustration.svg +1 -0
- package/public/background-image-half.svg +52 -0
- package/public/contact-background.svg +80 -0
- package/public/contact-grid-background-flipped.svg +53 -0
- package/public/contact-grid-background.svg +53 -0
- package/public/cta-background.svg +69 -0
- package/public/footer-background-illustration.svg +1 -0
- package/public/gmpcertified.png +0 -0
- package/public/google-cloud-partner.png +0 -0
- package/public/home-hero-background.svg +63 -0
- package/public/home-hero.svg +79 -0
- package/public/marketing-analytics-services-specialization.png +0 -0
- package/public/measurelab-dark-logo.svg +19 -0
- package/public/measurelab_favicon.svg +1 -0
- package/public/measurelab_logo.svg +1 -0
- package/public/services-analytics-bg.svg +101 -0
- package/public/services-hero-background.svg +39 -0
- package/public/services-hero.svg +76 -0
- package/public/technology-background.svg +71 -0
- package/setup/unocss.ts +68 -0
- package/styles/base.css +209 -0
- package/styles/index.ts +1 -0
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import { computed } from 'vue'
|
|
3
|
+
|
|
4
|
+
const props = defineProps<{
|
|
5
|
+
section?: string
|
|
6
|
+
heading?: string
|
|
7
|
+
class?: string
|
|
8
|
+
}>()
|
|
9
|
+
|
|
10
|
+
const isDark = computed(() => {
|
|
11
|
+
return props.class?.includes('dark')
|
|
12
|
+
})
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<template>
|
|
16
|
+
<div
|
|
17
|
+
class="slidev-layout two-cols-pic"
|
|
18
|
+
:class="[$props.class, { 'is-dark': isDark }]"
|
|
19
|
+
>
|
|
20
|
+
<!-- Grid background -->
|
|
21
|
+
<div class="grid-bg">
|
|
22
|
+
<img src="/contact-grid-background.svg" alt="" />
|
|
23
|
+
</div>
|
|
24
|
+
|
|
25
|
+
<!-- Header -->
|
|
26
|
+
<div class="slide-header">
|
|
27
|
+
<span v-if="section" class="section-label">{{ section }}</span>
|
|
28
|
+
<span v-else class="section-label"></span>
|
|
29
|
+
<div class="header-logo">
|
|
30
|
+
<img
|
|
31
|
+
v-show="!isDark"
|
|
32
|
+
src="/measurelab_logo.svg"
|
|
33
|
+
alt="Measurelab"
|
|
34
|
+
/>
|
|
35
|
+
<img
|
|
36
|
+
v-show="isDark"
|
|
37
|
+
src="/measurelab-dark-logo.svg"
|
|
38
|
+
alt="Measurelab"
|
|
39
|
+
/>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
<!-- Title -->
|
|
44
|
+
<h1 v-if="heading" class="slide-title">{{ heading }}</h1>
|
|
45
|
+
|
|
46
|
+
<!-- Two column content -->
|
|
47
|
+
<div class="slide-columns">
|
|
48
|
+
<div class="col-left">
|
|
49
|
+
<slot name="default" />
|
|
50
|
+
</div>
|
|
51
|
+
<div class="col-right">
|
|
52
|
+
<slot name="right" />
|
|
53
|
+
</div>
|
|
54
|
+
</div>
|
|
55
|
+
|
|
56
|
+
<!-- Footer -->
|
|
57
|
+
<div class="slide-footer">
|
|
58
|
+
<div class="footer-left">
|
|
59
|
+
<span class="copyright">© <strong>Measurelab</strong></span>
|
|
60
|
+
<span class="confidential">All rights reserved. Company confidential.</span>
|
|
61
|
+
</div>
|
|
62
|
+
<div class="footer-right">
|
|
63
|
+
<span class="page-number">{{ $slidev?.nav.currentPage }}</span>
|
|
64
|
+
</div>
|
|
65
|
+
</div>
|
|
66
|
+
</div>
|
|
67
|
+
</template>
|
|
68
|
+
|
|
69
|
+
<style scoped>
|
|
70
|
+
.two-cols-pic {
|
|
71
|
+
display: flex;
|
|
72
|
+
flex-direction: column;
|
|
73
|
+
height: 100%;
|
|
74
|
+
position: relative;
|
|
75
|
+
background: #ffffff;
|
|
76
|
+
color: #081f30;
|
|
77
|
+
overflow: hidden;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.two-cols-pic.is-dark {
|
|
81
|
+
background: #081f30;
|
|
82
|
+
color: #f9f9f9;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/* Grid background */
|
|
86
|
+
.grid-bg {
|
|
87
|
+
position: absolute;
|
|
88
|
+
top: 0;
|
|
89
|
+
left: 0;
|
|
90
|
+
right: 0;
|
|
91
|
+
bottom: 3rem;
|
|
92
|
+
pointer-events: none;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.grid-bg img {
|
|
96
|
+
width: 100%;
|
|
97
|
+
height: auto;
|
|
98
|
+
position: absolute;
|
|
99
|
+
bottom: 0;
|
|
100
|
+
left: 0;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.two-cols-pic.is-dark .grid-bg {
|
|
104
|
+
opacity: 0.3;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/* Header */
|
|
108
|
+
.slide-header {
|
|
109
|
+
display: flex;
|
|
110
|
+
justify-content: space-between;
|
|
111
|
+
align-items: flex-start;
|
|
112
|
+
padding: 1.5rem 2.5rem;
|
|
113
|
+
position: relative;
|
|
114
|
+
z-index: 10;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.section-label {
|
|
118
|
+
font-size: 0.75rem;
|
|
119
|
+
font-weight: 400;
|
|
120
|
+
color: inherit;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.header-logo {
|
|
124
|
+
height: 1.25rem;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.header-logo img {
|
|
128
|
+
height: 100%;
|
|
129
|
+
width: auto;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
/* Title */
|
|
133
|
+
.slide-title {
|
|
134
|
+
font-size: 2rem;
|
|
135
|
+
font-weight: 600;
|
|
136
|
+
line-height: 1.2;
|
|
137
|
+
margin: 20px 0 1.5rem 0;
|
|
138
|
+
padding: 0 2.5rem;
|
|
139
|
+
color: inherit;
|
|
140
|
+
position: relative;
|
|
141
|
+
z-index: 10;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/* Two column content */
|
|
145
|
+
.slide-columns {
|
|
146
|
+
flex: 1;
|
|
147
|
+
display: grid;
|
|
148
|
+
grid-template-columns: 1fr 1fr;
|
|
149
|
+
gap: 3rem;
|
|
150
|
+
padding: 0 2.5rem;
|
|
151
|
+
position: relative;
|
|
152
|
+
z-index: 10;
|
|
153
|
+
color: inherit;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.col-left {
|
|
157
|
+
display: flex;
|
|
158
|
+
flex-direction: column;
|
|
159
|
+
gap: 0.25rem;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.col-right {
|
|
163
|
+
display: flex;
|
|
164
|
+
align-items: center;
|
|
165
|
+
justify-content: center;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.col-left :deep(h1) {
|
|
169
|
+
font-size: 2rem !important;
|
|
170
|
+
font-weight: 600 !important;
|
|
171
|
+
line-height: 1.2;
|
|
172
|
+
margin: 0 0 1rem 0;
|
|
173
|
+
color: inherit;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.col-left :deep(h2) {
|
|
177
|
+
font-size: 1.35rem !important;
|
|
178
|
+
font-weight: 500 !important;
|
|
179
|
+
line-height: 1.3;
|
|
180
|
+
margin: 1rem 0 0.125rem 0;
|
|
181
|
+
color: inherit;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.col-left :deep(h3) {
|
|
185
|
+
font-size: 1.125rem !important;
|
|
186
|
+
font-weight: 500 !important;
|
|
187
|
+
line-height: 1.3;
|
|
188
|
+
margin: 0.75rem 0 0.125rem 0;
|
|
189
|
+
color: inherit;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.col-left :deep(p) {
|
|
193
|
+
font-size: 1.125rem !important;
|
|
194
|
+
line-height: 1.6;
|
|
195
|
+
margin: 0;
|
|
196
|
+
color: inherit;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.col-left :deep(ul),
|
|
200
|
+
.col-left :deep(ol) {
|
|
201
|
+
margin: 0;
|
|
202
|
+
padding-left: 1.5rem;
|
|
203
|
+
list-style: disc;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.col-left :deep(li) {
|
|
207
|
+
font-size: 1.125rem !important;
|
|
208
|
+
line-height: 1.6;
|
|
209
|
+
margin: 0.5rem 0;
|
|
210
|
+
color: inherit;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.col-left :deep(li::marker) {
|
|
214
|
+
color: #6dd750;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.col-left :deep(h4) {
|
|
218
|
+
font-size: 1rem !important;
|
|
219
|
+
font-weight: 500 !important;
|
|
220
|
+
line-height: 1.3;
|
|
221
|
+
margin: 0.5rem 0 0.125rem 0;
|
|
222
|
+
color: inherit;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.col-left :deep(ol) {
|
|
226
|
+
list-style: decimal;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.col-left :deep(ol li::marker) {
|
|
230
|
+
color: #6dd750;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.col-left :deep(blockquote) {
|
|
234
|
+
border-left: 4px solid #6dd750;
|
|
235
|
+
padding-left: 1rem;
|
|
236
|
+
margin: 1rem 0;
|
|
237
|
+
font-style: italic;
|
|
238
|
+
color: inherit;
|
|
239
|
+
opacity: 0.8;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
/* Right column image styling */
|
|
243
|
+
.col-right :deep(img) {
|
|
244
|
+
max-width: 100%;
|
|
245
|
+
max-height: 100%;
|
|
246
|
+
object-fit: contain;
|
|
247
|
+
border-radius: 0.5rem;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
/* Footer */
|
|
251
|
+
.slide-footer {
|
|
252
|
+
display: flex;
|
|
253
|
+
justify-content: space-between;
|
|
254
|
+
align-items: center;
|
|
255
|
+
padding: 1rem 2.5rem;
|
|
256
|
+
position: relative;
|
|
257
|
+
z-index: 10;
|
|
258
|
+
color: inherit;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.footer-left {
|
|
262
|
+
display: flex;
|
|
263
|
+
gap: 1rem;
|
|
264
|
+
font-size: 0.75rem;
|
|
265
|
+
color: inherit;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.footer-left strong {
|
|
269
|
+
font-weight: 500;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.footer-right {
|
|
273
|
+
font-size: 0.75rem;
|
|
274
|
+
color: inherit;
|
|
275
|
+
}
|
|
276
|
+
</style>
|
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import { computed } from 'vue'
|
|
3
|
+
|
|
4
|
+
const props = defineProps<{
|
|
5
|
+
section?: string
|
|
6
|
+
heading?: string
|
|
7
|
+
class?: string
|
|
8
|
+
}>()
|
|
9
|
+
|
|
10
|
+
const isDark = computed(() => {
|
|
11
|
+
return props.class?.includes('dark')
|
|
12
|
+
})
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<template>
|
|
16
|
+
<div
|
|
17
|
+
class="slidev-layout two-cols"
|
|
18
|
+
:class="[$props.class, { 'is-dark': isDark }]"
|
|
19
|
+
>
|
|
20
|
+
<!-- Grid background -->
|
|
21
|
+
<div class="grid-bg">
|
|
22
|
+
<img src="/contact-grid-background.svg" alt="" />
|
|
23
|
+
</div>
|
|
24
|
+
|
|
25
|
+
<!-- Header -->
|
|
26
|
+
<div class="slide-header">
|
|
27
|
+
<span v-if="section" class="section-label">{{ section }}</span>
|
|
28
|
+
<span v-else class="section-label"></span>
|
|
29
|
+
<div class="header-logo">
|
|
30
|
+
<img
|
|
31
|
+
v-show="!isDark"
|
|
32
|
+
src="/measurelab_logo.svg"
|
|
33
|
+
alt="Measurelab"
|
|
34
|
+
/>
|
|
35
|
+
<img
|
|
36
|
+
v-show="isDark"
|
|
37
|
+
src="/measurelab-dark-logo.svg"
|
|
38
|
+
alt="Measurelab"
|
|
39
|
+
/>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
<!-- Title -->
|
|
44
|
+
<h1 v-if="heading" class="slide-title">{{ heading }}</h1>
|
|
45
|
+
|
|
46
|
+
<!-- Two column content -->
|
|
47
|
+
<div class="slide-columns">
|
|
48
|
+
<div class="col-left">
|
|
49
|
+
<slot name="default" />
|
|
50
|
+
</div>
|
|
51
|
+
<div class="col-right">
|
|
52
|
+
<slot name="right" />
|
|
53
|
+
</div>
|
|
54
|
+
</div>
|
|
55
|
+
|
|
56
|
+
<!-- Footer -->
|
|
57
|
+
<div class="slide-footer">
|
|
58
|
+
<div class="footer-left">
|
|
59
|
+
<span class="copyright">© <strong>Measurelab</strong></span>
|
|
60
|
+
<span class="confidential">All rights reserved. Company confidential.</span>
|
|
61
|
+
</div>
|
|
62
|
+
<div class="footer-right">
|
|
63
|
+
<span class="page-number">{{ $slidev?.nav.currentPage }}</span>
|
|
64
|
+
</div>
|
|
65
|
+
</div>
|
|
66
|
+
</div>
|
|
67
|
+
</template>
|
|
68
|
+
|
|
69
|
+
<style scoped>
|
|
70
|
+
.two-cols {
|
|
71
|
+
display: flex;
|
|
72
|
+
flex-direction: column;
|
|
73
|
+
height: 100%;
|
|
74
|
+
position: relative;
|
|
75
|
+
background: #ffffff;
|
|
76
|
+
color: #081f30;
|
|
77
|
+
overflow: hidden;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.two-cols.is-dark {
|
|
81
|
+
background: #081f30;
|
|
82
|
+
color: #f9f9f9;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/* Grid background */
|
|
86
|
+
.grid-bg {
|
|
87
|
+
position: absolute;
|
|
88
|
+
top: 0;
|
|
89
|
+
left: 0;
|
|
90
|
+
right: 0;
|
|
91
|
+
bottom: 3rem;
|
|
92
|
+
pointer-events: none;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.grid-bg img {
|
|
96
|
+
width: 100%;
|
|
97
|
+
height: auto;
|
|
98
|
+
position: absolute;
|
|
99
|
+
bottom: 0;
|
|
100
|
+
left: 0;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.two-cols.is-dark .grid-bg {
|
|
104
|
+
opacity: 0.3;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/* Header */
|
|
108
|
+
.slide-header {
|
|
109
|
+
display: flex;
|
|
110
|
+
justify-content: space-between;
|
|
111
|
+
align-items: flex-start;
|
|
112
|
+
padding: 1.5rem 2.5rem;
|
|
113
|
+
position: relative;
|
|
114
|
+
z-index: 10;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.section-label {
|
|
118
|
+
font-size: 0.75rem;
|
|
119
|
+
font-weight: 400;
|
|
120
|
+
color: inherit;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.header-logo {
|
|
124
|
+
height: 1.25rem;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.header-logo img {
|
|
128
|
+
height: 100%;
|
|
129
|
+
width: auto;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
/* Title */
|
|
133
|
+
.slide-title {
|
|
134
|
+
font-size: 2rem;
|
|
135
|
+
font-weight: 600;
|
|
136
|
+
line-height: 1.2;
|
|
137
|
+
margin: 20px 0 1.5rem 0;
|
|
138
|
+
padding: 0 2.5rem;
|
|
139
|
+
color: inherit;
|
|
140
|
+
position: relative;
|
|
141
|
+
z-index: 10;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/* Two column content */
|
|
145
|
+
.slide-columns {
|
|
146
|
+
flex: 1;
|
|
147
|
+
display: grid;
|
|
148
|
+
grid-template-columns: 1fr 1fr;
|
|
149
|
+
gap: 3rem;
|
|
150
|
+
padding: 0 2.5rem;
|
|
151
|
+
position: relative;
|
|
152
|
+
z-index: 10;
|
|
153
|
+
color: inherit;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.col-left,
|
|
157
|
+
.col-right {
|
|
158
|
+
display: flex;
|
|
159
|
+
flex-direction: column;
|
|
160
|
+
gap: 0.25rem;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.col-left :deep(h1),
|
|
164
|
+
.col-right :deep(h1) {
|
|
165
|
+
font-size: 2rem !important;
|
|
166
|
+
font-weight: 600 !important;
|
|
167
|
+
line-height: 1.2;
|
|
168
|
+
margin: 0 0 1rem 0;
|
|
169
|
+
color: inherit;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.col-left :deep(h2),
|
|
173
|
+
.col-right :deep(h2) {
|
|
174
|
+
font-size: 1.35rem !important;
|
|
175
|
+
font-weight: 500 !important;
|
|
176
|
+
line-height: 1.3;
|
|
177
|
+
margin: 1rem 0 0.125rem 0;
|
|
178
|
+
color: inherit;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.col-left :deep(h4),
|
|
182
|
+
.col-right :deep(h4) {
|
|
183
|
+
font-size: 1rem !important;
|
|
184
|
+
font-weight: 500 !important;
|
|
185
|
+
line-height: 1.3;
|
|
186
|
+
margin: 0.5rem 0 0.125rem 0;
|
|
187
|
+
color: inherit;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.col-left :deep(h3),
|
|
191
|
+
.col-right :deep(h3) {
|
|
192
|
+
font-size: 1.125rem !important;
|
|
193
|
+
font-weight: 500 !important;
|
|
194
|
+
line-height: 1.3;
|
|
195
|
+
margin: 0.75rem 0 0.125rem 0;
|
|
196
|
+
color: inherit;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.col-left :deep(p),
|
|
200
|
+
.col-right :deep(p) {
|
|
201
|
+
font-size: 1.125rem !important;
|
|
202
|
+
line-height: 1.6;
|
|
203
|
+
margin: 0;
|
|
204
|
+
color: inherit;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.col-left :deep(ul),
|
|
208
|
+
.col-left :deep(ol),
|
|
209
|
+
.col-right :deep(ul),
|
|
210
|
+
.col-right :deep(ol) {
|
|
211
|
+
margin: 0;
|
|
212
|
+
padding-left: 1.5rem;
|
|
213
|
+
list-style: disc;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.col-left :deep(li),
|
|
217
|
+
.col-right :deep(li) {
|
|
218
|
+
font-size: 1.125rem !important;
|
|
219
|
+
line-height: 1.6;
|
|
220
|
+
margin: 0.5rem 0;
|
|
221
|
+
color: inherit;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.col-left :deep(li::marker),
|
|
225
|
+
.col-right :deep(li::marker) {
|
|
226
|
+
color: #6dd750;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.col-left :deep(ol),
|
|
230
|
+
.col-right :deep(ol) {
|
|
231
|
+
list-style: decimal;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.col-left :deep(ol li::marker),
|
|
235
|
+
.col-right :deep(ol li::marker) {
|
|
236
|
+
color: #6dd750;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.col-left :deep(blockquote),
|
|
240
|
+
.col-right :deep(blockquote) {
|
|
241
|
+
border-left: 4px solid #6dd750;
|
|
242
|
+
padding-left: 1rem;
|
|
243
|
+
margin: 1rem 0;
|
|
244
|
+
font-style: italic;
|
|
245
|
+
color: inherit;
|
|
246
|
+
opacity: 0.8;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
/* Footer */
|
|
250
|
+
.slide-footer {
|
|
251
|
+
display: flex;
|
|
252
|
+
justify-content: space-between;
|
|
253
|
+
align-items: center;
|
|
254
|
+
padding: 1rem 2.5rem;
|
|
255
|
+
position: relative;
|
|
256
|
+
z-index: 10;
|
|
257
|
+
color: inherit;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.footer-left {
|
|
261
|
+
display: flex;
|
|
262
|
+
gap: 1rem;
|
|
263
|
+
font-size: 0.75rem;
|
|
264
|
+
color: inherit;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.footer-left strong {
|
|
268
|
+
font-weight: 500;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.footer-right {
|
|
272
|
+
font-size: 0.75rem;
|
|
273
|
+
color: inherit;
|
|
274
|
+
}
|
|
275
|
+
</style>
|
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "slidev-theme-measurelab",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Measurelab branded theme for Slidev presentations",
|
|
6
|
+
"author": "Measurelab",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/Measurelab/ml-slidev-theme.git"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"slidev-theme",
|
|
14
|
+
"slidev",
|
|
15
|
+
"measurelab",
|
|
16
|
+
"analytics",
|
|
17
|
+
"presentations"
|
|
18
|
+
],
|
|
19
|
+
"files": [
|
|
20
|
+
"layouts",
|
|
21
|
+
"styles",
|
|
22
|
+
"setup",
|
|
23
|
+
"public",
|
|
24
|
+
"global.css"
|
|
25
|
+
],
|
|
26
|
+
"engines": {
|
|
27
|
+
"slidev": ">=0.48.0"
|
|
28
|
+
},
|
|
29
|
+
"slidev": {
|
|
30
|
+
"colorSchema": "both",
|
|
31
|
+
"defaults": {
|
|
32
|
+
"fonts": {
|
|
33
|
+
"sans": "Poppins",
|
|
34
|
+
"mono": "SFMono-Regular, Menlo, Monaco, Consolas, monospace"
|
|
35
|
+
},
|
|
36
|
+
"transition": "slide-left"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"main": "styles/index.ts",
|
|
40
|
+
"scripts": {
|
|
41
|
+
"dev": "slidev slides.md --open",
|
|
42
|
+
"build": "slidev build slides.md",
|
|
43
|
+
"export": "slidev export slides.md"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@iconify-json/lucide": "^1.1.0"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@slidev/cli": "^0.50.0",
|
|
50
|
+
"@slidev/types": "^0.50.0",
|
|
51
|
+
"typescript": "^5.3.0",
|
|
52
|
+
"vue": "^3.4.0"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<svg width="1920" height="694" viewBox="0 0 1920 694" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<mask id="mask0_2299_17582" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="1920" height="694">
|
|
3
|
+
<rect width="1920" height="694" fill="url(#paint0_radial_2299_17582)"/>
|
|
4
|
+
</mask>
|
|
5
|
+
<g mask="url(#mask0_2299_17582)">
|
|
6
|
+
<rect width="1920" height="1" fill="#ECECEC"/>
|
|
7
|
+
<rect y="77" width="1920" height="1" fill="#ECECEC"/>
|
|
8
|
+
<rect y="154" width="1920" height="1" fill="#ECECEC"/>
|
|
9
|
+
<rect y="231" width="1920" height="1" fill="#ECECEC"/>
|
|
10
|
+
<rect y="308" width="1920" height="1" fill="#ECECEC"/>
|
|
11
|
+
<rect y="385" width="1920" height="1" fill="#ECECEC"/>
|
|
12
|
+
<rect y="462" width="1920" height="1" fill="#ECECEC"/>
|
|
13
|
+
<rect y="539" width="1920" height="1" fill="#ECECEC"/>
|
|
14
|
+
<rect y="616" width="1920" height="1" fill="#ECECEC"/>
|
|
15
|
+
<rect y="693" width="1920" height="1" fill="#ECECEC"/>
|
|
16
|
+
<rect x="36" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
17
|
+
<rect x="113" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
18
|
+
<rect x="190" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
19
|
+
<rect x="267" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
20
|
+
<rect x="344" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
21
|
+
<rect x="421" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
22
|
+
<rect x="498" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
23
|
+
<rect x="575" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
24
|
+
<rect x="652" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
25
|
+
<rect x="729" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
26
|
+
<rect x="806" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
27
|
+
<rect x="883" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
28
|
+
<rect x="960" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
29
|
+
<rect x="1037" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
30
|
+
<rect x="1114" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
31
|
+
<rect x="1191" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
32
|
+
<rect x="1268" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
33
|
+
<rect x="1345" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
34
|
+
<rect x="1422" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
35
|
+
<rect x="1499" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
36
|
+
<rect x="1576" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
37
|
+
<rect x="1653" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
38
|
+
<rect x="1730" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
39
|
+
<rect x="1807" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
40
|
+
<rect x="1884" y="-32" width="1" height="1080" fill="#ECECEC"/>
|
|
41
|
+
</g>
|
|
42
|
+
<mask id="mask1_2299_17582" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="1920" height="617">
|
|
43
|
+
<rect width="1920" height="617" fill="#D9D9D9"/>
|
|
44
|
+
</mask>
|
|
45
|
+
<g mask="url(#mask1_2299_17582)">
|
|
46
|
+
<circle cx="1884.5" cy="308.5" r="308" transform="rotate(-180 1884.5 308.5)" stroke="#70E45C"/>
|
|
47
|
+
<circle cx="1884" cy="309" r="230.5" transform="rotate(-180 1884 309)" stroke="#70E45C"/>
|
|
48
|
+
<circle cx="1730.5" cy="308.5" r="77" transform="rotate(-180 1730.5 308.5)" stroke="#70E45C"/>
|
|
49
|
+
<circle cx="1730.5" cy="308.5" r="4.5" transform="rotate(-180 1730.5 308.5)" fill="#FF8506"/>
|
|
50
|
+
<circle cx="1537" cy="308" r="38.5" stroke="#70E45C"/>
|
|
51
|
+
<circle cx="1537.5" cy="307.5" r="4.5" fill="#FF8506"/>
|
|
52
|
+
<circle cx="1884" cy="308" r="38.5" stroke="#70E45C"/>
|
|
53
|
+
<circle cx="1884.5" cy="307.5" r="4.5" fill="#FF8506"/>
|
|
54
|
+
<circle cx="36.5" cy="308.5" r="308" stroke="#70E45C"/>
|
|
55
|
+
<circle cx="38" cy="309" r="230.5" stroke="#70E45C"/>
|
|
56
|
+
<circle cx="191.5" cy="308.5" r="77" stroke="#70E45C"/>
|
|
57
|
+
<circle cx="191.5" cy="308.5" r="4.5" fill="#FF8506"/>
|
|
58
|
+
<circle cx="383" cy="309" r="38.5" stroke="#70E45C"/>
|
|
59
|
+
<circle cx="383.5" cy="308.5" r="4.5" fill="#FF8506"/>
|
|
60
|
+
<circle cx="36" cy="308" r="38.5" stroke="#70E45C"/>
|
|
61
|
+
<circle cx="36.5" cy="307.5" r="4.5" fill="#FF8506"/>
|
|
62
|
+
</g>
|
|
63
|
+
<defs>
|
|
64
|
+
<radialGradient id="paint0_radial_2299_17582" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(960 329.313) rotate(90) scale(364.687 1008.93)">
|
|
65
|
+
<stop stop-color="#D9D9D9"/>
|
|
66
|
+
<stop offset="1" stop-color="#737373" stop-opacity="0"/>
|
|
67
|
+
</radialGradient>
|
|
68
|
+
</defs>
|
|
69
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="1024" fill="none"><path fill="url(#a)" fill-rule="evenodd" d="M-217.58 475.75c91.82-72.02 225.52-29.38 341.2-44.74C240 415.56 372.33 315.14 466.77 384.9c102.9 76.02 44.74 246.76 90.31 366.31 29.83 78.24 90.48 136.14 129.48 210.23 57.92 109.99 169.67 208.23 155.9 331.77-13.52 121.26-103.42 264.33-224.23 281.37-141.96 20.03-232.72-220.96-374.06-196.99-151.7 25.73-172.68 330.24-325.85 315.72-128.6-12.2-110.9-230.73-128.15-358.76-12.16-90.14 65.87-176.25 44.1-264.57-26.42-107.2-167.12-163.46-176.72-273.45-10.15-116.29 33.01-248.75 124.87-320.79Z" clip-rule="evenodd" style="opacity:.154"/><path fill="url(#b)" fill-rule="evenodd" d="M1103.43 115.43c146.42-19.45 275.33-155.84 413.5-103.59 188.09 71.13 409 212.64 407.06 413.88-1.94 201.25-259.28 278.6-414.96 405.96-130 106.35-240.24 294.39-405.6 265.3-163.7-28.8-161.93-274.12-284.34-386.66-134.95-124.06-436-101.46-445.82-284.6-9.68-180.38 247.41-246.3 413.54-316.9 101.01-42.93 207.83 21.06 316.62 6.61Z" clip-rule="evenodd" style="opacity:.154"/><defs><linearGradient id="b" x1="373" x2="1995.44" y1="1100" y2="118.03" gradientUnits="userSpaceOnUse"><stop stop-color="#D83333"/><stop offset="1" stop-color="#F041FF"/></linearGradient><linearGradient id="a" x1="107.37" x2="1130.66" y1="1993.35" y2="1026.31" gradientUnits="userSpaceOnUse"><stop stop-color="#3245FF"/><stop offset="1" stop-color="#BC52EE"/></linearGradient></defs></svg>
|