Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
781
Issues
781
List
Boards
Labels
Service Desk
Milestones
Merge Requests
50
Merge Requests
50
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Security & Compliance
Security & Compliance
Dependency List
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Compare Revisions
03673a03c33c49c57f2d149ba45c9631aa0db350...acc30fa521260c065e5a195173b27afac5cd84fb
Source
acc30fa521260c065e5a195173b27afac5cd84fb
Select Git revision
...
Target
03673a03c33c49c57f2d149ba45c9631aa0db350
Select Git revision
Compare
Commits (2)
(feat): Style tail decoration
· 231a45ac
Emiliano Balbuena
authored
2 hours ago
231a45ac
(fix): Marketing point value emphasis
· acc30fa5
Emiliano Balbuena
authored
1 hour ago
acc30fa5
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
101 additions
and
0 deletions
+101
-0
src/app/common/components/marketing/styles/style-3.scss
src/app/common/components/marketing/styles/style-3.scss
+23
-0
src/app/common/components/marketing/styles/style-4.scss
src/app/common/components/marketing/styles/style-4.scss
+23
-0
src/app/common/components/marketing/styles/style-tail.scss
src/app/common/components/marketing/styles/style-tail.scss
+35
-0
src/app/modules/blockchain/marketing/rewards.component.html
src/app/modules/blockchain/marketing/rewards.component.html
+4
-0
src/app/modules/blockchain/marketing/token.component.html
src/app/modules/blockchain/marketing/token.component.html
+4
-0
src/app/modules/nodes/marketing/marketing.component.html
src/app/modules/nodes/marketing/marketing.component.html
+4
-0
src/app/modules/plus/marketing.component.html
src/app/modules/plus/marketing.component.html
+4
-0
src/app/modules/pro/marketing.component.html
src/app/modules/pro/marketing.component.html
+4
-0
No files found.
src/app/common/components/marketing/styles/style-3.scss
View file @
acc30fa5
...
...
@@ -82,6 +82,29 @@
}
}
ul
.m-marketing__points
{
@include
m-theme
()
{
color
:
themed
(
$m-grey-300
);
}
@include
m-on-theme
(
dark
)
{
color
:
#ffffff
;
}
>
li
em
{
font-style
:
normal
;
@include
m-theme
()
{
color
:
themed
(
$m-black
);
}
@include
m-on-theme
(
dark
)
{
color
:
#ffffff
;
font-weight
:
bold
;
}
}
}
.m-marketing__image
{
position
:
relative
;
z-index
:
0
;
...
...
This diff is collapsed.
Click to expand it.
src/app/common/components/marketing/styles/style-4.scss
View file @
acc30fa5
...
...
@@ -56,6 +56,29 @@
}
}
ul
.m-marketing__points
{
@include
m-theme
()
{
color
:
themed
(
$m-grey-300
);
}
@include
m-on-theme
(
dark
)
{
color
:
#ffffff
;
}
>
li
em
{
font-style
:
normal
;
@include
m-theme
()
{
color
:
themed
(
$m-black
);
}
@include
m-on-theme
(
dark
)
{
color
:
#ffffff
;
font-weight
:
bold
;
}
}
}
.m-marketing__image
{
position
:
relative
;
z-index
:
0
;
...
...
This diff is collapsed.
Click to expand it.
src/app/common/components/marketing/styles/style-tail.scss
View file @
acc30fa5
...
...
@@ -19,6 +19,7 @@
}
.m-marketing__body
{
position
:
relative
;
text-align
:
center
;
padding
:
0
36px
;
...
...
@@ -54,5 +55,39 @@
}
}
}
.m-marketingSectionTail__table
{
> *
:
:
after
{
content
:
''
;
display
:
block
;
position
:
absolute
;
width
:
1px
;
height
:
100%
;
top
:
0
;
right
:
0
;
transform
:
translateX
((
$m-grid-gap
/
2
)
+
1px
);
@include
m-theme
()
{
background
:
linear-gradient
(
to
bottom
,
rgba
(
themed
(
$m-grey-100
)
,
0
)
0%
,
rgba
(
themed
(
$m-grey-100
)
,
0
)
25%
,
rgba
(
themed
(
$m-grey-100
)
,
0
.9
)
50%
,
rgba
(
themed
(
$m-grey-100
)
,
0
)
75%
,
rgba
(
themed
(
$m-grey-100
)
,
0
)
100%
);
}
@media
screen
and
(
max-width
:
$m-grid-min-vp
)
{
content
:
initial
;
display
:
initial
;
}
}
>
*
:last-child::after
{
content
:
initial
;
display
:
initial
;
}
}
}
}
This diff is collapsed.
Click to expand it.
src/app/modules/blockchain/marketing/rewards.component.html
View file @
acc30fa5
...
...
@@ -195,7 +195,9 @@
>
<h2
i18n
>
Other Rewards
</h2>
</div>
</div>
<div
class=
"m-grid m-marketing__wrapper m-marketingSectionTail__table"
>
<div
class=
"m-grid__column-4 m-grid__column-12--mobile m-marketing__body"
>
...
...
@@ -228,7 +230,9 @@
perform an action, such as voting or commenting.
</p>
</div>
</div>
<div
class=
"m-grid m-marketing__wrapper"
>
<div
class=
"m-grid__column-12 m-grid__column-12--mobile m-marketing__body m-marketing__body--extra"
>
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/blockchain/marketing/token.component.html
View file @
acc30fa5
...
...
@@ -153,7 +153,9 @@
>
<h2
i18n
>
Other features
</h2>
</div>
</div>
<div
class=
"m-grid m-marketing__wrapper m-marketingSectionTail__table"
>
<div
class=
"m-grid__column-4 m-grid__column-12--mobile m-marketing__body"
>
...
...
@@ -186,7 +188,9 @@
support Internet freedom.
</p>
</div>
</div>
<div
class=
"m-grid m-marketing__wrapper"
>
<div
class=
"m-grid__column-12 m-grid__column-12--mobile m-marketing__body m-marketing__body--extra"
>
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/nodes/marketing/marketing.component.html
View file @
acc30fa5
...
...
@@ -145,7 +145,9 @@
>
<h2
i18n
>
Other Nodes features
</h2>
</div>
</div>
<div
class=
"m-grid m-marketing__wrapper m-marketingSectionTail__table"
>
<div
class=
"m-grid__column-4 m-grid__column-12--mobile m-marketing__body"
>
...
...
@@ -179,7 +181,9 @@
technology for the world.
</p>
</div>
</div>
<div
class=
"m-grid m-marketing__wrapper"
>
<div
class=
"m-grid__column-12 m-grid__column-12--mobile m-marketing__body m-marketing__body--extra"
>
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/plus/marketing.component.html
View file @
acc30fa5
...
...
@@ -170,7 +170,9 @@
>
<h2
i18n
>
Other Plus features
</h2>
</div>
</div>
<div
class=
"m-grid m-marketing__wrapper m-marketingSectionTail__table"
>
<div
class=
"m-grid__column-6 m-grid__column-12--mobile m-marketing__body"
>
...
...
@@ -192,7 +194,9 @@
support for Internet freedom.
</p>
</div>
</div>
<div
class=
"m-grid m-marketing__wrapper"
>
<div
class=
"m-grid__column-12 m-grid__column-12--mobile m-marketing__body m-marketing__body--extra"
>
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/marketing.component.html
View file @
acc30fa5
...
...
@@ -214,7 +214,9 @@
>
<h2
i18n
>
Other Pro features
</h2>
</div>
</div>
<div
class=
"m-grid m-marketing__wrapper m-marketingSectionTail__table"
>
<div
class=
"m-grid__column-4 m-grid__column-12--mobile m-marketing__body"
>
...
...
@@ -245,7 +247,9 @@
Get free promotion for your website and access millions of minds.
</p>
</div>
</div>
<div
class=
"m-grid m-marketing__wrapper"
>
<div
class=
"m-grid__column-12 m-grid__column-12--mobile m-marketing__body m-marketing__body--extra"
>
...
...
This diff is collapsed.
Click to expand it.