add second page
This commit is contained in:
parent
7464e823b8
commit
844cc7f9df
@ -1,4 +1,4 @@
|
|||||||
import React, { Suspense, lazy } from 'react';
|
import React, { useState, Suspense, lazy } from 'react';
|
||||||
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom';
|
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom';
|
||||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||||
import './fonts/stylesheet.css';
|
import './fonts/stylesheet.css';
|
||||||
@ -8,7 +8,8 @@ const HomePage = lazy(() => import('./pages/HomePage'));
|
|||||||
const CandidatePage = lazy(() => import('./pages/CandidatePage'));
|
const CandidatePage = lazy(() => import('./pages/CandidatePage'));
|
||||||
|
|
||||||
const App = () => {
|
const App = () => {
|
||||||
const isAuth = true;
|
const [isAuth, setIsAuth] = useState(false);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Router>
|
<Router>
|
||||||
<Suspense fallback={<div>Loading...</div>}>
|
<Suspense fallback={<div>Loading...</div>}>
|
||||||
@ -16,10 +17,10 @@ const App = () => {
|
|||||||
<Switch>
|
<Switch>
|
||||||
<Route path="/" exact component={HomePage} />
|
<Route path="/" exact component={HomePage} />
|
||||||
<Route path="/candidate/:id" component={CandidatePage} />
|
<Route path="/candidate/:id" component={CandidatePage} />
|
||||||
<Route compoent={<div>Not found page</div>} />
|
<Route component={<div>Not found page</div>} />
|
||||||
</Switch>
|
</Switch>
|
||||||
) : (
|
) : (
|
||||||
<Route path="/" exact component={AuthPage} />
|
<Route path="/" exact component={(props) => <AuthPage {...props} setAuth={setIsAuth} />} />
|
||||||
)}
|
)}
|
||||||
</Suspense>
|
</Suspense>
|
||||||
</Router>
|
</Router>
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import style from './Auth.module.scss';
|
import style from './Auth.module.scss';
|
||||||
|
|
||||||
const Auth = () => {
|
const Auth = ({ setAuthed }) => {
|
||||||
return (
|
return (
|
||||||
<div className={style.auth}>
|
<div className={style.auth}>
|
||||||
<h2>THIS IS AUTH!!!</h2>
|
<div className={style.auth__container}>
|
||||||
|
<img src="https://www.google.com/gmail/about/static/images/logo-gmail.png?cache=1adba63" alt="" />
|
||||||
|
<button className={style.auth__btn} onClick={() => setAuthed(true)}>
|
||||||
|
Log in
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -1,7 +1,25 @@
|
|||||||
.auth {
|
.auth {
|
||||||
& h2 {
|
display: grid;
|
||||||
font-size: 5em;
|
place-items: center;
|
||||||
color: red;
|
height: 100vh;
|
||||||
text-align: center;
|
background-color: #f2f2f2;
|
||||||
|
|
||||||
|
&__container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__container > img {
|
||||||
|
object-fit: contain;
|
||||||
|
height: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__btn {
|
||||||
|
width: 180px;
|
||||||
|
height: 40px;
|
||||||
|
border: 2px solid gray;
|
||||||
|
border-radius: 100px;
|
||||||
|
font-size: 1.6em;
|
||||||
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,17 @@
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[class$='-control'] {
|
||||||
|
border-color: #e8e8e8 !important;
|
||||||
|
box-shadow: 0 0 0 1px #e8e8e8;
|
||||||
|
}
|
||||||
|
|
||||||
[class$='-value'] {
|
[class$='-value'] {
|
||||||
font-size: 1.4em;
|
font-size: 1.6em;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class$='-option'] {
|
||||||
|
font-size: 1.6em;
|
||||||
|
color: gray;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,909 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<meta name="robots" content="noindex, noarchive">
|
|
||||||
<meta name="format-detection" content="telephone=no">
|
|
||||||
<title>Transfonter demo</title>
|
|
||||||
<link href="stylesheet.css" rel="stylesheet">
|
|
||||||
<style>
|
|
||||||
/*
|
|
||||||
http://meyerweb.com/eric/tools/css/reset/
|
|
||||||
v2.0 | 20110126
|
|
||||||
License: none (public domain)
|
|
||||||
*/
|
|
||||||
html, body, div, span, applet, object, iframe,
|
|
||||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
|
||||||
a, abbr, acronym, address, big, cite, code,
|
|
||||||
del, dfn, em, img, ins, kbd, q, s, samp,
|
|
||||||
small, strike, strong, sub, sup, tt, var,
|
|
||||||
b, u, i, center,
|
|
||||||
dl, dt, dd, ol, ul, li,
|
|
||||||
fieldset, form, label, legend,
|
|
||||||
table, caption, tbody, tfoot, thead, tr, th, td,
|
|
||||||
article, aside, canvas, details, embed,
|
|
||||||
figure, figcaption, footer, header, hgroup,
|
|
||||||
menu, nav, output, ruby, section, summary,
|
|
||||||
time, mark, audio, video {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
border: 0;
|
|
||||||
font-size: 100%;
|
|
||||||
font: inherit;
|
|
||||||
vertical-align: baseline;
|
|
||||||
}
|
|
||||||
/* HTML5 display-role reset for older browsers */
|
|
||||||
article, aside, details, figcaption, figure,
|
|
||||||
footer, header, hgroup, menu, nav, section {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
line-height: 1;
|
|
||||||
}
|
|
||||||
ol, ul {
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
blockquote, q {
|
|
||||||
quotes: none;
|
|
||||||
}
|
|
||||||
blockquote:before, blockquote:after,
|
|
||||||
q:before, q:after {
|
|
||||||
content: '';
|
|
||||||
content: none;
|
|
||||||
}
|
|
||||||
table {
|
|
||||||
border-collapse: collapse;
|
|
||||||
border-spacing: 0;
|
|
||||||
}
|
|
||||||
/* common styles */
|
|
||||||
body {
|
|
||||||
background: #f1f1f1;
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
.page {
|
|
||||||
background: #fff;
|
|
||||||
width: 920px;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 20px 20px 0 20px;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.font-container {
|
|
||||||
overflow-x: auto;
|
|
||||||
overflow-y: hidden;
|
|
||||||
margin-bottom: 40px;
|
|
||||||
line-height: 1.3;
|
|
||||||
white-space: nowrap;
|
|
||||||
padding-bottom: 5px;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
position: relative;
|
|
||||||
background: #444;
|
|
||||||
font-size: 32px;
|
|
||||||
color: #fff;
|
|
||||||
padding: 10px 20px;
|
|
||||||
margin: 0 -20px 12px -20px;
|
|
||||||
}
|
|
||||||
.letters {
|
|
||||||
font-size: 25px;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
|
||||||
.s10:before {
|
|
||||||
content: '10px';
|
|
||||||
}
|
|
||||||
.s11:before {
|
|
||||||
content: '11px';
|
|
||||||
}
|
|
||||||
.s12:before {
|
|
||||||
content: '12px';
|
|
||||||
}
|
|
||||||
.s14:before {
|
|
||||||
content: '14px';
|
|
||||||
}
|
|
||||||
.s18:before {
|
|
||||||
content: '18px';
|
|
||||||
}
|
|
||||||
.s24:before {
|
|
||||||
content: '24px';
|
|
||||||
}
|
|
||||||
.s30:before {
|
|
||||||
content: '30px';
|
|
||||||
}
|
|
||||||
.s36:before {
|
|
||||||
content: '36px';
|
|
||||||
}
|
|
||||||
.s48:before {
|
|
||||||
content: '48px';
|
|
||||||
}
|
|
||||||
.s60:before {
|
|
||||||
content: '60px';
|
|
||||||
}
|
|
||||||
.s72:before {
|
|
||||||
content: '72px';
|
|
||||||
}
|
|
||||||
.s10:before, .s11:before, .s12:before, .s14:before,
|
|
||||||
.s18:before, .s24:before, .s30:before, .s36:before,
|
|
||||||
.s48:before, .s60:before, .s72:before {
|
|
||||||
font-family: Arial, sans-serif;
|
|
||||||
font-size: 10px;
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
color: #999;
|
|
||||||
padding-right: 6px;
|
|
||||||
}
|
|
||||||
pre {
|
|
||||||
display: block;
|
|
||||||
position: relative;
|
|
||||||
padding: 9px;
|
|
||||||
margin: 0 0 10px;
|
|
||||||
font-family: Monaco, Menlo, Consolas, "Courier New", monospace !important;
|
|
||||||
font-size: 13px;
|
|
||||||
line-height: 1.428571429;
|
|
||||||
color: #333;
|
|
||||||
font-weight: normal !important;
|
|
||||||
font-style: normal !important;
|
|
||||||
background-color: #f5f5f5;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
overflow-x: auto;
|
|
||||||
border-radius: 4px;
|
|
||||||
}
|
|
||||||
pre:after {
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
top: 0;
|
|
||||||
content: 'Usage';
|
|
||||||
line-height: 1;
|
|
||||||
padding: 5px 8px;
|
|
||||||
font-size: 12px;
|
|
||||||
color: #767676;
|
|
||||||
background-color: #fff;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
border-right: none;
|
|
||||||
border-top: none;
|
|
||||||
border-radius: 0 4px 0 4px;
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
/* responsive */
|
|
||||||
@media (max-width: 959px) {
|
|
||||||
.page {
|
|
||||||
width: auto;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="page">
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Text'; font-weight: 100; font-style: italic;">
|
|
||||||
<h1>GT Eesti Pro Text Thin Italic</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Text';
|
|
||||||
font-weight: 100;
|
|
||||||
font-style: italic;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Text'; font-weight: 500; font-style: normal;">
|
|
||||||
<h1>GT Eesti Pro Text Medium</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Text';
|
|
||||||
font-weight: 500;
|
|
||||||
font-style: normal;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Text'; font-weight: 300; font-style: italic;">
|
|
||||||
<h1>GT Eesti Pro Text Light Italic</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Text';
|
|
||||||
font-weight: 300;
|
|
||||||
font-style: italic;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Display'; font-weight: bold; font-style: normal;">
|
|
||||||
<h1>GT Eesti Pro Display Bold</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Display';
|
|
||||||
font-weight: bold;
|
|
||||||
font-style: normal;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Text'; font-weight: 300; font-style: normal;">
|
|
||||||
<h1>GT Eesti Pro Text Light</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Text';
|
|
||||||
font-weight: 300;
|
|
||||||
font-style: normal;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Display'; font-weight: 500; font-style: italic;">
|
|
||||||
<h1>GT Eesti Pro Display Medium Italic</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Display';
|
|
||||||
font-weight: 500;
|
|
||||||
font-style: italic;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Text'; font-weight: normal; font-style: italic;">
|
|
||||||
<h1>GT Eesti Pro Text Regular Italic</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Text';
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: italic;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Text Book'; font-weight: normal; font-style: normal;">
|
|
||||||
<h1>GT Eesti Pro Text Book</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Text Book';
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Text'; font-weight: bold; font-style: italic;">
|
|
||||||
<h1>GT Eesti Pro Text Bold Italic</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Text';
|
|
||||||
font-weight: bold;
|
|
||||||
font-style: italic;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Text'; font-weight: 200; font-style: italic;">
|
|
||||||
<h1>GT Eesti Pro Text UltraLight Italic</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Text';
|
|
||||||
font-weight: 200;
|
|
||||||
font-style: italic;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Display'; font-weight: 100; font-style: normal;">
|
|
||||||
<h1>GT Eesti Pro Display Thin</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Display';
|
|
||||||
font-weight: 100;
|
|
||||||
font-style: normal;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Text'; font-weight: normal; font-style: normal;">
|
|
||||||
<h1>GT Eesti Pro Text Regular</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Text';
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Display'; font-weight: 300; font-style: normal;">
|
|
||||||
<h1>GT Eesti Pro Display Light</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Display';
|
|
||||||
font-weight: 300;
|
|
||||||
font-style: normal;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Display'; font-weight: 800; font-style: normal;">
|
|
||||||
<h1>GT Eesti Pro Display UltraBold</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Display';
|
|
||||||
font-weight: 800;
|
|
||||||
font-style: normal;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Display'; font-weight: 800; font-style: italic;">
|
|
||||||
<h1>GT Eesti Pro Display UltraBold Italic</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Display';
|
|
||||||
font-weight: 800;
|
|
||||||
font-style: italic;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Display'; font-weight: 500; font-style: normal;">
|
|
||||||
<h1>GT Eesti Pro Display Medium</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Display';
|
|
||||||
font-weight: 500;
|
|
||||||
font-style: normal;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Display'; font-weight: 200; font-style: normal;">
|
|
||||||
<h1>GT Eesti Pro Display UltraLight</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Display';
|
|
||||||
font-weight: 200;
|
|
||||||
font-style: normal;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Display'; font-weight: normal; font-style: italic;">
|
|
||||||
<h1>GT Eesti Pro Display Regular Italic</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Display';
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: italic;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Display'; font-weight: 300; font-style: italic;">
|
|
||||||
<h1>GT Eesti Pro Display Light Italic</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Display';
|
|
||||||
font-weight: 300;
|
|
||||||
font-style: italic;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Text'; font-weight: bold; font-style: normal;">
|
|
||||||
<h1>GT Eesti Pro Text Bold</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Text';
|
|
||||||
font-weight: bold;
|
|
||||||
font-style: normal;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Text'; font-weight: 100; font-style: normal;">
|
|
||||||
<h1>GT Eesti Pro Text Thin</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Text';
|
|
||||||
font-weight: 100;
|
|
||||||
font-style: normal;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Display'; font-weight: 200; font-style: italic;">
|
|
||||||
<h1>GT Eesti Pro Display UltraLight Italic</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Display';
|
|
||||||
font-weight: 200;
|
|
||||||
font-style: italic;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Display'; font-weight: bold; font-style: italic;">
|
|
||||||
<h1>GT Eesti Pro Display Bold Italic</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Display';
|
|
||||||
font-weight: bold;
|
|
||||||
font-style: italic;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Text'; font-weight: 500; font-style: italic;">
|
|
||||||
<h1>GT Eesti Pro Text Medium Italic</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Text';
|
|
||||||
font-weight: 500;
|
|
||||||
font-style: italic;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Text Book'; font-weight: normal; font-style: italic;">
|
|
||||||
<h1>GT Eesti Pro Text Book Italic</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Text Book';
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: italic;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Text'; font-weight: 200; font-style: normal;">
|
|
||||||
<h1>GT Eesti Pro Text UltraLight</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Text';
|
|
||||||
font-weight: 200;
|
|
||||||
font-style: normal;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Display'; font-weight: normal; font-style: normal;">
|
|
||||||
<h1>GT Eesti Pro Display Regular</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Display';
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="demo" style="font-family: 'GT Eesti Pro Display'; font-weight: 100; font-style: italic;">
|
|
||||||
<h1>GT Eesti Pro Display Thin Italic</h1>
|
|
||||||
<pre>.your-style {
|
|
||||||
font-family: 'GT Eesti Pro Display';
|
|
||||||
font-weight: 100;
|
|
||||||
font-style: italic;
|
|
||||||
}</pre>
|
|
||||||
<div class="font-container">
|
|
||||||
<p class="letters">
|
|
||||||
abcdefghijklmnopqrstuvwxyz<br>
|
|
||||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
|
||||||
0123456789.:,;()*!?'@#<>$%&^+-=~
|
|
||||||
</p>
|
|
||||||
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,6 +1,8 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Auth from '../components/Auth';
|
import Auth from '../components/Auth';
|
||||||
|
|
||||||
const AuthPage = () => <Auth />;
|
const AuthPage = ({ setAuth }) => {
|
||||||
|
return <Auth setAuthed={setAuth} />;
|
||||||
|
};
|
||||||
|
|
||||||
export default AuthPage;
|
export default AuthPage;
|
||||||
|
Loading…
Reference in New Issue
Block a user