Icon font-display:swap, added pages
This commit is contained in:
parent
2e272de59c
commit
70c223f378
3 changed files with 22 additions and 4 deletions
|
@ -15,21 +15,21 @@ const { code } = Astro.props;
|
||||||
font-family: 'Line Awesome Regular';
|
font-family: 'Line Awesome Regular';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-display: auto;
|
font-display: swap;
|
||||||
src: url("/fonts/la-regular-400.eot?#iefix") format("embedded-opentype"), url("/fonts/la-regular-400.woff2") format("woff2"), url("/fonts/la-regular-400.woff") format("woff"), url("/fonts/la-regular-400.ttf") format("truetype");
|
src: url("/fonts/la-regular-400.eot?#iefix") format("embedded-opentype"), url("/fonts/la-regular-400.woff2") format("woff2"), url("/fonts/la-regular-400.woff") format("woff"), url("/fonts/la-regular-400.ttf") format("truetype");
|
||||||
}
|
}
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Line Awesome Solid';
|
font-family: 'Line Awesome Solid';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
font-display: auto;
|
font-display: swap;
|
||||||
src: url("/fonts/la-solid-900.eot?#iefix") format("embedded-opentype"), url("/fonts/la-solid-900.woff2") format("woff2"), url("/fonts/la-solid-900.woff") format("woff"), url("/fonts/la-solid-900.ttf") format("truetype");
|
src: url("/fonts/la-solid-900.eot?#iefix") format("embedded-opentype"), url("/fonts/la-solid-900.woff2") format("woff2"), url("/fonts/la-solid-900.woff") format("woff"), url("/fonts/la-solid-900.ttf") format("truetype");
|
||||||
}
|
}
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Line Awesome Brands';
|
font-family: 'Line Awesome Brands';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: 400;
|
||||||
font-display: auto;
|
font-display: swap;
|
||||||
src: url("/fonts/la-brands-400.eot?#iefix") format("embedded-opentype"), url("/fonts/la-brands-400.woff2") format("woff2"), url("/fonts/la-brands-400.woff") format("woff"), url("/fonts/la-brands-400.ttf") format("truetype");
|
src: url("/fonts/la-brands-400.eot?#iefix") format("embedded-opentype"), url("/fonts/la-brands-400.woff2") format("woff2"), url("/fonts/la-brands-400.woff") format("woff"), url("/fonts/la-brands-400.ttf") format("truetype");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
7
src/pages/projects.astro
Normal file
7
src/pages/projects.astro
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
import MainLayout from "../layouts/MainLayout.astro";
|
||||||
|
---
|
||||||
|
|
||||||
|
<MainLayout page="Projects & Skills" description="">
|
||||||
|
//
|
||||||
|
</MainLayout>
|
11
src/pages/services.astro
Normal file
11
src/pages/services.astro
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
import MainLayout from "../layouts/MainLayout.astro";
|
||||||
|
|
||||||
|
const description =
|
||||||
|
"Status and description of services " +
|
||||||
|
"hosted on my VPS on *.dc09.ru";
|
||||||
|
---
|
||||||
|
|
||||||
|
<MainLayout page="Services" description={description}>
|
||||||
|
//
|
||||||
|
</MainLayout>
|
Loading…
Add table
Reference in a new issue