@documental-xyz/core 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +424 -0
- package/integration.ts +113 -0
- package/package.json +83 -0
- package/src/admin/admin.astro +29 -0
- package/src/assets/scripts/App.js +70 -0
- package/src/assets/scripts/EnteringAnimations.js +34 -0
- package/src/assets/scripts/MapBoxHandler.js +680 -0
- package/src/assets/scripts/ScrollProgressionBar.js +24 -0
- package/src/assets/scripts/utils/ScrollObserver.js +166 -0
- package/src/assets/styles/config/_breakpoints.scss +37 -0
- package/src/assets/styles/config/_colors.scss +8 -0
- package/src/assets/styles/config/_config.scss +5 -0
- package/src/assets/styles/config/_functions.scss +90 -0
- package/src/assets/styles/config/_grrr.configs.scss +7 -0
- package/src/assets/styles/config/_mixins.scss +207 -0
- package/src/assets/styles/config/_type.scss +175 -0
- package/src/assets/styles/config/_vars.scss +16 -0
- package/src/assets/styles/globals/_content.scss +47 -0
- package/src/assets/styles/globals/_grrr.scss +18 -0
- package/src/assets/styles/globals/_html.scss +25 -0
- package/src/assets/styles/globals/_lists.scss +19 -0
- package/src/assets/styles/globals/_map-anchors.scss +32 -0
- package/src/assets/styles/globals/_reset.scss +240 -0
- package/src/assets/styles/globals/_reveal-animations.scss +104 -0
- package/src/assets/styles/globals/_root.scss +6 -0
- package/src/assets/styles/globals/_scroll-progression-bar.scss +8 -0
- package/src/assets/styles/main.scss +17 -0
- package/src/assets/styles/utils/.gitkeep +0 -0
- package/src/assets/styles/utils/grrr/_grrr.scss +433 -0
- package/src/assets/styles/utils/list-styles/_list-styles.scss +190 -0
- package/src/components/AnimationToggle.astro +19 -0
- package/src/components/BigNumbers.astro +83 -0
- package/src/components/Button.astro +49 -0
- package/src/components/Caption.astro +15 -0
- package/src/components/Card.astro +68 -0
- package/src/components/Cards.astro +66 -0
- package/src/components/CardsCall.astro +125 -0
- package/src/components/ChartBar.astro +217 -0
- package/src/components/ChartPercentage.astro +137 -0
- package/src/components/Column.astro +54 -0
- package/src/components/ColumnSticky.astro +129 -0
- package/src/components/Columns.astro +139 -0
- package/src/components/Compare.astro +266 -0
- package/src/components/Cta.astro +242 -0
- package/src/components/Gallery.astro +594 -0
- package/src/components/Group.astro +140 -0
- package/src/components/HtmlEmbed.astro +98 -0
- package/src/components/ImageBlock.astro +134 -0
- package/src/components/InnerColumns.astro +54 -0
- package/src/components/LogosGroup.astro +102 -0
- package/src/components/Map.astro +321 -0
- package/src/components/MapBox.astro +96 -0
- package/src/components/MapView.astro +30 -0
- package/src/components/Menu.astro +278 -0
- package/src/components/Pullquote.astro +46 -0
- package/src/components/Slider.astro +223 -0
- package/src/components/Spacer.astro +25 -0
- package/src/components/Text.astro +173 -0
- package/src/components/TextPlaceholder.astro +98 -0
- package/src/components/Timeline.astro +73 -0
- package/src/components/TimelineBullet.astro +67 -0
- package/src/components/VideoEmbed.astro +99 -0
- package/src/content/loader.ts +29 -0
- package/src/content/pages/alter-ameacada.md +80 -0
- package/src/content/pages/expulsions.md +1447 -0
- package/src/content/pages/home.md +346 -0
- package/src/content/pages/nhanderekoa-studio-autonoma.md +3113 -0
- package/src/content/pages/nhanderekoa-terra-ind/303/255gena-jaragu/303/241.md +3806 -0
- package/src/content/pages/nova-landing-page.md +546 -0
- package/src/content/pages/territ/303/263rios-de-exce/303/247/303/243o.md +2199 -0
- package/src/content/pages/teste-alter-do-chao.md +955 -0
- package/src/content/pages/teste-layout.md +1484 -0
- package/src/content/pages/thiago.md +93 -0
- package/src/content/schema/blog.ts +11 -0
- package/src/content/schema/geostorys.ts +13 -0
- package/src/content/schema/index.ts +3 -0
- package/src/content/schema/pages.ts +494 -0
- package/src/content.config.ts +49 -0
- package/src/env.d.ts +1 -0
- package/src/integration/override-aliases.ts +67 -0
- package/src/layouts/components/ButtonLayout.astro +8 -0
- package/src/layouts/components/CardLayout.astro +8 -0
- package/src/layouts/components/CardsCallLayout.astro +26 -0
- package/src/layouts/components/CardsLayout.astro +14 -0
- package/src/layouts/components/ChartBarLayout.astro +21 -0
- package/src/layouts/components/ChartPercentageLayout.astro +17 -0
- package/src/layouts/components/ColumnLayout.astro +11 -0
- package/src/layouts/components/ColumnStickyLayout.astro +10 -0
- package/src/layouts/components/ColumnsLayout.astro +13 -0
- package/src/layouts/components/CompareLayout.astro +22 -0
- package/src/layouts/components/CtaLayout.astro +91 -0
- package/src/layouts/components/GalleryLayout.astro +24 -0
- package/src/layouts/components/GroupLayout.astro +53 -0
- package/src/layouts/components/HtmlEmbedLayout.astro +18 -0
- package/src/layouts/components/ImageBlockLayout.astro +20 -0
- package/src/layouts/components/InnerColumnsLayout.astro +14 -0
- package/src/layouts/components/LogosGroupLayout.astro +22 -0
- package/src/layouts/components/MapLayout.astro +41 -0
- package/src/layouts/components/MapViewLayout.astro +8 -0
- package/src/layouts/components/MapboxLayout.astro +248 -0
- package/src/layouts/components/PullquoteLayout.astro +13 -0
- package/src/layouts/components/SliderLayout.astro +18 -0
- package/src/layouts/components/SpacerLayout.astro +8 -0
- package/src/layouts/components/TextLayout.astro +17 -0
- package/src/layouts/components/TextPlaceholderLayout.astro +7 -0
- package/src/layouts/components/TimelineBulletLayout.astro +14 -0
- package/src/layouts/components/TimelineLayout.astro +10 -0
- package/src/layouts/components/VideoEmbedLayout.astro +28 -0
- package/src/layouts/pages/Layout.astro +90 -0
- package/src/layouts/pages/PageLayout.astro +200 -0
- package/src/lib/collections.ts +1 -0
- package/src/routes/[slug].astro +17 -0
- package/src/routes/index.astro +5 -0
- package/src/vite/yaml-merge-plugin.ts +234 -0
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Caption from "./Caption.astro";
|
|
3
|
+
|
|
4
|
+
const { title, notes, values } = Astro.props;
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
<div class="chart-percentage reveal--fadeInUp">
|
|
8
|
+
<div class="chart-percentage__holder">
|
|
9
|
+
|
|
10
|
+
<span class="chart-percentage__title reveal--fadeInUp">{title}</span>
|
|
11
|
+
<div class="chart-percentage__bars">
|
|
12
|
+
{
|
|
13
|
+
values &&
|
|
14
|
+
values.map((data, index) => (
|
|
15
|
+
<div
|
|
16
|
+
class="chart-percentage__bar"
|
|
17
|
+
style={`--clr-chart:${data.color}; --data-perc:${data.number}%; --index:${index}`}
|
|
18
|
+
/>
|
|
19
|
+
))
|
|
20
|
+
}
|
|
21
|
+
</div>
|
|
22
|
+
<div class="chart-percentage__captions">
|
|
23
|
+
{
|
|
24
|
+
values &&
|
|
25
|
+
values.map((data, index) => (
|
|
26
|
+
<div
|
|
27
|
+
class="chart-percentage__caption"
|
|
28
|
+
style={`--clr-chart:${data.color}; --index:${index}`}
|
|
29
|
+
>
|
|
30
|
+
<span class="chart-percentage__label">
|
|
31
|
+
{data?.label ? data.label + " - " : ""}
|
|
32
|
+
<strong>{data.number + "%"}</strong>
|
|
33
|
+
</span>
|
|
34
|
+
</div>
|
|
35
|
+
))
|
|
36
|
+
}
|
|
37
|
+
</div>
|
|
38
|
+
<div class="chart-percentage__notes reveal--fadeInUp">
|
|
39
|
+
<Caption>{notes}</Caption>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
|
|
44
|
+
<style lang="scss">
|
|
45
|
+
@use "../assets/styles/config/config" as *;
|
|
46
|
+
@use "../assets/styles/globals/grrr" as *;
|
|
47
|
+
|
|
48
|
+
:global(.animation-disabled:has(.chart-percentage) + *) {
|
|
49
|
+
margin-top: var(--mt-m);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.chart-percentage {
|
|
53
|
+
$self: &;
|
|
54
|
+
&:not(:first-child),
|
|
55
|
+
& :global(+ *:not(.column)),
|
|
56
|
+
:global(.animation-disabled:not(:first-child) > ) & {
|
|
57
|
+
margin-top: var(--mt-m);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
:global(.group__content >) &,
|
|
61
|
+
:global(.group__content > .animation-disabled >) & {
|
|
62
|
+
@extend %grrr--board;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
&__holder {
|
|
66
|
+
:global(.group__content > .chart-percentage) &,
|
|
67
|
+
:global(.group__content > .animation-disabled > .chart-percentage) & {
|
|
68
|
+
grid-column: content;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
&__title {
|
|
73
|
+
@include type("h-m");
|
|
74
|
+
display: block;
|
|
75
|
+
margin-bottom: 40px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&__bars {
|
|
79
|
+
display: flex;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
&__bar {
|
|
83
|
+
flex-basis: 0;
|
|
84
|
+
height: 100px;
|
|
85
|
+
background-color: var(--clr-chart);
|
|
86
|
+
transition: 1s ease .5s;
|
|
87
|
+
|
|
88
|
+
:global(.animation-disabled) &,
|
|
89
|
+
#{$self}.reveal & {
|
|
90
|
+
flex-basis: var(--data-perc);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
&__captions {
|
|
95
|
+
margin-top: 24px;
|
|
96
|
+
display: grid;
|
|
97
|
+
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
|
|
98
|
+
row-gap: 10px;
|
|
99
|
+
column-gap: 32px;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&__caption {
|
|
103
|
+
@include type("c-m");
|
|
104
|
+
width: fit-content;
|
|
105
|
+
display: grid;
|
|
106
|
+
grid-template-columns: 16px auto;
|
|
107
|
+
gap: 8px;
|
|
108
|
+
opacity: 0;
|
|
109
|
+
transform: translateY(30px);
|
|
110
|
+
transition: 1s ease .5s;
|
|
111
|
+
|
|
112
|
+
:global(.animation-disabled) &,
|
|
113
|
+
#{$self}.reveal & {
|
|
114
|
+
opacity: 1;
|
|
115
|
+
transform: translateY(0);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
&::before {
|
|
119
|
+
content: "";
|
|
120
|
+
width: 16px;
|
|
121
|
+
height: 16px;
|
|
122
|
+
display: inline-block;
|
|
123
|
+
background-color: var(--clr-chart);
|
|
124
|
+
margin-top: 1px;
|
|
125
|
+
transform: translateY(2px);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
&__label {
|
|
130
|
+
display: inline-block;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
&__notes {
|
|
134
|
+
margin-top: 40px;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
</style>
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
---
|
|
2
|
+
const { paddingTop, paddingBottom } = Astro.props;
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<section
|
|
6
|
+
class:list={[
|
|
7
|
+
"column",
|
|
8
|
+
{
|
|
9
|
+
'column--has-pdt': paddingTop,
|
|
10
|
+
'column--has-pdb': paddingBottom
|
|
11
|
+
}
|
|
12
|
+
]}
|
|
13
|
+
>
|
|
14
|
+
<div class="column__holder">
|
|
15
|
+
<slot />
|
|
16
|
+
</div>
|
|
17
|
+
</section>
|
|
18
|
+
|
|
19
|
+
<style lang="scss">
|
|
20
|
+
@use "../assets/styles/config/config" as *;
|
|
21
|
+
@use "../assets/styles/globals/grrr" as *;
|
|
22
|
+
|
|
23
|
+
.column {
|
|
24
|
+
$self: &;
|
|
25
|
+
@extend %grrr--content;
|
|
26
|
+
|
|
27
|
+
&__holder {
|
|
28
|
+
--padding-block: 120px;
|
|
29
|
+
padding-top: var(--padding-top, var(--padding-block));
|
|
30
|
+
padding-bottom: var(--padding-bottom, var(--padding-block));
|
|
31
|
+
grid-column: content;
|
|
32
|
+
|
|
33
|
+
@include media-break-down(m) {
|
|
34
|
+
--padding-block: 40px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
#{$self}--has-pdt & {
|
|
38
|
+
--padding-top: 225px;
|
|
39
|
+
|
|
40
|
+
@include media-break-down(m) {
|
|
41
|
+
--padding-top: 90px;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
#{$self}--has-pdb & {
|
|
46
|
+
--padding-bottom: 225px;
|
|
47
|
+
|
|
48
|
+
@include media-break-down(m) {
|
|
49
|
+
--padding-bottom: 90px;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
</style>
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
---
|
|
2
|
+
const { layout, paddingTop, paddingBottom } = Astro.props;
|
|
3
|
+
|
|
4
|
+
// layout deve receber "text-bigger" ou "title-bottom".
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
<header
|
|
9
|
+
class:list={[
|
|
10
|
+
"column-sticky",
|
|
11
|
+
layout && `column-sticky--${layout}`,
|
|
12
|
+
{
|
|
13
|
+
'column-sticky--has-pdt': paddingTop,
|
|
14
|
+
'column-sticky--has-pdb': paddingBottom
|
|
15
|
+
}
|
|
16
|
+
]}
|
|
17
|
+
>
|
|
18
|
+
<div class="column-sticky__holder">
|
|
19
|
+
<div class="column-sticky__title">
|
|
20
|
+
<slot name="title" />
|
|
21
|
+
</div>
|
|
22
|
+
<div class="column-sticky__content">
|
|
23
|
+
<slot />
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
</header>
|
|
27
|
+
|
|
28
|
+
<style lang="scss">
|
|
29
|
+
@use "../assets/styles/config/config" as *;
|
|
30
|
+
@use "../assets/styles/globals/grrr" as *;
|
|
31
|
+
|
|
32
|
+
.column-sticky {
|
|
33
|
+
$self: &;
|
|
34
|
+
|
|
35
|
+
&__holder {
|
|
36
|
+
@extend %grrr--board;
|
|
37
|
+
--padding-block: 120px;
|
|
38
|
+
padding-top: var(--padding-top, var(--padding-block));
|
|
39
|
+
padding-bottom: var(--padding-bottom, var(--padding-block));
|
|
40
|
+
|
|
41
|
+
@include media-break-down(m) {
|
|
42
|
+
--padding-block: 40px;
|
|
43
|
+
display: block;
|
|
44
|
+
padding-inline: var(--atnl-margin);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
#{$self}--has-pdt & {
|
|
48
|
+
--padding-top: 225px;
|
|
49
|
+
|
|
50
|
+
@include media-break-down(m) {
|
|
51
|
+
--padding-top: 90px;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
#{$self}--has-pdb & {
|
|
56
|
+
--padding-bottom: 225px;
|
|
57
|
+
|
|
58
|
+
@include media-break-down(m) {
|
|
59
|
+
--padding-bottom: 90px;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
&__title {
|
|
65
|
+
@include type('d-s');
|
|
66
|
+
font-weight: 600;
|
|
67
|
+
grid-column: board-start 1 / board-end 6;
|
|
68
|
+
text-wrap: balance;
|
|
69
|
+
|
|
70
|
+
@include media-break-up(l) {
|
|
71
|
+
grid-column: board-start 2 / board-end 7;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
:global(> *) {
|
|
75
|
+
position: sticky;
|
|
76
|
+
top: var(--padding-block);
|
|
77
|
+
font-weight: inherit;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
#{$self}--text-bigger & {
|
|
81
|
+
@include type('d-xl');
|
|
82
|
+
font-weight: 600;
|
|
83
|
+
|
|
84
|
+
@include media-break-up(l) {
|
|
85
|
+
grid-column: board-start 2 / board-end 5;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
@include media-break-down(x) {
|
|
90
|
+
#{$self} & {
|
|
91
|
+
@include type('h-xxl');
|
|
92
|
+
font-weight: 600;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
@include media-break-down(l) {
|
|
97
|
+
#{$self} & {
|
|
98
|
+
@include type('h-l');
|
|
99
|
+
margin-bottom: 36px;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
&__content {
|
|
105
|
+
animation-delay: .5s;
|
|
106
|
+
grid-column: board-start 7 / board-end 12;
|
|
107
|
+
|
|
108
|
+
@include media-break-up(l) {
|
|
109
|
+
grid-column: board-start 8 / board-end 11;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
@include media-break-up(x) {
|
|
113
|
+
grid-column: board-start 9 / board-end 11;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
#{$self}--text-bigger & {
|
|
117
|
+
@include media-break-up(l) {
|
|
118
|
+
grid-column: board-start 6 / board-end 11;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
:global(> *:first-child),
|
|
123
|
+
:global(> .text > *:first-child) {
|
|
124
|
+
margin-top: 0;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
</style>
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
---
|
|
2
|
+
const { paddingTop, paddingBottom, invertOnMobile, alignment } = Astro.props;
|
|
3
|
+
|
|
4
|
+
//alignment recebe '33-66' (primeira coluna menor) ou false (padrão no css fica para primera coluna maior);
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
<section
|
|
8
|
+
class:list={[
|
|
9
|
+
"columns",
|
|
10
|
+
{
|
|
11
|
+
'columns--has-pdt': paddingTop,
|
|
12
|
+
'columns--has-pdb': paddingBottom,
|
|
13
|
+
'columns--invert-on-mobile': invertOnMobile,
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
alignment && `columns--${alignment}`
|
|
17
|
+
]}
|
|
18
|
+
>
|
|
19
|
+
<div class="columns__holder">
|
|
20
|
+
<div class="columns__column-1">
|
|
21
|
+
<slot name="column-1" />
|
|
22
|
+
</div>
|
|
23
|
+
<div class="columns__column-2">
|
|
24
|
+
<slot name="column-2" />
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
</section>
|
|
28
|
+
|
|
29
|
+
<style lang="scss">
|
|
30
|
+
@use "../assets/styles/config/config" as *;
|
|
31
|
+
@use "../assets/styles/globals/grrr" as *;
|
|
32
|
+
|
|
33
|
+
.columns {
|
|
34
|
+
$self: &;
|
|
35
|
+
|
|
36
|
+
&:has(.gallery-modal[aria-hidden="false"]) {
|
|
37
|
+
position: relative;
|
|
38
|
+
z-index: 99999;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&__holder {
|
|
42
|
+
@extend %grrr--board;
|
|
43
|
+
align-items: start;
|
|
44
|
+
|
|
45
|
+
--padding-block: 120px;
|
|
46
|
+
padding-top: var(--padding-top, var(--padding-block));
|
|
47
|
+
padding-bottom: var(--padding-bottom, var(--padding-block));
|
|
48
|
+
|
|
49
|
+
@include media-break-down(m) {
|
|
50
|
+
--padding-block: 40px;
|
|
51
|
+
row-gap: 60px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
#{$self}--has-pdt & {
|
|
55
|
+
--padding-top: 225px;
|
|
56
|
+
|
|
57
|
+
@include media-break-down(m) {
|
|
58
|
+
--padding-top: 90px;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
#{$self}--has-pdb & {
|
|
63
|
+
--padding-bottom: 225px;
|
|
64
|
+
|
|
65
|
+
@include media-break-down(m) {
|
|
66
|
+
--padding-bottom: 90px;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
&__column-1 {
|
|
72
|
+
grid-column: board-start 2 / board-end 7;
|
|
73
|
+
|
|
74
|
+
@include media-break-down(x) {
|
|
75
|
+
grid-column: board-start 1 / board-end 7;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@include media-break-down(m) {
|
|
79
|
+
grid-column: board-full;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
#{$self}--33-66 & {
|
|
83
|
+
grid-column: board-start 2 / board-end 4;
|
|
84
|
+
|
|
85
|
+
@include media-break-down(x) {
|
|
86
|
+
grid-column: board-start 1 / board-end 4;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
@include media-break-down(l) {
|
|
90
|
+
grid-column: board-start 1 / board-end 5;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
@include media-break-down(m) {
|
|
94
|
+
grid-column: board-full;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
&__column-2 {
|
|
100
|
+
grid-column: board-start 9 / board-end 11;
|
|
101
|
+
animation-delay: .5s;
|
|
102
|
+
|
|
103
|
+
@include media-break-down(x) {
|
|
104
|
+
grid-column: board-start 9 / board-end 12;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
@include media-break-down(l) {
|
|
108
|
+
grid-column: board-start 8 / board-end 12;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
@include media-break-down(m) {
|
|
112
|
+
grid-column: board-full;
|
|
113
|
+
|
|
114
|
+
#{$self}--invert-on-mobile & {
|
|
115
|
+
grid-row: 1;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
#{$self}--33-66 & {
|
|
120
|
+
grid-column: board-start 6 / board-end 11;
|
|
121
|
+
|
|
122
|
+
@include media-break-down(x) {
|
|
123
|
+
grid-column: board-start 6 / board-end 12;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
@include media-break-down(m) {
|
|
127
|
+
grid-column: board-full;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
&__column-1,
|
|
133
|
+
&__column-2 {
|
|
134
|
+
:global(> *:first-child) {
|
|
135
|
+
margin-top: 0;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
</style>
|