Design changes
This commit is contained in:
parent
c5220bcf20
commit
f3a90e3e11
65
css/main.css
65
css/main.css
@ -55,19 +55,19 @@ img {
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: max(1.8rem, 4vw);
|
||||
font-size: max(2rem, 4vw);
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: max(1.5rem, 3vw);
|
||||
font-size: max(1.8rem, 3vw);
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: max(1.2rem, 2vw);
|
||||
font-size: max(1.5rem, 2vw);
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: max(1rem, 1.3vw);
|
||||
font-size: max(1.2rem, 1.3vw);
|
||||
}
|
||||
|
||||
img {
|
||||
@ -193,6 +193,10 @@ button,
|
||||
gap: 4rem;
|
||||
}
|
||||
|
||||
.gap-5 {
|
||||
gap: 5rem;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
@ -266,21 +270,14 @@ article > * {
|
||||
#above_fold h2 {
|
||||
position: relative;
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
}
|
||||
#above_fold ol {
|
||||
display: block;
|
||||
padding-left: 0;
|
||||
}
|
||||
#above_fold ol li {
|
||||
page-break-inside: avoid;
|
||||
-moz-column-break-inside: avoid;
|
||||
break-inside: avoid;
|
||||
margin-bottom: 5rem;
|
||||
#above_fold__section {
|
||||
justify-content: center;
|
||||
justify-self: center;
|
||||
text-align: center;
|
||||
}
|
||||
#above_fold ol li::after {
|
||||
#above_fold__section::after {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 100%;
|
||||
@ -289,8 +286,44 @@ article > * {
|
||||
margin: auto;
|
||||
margin-top: 5rem;
|
||||
}
|
||||
#above_fold ol p {
|
||||
text-align: justify;
|
||||
#above_fold .milestones {
|
||||
display: grid;
|
||||
justify-content: flex-start;
|
||||
justify-items: flex-start;
|
||||
}
|
||||
#above_fold .milestones--title-only .milestone {
|
||||
grid-template-areas: "label title";
|
||||
}
|
||||
#above_fold .milestones--description-only .milestone {
|
||||
grid-template-areas: "label description";
|
||||
}
|
||||
#above_fold .milestone {
|
||||
display: grid;
|
||||
max-width: 42rem;
|
||||
width: auto;
|
||||
gap: 1rem 2rem;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
padding-right: 0;
|
||||
}
|
||||
#above_fold .milestone:not(:last-child) {
|
||||
padding-bottom: 3rem;
|
||||
}
|
||||
#above_fold .milestone__label {
|
||||
grid-area: label;
|
||||
align-items: flex-start;
|
||||
justify-content: center;
|
||||
background-color: rgba(var(--text-color), 1);
|
||||
color: rgba(var(--foreground-color), 1);
|
||||
}
|
||||
#above_fold .milestone__label::before {
|
||||
width: 0.1rem;
|
||||
height: 100%;
|
||||
background-color: rgba(var(--text-color), 0.5);
|
||||
}
|
||||
#above_fold .milestone__title {
|
||||
grid-area: title;
|
||||
margin-top: -0.1em;
|
||||
}
|
||||
|
||||
#hero_illustration {
|
||||
|
||||
2
css/main.min.css
vendored
2
css/main.min.css
vendored
File diff suppressed because one or more lines are too long
@ -50,16 +50,16 @@ img {
|
||||
object-fit: cover;
|
||||
}
|
||||
h1 {
|
||||
font-size: max(1.8rem, 4vw);
|
||||
font-size: max(2rem, 4vw);
|
||||
}
|
||||
h2 {
|
||||
font-size: max(1.5rem, 3vw);
|
||||
font-size: max(1.8rem, 3vw);
|
||||
}
|
||||
h3 {
|
||||
font-size: max(1.2rem, 2vw);
|
||||
font-size: max(1.5rem, 2vw);
|
||||
}
|
||||
h4 {
|
||||
font-size: max(1rem, 1.3vw);
|
||||
font-size: max(1.2rem, 1.3vw);
|
||||
}
|
||||
img {
|
||||
object-fit: contain;
|
||||
@ -158,6 +158,9 @@ button,
|
||||
.gap-4 {
|
||||
gap: 4rem;
|
||||
}
|
||||
.gap-5 {
|
||||
gap: 5rem;
|
||||
}
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
@ -228,30 +231,63 @@ article {
|
||||
h2 {
|
||||
position: relative;
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
}
|
||||
ol {
|
||||
display: block;
|
||||
padding-left: 0;
|
||||
li {
|
||||
page-break-inside: avoid;
|
||||
break-inside: avoid;
|
||||
margin-bottom: 5rem;
|
||||
// color: rgba(var(--foreground-color), 1);
|
||||
justify-content: center;
|
||||
justify-self: center;
|
||||
text-align: center;
|
||||
&::after {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
background: rgba(var(--text-color), 1);
|
||||
margin: auto;
|
||||
margin-top: 5rem;
|
||||
&__section {
|
||||
justify-content: center;
|
||||
justify-self: center;
|
||||
text-align: center;
|
||||
&::after {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
background: rgba(var(--text-color), 1);
|
||||
margin: auto;
|
||||
margin-top: 5rem;
|
||||
}
|
||||
}
|
||||
.milestones {
|
||||
display: grid;
|
||||
justify-content: flex-start;
|
||||
justify-items: flex-start;
|
||||
&--title-only {
|
||||
.milestone {
|
||||
grid-template-areas: "label title";
|
||||
}
|
||||
}
|
||||
p {
|
||||
text-align: justify;
|
||||
&--description-only {
|
||||
.milestone {
|
||||
grid-template-areas: "label description";
|
||||
}
|
||||
}
|
||||
}
|
||||
.milestone {
|
||||
display: grid;
|
||||
max-width: 42rem;
|
||||
width: auto;
|
||||
gap: 1rem 2rem;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
padding-right: 0;
|
||||
&:not(:last-child) {
|
||||
padding-bottom: 3rem;
|
||||
}
|
||||
&__label {
|
||||
grid-area: label;
|
||||
align-items: flex-start;
|
||||
justify-content: center;
|
||||
background-color: rgba(var(--text-color), 1);
|
||||
color: rgba(var(--foreground-color), 1);
|
||||
&::before {
|
||||
width: 0.1rem;
|
||||
height: 100%;
|
||||
background-color: rgba(var(--text-color), 0.5);
|
||||
}
|
||||
}
|
||||
&__title {
|
||||
grid-area: title;
|
||||
margin-top: -0.1em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
122
index.html
122
index.html
@ -34,54 +34,96 @@
|
||||
</span>
|
||||
</h2>
|
||||
<!-- <img id="hero_illustration" src="assets/svg/cityscape.svg" alt=""> -->
|
||||
<ol class="grid gap-3" type="1">
|
||||
<li class="grid gap-1">
|
||||
<div class="grid" style="gap: 8rem;">
|
||||
<div class="grid gap-2 above_fold__section">
|
||||
<h3>What is Project B</h3>
|
||||
<p>
|
||||
Project B executes tokenization projects based on blockchain technology.
|
||||
</p>
|
||||
</li>
|
||||
<li class="grid gap-1">
|
||||
</div>
|
||||
<div class="grid gap-2 above_fold__section">
|
||||
<h3>
|
||||
What is tokenization
|
||||
</h3>
|
||||
<p>
|
||||
Tokenization in blockchain enables the digital representation, transfer, and management of
|
||||
real-world
|
||||
assets or values, making transactions more efficient and expanding the possibilities for
|
||||
decentralized
|
||||
economic systems.
|
||||
</p>
|
||||
<p>
|
||||
A good tokenization project enables self funding of a new project through investors all over the
|
||||
world.
|
||||
</p>
|
||||
<p>
|
||||
It also converts customers automatically into investors and vice-versa.
|
||||
</p>
|
||||
</li>
|
||||
<li class="grid gap-1">
|
||||
<ul class="milestones milestones--description-only">
|
||||
<li class="milestone">
|
||||
<div class="milestone__label">1</div>
|
||||
<p class="milestone__description">
|
||||
Tokenization in blockchain enables the digital representation, transfer, and
|
||||
management
|
||||
of
|
||||
real-world
|
||||
assets or values, making transactions more efficient and expanding the possibilities
|
||||
for
|
||||
decentralized
|
||||
economic systems.
|
||||
|
||||
</p>
|
||||
</li>
|
||||
<li class="milestone">
|
||||
<div class="milestone__label">2</div>
|
||||
<p class="milestone__description">
|
||||
A good tokenization project enables self funding of a new project through investors
|
||||
all
|
||||
over
|
||||
the
|
||||
world.
|
||||
|
||||
</p>
|
||||
</li>
|
||||
<li class="milestone">
|
||||
<div class="milestone__label">3</div>
|
||||
<p class="milestone__description">
|
||||
It also converts customers automatically into investors and vice-versa.
|
||||
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="grid gap-2 above_fold__section">
|
||||
<h3>Why Project B for tokenization</h3>
|
||||
<p>
|
||||
Project B has evolved a disciplined framework for creation, transfer and management of the
|
||||
tokens
|
||||
such
|
||||
that the valuation of tokens is always backed up by sustainable economics.
|
||||
</p>
|
||||
<p>
|
||||
Project B in collaboration with tools and technologies developed by RanchiMall has made process
|
||||
of
|
||||
tokenization extremely simple and very practical to use.
|
||||
</p>
|
||||
<p>
|
||||
In Project B implementation of tokenization, we start with definite and predictable cash flows
|
||||
at
|
||||
any
|
||||
business process and then create the dynamics in a such way that the tokens can appreciate in a
|
||||
predictable fashion.
|
||||
</p>
|
||||
</li>
|
||||
</ol>
|
||||
<ul class="milestones milestones--description-only">
|
||||
<li class="milestone">
|
||||
<div class="milestone__label">1</div>
|
||||
<p class="milestone__description">
|
||||
Project B has evolved a disciplined framework for creation, transfer and management
|
||||
of
|
||||
the
|
||||
tokens
|
||||
such
|
||||
that the valuation of tokens is always backed up by sustainable economics.
|
||||
|
||||
</p>
|
||||
</li>
|
||||
<li class="milestone">
|
||||
<div class="milestone__label">2</div>
|
||||
<p class="milestone__description">
|
||||
|
||||
Project B in collaboration with tools and technologies developed by RanchiMall has
|
||||
made
|
||||
process
|
||||
of
|
||||
tokenization extremely simple and very practical to use.
|
||||
</p>
|
||||
</li>
|
||||
<li class="milestone">
|
||||
<div class="milestone__label">3</div>
|
||||
<p class="milestone__description">
|
||||
In Project B implementation of tokenization, we start with definite and predictable
|
||||
cash
|
||||
flows
|
||||
at
|
||||
any
|
||||
business process and then create the dynamics in a such way that the tokens can
|
||||
appreciate
|
||||
in a
|
||||
predictable fashion.
|
||||
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section id="services_section">
|
||||
<h2 class="reveal">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user