add prettier and eslint

This commit is contained in:
Tykayn 2023-05-24 17:33:23 +02:00 committed by tykayn
parent 9d8a8c9b2f
commit eab080d599
29 changed files with 12328 additions and 11102 deletions

4
.idea/watcherTasks.xml Normal file
View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectTasksOptions" suppressed-tasks="SCSS" />
</project>

View File

@ -0,0 +1,20 @@
{
"root": true,
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"plugin:vue/vue3-recommended",
"eslint:recommended",
"@vue/typescript/recommended"
],
"parserOptions": {
"ecmaVersion": 2021
},
"plugins": [
],
"rules": {
}
}

View File

@ -0,0 +1 @@
{}

View File

@ -1,3 +1,3 @@
{
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
}

View File

@ -1,13 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue + TS</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue + TS</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -1,26 +1,35 @@
{
"name": "sesame",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.2.47"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.1.0",
"rollup-plugin-scss": "^3.0.0",
"sass": "^1.62.0",
"typescript": "^5.0.2",
"vite": "^4.3.0",
"vite-aliases": "^0.11.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^4.3.0",
"vue-tsc": "^1.2.0"
}
"name": "sesame",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vue-tsc && vite build",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.2.47"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-vue": "^9.14.0",
"prettier": "2.8.8",
"rollup-plugin-scss": "^3.0.0",
"sass": "^1.62.0",
"typescript": "^5.0.2",
"vite": "^4.3.0",
"vite-aliases": "^0.11.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^4.3.0",
"vue-tsc": "^1.2.0"
}
}

View File

@ -1,17 +1,15 @@
<script setup lang="ts">
import CoverSection from './components/CoverSection.vue'
import CoverSection from "./components/CoverSection.vue";
</script>
<template>
<main>
<CoverSection msg="hohooo" />
<CoverSection msg="hohooo" />
</main>
</template>
<style lang="scss">
/******** all sections *********/
/*@import 'styles/main.scss';*/
/******** all sections *********/
/*@import 'styles/main.scss';*/
</style>

View File

@ -1,44 +1,43 @@
main nav {
color: #fffdfc;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 130%;
padding: 24px;
position: fixed;
text-align: center;
top: 0;
width: 100%;
color: #fffdfc;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 130%;
padding: 24px;
position: fixed;
text-align: center;
top: 0;
width: 100%;
}
.burger-menu {
float: left;
width: 150px;
float: left;
width: 150px;
}
.icon-burger {
cursor: pointer;
float: left;
height: 1em;
margin-top: 0.3rem;
width: 40px;
cursor: pointer;
float: left;
height: 1em;
margin-top: 0.3rem;
width: 40px;
}
.icon-burger .line {
border-top: 2px solid #fff;
display: block;
margin-bottom: 6px;
border-top: 2px solid #fff;
display: block;
margin-bottom: 6px;
}
.nav-main {
color: #fffdfc;
height: 54px;
text-align: center;
top: 54px;
width: 100%;
color: #fffdfc;
height: 54px;
text-align: center;
top: 54px;
width: 100%;
}
.fixed-nav {
z-index: 30;
z-index: 30;
}

View File

@ -1,35 +1,35 @@
/******** all sections *********/
body {
background: #020225;
padding-bottom: 50vh;
background: #020225;
padding-bottom: 50vh;
overflow-x: hidden;
}
main section {
font-family: "GT Walsheim Pro", Arial;
height: 1300px;
min-height: 1300px;
width: 100vw;
font-family: "GT Walsheim Pro", Arial;
height: 1300px;
min-height: 1300px;
width: 100vw;
}
main section h2 {
color: #fffdfc;
font-family: "GT Walsheim Pro", Arial;
font-size: 60px;
font-style: normal;
font-weight: 600;
color: #fffdfc;
font-family: "GT Walsheim Pro", Arial;
font-size: 60px;
font-style: normal;
font-weight: 600;
/* or 66px */
letter-spacing: -0.04em;
/* or 66px */
letter-spacing: -0.04em;
/* Secondary 100 */
line-height: 110%;
/* Secondary 100 */
line-height: 110%;
}
img {
max-width: 100vw;
max-width: 100vw;
}
.credits {
margin-top: 10vh;
margin-top: 10vh;
}

View File

@ -6,25 +6,23 @@
/******** section 1 *********/
#main_title_container {
text-align: center;
width: 100vw;
text-align: center;
width: 100vw;
}
#main_title {
background: url("/img/sesame.png") no-repeat;
background-size: contain;
box-sizing: border-box;
background: url("/img/sesame.png") no-repeat;
background-size: contain;
box-sizing: border-box;
height: 35vh;
margin: 0 auto;
max-width: 1200px;
position: relative;
top: 4rem;
width: 95vw;
height: 35vh;
margin: 0 auto;
max-width: 1200px;
position: relative;
top: 4rem;
width: 95vw;
}
#main_title_container h2 {
margin-top: 5vh;
margin-top: 5vh;
}

View File

@ -1,63 +1,62 @@
#hand {
background: url("/img/hand 1.png") center;
background-size: cover;
height: 1300px;
left: 1px;
position: relative;
top: -2px;
width: 100vw;
z-index: 0
background: url("/img/hand 1.png") center;
background-size: cover;
height: 1300px;
left: 1px;
position: relative;
top: -2px;
width: 100vw;
z-index: 0;
}
#main_title_container {
backdrop-filter: blur(3px);
position: absolute;
top: 0;
z-index: 2;
backdrop-filter: blur(3px);
position: absolute;
top: 0;
z-index: 2;
}
#cover {
background: url("/img/BG 1.png") center no-repeat;
background-size: cover;
background: url("/img/BG 1.png") center no-repeat;
background-size: cover;
}
#cover
.title-container {
text-align: center;
#cover .title-container {
text-align: center;
}
#cover h2 {
color: #fffdfc;
font-size: 40px;
font-style: normal;
font-weight: 600;
letter-spacing: -0.04em;
line-height: 120%;
color: #fffdfc;
font-size: 40px;
font-style: normal;
font-weight: 600;
letter-spacing: -0.04em;
line-height: 120%;
position: relative;
text-align: center;
z-index: 2;
position: relative;
text-align: center;
z-index: 2;
}
#cover .button {
backdrop-filter: blur(3px);
background: linear-gradient(329.49deg,
rgba(255, 216, 244, 0) 34.06%,
rgba(255, 207, 242, 0.2) 77.26%);
border-radius: 100%;
bottom: 0;
box-sizing: border-box;
color: white;
font-size: 18px;
font-style: normal;
font-weight: 400;
height: 150px;
line-height: 26px;
padding: 1rem;
position: relative;
right: 0;
top: 16vh;
width: 150px;
backdrop-filter: blur(3px);
background: linear-gradient(
329.49deg,
rgba(255, 216, 244, 0) 34.06%,
rgba(255, 207, 242, 0.2) 77.26%
);
border-radius: 100%;
bottom: 0;
box-sizing: border-box;
color: white;
font-size: 18px;
font-style: normal;
font-weight: 400;
height: 150px;
line-height: 26px;
padding: 1rem;
position: relative;
right: 0;
top: 16vh;
width: 150px;
}

