Initial commit

This commit is contained in:
Techit Thawiang
2025-06-29 14:02:21 +07:00
parent a401f9a472
commit af1b5b9b83
228 changed files with 11589 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
# Nuxt dev/build outputs
.output
.data
.nuxt
.nitro
.cache
dist
# Node dependencies
node_modules
# Logs
logs
*.log
# Misc
.DS_Store
.fleet
.idea
# Local env files
.env
.env.*
!.env.example
+75
View File
@@ -0,0 +1,75 @@
# Nuxt Minimal Starter
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install dependencies:
```bash
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
```
## Production
Build the application for production:
```bash
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
```
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
+5
View File
@@ -0,0 +1,5 @@
<template>
<NuxtLayout>
<NuxtPage/>
</NuxtLayout>
</template>
+10
View File
@@ -0,0 +1,10 @@
<template>
<footer id="web-footer">
<hr>
<small>
Copyright &copy; Techit Thawiang 2025 (2568). All rights reserved.<br>
PGP/GPG Key: <code style="font-size: 12px;"><a href="/portal/f/Techit Thawiang_0xE649CED321557334_public.asc">4116 33BE 1B4A 19D4 8D77 9ADE E649 CED3 2155 7334</a></code><br>
Powered by <a href="https://dailitation.xyz">dailitation.xyz</a>, <a href="https://github.com/TechitWinner/web">Source Code</a>.
</small>
</footer>
</template>
+6
View File
@@ -0,0 +1,6 @@
// @ts-check
import withNuxt from './.nuxt/eslint.config.mjs'
export default withNuxt(
// Your custom configs here
)
+15
View File
@@ -0,0 +1,15 @@
<template>
<div>
<header id="web-header">
<section id="web-heading">
<img width="36" height="42" style="filter:invert(var(--ui-header-logo-inverted))" src="/thawiang-symbol.svg">
</section>
<nav id="web-nav">
<p class="nav-text"><NuxtLink href="/">Home</NuxtLink>, <NuxtLink href="/contact">Contact</NuxtLink>, <NuxtLink href="/fonts">Fonts</NuxtLink>, <NuxtLink href="/collections">Collections</NuxtLink></p>
<hr>
</nav>
</header>
<slot/>
<WebFooter/>
</div>
</template>
+58
View File
@@ -0,0 +1,58 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2025-05-15',
devtools: { enabled: false },
modules: ['@nuxt/content', '@nuxt/image', '@nuxt/eslint'],
app: {
head: {
titleTemplate: `%s / ${process.env.NUXT_PUBLIC_SITE_NAME || 'thawia.ng'}`,
meta: [
{ name: 'google-site-verification', content: 'lLsgPlllQ5O3Vsn5kDQgo88ORYyhRMV-GnrXtkjuJeg' }, // PRESERVE FOR TECHIT.DAILITATION.XYZ ONLY, DO NOT USE IT IN YOUR WEBSITE!
{ name: 'description', content: `Just another personal website, Created by ${process.env.NUXT_PUBLIC_AUTHOR}` },
{ name: 'referrer', content: 'strict-origin-when-cross-origin' },
{ name: 'canonical', content: process.env.NUXT_PUBLIC_BASE_URL },
{ name: 'robots', content: 'index,follow' },
{ name: 'author', content: process.env.NUXT_PUBLIC_AUTHOR },
{ name: 'application-name', content: process.env.NUXT_PUBLIC_SITE_NAME },
{ name: 'keywords', content: 'techit, techit thawiang, techit, techitwinner, thawiang, dailitation, dtt, dailitation.xyz' },
{ name: 'theme-color', content: '#1355BE' },
// Open Graph
{ property: 'og:title', content: `${process.env.NUXT_PUBLIC_SITE_NAME} by ${process.env.NUXT_PUBLIC_AUTHOR}` },
{ property: 'og:description', content: `Just another personal website, Created by ${process.env.NUXT_PUBLIC_AUTHOR}` },
{ property: 'og:url', content: process.env.NUXT_PUBLIC_BASE_URL },
{ property: 'og:site_name', content: process.env.NUXT_PUBLIC_BASE_URL },
{ property: 'og:type', content: 'website' },
{ property: 'og:locale', content: 'en_US' },
// Twitter
{ name: 'twitter:creator', content: '@techitwinner' },
{ name: 'twitter:site', content: '@techitwinner' },
{ name: 'twitter:card', content: 'summary' },
{ name: 'twitter:url', content: process.env.NUXT_PUBLIC_BASE_URL },
{ name: 'twitter:image', content: '' },
// Apple Web App
{ name: 'mobile-web-app-capable', content: 'yes' },
{ name: 'apple-mobile-web-app-capable', content: 'yes' },
{ name: 'apple-mobile-web-app-status-bar-style', content: 'black' },
{ name: 'apple-mobile-web-app-title', content: process.env.NUXT_PUBLIC_AUTHOR }
],
htmlAttrs: {
lang: 'en',
},
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
link: [
{ rel: 'icon', type: 'image/vnd.microsoft.icon', href: '/favicon.ico' },
// TYPEFACES
{ rel: 'stylesheet', href: '/style.css' },
{ rel: 'stylesheet', href: '/fonts/roboto/roboto.css' },
{ rel: 'stylesheet', href: '/fonts/roboto/mono/mono.css' },
{ rel: 'stylesheet', href: '/fonts/roboto/serif/serif.css' },
{ rel: 'stylesheet', href: '/fonts/noto/thai/thai.css' },
],
script: [
{ src: '/js/ripple.js', type: 'text/javascript', defer: true }
]
},
},
})
+22
View File
@@ -0,0 +1,22 @@
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@nuxt/content": "3.6.1",
"@nuxt/eslint": "1.4.1",
"@nuxt/image": "1.10.0",
"better-sqlite3": "^12.2.0",
"eslint": "^9.30.0",
"nuxt": "^3.17.5",
"vue": "^3.5.17",
"vue-router": "^4.5.1"
}
}
+15
View File
@@ -0,0 +1,15 @@
<template>
<main>
<article class="article">
<h1>Techit's Collections</h1>
<p>
Collections of interesting tools.
</p>
<ul>
<li>
<a href="https://github.com/Tyrrrz/YoutubeDownloader"><b>YoutubeDownloader</b>: Downloads videos and playlists from YouTube</a>
</li>
</ul>
</article>
</main>
</template>
+19
View File
@@ -0,0 +1,19 @@
<template>
<main>
<article class="article">
<h1>Contact Techit</h1>
<p>
You can reach me in countless ways Im on basically every social media app out there.
</p>
<ul>
<li>E-mail: <a href="mailto:techit@dailitation.xyz">techit@dailitation.xyz</a> (PGP/GPG available in footer section)</li>
<li>Matrix: @techitwinner:matrix.org</li>
<li>Facebook: Techit Thawiang (@techitwinner)</li>
<li>Instagram: Techit Thawiang (@techitwinner)</li>
<li>Twitter: Techit Thawiang (@techitwinner)</li>
<li>TikTok: Techit Thawiang (@techitwinner)</li>
<li>Bluesky: Techit Thawiang (@thawia.ng)</li>
</ul>
</article>
</main>
</template>
+28
View File
@@ -0,0 +1,28 @@
<template>
<main>
<article class="article">
<h1>Fonts</h1>
<p>
Welcome to /fonts! This page were created to list all fonts I have hosted it here, so you can use it too.
</p>
<ul>
<li>
<h3>Roboto Family</h3>
<p>All Roboto Family hosted here, here's the CSS files</p>
<ul>
<li><a href="/fonts/roboto/roboto.css">Roboto</a></li>
<li><a href="/fonts/roboto/serif/serif.css">Roboto Serif</a></li>
<li><a href="/fonts/roboto/mono/mono.css">Roboto Mono</a></li>
</ul>
</li>
<li>
<h3>Noto Sans Thai</h3>
<p>Noto Sans Thai, here's the CSS files</p>
<ul>
<li><a href="/fonts/noto/thai/thai.css">Noto Sans Thai</a></li>
</ul>
</li>
</ul>
</article>
</main>
</template>
+18
View File
@@ -0,0 +1,18 @@
<template>
<main>
<article class="article">
<h1>Welcome to thawia.ng</h1>
<p>
Hi, My name is Techit Thawiang, I'm a 10th grade student at Ko Pho Tuay Ngam Wittaya. I'm passionated in coding and developing software.
</p>
<p>
In my free time, I usually spend my time playing games or learning more about software engineering.
</p>
<p>
In the future, I dream of having my own tech company, or being a civil engineer.
</p>
<hr>
<p>Recommended article on Wikipedia: <a href="https://th.wikipedia.org/wiki/%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B8%A3%E0%B8%B1%E0%B9%88%E0%B8%A7%E0%B9%84%E0%B8%AB%E0%B8%A5%E0%B8%82%E0%B8%AD%E0%B8%87%E0%B8%9A%E0%B8%97%E0%B8%AA%E0%B8%99%E0%B8%97%E0%B8%99%E0%B8%B2%E0%B8%97%E0%B8%B2%E0%B8%87%E0%B9%82%E0%B8%97%E0%B8%A3%E0%B8%A8%E0%B8%B1%E0%B8%9E%E0%B8%97%E0%B9%8C%E0%B8%A3%E0%B8%B0%E0%B8%AB%E0%B8%A7%E0%B9%88%E0%B8%B2%E0%B8%87%E0%B9%84%E0%B8%97%E0%B8%A2%E2%80%93%E0%B8%81%E0%B8%B1%E0%B8%A1%E0%B8%9E%E0%B8%B9%E0%B8%8A%E0%B8%B2">การรวไหลของบทสนทนาทางโทรศพทระหวางไทยมพชา</a></p>
</article>
</main>
</template>
+10761
View File
File diff suppressed because it is too large Load Diff
+6
View File
@@ -0,0 +1,6 @@
onlyBuiltDependencies:
- '@parcel/watcher'
- better-sqlite3
- esbuild
- sharp
- unrs-resolver
Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.
+47
View File
@@ -0,0 +1,47 @@
@font-face {
font-family: NotoSansThaiVariable;
src: url("NotoSansThai[wdth\,wght].woff2?v=2.002") format("woff2");
font-style: normal;
font-display: swap;
font-weight: 100 900;
}
@font-face { font-family:NotoSansThai; font-style:normal; font-weight:100; font-display:swap; src:url("static/NotoSansThai-Thin.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThai; font-style:normal; font-weight:200; font-display:swap; src:url("static/NotoSansThai-ExtraLight.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThai; font-style:normal; font-weight:300; font-display:swap; src:url("static/NotoSansThai-Light.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThai; font-style:normal; font-weight:400; font-display:swap; src:url("static/NotoSansThai-Regular.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThai; font-style:normal; font-weight:500; font-display:swap; src:url("static/NotoSansThai-Medium.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThai; font-style:normal; font-weight:600; font-display:swap; src:url("static/NotoSansThai-SemiBold.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThai; font-style:normal; font-weight:700; font-display:swap; src:url("static/NotoSansThai-Bold.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThai; font-style:normal; font-weight:800; font-display:swap; src:url("static/NotoSansThai-ExtraBold.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThai; font-style:normal; font-weight:900; font-display:swap; src:url("static/NotoSansThai-Black.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiSemiCondensed; font-style:normal; font-weight:100; font-display:swap; src:url("static/NotoSansThai-SemiCondensed-Thin.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiSemiCondensed; font-style:normal; font-weight:200; font-display:swap; src:url("static/NotoSansThai-SemiCondensed-ExtraLight.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiSemiCondensed; font-style:normal; font-weight:300; font-display:swap; src:url("static/NotoSansThai-SemiCondensed-Light.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiSemiCondensed; font-style:normal; font-weight:400; font-display:swap; src:url("static/NotoSansThai-SemiCondensed-Regular.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiSemiCondensed; font-style:normal; font-weight:500; font-display:swap; src:url("static/NotoSansThai-SemiCondensed-Medium.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiSemiCondensed; font-style:normal; font-weight:600; font-display:swap; src:url("static/NotoSansThai-SemiCondensed-SemiBold.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiSemiCondensed; font-style:normal; font-weight:700; font-display:swap; src:url("static/NotoSansThai-SemiCondensed-Bold.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiSemiCondensed; font-style:normal; font-weight:800; font-display:swap; src:url("static/NotoSansThai-SemiCondensed-ExtraBold.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiSemiCondensed; font-style:normal; font-weight:900; font-display:swap; src:url("static/NotoSansThai-SemiCondensed-Black.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiCondensed; font-style:normal; font-weight:100; font-display:swap; src:url("static/NotoSansThai-Condensed-Thin.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiCondensed; font-style:normal; font-weight:200; font-display:swap; src:url("static/NotoSansThai-Condensed-ExtraLight.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiCondensed; font-style:normal; font-weight:300; font-display:swap; src:url("static/NotoSansThai-Condensed-Light.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiCondensed; font-style:normal; font-weight:400; font-display:swap; src:url("static/NotoSansThai-Condensed-Regular.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiCondensed; font-style:normal; font-weight:500; font-display:swap; src:url("static/NotoSansThai-Condensed-Medium.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiCondensed; font-style:normal; font-weight:600; font-display:swap; src:url("static/NotoSansThai-Condensed-SemiBold.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiCondensed; font-style:normal; font-weight:700; font-display:swap; src:url("static/NotoSansThai-Condensed-Bold.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiCondensed; font-style:normal; font-weight:800; font-display:swap; src:url("static/NotoSansThai-Condensed-ExtraBold.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiCondensed; font-style:normal; font-weight:900; font-display:swap; src:url("static/NotoSansThai-Condensed-Black.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiExtraCondensed; font-style:normal; font-weight:100; font-display:swap; src:url("static/NotoSansThai-ExtraCondensed-Thin.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiExtraCondensed; font-style:normal; font-weight:200; font-display:swap; src:url("static/NotoSansThai-ExtraCondensed-ExtraLight.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiExtraCondensed; font-style:normal; font-weight:300; font-display:swap; src:url("static/NotoSansThai-ExtraCondensed-Light.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiExtraCondensed; font-style:normal; font-weight:400; font-display:swap; src:url("static/NotoSansThai-ExtraCondensed-Regular.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiExtraCondensed; font-style:normal; font-weight:500; font-display:swap; src:url("static/NotoSansThai-ExtraCondensed-Medium.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiExtraCondensed; font-style:normal; font-weight:600; font-display:swap; src:url("static/NotoSansThai-ExtraCondensed-SemiBold.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiExtraCondensed; font-style:normal; font-weight:700; font-display:swap; src:url("static/NotoSansThai-ExtraCondensed-Bold.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiExtraCondensed; font-style:normal; font-weight:800; font-display:swap; src:url("static/NotoSansThai-ExtraCondensed-ExtraBold.woff2?v=2.002") format("woff2"); }
@font-face { font-family:NotoSansThaiExtraCondensed; font-style:normal; font-weight:900; font-display:swap; src:url("static/NotoSansThai-ExtraCondensed-Black.woff2?v=2.002") format("woff2"); }
+34
View File
@@ -0,0 +1,34 @@
@font-face {
font-family: RobotoMonoVariable;
src: url("RobotoMono-VariableFont_wght.woff2?v=3.001") format("woff2");
font-style: normal;
font-display: swap;
font-weight: 100 900;
}
@font-face {
font-family: RobotoMonoVariable;
src: url("RobotoMono-Italic-VariableFont_wght.woff2?v=3.001") format("woff2");
font-style: italic;
font-display: swap;
font-weight: 100 900;
}
@font-face { font-family:RobotoMono; font-style:normal; font-weight:100; font-display:swap; src:url("static/RobotoMono-Thin.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:italic; font-weight:100; font-display:swap; src:url("static/RobotoMono-ThinItalic.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:normal; font-weight:200; font-display:swap; src:url("static/RobotoMono-ExtraLight.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:italic; font-weight:200; font-display:swap; src:url("static/RobotoMono-ExtraLightItalic.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:normal; font-weight:300; font-display:swap; src:url("static/RobotoMono-Light.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:italic; font-weight:300; font-display:swap; src:url("static/RobotoMono-LightItalic.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:normal; font-weight:400; font-display:swap; src:url("static/RobotoMono-Regular.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:italic; font-weight:400; font-display:swap; src:url("static/RobotoMono-Italic.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:normal; font-weight:500; font-display:swap; src:url("static/RobotoMono-Medium.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:italic; font-weight:500; font-display:swap; src:url("static/RobotoMono-MediumItalic.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:normal; font-weight:600; font-display:swap; src:url("static/RobotoMono-SemiBold.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:italic; font-weight:600; font-display:swap; src:url("static/RobotoMono-SemiBoldItalic.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:normal; font-weight:700; font-display:swap; src:url("static/RobotoMono-Bold.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:italic; font-weight:700; font-display:swap; src:url("static/RobotoMono-BoldItalic.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:normal; font-weight:800; font-display:swap; src:url("static/RobotoMono-ExtraBold.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:italic; font-weight:800; font-display:swap; src:url("static/RobotoMono-ExtraBoldItalic.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:normal; font-weight:900; font-display:swap; src:url("static/RobotoMono-Black.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:italic; font-weight:900; font-display:swap; src:url("static/RobotoMono-BlackItalic.woff2?v=3.001") format("woff2"); }
@font-face { font-family:RobotoMono; font-style:normal; font-weight:100; font-display:swap; src:url("static/RobotoMono-Thin.woff2") format("woff2"); }
+70
View File
@@ -0,0 +1,70 @@
@font-face {
font-family: RobotoVariable;
src: url("Roboto-VariableFont_wdth\,wght.woff2?v=3.011") format("woff2");
font-style: normal;
font-display: swap;
font-weight: 100 900;
}
@font-face {
font-family: RobotoVariable;
src: url("Roboto-Italic-VariableFont_wdth\,wght.woff2?v=3.011") format("woff2");
font-style: italic;
font-display: swap;
font-weight: 100 900;
}
@font-face { font-family:Roboto; font-style:normal; font-weight:100; font-display:swap; src:url("static/Roboto-Thin.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:italic; font-weight:100; font-display:swap; src:url("static/Roboto-ThinItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:normal; font-weight:200; font-display:swap; src:url("static/Roboto-ExtraLight.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:italic; font-weight:200; font-display:swap; src:url("static/Roboto-ExtraLightItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:normal; font-weight:300; font-display:swap; src:url("static/Roboto-Light.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:italic; font-weight:300; font-display:swap; src:url("static/Roboto-LightItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:normal; font-weight:400; font-display:swap; src:url("static/Roboto-Regular.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:italic; font-weight:400; font-display:swap; src:url("static/Roboto-Italic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:normal; font-weight:500; font-display:swap; src:url("static/Roboto-Medium.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:italic; font-weight:500; font-display:swap; src:url("static/Roboto-MediumItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:normal; font-weight:600; font-display:swap; src:url("static/Roboto-SemiBold.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:italic; font-weight:600; font-display:swap; src:url("static/Roboto-SemiBoldItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:normal; font-weight:700; font-display:swap; src:url("static/Roboto-Bold.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:italic; font-weight:700; font-display:swap; src:url("static/Roboto-BoldItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:normal; font-weight:800; font-display:swap; src:url("static/Roboto-ExtraBold.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:italic; font-weight:800; font-display:swap; src:url("static/Roboto-ExtraBoldItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:normal; font-weight:900; font-display:swap; src:url("static/Roboto-Black.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:italic; font-weight:900; font-display:swap; src:url("static/Roboto-BlackItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:Roboto; font-style:normal; font-weight:100; font-display:swap; src:url("static/Roboto-Thin.woff2") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:italic; font-weight:100; font-display:swap; src:url("static/Roboto_SemiCondensed-ThinItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:normal; font-weight:200; font-display:swap; src:url("static/Roboto_SemiCondensed-ExtraLight.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:italic; font-weight:200; font-display:swap; src:url("static/Roboto_SemiCondensed-ExtraLightItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:normal; font-weight:300; font-display:swap; src:url("static/Roboto_SemiCondensed-Light.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:italic; font-weight:300; font-display:swap; src:url("static/Roboto_SemiCondensed-LightItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:normal; font-weight:400; font-display:swap; src:url("static/Roboto_SemiCondensed-Regular.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:italic; font-weight:400; font-display:swap; src:url("static/Roboto_SemiCondensed-Italic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:normal; font-weight:500; font-display:swap; src:url("static/Roboto_SemiCondensed-Medium.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:italic; font-weight:500; font-display:swap; src:url("static/Roboto_SemiCondensed-MediumItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:normal; font-weight:600; font-display:swap; src:url("static/Roboto_SemiCondensed-SemiBold.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:italic; font-weight:600; font-display:swap; src:url("static/Roboto_SemiCondensed-SemiBoldItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:normal; font-weight:700; font-display:swap; src:url("static/Roboto_SemiCondensed-Bold.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:italic; font-weight:700; font-display:swap; src:url("static/Roboto_SemiCondensed-BoldItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:normal; font-weight:800; font-display:swap; src:url("static/Roboto_SemiCondensed-ExtraBold.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:italic; font-weight:800; font-display:swap; src:url("static/Roboto_SemiCondensed-ExtraBoldItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:normal; font-weight:900; font-display:swap; src:url("static/Roboto_SemiCondensed-Black.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoSemiCondensed; font-style:italic; font-weight:900; font-display:swap; src:url("static/Roboto_SemiCondensed-BlackItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:italic; font-weight:100; font-display:swap; src:url("static/Roboto_Condensed-ThinItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:normal; font-weight:200; font-display:swap; src:url("static/Roboto_Condensed-ExtraLight.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:italic; font-weight:200; font-display:swap; src:url("static/Roboto_Condensed-ExtraLightItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:normal; font-weight:300; font-display:swap; src:url("static/Roboto_Condensed-Light.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:italic; font-weight:300; font-display:swap; src:url("static/Roboto_Condensed-LightItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:normal; font-weight:400; font-display:swap; src:url("static/Roboto_Condensed-Regular.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:italic; font-weight:400; font-display:swap; src:url("static/Roboto_Condensed-Italic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:normal; font-weight:500; font-display:swap; src:url("static/Roboto_Condensed-Medium.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:italic; font-weight:500; font-display:swap; src:url("static/Roboto_Condensed-MediumItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:normal; font-weight:600; font-display:swap; src:url("static/Roboto_Condensed-SemiBold.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:italic; font-weight:600; font-display:swap; src:url("static/Roboto_Condensed-SemiBoldItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:normal; font-weight:700; font-display:swap; src:url("static/Roboto_Condensed-Bold.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:italic; font-weight:700; font-display:swap; src:url("static/Roboto_Condensed-BoldItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:normal; font-weight:800; font-display:swap; src:url("static/Roboto_Condensed-ExtraBold.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:italic; font-weight:800; font-display:swap; src:url("static/Roboto_Condensed-ExtraBoldItalic.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:normal; font-weight:900; font-display:swap; src:url("static/Roboto_Condensed-Black.woff2?v=3.011") format("woff2"); }
@font-face { font-family:RobotoCondensed; font-style:italic; font-weight:900; font-display:swap; src:url("static/Roboto_Condensed-BlackItalic.woff2?v=3.011") format("woff2"); }
+114
View File
@@ -0,0 +1,114 @@
@font-face {
font-family: RobotoSerifVariable;
src: url("RobotoSerif-VariableFont_GRAD\,opsz\,wdth\,wght.ttf") format("woff2");
font-style: normal;
font-display: swap;
font-weight: 100 900;
}
@font-face {
font-family: RobotoSerifVariable;
src: url("RobotoSerif-Italic-VariableFont_GRAD\,opsz\,wdth\,wght.ttf") format("woff2");
font-style: italic;
font-display: swap;
font-weight: 100 900;
}
@font-face { font-family:RobotoSerif; font-style:normal; font-weight:100; font-display:swap; src:url("static/RobotoSerif-Thin.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:italic; font-weight:100; font-display:swap; src:url("static/RobotoSerif-ThinItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:normal; font-weight:200; font-display:swap; src:url("static/RobotoSerif-ExtraLight.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:italic; font-weight:200; font-display:swap; src:url("static/RobotoSerif-ExtraLightItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:normal; font-weight:300; font-display:swap; src:url("static/RobotoSerif-Light.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:italic; font-weight:300; font-display:swap; src:url("static/RobotoSerif-LightItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:normal; font-weight:400; font-display:swap; src:url("static/RobotoSerif-Regular.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:italic; font-weight:400; font-display:swap; src:url("static/RobotoSerif-Italic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:normal; font-weight:500; font-display:swap; src:url("static/RobotoSerif-Medium.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:italic; font-weight:500; font-display:swap; src:url("static/RobotoSerif-MediumItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:normal; font-weight:600; font-display:swap; src:url("static/RobotoSerif-SemiBold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:italic; font-weight:600; font-display:swap; src:url("static/RobotoSerif-SemiBoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:normal; font-weight:700; font-display:swap; src:url("static/RobotoSerif-Bold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:italic; font-weight:700; font-display:swap; src:url("static/RobotoSerif-BoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:normal; font-weight:800; font-display:swap; src:url("static/RobotoSerif-ExtraBold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:italic; font-weight:800; font-display:swap; src:url("static/RobotoSerif-ExtraBoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:normal; font-weight:900; font-display:swap; src:url("static/RobotoSerif-Black.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:italic; font-weight:900; font-display:swap; src:url("static/RobotoSerif-BlackItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif; font-style:normal; font-weight:100; font-display:swap; src:url("static/RobotoSerif-Thin.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:normal; font-weight:100; font-display:swap; src:url("static/RobotoSerif_28pt-Thin.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:italic; font-weight:100; font-display:swap; src:url("static/RobotoSerif_28pt-ThinItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:normal; font-weight:200; font-display:swap; src:url("static/RobotoSerif_28pt-ExtraLight.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:italic; font-weight:200; font-display:swap; src:url("static/RobotoSerif_28pt-ExtraLightItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:normal; font-weight:300; font-display:swap; src:url("static/RobotoSerif_28pt-Light.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:italic; font-weight:300; font-display:swap; src:url("static/RobotoSerif_28pt-LightItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:normal; font-weight:400; font-display:swap; src:url("static/RobotoSerif_28pt-Regular.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:italic; font-weight:400; font-display:swap; src:url("static/RobotoSerif_28pt-Italic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:normal; font-weight:500; font-display:swap; src:url("static/RobotoSerif_28pt-Medium.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:italic; font-weight:500; font-display:swap; src:url("static/RobotoSerif_28pt-MediumItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:normal; font-weight:600; font-display:swap; src:url("static/RobotoSerif_28pt-SemiBold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:italic; font-weight:600; font-display:swap; src:url("static/RobotoSerif_28pt-SemiBoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:normal; font-weight:700; font-display:swap; src:url("static/RobotoSerif_28pt-Bold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:italic; font-weight:700; font-display:swap; src:url("static/RobotoSerif_28pt-BoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:normal; font-weight:800; font-display:swap; src:url("static/RobotoSerif_28pt-ExtraBold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:italic; font-weight:800; font-display:swap; src:url("static/RobotoSerif_28pt-ExtraBoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:normal; font-weight:900; font-display:swap; src:url("static/RobotoSerif_28pt-Black.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:italic; font-weight:900; font-display:swap; src:url("static/RobotoSerif_28pt-BlackItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_28pt; font-style:normal; font-weight:100; font-display:swap; src:url("static/RobotoSerif_28pt-Thin.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:normal; font-weight:100; font-display:swap; src:url("static/RobotoSerif_36pt-Thin.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:italic; font-weight:100; font-display:swap; src:url("static/RobotoSerif_36pt-ThinItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:normal; font-weight:200; font-display:swap; src:url("static/RobotoSerif_36pt-ExtraLight.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:italic; font-weight:200; font-display:swap; src:url("static/RobotoSerif_36pt-ExtraLightItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:normal; font-weight:300; font-display:swap; src:url("static/RobotoSerif_36pt-Light.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:italic; font-weight:300; font-display:swap; src:url("static/RobotoSerif_36pt-LightItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:normal; font-weight:400; font-display:swap; src:url("static/RobotoSerif_36pt-Regular.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:italic; font-weight:400; font-display:swap; src:url("static/RobotoSerif_36pt-Italic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:normal; font-weight:500; font-display:swap; src:url("static/RobotoSerif_36pt-Medium.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:italic; font-weight:500; font-display:swap; src:url("static/RobotoSerif_36pt-MediumItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:normal; font-weight:600; font-display:swap; src:url("static/RobotoSerif_36pt-SemiBold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:italic; font-weight:600; font-display:swap; src:url("static/RobotoSerif_36pt-SemiBoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:normal; font-weight:700; font-display:swap; src:url("static/RobotoSerif_36pt-Bold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:italic; font-weight:700; font-display:swap; src:url("static/RobotoSerif_36pt-BoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:normal; font-weight:800; font-display:swap; src:url("static/RobotoSerif_36pt-ExtraBold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:italic; font-weight:800; font-display:swap; src:url("static/RobotoSerif_36pt-ExtraBoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:normal; font-weight:900; font-display:swap; src:url("static/RobotoSerif_36pt-Black.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:italic; font-weight:900; font-display:swap; src:url("static/RobotoSerif_36pt-BlackItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_36pt; font-style:normal; font-weight:100; font-display:swap; src:url("static/RobotoSerif_36pt-Thin.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:normal; font-weight:100; font-display:swap; src:url("static/RobotoSerif_72pt-Thin.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:italic; font-weight:100; font-display:swap; src:url("static/RobotoSerif_72pt-ThinItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:normal; font-weight:200; font-display:swap; src:url("static/RobotoSerif_72pt-ExtraLight.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:italic; font-weight:200; font-display:swap; src:url("static/RobotoSerif_72pt-ExtraLightItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:normal; font-weight:300; font-display:swap; src:url("static/RobotoSerif_72pt-Light.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:italic; font-weight:300; font-display:swap; src:url("static/RobotoSerif_72pt-LightItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:normal; font-weight:400; font-display:swap; src:url("static/RobotoSerif_72pt-Regular.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:italic; font-weight:400; font-display:swap; src:url("static/RobotoSerif_72pt-Italic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:normal; font-weight:500; font-display:swap; src:url("static/RobotoSerif_72pt-Medium.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:italic; font-weight:500; font-display:swap; src:url("static/RobotoSerif_72pt-MediumItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:normal; font-weight:600; font-display:swap; src:url("static/RobotoSerif_72pt-SemiBold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:italic; font-weight:600; font-display:swap; src:url("static/RobotoSerif_72pt-SemiBoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:normal; font-weight:700; font-display:swap; src:url("static/RobotoSerif_72pt-Bold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:italic; font-weight:700; font-display:swap; src:url("static/RobotoSerif_72pt-BoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:normal; font-weight:800; font-display:swap; src:url("static/RobotoSerif_72pt-ExtraBold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:italic; font-weight:800; font-display:swap; src:url("static/RobotoSerif_72pt-ExtraBoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:normal; font-weight:900; font-display:swap; src:url("static/RobotoSerif_72pt-Black.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:italic; font-weight:900; font-display:swap; src:url("static/RobotoSerif_72pt-BlackItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_72pt; font-style:normal; font-weight:100; font-display:swap; src:url("static/RobotoSerif_72pt-Thin.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:normal; font-weight:100; font-display:swap; src:url("static/RobotoSerif_120pt-Thin.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:italic; font-weight:100; font-display:swap; src:url("static/RobotoSerif_120pt-ThinItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:normal; font-weight:200; font-display:swap; src:url("static/RobotoSerif_120pt-ExtraLight.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:italic; font-weight:200; font-display:swap; src:url("static/RobotoSerif_120pt-ExtraLightItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:normal; font-weight:300; font-display:swap; src:url("static/RobotoSerif_120pt-Light.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:italic; font-weight:300; font-display:swap; src:url("static/RobotoSerif_120pt-LightItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:normal; font-weight:400; font-display:swap; src:url("static/RobotoSerif_120pt-Regular.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:italic; font-weight:400; font-display:swap; src:url("static/RobotoSerif_120pt-Italic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:normal; font-weight:500; font-display:swap; src:url("static/RobotoSerif_120pt-Medium.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:italic; font-weight:500; font-display:swap; src:url("static/RobotoSerif_120pt-MediumItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:normal; font-weight:600; font-display:swap; src:url("static/RobotoSerif_120pt-SemiBold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:italic; font-weight:600; font-display:swap; src:url("static/RobotoSerif_120pt-SemiBoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:normal; font-weight:700; font-display:swap; src:url("static/RobotoSerif_120pt-Bold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:italic; font-weight:700; font-display:swap; src:url("static/RobotoSerif_120pt-BoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:normal; font-weight:800; font-display:swap; src:url("static/RobotoSerif_120pt-ExtraBold.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:italic; font-weight:800; font-display:swap; src:url("static/RobotoSerif_120pt-ExtraBoldItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:normal; font-weight:900; font-display:swap; src:url("static/RobotoSerif_120pt-Black.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:italic; font-weight:900; font-display:swap; src:url("static/RobotoSerif_120pt-BlackItalic.woff2?v=1.008") format("woff2"); }
@font-face { font-family:RobotoSerif_120pt; font-style:normal; font-weight:100; font-display:swap; src:url("static/RobotoSerif_120pt-Thin.woff2?v=1.008") format("woff2"); }

Some files were not shown because too many files have changed in this diff Show More