Minor changes
This commit is contained in:
parent
35be49e46f
commit
d77aabf966
3 changed files with 28 additions and 23 deletions
|
|
@ -1,27 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
|
||||
<meta property="og:image:width" content="1500">
|
||||
<meta property="og:image:height" content="785">
|
||||
<meta property="og:title" content="Portfolio - András Schmelczer">
|
||||
<meta property="og:description" content="You can view my projects on a timeline.">
|
||||
<meta property="og:url" content="https://schmelczer.dev">
|
||||
<meta property="og:image" content="https://schmelczer.dev/og-image.jpg">
|
||||
<meta property="og:image:width" content="1500" />
|
||||
<meta property="og:image:height" content="785" />
|
||||
<meta property="og:title" content="András Schmelczer - Portfolio" />
|
||||
<meta property="og:description" content="Discover my projects." />
|
||||
<meta property="og:url" content="https://schmelczer.dev" />
|
||||
<meta property="og:image" content="https://schmelczer.dev/og-image.jpg" />
|
||||
|
||||
<meta name="description" content="You can view my projects on a timeline.">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover" />
|
||||
<meta name="theme-color" content="#b7455e" />
|
||||
<meta
|
||||
name="description"
|
||||
content="I'm András Schmelczer and this is my portfolio. I enjoy undertaking and solving challenging problems. Discover my projects."
|
||||
/>
|
||||
<meta
|
||||
name="viewport"
|
||||
content="width=device-width,initial-scale=1,viewport-fit=cover"
|
||||
/>
|
||||
<meta name="theme-color" content="#b7455e" />
|
||||
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
|
||||
|
||||
<title>Portfolio - András Schmelczer</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="main"> <!-- IE11 doesn't like <main> -->
|
||||
<noscript><h1>Javascript is required for this website.</h1></noscript>
|
||||
</div>
|
||||
</body>
|
||||
<title>András Schmelczer - Portfolio</title>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<noscript><h1>Javascript is required for this website.</h1></noscript>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ export const create = ({ header, timeline, footer }: Portfolio) => {
|
|||
const pageTimeline = new PageTimeline(timeline);
|
||||
const pageFooter = new PageFooter(footer);
|
||||
|
||||
new ContainerPage(document.body.querySelector('#main'), [
|
||||
new ContainerPage(document.body.querySelector('main'), [
|
||||
new PageImageViewer(),
|
||||
pageHeader,
|
||||
pageTimeline,
|
||||
|
|
|
|||
|
|
@ -83,7 +83,6 @@
|
|||
}
|
||||
|
||||
body {
|
||||
//noinspection CssInvalidFunction
|
||||
padding: env(safe-area-inset-top) env(safe-area-inset-right)
|
||||
env(safe-area-inset-bottom) env(safe-area-inset-left);
|
||||
|
||||
|
|
@ -95,7 +94,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
div#main {
|
||||
main {
|
||||
height: 100%;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue