-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathPageLayout.module.css
76 lines (62 loc) · 1.11 KB
/
PageLayout.module.css
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
.container {
margin-top: var(--page-spacing-top);
margin-bottom: var(--page-spacing-bottom);
}
.header {
background-color: var(--ds-color-brand3-surface-default);
padding-top: var(--ds-spacing-7);
}
.headerContent {
max-width: 780px;
margin: 0 auto;
padding-bottom: var(--ds-spacing-18);
}
.headerContent h1,
.headerContent h2,
.headerContent p {
color: var(--ds-color-brand3-text-default);
}
.title {
margin-bottom: 0;
text-align: center;
}
.backBtn {
margin-bottom: var(--ds-spacing-10);
color: inherit;
}
.backBtn:visited {
color: inherit;
}
.backBtn svg {
margin-right: var(--ds-spacing-2);
}
.separator {
margin: 0 var(--ds-spacing-2);
}
.meta {
display: flex;
text-align: center;
justify-content: center;
margin-bottom: var(--ds-spacing-3);
font: var(--ds-typography-paragraph-short-lg);
}
.content {
max-width: 780px;
margin: 0 auto;
}
@media (max-width: 576px) {
.content {
padding: 0;
}
.title {
text-align: left;
}
.meta {
flex-direction: column;
text-align: left;
gap: var(--ds-spacing-1);
}
.separator {
display: none;
}
}