View File

@ -0,0 +1,38 @@
#transactionnal_webdesign {
padding-top: 363px;
background: url('');
font-family: "GT Walsheim Pro";
color: #00001f;
.title {
width: 1680px;
height: 109px;
font-style: normal;
font-weight: 600;
font-size: 40px;
line-height: 95%;
text-align: center;
letter-spacing: 0.2em;
text-transform: uppercase;
color: #fffdfc;
backdrop-filter: blur(5px);
flex: none;
order: 0;
flex-grow: 0;
}
.description {
color: rgba(231, 112, 100, 0.8);
font-weight: 600;
font-size: 270px;
line-height: 65%;
backdrop-filter: blur(5px);
}
.color-emphasis {
color: #1e33da;
}
}

View File

@ -1,4 +1,4 @@
#coming_soon{
#coming_soon {
background: #2b74b1;
z-index: 10;
color: white;

View File

@ -1,74 +1,71 @@
#welcome {
background: #000;
position: absolute;
text-shadow: 0 0 1rem #333;
background: #000;
position: absolute;
text-shadow: 0 0 1rem #333;
}
#welcome img {
position: absolute;
position: absolute;
}
#welcome h2 {
color: #f9f3f1;
font-size: 8em;
font-weight: 600;
letter-spacing: -0.04em;
line-height: 90px;
margin-top: 400px;
position: relative;
text-align: center;
width: 80vw;
color: #f9f3f1;
font-size: 8em;
font-weight: 600;
letter-spacing: -0.04em;
line-height: 90px;
margin-top: 400px;
position: relative;
text-align: center;
width: 80vw;
z-index: 2;
z-index: 2;
}
#welcome .color-emphasis {
color: #1e33da;
color: #1e33da;
}
#welcome .phone-container {
background: url("/img/section2_phone.png");
background-size: cover;
background: url("/img/section2_phone.png");
background-size: cover;
}
/************ phones ************/
.phones-land {
float: left;
position: static;
z-index: -1;
float: left;
position: static;
z-index: -1;
}
#phone-watches-1 {
height: 690px;
left: -137px;
position: absolute;
top: 1531px;
width: 345px;
height: 690px;
left: -137px;
position: absolute;
top: 1531px;
width: 345px;
}
#phone-watches-2 {
filter: blur(2px);
height: 176px;
left: -200px;
top: 470px;
width: 88px;
filter: blur(2px);
height: 176px;
left: -200px;
top: 470px;
width: 88px;
}
#phone-watches-3 {
filter: blur(4px);
height: 342px;
left: 916px;
top: 475px;
width: 171px;
filter: blur(4px);
height: 342px;
left: 916px;
top: 475px;
width: 171px;
}
#phone-watches-4 {
filter: blur(6px);
height: 550px;
left: 1222px;
top: 523px;
width: 275px;
filter: blur(6px);
height: 550px;
left: 1222px;
top: 523px;
width: 275px;
}

View File

@ -1,29 +1,28 @@
#open {
box-sizing: border-box;
color: rgba(248, 243, 241, 0.1);
font-size: 200px;
font-style: normal;
font-weight: 600;
height: 50vh;
letter-spacing: -0.04em;
line-height: 90%;
padding-top: 310px;
position: relative;
text-align: center;
top: 88vh;
box-sizing: border-box;
color: rgba(248, 243, 241, 0.1);
font-size: 200px;
font-style: normal;
font-weight: 600;
height: 50vh;
letter-spacing: -0.04em;
line-height: 90%;
padding-top: 310px;
position: relative;
text-align: center;
top: 88vh;
}
#open .text {
color: #fff;
margin-bottom: 400px;
color: #fff;
margin-bottom: 400px;
}
#open img {
max-width: 90vw;
max-width: 90vw;
}
#open-handle {
float: left;
height: 20vh;
float: left;
height: 20vh;
}

View File

