we develop section
This commit is contained in:
parent
967b01979a
commit
56e9e26162
3
sesame-vitejs/sesame/img/arrow.svg
Normal file
3
sesame-vitejs/sesame/img/arrow.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="24" height="20" viewBox="0 0 24 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 0L12.57 1.393L20.15 9H0V11H20.15L12.57 18.573L14 20L24 10L14 0Z" fill="#1E33DA"/>
|
||||
</svg>
|
After Width: | Height: | Size: 198 B |
BIN
sesame-vitejs/sesame/img/phone_shoe.png
Normal file
BIN
sesame-vitejs/sesame/img/phone_shoe.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 340 KiB |
@ -14,7 +14,7 @@ main {
|
||||
height: 100vh;
|
||||
min-height: 100vh;
|
||||
width: 100vw;
|
||||
position: absolute;
|
||||
//position: absolute;
|
||||
|
||||
h2 {
|
||||
color: #fffdfc;
|
||||
@ -41,7 +41,7 @@ main {
|
||||
|
||||
}
|
||||
#sprint_4 {
|
||||
background: #ccc;
|
||||
background: #333;
|
||||
}
|
||||
|
||||
.primary-color{
|
||||
|
@ -1,9 +1,16 @@
|
||||
#we_develop {
|
||||
background: blue;
|
||||
min-height: 2000px;
|
||||
min-width: 2000px;
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
display: block;
|
||||
position: relative;
|
||||
background: url("img/line.png") fixed center no-repeat;
|
||||
background-color: #fff;
|
||||
|
||||
text-align: center;
|
||||
|
||||
.title {
|
||||
padding-top: 4rem;
|
||||
padding-bottom: 2rem;
|
||||
font-family: 'GT Walsheim Pro';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
@ -11,14 +18,15 @@
|
||||
line-height: 110%;
|
||||
text-align: center;
|
||||
letter-spacing: -0.04em;
|
||||
|
||||
max-width: 54rem;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.description {
|
||||
|
||||
}
|
||||
|
||||
.asides {
|
||||
.quick, .long_term {
|
||||
font-family: 'GT Walsheim';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
@ -26,19 +34,105 @@
|
||||
line-height: 150%;
|
||||
}
|
||||
|
||||
.quick {
|
||||
|
||||
position: absolute;
|
||||
left: 104px;
|
||||
top: 690px;
|
||||
}
|
||||
|
||||
.long_term {
|
||||
font-family: 'GT Walsheim';
|
||||
font-weight: 700;
|
||||
font-size: 24px;
|
||||
line-height: 150%;
|
||||
text-align: right;
|
||||
margin-right: 6rem;
|
||||
margin-top: -40rem;
|
||||
}
|
||||
|
||||
.light-text {
|
||||
margin-top: -20rem;
|
||||
|
||||
font-family: 'GT Walsheim Pro';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-size: 40px;
|
||||
line-height: 100%;
|
||||
|
||||
text-align: center;
|
||||
letter-spacing: -0.04em;
|
||||
|
||||
color: #B62F22;
|
||||
|
||||
opacity: 0.2;
|
||||
filter: blur(2px);
|
||||
}
|
||||
|
||||
.phone-container-2 {
|
||||
margin: 0 auto;
|
||||
background: blue;
|
||||
min-height: 700px;
|
||||
padding: 70px 0;
|
||||
width: 450px;
|
||||
background: rgba(99, 49, 27, 0.2);
|
||||
backdrop-filter: blur(5px);
|
||||
border-radius: 70px;
|
||||
z-index: 20;
|
||||
}
|
||||
|
||||
.picture {
|
||||
margin-left: 5px;
|
||||
height: 820px;
|
||||
width: 438px;
|
||||
background: url("img/phone_shoe.png");
|
||||
background-size: contain;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
.line {
|
||||
background: url("img/line.png");
|
||||
position: absolute;
|
||||
width: 100vw;
|
||||
height: 50vh;
|
||||
left: 0;
|
||||
top: 15rem;
|
||||
z-index: -1;
|
||||
float: left;
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
.container-arrows {
|
||||
margin: 0 auto;
|
||||
width: 30rem;
|
||||
|
||||
img {
|
||||
margin-top: 1.25rem;
|
||||
}
|
||||
}
|
||||
|
||||
.circle {
|
||||
border: solid 2px $secondary-color;
|
||||
border-radius: 100%;
|
||||
height: 4rem;
|
||||
width: 4rem;
|
||||
position: absolute;
|
||||
top: 50vh;
|
||||
left: 28vw;
|
||||
}
|
||||
|
||||
.circle-right {
|
||||
left: auto;
|
||||
right: 28vw;
|
||||
}
|
||||
|
||||
.arrow-right-2 {
|
||||
position: absolute;
|
||||
left: auto;
|
||||
right: 28vw;
|
||||
}
|
||||
|
||||
.rotated {
|
||||
transform: rotate(180deg);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -10,7 +10,7 @@ libs
|
||||
custom
|
||||
*/
|
||||
@import "./0-variables.scss";
|
||||
@import "0-general";
|
||||
@import "0-general.scss";
|
||||
@import "./0-1-nav.css";
|
||||
@import "./1-cover.css";
|
||||
@import "./1-2-main_title.css";
|
||||
|
@ -4,29 +4,49 @@
|
||||
<main class="has-text-centered">
|
||||
<!-- sprint 4 content-->
|
||||
<div id="sprint_4">
|
||||
<h1>hello</h1>
|
||||
<section id="we_develop">
|
||||
<h2 class="title secondary-color">
|
||||
We develop custom-made innovative e-commerce features based on your
|
||||
brand stakes.
|
||||
</h2>
|
||||
<div class="phone-container">
|
||||
<div class="phone-container-2">
|
||||
<div class="top" />
|
||||
<div class="picture" />
|
||||
<div class="bottom" />
|
||||
</div>
|
||||
<div class="arrow-left" />
|
||||
<div class="arrow-right" />
|
||||
<div class="data">
|
||||
<div class="container-arrows">
|
||||
<div class="circle">
|
||||
<img
|
||||
class="rotated"
|
||||
src="img/arrow.svg"
|
||||
alt=""
|
||||
>
|
||||
</div>
|
||||
<div class="circle circle-right">
|
||||
<img
|
||||
|
||||
src="img/arrow.svg"
|
||||
alt=""
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="columns light-text">
|
||||
<div class="column data">
|
||||
Data
|
||||
</div>
|
||||
<div class="data">
|
||||
<div class="column ar">
|
||||
AR
|
||||
</div>
|
||||
<div class="quick">
|
||||
</div>
|
||||
<div class="quick secondary-color">
|
||||
Quick wins
|
||||
</div>
|
||||
<div class="long_term">
|
||||
Long-Term Project
|
||||
<div class="long_term secondary-color">
|
||||
Long-Term
|
||||
<br>
|
||||
Project
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user