Simple SSG website with company title in svelte #1
|
@ -4,8 +4,13 @@
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
%sveltekit.head%
|
|
||||||
|
<!-- Change theme for site here -->
|
||||||
|
<link rel="stylesheet" href="/stylesheets/main-theme.css" />
|
||||||
<link rel="stylesheet" href="/stylesheets/global.css" />
|
<link rel="stylesheet" href="/stylesheets/global.css" />
|
||||||
|
|
||||||
|
%sveltekit.head%
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body data-sveltekit-preload-data="hover">
|
<body data-sveltekit-preload-data="hover">
|
||||||
<div style="display: contents">%sveltekit.body%</div>
|
<div style="display: contents">%sveltekit.body%</div>
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
<!-- Theme load -->
|
<!-- Theme load -->
|
||||||
<svelte:head>
|
<svelte:head>
|
||||||
<script>
|
<script>
|
||||||
import { theme } from '../global-stores.js';
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<link rel="stylesheet" href="/stylesheets/main-theme.css" />
|
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<div class="main-title">
|
<div class="main-title">
|
||||||
|
@ -13,15 +11,8 @@
|
||||||
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@font-face {
|
|
||||||
font-family: 'CozetteVector';
|
|
||||||
src:
|
|
||||||
local("CozetteVector"),
|
|
||||||
url('/fonts/CozetteVector.ttf') format('truetype');
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-title {
|
.main-title {
|
||||||
font-family: 'CozetteVector';
|
font-family: "CozetteVector";
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
width: 80%;
|
width: 80%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
/* --- FONTS --- */
|
||||||
|
@font-face {
|
||||||
|
font-family: "CozetteVector";
|
||||||
|
src:
|
||||||
|
local("CozetteVector"),
|
||||||
|
url("/fonts/CozetteVector.ttf") format("truetype");
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
color: var(--text);
|
color: var(--text);
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
|
|
Loading…
Reference in New Issue