@ -1,52 +1,51 @@
#content {
height: 60vh;
min-height: 200px;
height: 60vh;
min-height: 200px;
}
#content h2 {
margin-top: 33vh;
margin-top: 33vh;
}
#content_all {
color: #fffdfc;
padding-top: 100px;
position: relative;
top: 0;
width: 120%;
color: #fffdfc;
padding-top: 100px;
position: relative;
top: 0;
width: 120%;
}
#content_all_img {
background: url("/img/bg_content.png");
background-size: cover;
/*width: 100vw;*/
height: 150vh;
left: 0;
margin-top: -50vh;
position: relative;
background: url("/img/bg_content.png");
background-size: cover;
/*width: 100vw;*/
height: 150vh;
left: 0;
margin-top: -50vh;
position: relative;
}
#content_all .columns {
font-size: 100px;
margin: 0 auto;
max-width: 80vw;
position: relative;
top: -133vh;
font-size: 100px;
margin: 0 auto;
max-width: 80vw;
position: relative;
top: -133vh;
}
#content_all .text {
font-size: 18px;
font-weight: 400;
line-height: 26px;
padding-right: 80px;
padding-top: 1vh;
text-align: left;
font-size: 18px;
font-weight: 400;
line-height: 26px;
padding-right: 80px;
padding-top: 1vh;
text-align: left;
}
#content_all h2 {
font-size: 100px !important;
letter-spacing: -0.04em;
line-height: 90px;
font-size: 100px !important;
letter-spacing: -0.04em;
line-height: 90px;
text-shadow: 0 0 1rem #333;
}
#content_all .text,
@ -55,33 +54,32 @@
}
#content_all .columns > .column:nth-of-type(1) {
font-size: 1em;
letter-spacing: -0.04em;
line-height: 90px;
font-size: 1em;
letter-spacing: -0.04em;
line-height: 90px;
}
#content_all .color-emphasis {
color: #1e33da;
color: #1e33da;
}
#content_first {
backdrop-filter: blur(5px);
color: #e77064;
flex: none;
flex-grow: 0;
font-size: 40px;
font-style: normal;
font-weight: 600;
height: 35px;
letter-spacing: 0.2em;
line-height: 95%;
margin-bottom: 40px;
margin-top: 20vh;
opacity: 0.4;
order: 0;
text-align: center;
text-transform: uppercase;
backdrop-filter: blur(5px);
color: #e77064;
flex: none;
flex-grow: 0;
font-size: 40px;
font-style: normal;
font-weight: 600;
height: 35px;
letter-spacing: 0.2em;
line-height: 95%;
margin-bottom: 40px;
margin-top: 20vh;
opacity: 0.4;
order: 0;
text-align: center;
text-transform: uppercase;
width: 50%;
left: 5vw;
font-size: 3rem;
@ -92,136 +90,136 @@
#content_second {
width: 50%;
right: -20vw;
backdrop-filter: blur(5px);
color: rgba(255, 255, 255, 0.35);
flex: none;
flex-grow: 0;
font-family: "GT Walsheim Pro";
font-size: 230px;
font-style: normal;
font-weight: 700;
height: 170px;
line-height: 65px;
margin-bottom: 100px;
opacity: 0.25;
order: 1;
text-align: center;
backdrop-filter: blur(5px);
color: rgba(255, 255, 255, 0.35);
flex: none;
flex-grow: 0;
font-family: "GT Walsheim Pro";
font-size: 230px;
font-style: normal;
font-weight: 700;
height: 170px;
line-height: 65px;
margin-bottom: 100px;
opacity: 0.25;
order: 1;
text-align: center;
max-width: 100vw;
width: 100%;
}
.flip-handle {
background: transparent;
height: 10vh;
position: relative;
top: -25vh;
width: 2vw;
background: transparent;
height: 10vh;
position: relative;
top: -25vh;
width: 2vw;
}
.flip-container {
color: #fffdfc;
padding-top: 15vh;
transform-origin: right;
color: #fffdfc;
padding-top: 15vh;
transform-origin: right;
}
.flip-container.flip-from-left {
transform-origin: left;
transform-origin: left;
}
.flip-container + .flip-container {
height: 90vh;
margin-top: -15vh;
min-height: 91vh;
padding-top: 0;
height: 90vh;
margin-top: -15vh;
min-height: 91vh;
padding-top: 0;
}
.flip-container .container-text {
left: 30vw;
position: relative;
text-align: left;
width: 50%;
left: 30vw;
position: relative;
text-align: left;
width: 50%;
}
.flip-container.flip-from-left .container-text {
left: 613px;
width: 320px;
left: 613px;
width: 320px;
}
.flip-container .color-emphasis {
color: #1e33da;
margin: 0 auto;
max-width: 760px;
color: #1e33da;
margin: 0 auto;
max-width: 760px;
}
.flip-container .text-title {
font-size: 60px;
font-weight: 600;
letter-spacing: -0.04em;
line-height: 110%;
margin-bottom: 20px;
margin-top: 158px;
font-size: 60px;
font-weight: 600;
letter-spacing: -0.04em;
line-height: 110%;
margin-bottom: 20px;
margin-top: 158px;
}
.flip-container .text-description {
font-size: 18px;
font-weight: 400;
line-height: 26px;
margin-bottom: 20px;
width: 380px;
font-size: 18px;
font-weight: 400;
line-height: 26px;
margin-bottom: 20px;
width: 380px;
}
.flip-container .phone-container {
background: rgba(225, 196, 183, 0.2);
border-color: rgba(255, 255, 255, 0.4);
border-radius: 70px;
border-width: 2px;
box-sizing: border-box;
height: 700px;
left: 66vw;
position: relative;
top: -540px;
width: 342px;
background: rgba(225, 196, 183, 0.2);
border-color: rgba(255, 255, 255, 0.4);
border-radius: 70px;
border-width: 2px;
box-sizing: border-box;
height: 700px;
left: 66vw;
position: relative;
top: -540px;
width: 342px;
}
.flip-container.flip-from-left .phone-container {
left: 183px;
top: -540px;
left: 183px;
top: -540px;
}
.flip-container .phone-container img {
height: auto;
margin-top: 70px;
width: 318px;
height: auto;
margin-top: 70px;
width: 318px;
}
.flip-container .call-to-action {
align-items: center;
background: transparent;
border: 2px solid #743ad5;
border-radius: 70px;
box-sizing: border-box;
color: #fff;
cursor: pointer;
display: flex;
flex: none;
flex-direction: row;
flex-grow: 0;
gap: 10px;
height: 56px;
justify-content: center;
order: 2;
padding: 12px 36px;
width: 198px;
/*border-image-slice: 1;*/
/*border-width: 5px;*/
/*border-image-source: linear-gradient(to left, #743ad5, #d53a9d);*/
align-items: center;
background: transparent;
border: 2px solid #743ad5;
border-radius: 70px;
box-sizing: border-box;
color: #fff;
cursor: pointer;
display: flex;
flex: none;
flex-direction: row;
flex-grow: 0;
gap: 10px;
height: 56px;
justify-content: center;
order: 2;
padding: 12px 36px;
width: 198px;
/*border-image-slice: 1;*/
/*border-width: 5px;*/
/*border-image-source: linear-gradient(to left, #743ad5, #d53a9d);*/
}
#content-2 {
margin-top: 50vh;
margin-top: 50vh;
}
#flipping_zone {
margin-top: -180vh;
position: relative;
margin-top: -180vh;
position: relative;
}

View File

