blob: 06d0cd32e98eb33b34ed9b9174f5751ecdc90b8d (
plain) (
blame)
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
|
import styled, { createGlobalStyle } from "styled-components";
export const GlobalStyle = createGlobalStyle`
body {
font-family: 'Roboto', sans-serif;
}
`;
export const Container = styled.div`
display: flex;
flex-direction: column;
align-items: left;
padding: 20px;
background-color: #f9f9f9;
color: #333;
`;
export const Title = styled.h1`
font-size: 2.5em;
margin-bottom: 0.5em;
font-weight: 700;
`;
export const Subtitle = styled.h2`
font-size: 1.5em;
margin-bottom: 1em;
font-weight: 600;
`;
export const Paragraph = styled.p`
font-size: 1.2em;
line-height: 1.6;
margin-bottom: 2em;
text-align: left;
font-weight: 450;
`;
export const Preformatted = styled.pre`
font-size: 1em;
background-color: #eaeaea;
padding: 10px;
border-radius: 5px;
white-space: pre-wrap;
word-wrap: break-word;
`;
export const BackLink = styled.a`
font-size: 1em;
color: #007bff;
text-decoration: none;
&:hover {
text-decoration: underline;
}
`;
export const Video = styled.video`
width: 100%;
max-width: 600px;
margin: 20px 0;
border-radius: 10px;
`;
|