accomadesc 0.3.25 → 0.3.27
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/dist/PageComponent.svelte +10 -26
- package/package.json +1 -1
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
</header>
|
|
134
134
|
|
|
135
135
|
<div class="floating-title">
|
|
136
|
-
<h1>{translateFunc ? translateFunc(hero.title) : ''}</h1>
|
|
136
|
+
<h1 id="hero-title">{translateFunc ? translateFunc(hero.title) : ''}</h1>
|
|
137
137
|
</div>
|
|
138
138
|
{:else}
|
|
139
139
|
{#if title}
|
|
@@ -282,16 +282,16 @@
|
|
|
282
282
|
justify-content: center;
|
|
283
283
|
/* mix-blend-mode: difference; */
|
|
284
284
|
text-align: center;
|
|
285
|
-
}
|
|
286
285
|
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
286
|
+
h1#hero-title {
|
|
287
|
+
margin-left: 1rem;
|
|
288
|
+
color: var(--main-font-color);
|
|
289
|
+
font-weight: bolder;
|
|
290
|
+
font-size: 2.8rem;
|
|
291
|
+
font-family: var(--landing-title-font-family, 'sans-serif');
|
|
292
|
+
font-variant: var(--landing-title-font-variant, 'small-caps');
|
|
293
|
+
filter: var(--title-filter);
|
|
294
|
+
}
|
|
295
295
|
}
|
|
296
296
|
|
|
297
297
|
@media (max-width: 300px) {
|
|
@@ -355,28 +355,12 @@
|
|
|
355
355
|
* {
|
|
356
356
|
font-family: var(--main-font-family);
|
|
357
357
|
font-variant: var(--main-font-variant);
|
|
358
|
-
|
|
359
|
-
box-sizing: border-box;
|
|
360
|
-
margin: 0;
|
|
361
|
-
padding: 0;
|
|
362
358
|
}
|
|
363
359
|
|
|
364
360
|
*::selection {
|
|
365
361
|
background-color: var(--font-select-color);
|
|
366
362
|
}
|
|
367
363
|
|
|
368
|
-
*::after {
|
|
369
|
-
box-sizing: border-box;
|
|
370
|
-
margin: 0;
|
|
371
|
-
padding: 0;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
*::before {
|
|
375
|
-
box-sizing: border-box;
|
|
376
|
-
margin: 0;
|
|
377
|
-
padding: 0;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
364
|
hr {
|
|
381
365
|
margin-top: 1rem;
|
|
382
366
|
margin-bottom: 1rem;
|