@ -1,119 +1,124 @@
/******** phone base *********/
#popover {
background: url("/img/bg_pink.png") no-repeat;
background-position: center;
background-size: cover;
background: url("/img/bg_pink.png") no-repeat;
background-position: center;
background-size: cover;
}
#popover .dark-emphasis {
color: #3b3b49;
font-family: "GT Walsheim Pro";
font-size: 60px;
font-style: normal;
font-weight: 600;
letter-spacing: -0.04em;
/* identical to box height, or 66px */
line-height: 110%;
color: #3b3b49;
font-family: "GT Walsheim Pro";
font-size: 60px;
font-style: normal;
font-weight: 600;
letter-spacing: -0.04em;
/* identical to box height, or 66px */
line-height: 110%;
}
.text-grey {
font-size: 18px;
font-weight: 400;
line-height: 26px;
font-size: 18px;
font-weight: 400;
line-height: 26px;
}
.slider-screen .text {
left: 55vw;
position: relative;
text-align: left;
top: -30%;
width: 400px;
left: 55vw;
position: relative;
text-align: left;
top: -30%;
width: 400px;
}
.slider-screen .text-title {
margin-bottom: 2rem;
margin-bottom: 2rem;
}
.phone-container {
border-radius: 1rem;
width: 411px;
border-radius: 1rem;
width: 411px;
}
.phone-container .top {
background: url("/img/phone_rectangle_top.jpg") no-repeat center;
border-top-left-radius: 1rem;
background: url("/img/phone_rectangle_top.jpg") no-repeat center;
border-top-left-radius: 1rem;
border-top-right-radius: 1rem;
height: 60px;
border-top-right-radius: 1rem;
height: 60px;
}
.phone-container .bottom {
background: url("/img/phone_rectangle_bottom.jpg") no-repeat center;
border-bottom-left-radius: 2rem;
border-bottom-right-radius: 2rem;
height: 62px;
position: relative;
top: 676.5px;
background: url("/img/phone_rectangle_bottom.jpg") no-repeat center;
border-bottom-left-radius: 2rem;
border-bottom-right-radius: 2rem;
height: 62px;
position: relative;
top: 676.5px;
}
.phone-container.transparent {
background: rgba(248, 243, 241, 0.1);
border-radius: 70px;
height: 700px;
width: 350px;
background: rgba(248, 243, 241, 0.1);
border-radius: 70px;
height: 700px;
width: 350px;
}
.slider-screen .phone-container {
background: url("/img/phone_cream.png") no-repeat;
background-position: center;
background-size: cover;
height: 776px;
left: 20vw;
position: relative;
top: 20vh;
width: 411px;
background: url("/img/phone_cream.png") no-repeat;
background-position: center;
background-size: cover;
height: 776px;
left: 20vw;
position: relative;
top: 20vh;
width: 411px;
}
.close-button {
float: right;
position: relative;
right: 40px;
top: 56px;
float: right;
position: relative;
right: 40px;
top: 56px;
}
.arrow-left, .arrow-right {
backdrop-filter: blur(5px);
background: linear-gradient(310.41deg, rgba(255, 255, 255, 0.3) 10.9%, rgba(255, 255, 255, 0) 81.35%);
border: solid 2px #1e33da;
border-radius: 70px;
.arrow-left,
.arrow-right {
backdrop-filter: blur(5px);
background: linear-gradient(
310.41deg,
rgba(255, 255, 255, 0.3) 10.9%,
rgba(255, 255, 255, 0) 81.35%
);
border: solid 2px #1e33da;
border-radius: 70px;
/* Note: backdrop-filter has minimal browser support */
cursor: pointer;
padding: 1.5rem;
transform: matrix(-1, 0, 0, 1, 0, 0);
/* Note: backdrop-filter has minimal browser support */
cursor: pointer;
padding: 1.5rem;
transform: matrix(-1, 0, 0, 1, 0, 0);
}
.arrow-right {
float: right;
position: relative;
top: 50vh;
transform: rotate(0deg);
float: right;
position: relative;
top: 50vh;
transform: rotate(0deg);
}
.arrow-left {
float: left;
left: 40px;
position: relative;
top: 50vh;
float: left;
left: 40px;
position: relative;
top: 50vh;
}
.bullets {
left: 0;
position: relative;
top: 30vh;
left: 0;
position: relative;
top: 30vh;
}
.bullets img {
cursor: pointer;
cursor: pointer;
}

View File

@ -1,19 +1,18 @@
#portfolio {
background: url("/img/bg_grey.jpg") no-repeat;
background-position: center;
background-size: cover;
color: white;
background: url("/img/bg_grey.jpg") no-repeat;
background-position: center;
background-size: cover;
color: white;
}
#popover .color-emphasis,
#portfolio .color-emphasis {
color: #e77064;
font-weight: 600;
margin-bottom: 20px;
color: #e77064;
font-weight: 600;
margin-bottom: 20px;
}
#portfolio .phone-container {
background: url("/img/phone_shoes.png");
height: 776px;
background: url("/img/phone_shoes.png");
height: 776px;
}

View File

