-
-
Notifications
You must be signed in to change notification settings - Fork 215
Expand file tree
/
Copy pathContent.ts
More file actions
126 lines (106 loc) · 1.97 KB
/
Content.ts
File metadata and controls
126 lines (106 loc) · 1.97 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import styled from "styled-components";
export const ContentContainer = styled.div`
padding: 20px;
max-width: 900px;
width: 100%;
margin: 0 auto;
background-color: var(--bg-color) !important;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
box-sizing: border-box;
h1,
h2,
h3,
h4,
h5,
h6 {
margin-top: 1em;
margin-bottom: 0.5em;
color: var(--text-color) !important;
}
p {
line-height: 1.6;
margin-bottom: 1em;
color: var(--text-color) !important;
}
a {
color: #19c6c7;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
ul,
ol {
margin: 1em 0;
li {
margin-bottom: 0.5em;
color: var(--text-color) !important;
}
}
img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
.image-container {
display: flex;
justify-content: center;
}
@media (max-width: 1200px) {
max-width: 90%;
}
@media (max-width: 768px) {
padding: 15px;
}
`;
export const NavigationButtons = styled.div`
margin-top: 60px;
margin-bottom: 20px;
display: flex;
justify-content: space-between;
@media (max-width: 768px) {
flex-direction: column;
align-items: stretch;
button {
margin-bottom: 10px;
}
}
`;
export const NavigationButton = styled.button`
padding: 10px 20px;
border: 2px solid #19c6c7;
border-radius: 4px;
background-color: white;
color: #1b2540;
cursor: pointer;
font-weight: 600;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
&:disabled {
background-color: #e0e0e0;
color: #9e9e9e;
cursor: not-allowed;
border-color: #e0e0e0;
}
&:hover:not(:disabled) {
background-color: #19c6c7;
color: white;
text-decoration: underline;
}
svg {
margin-right: 8px;
}
&:nth-child(1) svg {
margin-right: 8px;
}
&:nth-child(2) {
svg {
margin-right: 0;
margin-left: 8px;
}
}
`;