-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLayout.js
104 lines (102 loc) · 1.97 KB
/
Layout.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import { graphql, useStaticQuery } from 'gatsby';
import React from 'react';
import { createGlobalStyle } from 'styled-components';
export const Layout = ({ children, header }) => {
const site = useStaticQuery(
graphql`
query {
site {
siteMetadata {
title
description
}
}
}
`
).site.siteMetadata;
return (
<>
<GlobalStyle />
<header>{header}</header>
<main>{children}</main>
<footer>
<p>You are reading</p>
<a href="/">
<h1>{site.title}</h1>
</a>
<p>{site.description}</p>
</footer>
</>
);
};
const GlobalStyle = createGlobalStyle`
:root {
--primary-color: hsl(200, 100%, 12%);
--primary-color-faded: hsla(200, 100%, 12%, 0.4);
--primary-color-superfaded: hsla(200, 100%, 12%, 0.2);
--font-size-small: .8rem;
}
body {
font-family: 'Laila', serif;
font-weight: 300;
font-size: 20px;
color: var(--primary-color);
margin: 0;
padding: 0;
}
* {
box-sizing: border-box;
}
h1 {
font-family: 'Amita', sans-serif;
font-size: 2em;
margin: 0;
padding: 0;
line-height: 1.4;
}
h2, h3, h4 {
font-family: 'Amita', sans-serif;
}
a {
color: #cc7000;
text-decoration: none;
}
a:hover {
color: darkorange;
}
blockquote {
border-left: 3px solid var(--primary-color-superfaded);
margin: 0;
padding: 0 0 0 0.5em;
}
img[data-gallery-source]:hover {
cursor: pointer;
}
footer {
max-width: 900px;
margin: auto;
padding: 2em;
border-top: 1px solid #ccc;
background-color: #fafafa;
text-align: center;
p {
margin: 0;
}
h1 {
margin: 0.2em 0;
}
}
@media only screen and (max-width: 800px) {
body {
font-size: 16px;
}
}
@media (max-height: 700px) and (orientation: landscape) {
footer {
display: none;
}
body {
background-color: black;
}
}
`;