@ -7,7 +7,6 @@
top: 15rem;
}
#cover .button {
top: 7vh;
}
@ -19,12 +18,12 @@
text-align: left;
}
#content_all .columns{
#content_all .columns {
top: -145vh;
width: 55vw;
}
.columns{
display:block !important;
.columns {
display: block !important;
}
.column {
width: 100% !important;
@ -40,52 +39,49 @@
margin-top: -120vh;
position: static;
}
.flip-container{
.flip-container {
position: relative;
}
.flip-container + .flip-container{
.flip-container + .flip-container {
margin-top: -5vh;
}
.flip-container .container-text{
.flip-container .container-text {
z-index: 1;
left:33vw;
left: 33vw;
}
.flip-container .text-title{
margin-top:0;
.flip-container .text-title {
margin-top: 0;
}
.flip-container .phone-container{
.flip-container .phone-container {
left: 42vw;
top: 5vh;
}
.flip-container.flip-from-left .container-text{
.flip-container.flip-from-left .container-text {
left: 33vw;
top: 5vh;
}
.flip-container.flip-from-left .phone-container{
.flip-container.flip-from-left .phone-container {
left: 25vw;
top: 10vh;
}
#content-4{
#content-4 {
margin-top: 25vh;
}
#content-5
{
#content-5 {
margin-top: 15vh;
}
#popover{
#popover {
margin-top: 100vh;
}
/**
exemples sliders
*/
.slider-screen .text-title{
margin-top:1em;
.slider-screen .text-title {
margin-top: 1em;
}
.slider-screen .text,
.slider-screen .phone-container {
@ -94,57 +90,55 @@
left: 25vw;
top: 5vh;
}
.bullets{
.bullets {
top: 28em;
}
.arrow-left,
.arrow-right{
.arrow-right {
top: 60vh;
}
.slider-screen{
min-height:100vh;
.slider-screen {
min-height: 100vh;
}
}
@media screen and (max-width: 35em) {
#main_title{
#main_title {
margin-top: 5vh;
}
}
#main_title_container h2 {
margin-top: 15vh;
}
#content_all h2, #welcome h2 {
#content_all h2,
#welcome h2 {
font-size: 4rem !important;
}
#content_all .text{
padding-right:0;
}
.container-text-md{
#content_all .text {
padding-right: 0;
}
.container-text-md {
width: auto;
}
#content_all .columns{
width:100%;
#content_all .columns {
width: 100%;
margin: 1rem;
}
.flip-container .container-text{
width:100%;
left:5vw;
}
.flip-container .phone-container {
position: static;
margin: 4rem auto;
}
.flip-container.flip-from-left .container-text{
.flip-container .container-text {
width: 100%;
left: 5vw;
}
.flip-container .phone-container {
position: static;
margin: 4rem auto;
}
.flip-container.flip-from-left .container-text {
left: 5vw;
}
.flip-container .phone-container {
margin-top: 7rem;
}
.flip-container .text-description{
.flip-container .text-description {
max-width: 90vw;
}
@ -155,9 +149,9 @@
margin-top: 45vh;
}
.slider-screen .text, .slider-screen .phone-container{
.slider-screen .text,
.slider-screen .phone-container {
left: 5vw;
max-width: 90vw;
}
}

View File

@ -12,29 +12,28 @@
========================================================================== */
html {
background: #020225;
color: #f9f3f1;
background: #020225;
color: #f9f3f1;
font-family: "GT Walsheim Pro";
font-family: "GT Walsheim Pro";
/* or 90% */
font-size: 1em;
letter-spacing: -0.04em;
/* or 90% */
font-size: 1em;
letter-spacing: -0.04em;
/* Secondary 100 */
line-height: 1.4;
text-align: center;
/* Secondary 100 */
line-height: 1.4;
text-align: center;
}
::-moz-selection {
background: #2323ff;
text-shadow: none;
background: #2323ff;
text-shadow: none;
}
::selection {
background: #2323ff;
text-shadow: none;
background: #2323ff;
text-shadow: none;
}
/*
@ -42,12 +41,12 @@ html {
*/
hr {
border: 0;
border-top: 1px solid #ccc;
display: block;
height: 1px;
margin: 1em 0;
padding: 0;
border: 0;
border-top: 1px solid #ccc;
display: block;
height: 1px;
margin: 1em 0;
padding: 0;
}
/*
@ -62,7 +61,7 @@ iframe,
img,
svg,
video {
vertical-align: middle;
vertical-align: middle;
}
/*
@ -70,9 +69,9 @@ video {
*/
fieldset {
border: 0;
margin: 0;
padding: 0;
border: 0;
margin: 0;
padding: 0;
}
/*
@ -80,7 +79,7 @@ fieldset {
*/
textarea {
resize: vertical;
resize: vertical;
}
/* ==========================================================================
@ -97,7 +96,7 @@ textarea {
.hidden,
[hidden] {
display: none !important;
display: none !important;
}
/*
@ -110,16 +109,16 @@ textarea {
*/
.sr-only {
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
white-space: nowrap;
width: 1px;
/* 1 */
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
white-space: nowrap;
width: 1px;
/* 1 */
}
/*
@ -130,13 +129,13 @@ textarea {
.sr-only.focusable:active,
.sr-only.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
white-space: inherit;
width: auto;
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
white-space: inherit;
width: auto;
}
/*
@ -144,7 +143,7 @@ textarea {
*/
.invisible {
visibility: hidden;
visibility: hidden;
}
/*
@ -161,12 +160,12 @@ textarea {
.clearfix::before,
.clearfix::after {
content: " ";
display: table;
content: " ";
display: table;
}
.clearfix::after {
clear: both;
clear: both;
}
/* ==========================================================================
@ -176,14 +175,14 @@ textarea {
========================================================================== */
@media only screen and (min-width: 35em) {
/* Style adjustments for viewports that meet the condition */
/* Style adjustments for viewports that meet the condition */
}
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */
}
/* ==========================================================================
@ -193,94 +192,94 @@ textarea {
========================================================================== */
@media print {
*,
*::before,
*::after {
background: #fff !important;
box-shadow: none !important;
/* Black prints faster */
color: #000 !important;
text-shadow: none !important;
}
*,
*::before,
*::after {
background: #fff !important;
box-shadow: none !important;
/* Black prints faster */
color: #000 !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a,
a:visited {
text-decoration: underline;
}
a[href]::after {
content: " (" attr(href) ")";
}
a[href]::after {
content: " (" attr(href) ")";
}
abbr[title]::after {
content: " (" attr(title) ")";
}
abbr[title]::after {
content: " (" attr(title) ")";
}
/*
/*
* Don't show links that are fragment identifiers,
* or use the `javascript:` pseudo protocol
*/
a[href^="#"]::after,
a[href^="javascript:"]::after {
content: "";
}
a[href^="#"]::after,
a[href^="javascript:"]::after {
content: "";
}
pre {
white-space: pre-wrap !important;
}
pre {
white-space: pre-wrap !important;
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
/*
/*
* Printing Tables:
* https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
*/
thead {
display: table-header-group;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
tr,
img {
page-break-inside: avoid;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
h2,
h3 {
page-break-after: avoid;
}
}
body {
font-family: "GT Walsheim Pro", Arial;
font-style: normal;
left: 0;
position: relative;
top: 0;
font-family: "GT Walsheim Pro", Arial;
font-style: normal;
left: 0;
position: relative;
top: 0;
}
.margin-auto {
margin: 0 auto;
margin: 0 auto;
}
.container-text {
max-width: 360px;
max-width: 360px;
}
.container-text-md {
max-width: 500px;
max-width: 500px;
}
.container-text-lg {
max-width: 1062px;
max-width: 1062px;
}

File diff suppressed because it is too large Load Diff

View File

@ -9,8 +9,8 @@
*/
html {
line-height: 1.15; /* 1 */
-webkit-text-size-adjust: 100%; /* 2 */
line-height: 1.15; /* 1 */
-webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
@ -21,7 +21,7 @@ html {
*/
body {
margin: 0;
margin: 0;
}
/**
@ -29,7 +29,7 @@ body {
*/
main {
display: block;
display: block;
}
/**
@ -38,8 +38,8 @@ main {
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
font-size: 2em;
margin: 0.67em 0;
}
/* Grouping content
@ -51,9 +51,9 @@ h1 {
*/
hr {
box-sizing: content-box; /* 1 */
height: 0; /* 1 */
overflow: visible; /* 2 */
box-sizing: content-box; /* 1 */
height: 0; /* 1 */
overflow: visible; /* 2 */
}
/**
@ -62,8 +62,8 @@ hr {
*/
pre {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
/* Text-level semantics
@ -74,7 +74,7 @@ pre {
*/
a {
background-color: transparent;
background-color: transparent;
}
/**
@ -83,9 +83,9 @@ a {
*/
abbr[title] {
border-bottom: none; /* 1 */
text-decoration: underline; /* 2 */
text-decoration: underline dotted; /* 2 */
border-bottom: none; /* 1 */
text-decoration: underline; /* 2 */
text-decoration: underline dotted; /* 2 */
}
/**
@ -94,7 +94,7 @@ abbr[title] {
b,
strong {
font-weight: bolder;
font-weight: bolder;
}
/**
@ -105,8 +105,8 @@ strong {
code,
kbd,
samp {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
/**
@ -114,7 +114,7 @@ samp {
*/
small {
font-size: 80%;
font-size: 80%;
}
/**
@ -124,18 +124,18 @@ small {
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
bottom: -0.25em;
}
sup {
top: -0.5em;
top: -0.5em;
}
/* Embedded content
@ -146,7 +146,7 @@ sup {
*/
img {
border-style: none;
border-style: none;
}
/* Forms
@ -162,10 +162,10 @@ input,
optgroup,
select,
textarea {
font-family: inherit; /* 1 */
font-size: 100%; /* 1 */
line-height: 1.15; /* 1 */
margin: 0; /* 2 */
font-family: inherit; /* 1 */
font-size: 100%; /* 1 */
line-height: 1.15; /* 1 */
margin: 0; /* 2 */
}
/**
@ -174,8 +174,9 @@ textarea {
*/
button,
input { /* 1 */
overflow: visible;
input {
/* 1 */
overflow: visible;
}
/**
@ -184,8 +185,9 @@ input { /* 1 */
*/
button,
select { /* 1 */
text-transform: none;
select {
/* 1 */
text-transform: none;
}
/**
@ -196,7 +198,7 @@ button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
-webkit-appearance: button;
}
/**
@ -207,8 +209,8 @@ button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
border-style: none;
padding: 0;
}
/**
@ -219,7 +221,7 @@ button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
outline: 1px dotted ButtonText;
}
/**
@ -227,7 +229,7 @@ button:-moz-focusring,
*/
fieldset {
padding: 0.35em 0.75em 0.625em;
padding: 0.35em 0.75em 0.625em;
}
/**
@ -238,12 +240,12 @@ fieldset {
*/
legend {
box-sizing: border-box; /* 1 */
color: inherit; /* 2 */
display: table; /* 1 */
max-width: 100%; /* 1 */
padding: 0; /* 3 */
white-space: normal; /* 1 */
box-sizing: border-box; /* 1 */
color: inherit; /* 2 */
display: table; /* 1 */
max-width: 100%; /* 1 */
padding: 0; /* 3 */
white-space: normal; /* 1 */
}
/**
@ -251,7 +253,7 @@ legend {
*/
progress {
vertical-align: baseline;
vertical-align: baseline;
}
/**
@ -259,7 +261,7 @@ progress {
*/
textarea {
overflow: auto;
overflow: auto;
}
/**
@ -269,8 +271,8 @@ textarea {
[type="checkbox"],
[type="radio"] {
box-sizing: border-box; /* 1 */
padding: 0; /* 2 */
box-sizing: border-box; /* 1 */
padding: 0; /* 2 */
}
/**
@ -279,7 +281,7 @@ textarea {
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
height: auto;
}
/**
@ -288,8 +290,8 @@ textarea {
*/
[type="search"] {
-webkit-appearance: textfield; /* 1 */
outline-offset: -2px; /* 2 */
-webkit-appearance: textfield; /* 1 */
outline-offset: -2px; /* 2 */
}
/**
@ -297,7 +299,7 @@ textarea {
*/
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
-webkit-appearance: none;
}
/**
@ -306,8 +308,8 @@ textarea {
*/
::-webkit-file-upload-button {
-webkit-appearance: button; /* 1 */
font: inherit; /* 2 */
-webkit-appearance: button; /* 1 */
font: inherit; /* 2 */
}
/* Interactive
@ -318,7 +320,7 @@ textarea {
*/
details {
display: block;
display: block;
}
/*
@ -326,7 +328,7 @@ details {
*/
summary {
display: list-item;
display: list-item;
}
/* Misc
@ -337,7 +339,7 @@ summary {
*/
template {
display: none;
display: none;
}
/**
@ -345,5 +347,5 @@ template {
*/
[hidden] {
display: none;
display: none;
}

View File

@ -1,11 +1,7 @@
<script setup lang="ts">
</script>
<script setup lang="ts"></script>
<template>
<section id="base_section" class="has-text-centerd">
</section>
<section id="base_section" class="has-text-centerd"></section>
</template>
<style lang="scss">
</style>
<style lang="scss"></style>

View File

@ -1,284 +1,310 @@
<script setup lang="ts">
import {ref} from 'vue'
defineProps<{ msg: string }>()
const count = ref(0)
</script>
<script setup lang="ts"></script>
<template>
<main class="has-text-centered">
<main class="has-text-centered">
<!-- sprint 4 content-->
<section
id="transactionnal_webdesign"
class="has-text-centerd"
>
<h2 class="title">
Transactional
</h2>
<p class="description">
Webdesign
</p>
<div class="columns">
<div class="column first">
<h3 class="sub-title">
For all your
<br>
<span class="color-emphasis"> digital</span> uses.
</h3>
</div>
<div class="column second">
Our creative competitive edge <br>
<br>
We leverage our own studio in Paris equipped to produce all e-formats.
We power transactional content with our technology. Our content is
transactional and generate online sales. We produce multi-purpose
content at scale for all touchpoints to reduce costs.
</div>
</div>
</section>
<section id="carry">
<h2 class="color-emphasis">
We carry out web design and development
</h2>
<p class="description">
in headless commerce.
</p>
<!-- sprint 4 content-->
<section id="transactionnal_webdesign" class="has-text-centerd">
<div class="bubbles">
<p>Evolutive maintenance</p>
<p>Front end (ux/ui) development</p>
<p>Web App (pwa) development</p>
<p>Consulting</p>
</div>
<p>
We craft e-commerce Ux template based on qualitative and quantitative
studies
</p>
</section>
<section id="kyc">
<h2>We help you to know your customer needs</h2>
<p>With our method</p>
<a
href="#kyc"
class="button"
> Show Sesame method </a>
<h2>Transactional</h2>
<p>
Webcontent
</p>
<div class="aside">
Our creative competitive edge
<div class="bubbles">
<p>to Prioritize development effort</p>
<p>to improve customer satisfaction</p>
<p>to increase conversion rate</p>
</div>
</section>
<section id="china">
<h2>Our China-inspired ui in 4 pillars</h2>
<p>
a quick and smoth consumer journey and never ending shopping experience
at the same time
</p>
<div class="blocks">
<div class="block">
<div class="top">
Content driven
</div>
<div class="bottom">
-Rebound rate
</div>
</div>
<div class="block">
<div class="top">
Experimental
</div>
<div class="bottom">
-Return rate
</div>
</div>
<div class="block">
<div class="top">
Interactive
</div>
<div class="bottom">
+Conversion rate
</div>
</div>
<div class="block">
<div class="top">
Agile
</div>
<div class="bottom">
+Retention rate
</div>
</div>
</div>
</section>
<section id="we_develop">
<h2>
We develop custom-made innovative e-commerce features based on your
brand stakes.
</h2>
<div class="phone-container">
<div class="top" />
<div class="picture" />
<div class="bottom" />
</div>
<div class="arrow-left" />
<div class="arrow-right" />
<div class="data">
Data
</div>
<div class="data">
AR
</div>
<div class="quick">
Quick wins
</div>
<div class="long_term">
Long-Term Project
</div>
</section>
<section id="full_creative">
<h2>A full creative & production Studio in Paris</h2>
<div class="tiles columns">
<div class="aside column" />
<div class="picture column" />
<div class="picture column" />
</div>
</section>
<section id="our_team">
<h2>Our team.</h2>
<div class="sub-category">
<p>of experts and directors.</p>
<div class="columns">
<div class="person column">
<div class="picture" />
<p class="name">
Name Surname
</p>
</div>
<div class="person column">
<div class="picture" />
<p class="name">
Name Surname
</p>
</div>
<div class="person column">
<div class="picture" />
<p class="name">
Name Surname
</p>
</div>
<div class="person column">
<div class="picture" />
<p class="name">
Name Surname
</p>
</div>
</div>
</div>
<div class="sub-category">
<p>and our senior team</p>
<div class="columns">
<div class="person column">
<div class="picture" />
<p class="name">
Name Surname
</p>
</div>
<div class="person column">
<div class="picture" />
<p class="name">
Name Surname
</p>
</div>
<div class="person column">
<div class="picture" />
<p class="name">
Name Surname
</p>
</div>
<div class="person column">
<div class="picture" />
<p class="name">
Name Surname
</p>
</div>
</div>
</div>
</section>
<section id="china_achievements">
<div class="columns">
<div class="column">
<h2>Our China achievements</h2>
</div>
<div class="column">
<p>
Backed by the Baozun Group (the leading e-commerce technology Group
in China listed in NASDAQ and Hong Kong, reaching $10Mn GMV in
2021), we embrace Chinas e-commerce, capitalizing on the markets
unique technology and digital sales mechanisms.
</p>
</div>
</div>
We leverage our own studio in Paris equipped to produce all e-formats. We power transactional content with our
technology. Our content is transactional and generate online sales. We produce multi-purpose content at scale
for all touchpoints to reduce costs.
</div>
</section>
<section id="carry">
<p>We carry out web design and development</p>
<p>in headless</p>
<p>commerce.</p>
<div class="tiles-box">
<div class="tile-item">
<div class="column">
<h3>
<span class="number">400+</span>
<span class="description">Store launches incl. Dr. Martens, G-star etc.</span>
</h3>
</div>
<div class="column">
<div class="picture has-rounded-corners" />
</div>
</div>
<div class="bubbles">
<p>Evolutive maintenance</p>
<p>Front end (ux/ui) development</p>
<p>Web App (pwa)
development</p>
<p>Consulting</p>
</div>
<p>We craft e-commerce Ux template based on qualitative and quantitative studies</p>
</section>
<section id="kyc">
<h2>We help you to know your customer needs</h2>
<p>With our method</p>
<a href="#kyc" class="button">
Show Sesame method
</a>
<div class="bubbles">
<p>to Prioritize
development
effort</p>
<p>
to improve customer satisfaction
</p>
<p>to increase conversion rate</p>
</div>
</section>
<section id="china">
<h2>Our China-inspired ui in 4 pillars</h2>
<p>
a quick and smoth consumer journey and never ending shopping experience at the same time
</p>
<div class="blocks">
<div class="block">
<div class="top">Content driven</div>
<div class="bottom">-Rebound rate</div>
</div>
<div class="block">
<div class="top">Experimental</div>
<div class="bottom">-Return rate</div>
</div>
<div class="block">
<div class="top">Interactive</div>
<div class="bottom">+Conversion rate</div>
</div>
<div class="block">
<div class="top">Agile</div>
<div class="bottom">+Retention rate</div>
</div>
</div>
</section>
<section id="we_develop">
<h2>
We develop custom-made innovative e-commerce features based on your brand stakes.
</h2>
<div class="phone-container">
<div class="top">
</div>
<div class="picture"></div>
<div class="bottom"></div>
</div>
<div class="arrow-left"></div>
<div class="arrow-right"></div>
<div class="data">Data</div>
<div class="data">AR</div>
<div class="quick">
Quick wins
</div>
<div class="long_term">
Long-Term Project
</div>
</section>
<section id="full_creative">
<h2>A full creative & production Studio in Paris</h2>
<div class="tiles columns">
<div class="aside column"></div>
<div class="picture column"></div>
<div class="picture column"></div>
</div>
</section>
<section id="our_team">
<h2>Our team.</h2>
<div class="sub-category">
<p>
of experts and directors.
</p>
<div class="columns">
<div class="person column">
<div class="picture"></div>
<p class="name">Name Surname</p>
</div>
<div class="person column">
<div class="picture"></div>
<p class="name">Name Surname</p>
</div>
<div class="person column">
<div class="picture"></div>
<p class="name">Name Surname</p>
</div>
<div class="person column">
<div class="picture"></div>
<p class="name">Name Surname</p>
</div>
</div>
</div>
<div class="sub-category">
<p>
and our senior team
</p>
<div class="columns">
<div class="person column">
<div class="picture"></div>
<p class="name">Name Surname</p>
</div>
<div class="person column">
<div class="picture"></div>
<p class="name">Name Surname</p>
</div>
<div class="person column">
<div class="picture"></div>
<p class="name">Name Surname</p>
</div>
<div class="person column">
<div class="picture"></div>
<p class="name">Name Surname</p>
</div>
</div>
</div>
</section>
<section id="china_achievements">
<div class="columns">
<div class="column">
<h2>Our China achievements</h2>
</div>
<div class="column">
<p>
Backed by the Baozun Group (the leading e-commerce technology Group in China listed in NASDAQ and Hong Kong,
reaching $10Mn GMV in 2021), we embrace Chinas e-commerce, capitalizing on the markets unique technology
and digital sales mechanisms.
</p>
</div>
</div>
<div class="tiles-box">
<div class="tile-item">
<div class="column">
<h3>
<span class="number">400+</span>
<span class="description">Store launches incl. Dr. Martens, G-star etc.</span>
</h3>
</div>
<div class="column">
<div class="picture has-rounded-corners"></div>
</div>
</div>
<p>
100+
Luxury Store launches on incl. Christofle, De Beers etc.
40+
Luxury Brands supported with E2E services
50+
Brands assisted in social project commerces.
30+
PROJECTS converted into Ecom Ops management.
30-60%
Of our brands partner China GMV done online.
</p>
</div>
</section>
<section id="baozun_group" class="has-rounded-corners">
<h2>Baozun Group and Company.</h2>
</section>
</main>
<p>
100+ Luxury Store launches on incl. Christofle, De Beers etc. 40+
Luxury Brands supported with E2E services 50+ Brands assisted in
social project commerces. 30+ PROJECTS converted into Ecom Ops
management. 30-60% Of our brands partner China GMV done online.
</p>
</div>
</section>
<section
id="baozun_group"
class="has-rounded-corners"
>
<h2>Baozun Group and Company.</h2>
</section>
</main>
</template>
<style lang="scss">
#hand {
background: url("/img/hand 1.png");
background-size: cover;
position: absolute;
width: 100vw;
height: 1300px;
left: 1px;
top: -2px;
}
#hand {
background: url('/img/hand 1.png');
background-size: cover;
#cover {
background: url("/img/BG 1.png") no-repeat;
background-size: cover;
h2 {
position: absolute;
width: 100vw;
height: 1300px;
left: 1px;
top: -2px;
top: 10vh;
left: 42vw;
/* Subtitle/desktop_1 */
font-family: "GT Walsheim Pro", Arial;
font-style: normal;
font-weight: 600;
font-size: 40px;
line-height: 120%;
/* or 48px */
text-align: center;
letter-spacing: -0.04em;
/* Secondary 100 */
color: #fffdfc;
}
#cover {
background: url('/img/BG 1.png') no-repeat;
background-size: cover;
.button {
box-sizing: border-box;
h2 {
position: absolute;
top: 10vh;
left: 42vw;
position: relative;
right: 0;
top: calc(1 / 3 * 100vh);
bottom: 0;
width: 150px;
height: 150px;
padding: 1rem;
color: white;
font-family: "GT Walsheim Pro", Arial;
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 26px;
background: linear-gradient(
329.49deg,
rgba(255, 216, 244, 0) 34.06%,
rgba(255, 207, 242, 0.2) 77.26%
);
backdrop-filter: blur(2.96px);
/* Subtitle/desktop_1 */
font-family: 'GT Walsheim Pro', Arial;
font-style: normal;
font-weight: 600;
font-size: 40px;
line-height: 120%;
/* or 48px */
text-align: center;
letter-spacing: -0.04em;
/* Secondary 100 */
color: #fffdfc;
}
.button {
box-sizing: border-box;
position: relative;
right: 0;
top: calc(1 / 3 * 100vh);
bottom: 0;
width: 150px;
height: 150px;
padding: 1rem;
color: white;
font-family: 'GT Walsheim Pro', Arial;
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 26px;
background: linear-gradient(329.49deg, rgba(255, 216, 244, 0) 34.06%, rgba(255, 207, 242, 0.2) 77.26%);
backdrop-filter: blur(2.96px);
border-radius: 100%;
left: 3rem;
}
border-radius: 100%;
left: 3rem;
}
}
</style>

View File

@ -1,5 +1,5 @@
import { createApp } from 'vue'
import './assets/styles/main.scss'
import App from './App.vue'
import { createApp } from "vue";
import "./assets/styles/main.scss";
import App from "./App.vue";
createApp(App).mount('#app')
createApp(App).mount("#app");

View File

@ -1,50 +1,50 @@
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"~assets/*": [
"src/assets/*"
],
"~components/*": [
"src/components/*"
],
"~styles/*": [
"./src/assets/styles/*"
],
"~/*": [
"src/*"
]
}
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"~assets/*": [
"src/assets/*"
],
"~components/*": [
"src/components/*"
],
"~styles/*": [
"./src/assets/styles/*"
],
"~/*": [
"src/*"
]
}
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}

View File

@ -1,10 +1,10 @@
{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true
},
"include": ["vite.config.ts"]
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true
},
"include": ["vite.config.ts"]
}

View File

@ -1,19 +1,26 @@
import {defineConfig} from 'vite'
import vue from '@vitejs/plugin-vue'
import scss from 'rollup-plugin-scss'
import eslint from 'vite-plugin-eslint'
import stylelint from 'vite-plugin-stylelint';
import {ViteAliases} from 'vite-aliases'
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import scss from "rollup-plugin-scss";
import eslint from "vite-plugin-eslint";
import stylelint from "vite-plugin-stylelint";
import { ViteAliases } from "vite-aliases";
// https://vitejs.dev/config/
/** @type {import('vite').UserConfig} */
export default defineConfig({
plugins: [vue(), scss(), ViteAliases(),stylelint({
fix:true,
}),eslint()],
})
plugins: [
vue(),
scss(),
ViteAliases(),
// stylelint({
// fix: true,
// configBasedir: '.',
// parserOptions: {
// extraFileExtensions: true
// }
// }),
eslint({
fix: true,
}),
],
});