feat(body): finaliza a estilizacao do site e completa o projeto
This commit is contained in:
parent
e08a55b38f
commit
3997d7afab
BIN
assets/images/pix-106 1.png
Normal file
BIN
assets/images/pix-106 1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
@ -66,7 +66,8 @@
|
|||||||
"vtex.tab-layout": "0.x",
|
"vtex.tab-layout": "0.x",
|
||||||
"vtex.condition-layout": "2.x",
|
"vtex.condition-layout": "2.x",
|
||||||
"vtex.css-handles": "1.x",
|
"vtex.css-handles": "1.x",
|
||||||
"vtex.product-context": "0.x"
|
"vtex.product-context": "0.x",
|
||||||
|
"vtex.store-newsletter": "1.x"
|
||||||
},
|
},
|
||||||
"$schema": "https://raw.githubusercontent.com/vtex/node-vtex-api/master/gen/manifest.schema"
|
"$schema": "https://raw.githubusercontent.com/vtex/node-vtex-api/master/gen/manifest.schema"
|
||||||
}
|
}
|
||||||
|
3
react/Pix.tsx
Normal file
3
react/Pix.tsx
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import Pix from "./components/Pix/Pix";
|
||||||
|
|
||||||
|
export default Pix;
|
3
react/Placeholder.tsx
Normal file
3
react/Placeholder.tsx
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import Placeholder from "./components/Placeholder/Placeholder";
|
||||||
|
|
||||||
|
export default Placeholder;
|
@ -1,40 +1,52 @@
|
|||||||
import React, { ReactNode } from "react";
|
import React, { ReactNode } from "react";
|
||||||
import { useCssHandles } from "vtex.css-handles";
|
import { useCssHandles } from "vtex.css-handles";
|
||||||
|
import "./styles.css";
|
||||||
|
|
||||||
const CSS_HANDLES = ["html"] as const;
|
const CSS_HANDLES = ["html"] as const;
|
||||||
|
|
||||||
type HtmlProps = {
|
type HtmlProps = {
|
||||||
children?: ReactNode,
|
children?: ReactNode;
|
||||||
/**
|
/**
|
||||||
* Qual tag Html que deseja que seja usar
|
* Qual tag Html que deseja que seja usar
|
||||||
*
|
*
|
||||||
* @default div
|
* @default div
|
||||||
*/
|
*/
|
||||||
tag?: keyof React.ReactHTML
|
tag?: keyof React.ReactHTML;
|
||||||
/**
|
/**
|
||||||
* Classes CSS extras que deseja adicionar.
|
* Classes CSS extras que deseja adicionar.
|
||||||
* Feito para uso de [classes do tachyons](https://tachyons.io/)
|
* Feito para uso de [classes do tachyons](https://tachyons.io/)
|
||||||
*/
|
*/
|
||||||
tachyonsClasses?: string
|
tachyonsClasses?: string;
|
||||||
/**
|
/**
|
||||||
* Se caso quiser usar esse componente
|
* Se caso quiser usar esse componente
|
||||||
* para adicinar um texto simples
|
* para adicinar um texto simples
|
||||||
*/
|
*/
|
||||||
text?: string
|
text?: string;
|
||||||
/**
|
/**
|
||||||
* Tag ID para
|
* Tag ID para
|
||||||
*/
|
*/
|
||||||
testId?: string
|
testId?: string;
|
||||||
}
|
};
|
||||||
|
|
||||||
export const Html = ({ children = null, tag = "div", text = "", tachyonsClasses: classes = "", testId }: HtmlProps) => {
|
export const Html = ({
|
||||||
|
children = null,
|
||||||
|
tag = "div",
|
||||||
|
text = "",
|
||||||
|
tachyonsClasses: classes = "",
|
||||||
|
testId,
|
||||||
|
}: HtmlProps) => {
|
||||||
const { handles } = useCssHandles(CSS_HANDLES);
|
const { handles } = useCssHandles(CSS_HANDLES);
|
||||||
|
|
||||||
const props = {
|
const props = {
|
||||||
className: `${handles.html} ${classes}`,
|
className: `${handles.html} ${classes}`,
|
||||||
"data-testid": testId
|
"data-testid": testId,
|
||||||
};
|
};
|
||||||
const Children = <>{children}{text}</>;
|
const Children = (
|
||||||
|
<>
|
||||||
|
{children}
|
||||||
|
{text}
|
||||||
|
</>
|
||||||
|
);
|
||||||
const Element = React.createElement(tag, props, Children);
|
const Element = React.createElement(tag, props, Children);
|
||||||
|
|
||||||
return <>{Element}</>;
|
return <>{Element}</>;
|
||||||
|
6
react/components/Html/styles.css
Normal file
6
react/components/Html/styles.css
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
[class*="html--cart-content"] {
|
||||||
|
display: flex;
|
||||||
|
gap: 10px;
|
||||||
|
margin-top: 8px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
52
react/components/Pix/Pix.tsx
Normal file
52
react/components/Pix/Pix.tsx
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
import React from "react";
|
||||||
|
import { useProduct } from "vtex.product-context";
|
||||||
|
import styles from "./styles.css";
|
||||||
|
|
||||||
|
const Pix = () => {
|
||||||
|
const product = useProduct();
|
||||||
|
|
||||||
|
const pix = {
|
||||||
|
pixValue: Number(
|
||||||
|
product?.selectedItem?.sellers[0].commertialOffer.Installments[3]
|
||||||
|
.TotalValuePlusInterestRate
|
||||||
|
),
|
||||||
|
};
|
||||||
|
|
||||||
|
// const priceTimes =
|
||||||
|
// product?.selectedItem?.sellers[0].commertialOffer.Installments[3]
|
||||||
|
// .NumberOfInstallments;
|
||||||
|
// const valueTotal = product?.selectedItem?.sellers[0].commertialOffer.Installments[3].Value.toFixed(
|
||||||
|
// 2
|
||||||
|
// )
|
||||||
|
// .toString()
|
||||||
|
// .replace(".", ",");
|
||||||
|
|
||||||
|
const pixPrice = (pix.pixValue = pix.pixValue * 0.9)
|
||||||
|
.toFixed(2)
|
||||||
|
.toString()
|
||||||
|
.replace(".", ",");
|
||||||
|
/* <span className={styles.AllPriceTimesText}>
|
||||||
|
<span className={styles.PriceTimes}>{priceTimes} x</span> de
|
||||||
|
<span className={styles.PriceTimes}> R$ {valueTotal}</span> sem juros
|
||||||
|
</span> */
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className={styles.PricesWrapperRow}>
|
||||||
|
<figure>
|
||||||
|
<img
|
||||||
|
src="https://agenciamagma.vteximg.com.br/arquivos/pix-daviklein.svg"
|
||||||
|
alt="Imagem Pix"
|
||||||
|
/>
|
||||||
|
</figure>
|
||||||
|
<p className={styles.PricesCol}>
|
||||||
|
<span className={styles.PixFullValue}>R${pixPrice}</span>
|
||||||
|
<span className={styles.PixPercent}>10% de desconto</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
|
||||||
|
// return <button className={styles.PixButton}>Pix</button>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Pix;
|
50
react/components/Pix/styles.css
Normal file
50
react/components/Pix/styles.css
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
.html {
|
||||||
|
background-color: transparent !important;
|
||||||
|
}
|
||||||
|
.AllPriceTimesText {
|
||||||
|
font-style: normal;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
.PriceTimes {
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
.PixButton {
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
background: black;
|
||||||
|
}
|
||||||
|
.PricesWrapperRow {
|
||||||
|
margin-top: 8px;
|
||||||
|
display: flex;
|
||||||
|
gap: 26px;
|
||||||
|
}
|
||||||
|
figure {
|
||||||
|
margin: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.PricesCol {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.PixFullValue {
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
color: rgba(0, 0, 0, 0.58);
|
||||||
|
}
|
||||||
|
.PixPercent {
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 18px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
8
react/components/Placeholder/Placeholder.tsx
Normal file
8
react/components/Placeholder/Placeholder.tsx
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
const Placeholder = () => {
|
||||||
|
if (typeof document !== "undefined") {
|
||||||
|
const m3Input = document.querySelector(".vtex-address-form-4-x-input");
|
||||||
|
m3Input?.setAttribute("placeholder", "Digite seu CEP");
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
export default Placeholder;
|
0
react/custom.d.ts
vendored
Normal file
0
react/custom.d.ts
vendored
Normal file
11
react/index.d.ts
vendored
Normal file
11
react/index.d.ts
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
declare module "*.css" {
|
||||||
|
interface IClassNames {
|
||||||
|
[className: string]: string;
|
||||||
|
}
|
||||||
|
const classNames: IClassNames;
|
||||||
|
export = classNames;
|
||||||
|
}
|
||||||
|
declare module "*.svg" {
|
||||||
|
const content: React.FunctionComponent<React.SVGAttributes<SVGElement>>;
|
||||||
|
export default content;
|
||||||
|
}
|
@ -40,7 +40,7 @@
|
|||||||
"phone": 1
|
"phone": 1
|
||||||
},
|
},
|
||||||
"infinite": true,
|
"infinite": true,
|
||||||
"showNavigationArrows": "desktopOnly",
|
"showNavigationArrows": "never",
|
||||||
"blockClass": "carousel"
|
"blockClass": "carousel"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -5,11 +5,63 @@
|
|||||||
"condition-layout.product#availability",
|
"condition-layout.product#availability",
|
||||||
"flex-layout.row#description",
|
"flex-layout.row#description",
|
||||||
"flex-layout.row#specifications-title",
|
"flex-layout.row#specifications-title",
|
||||||
"product-specification-group#table",
|
// "product-specification-group#table",
|
||||||
"shelf.relatedProducts",
|
// "shelf.relatedProducts",
|
||||||
"product-questions-and-answers"
|
"product-questions-and-answers",
|
||||||
|
"list-context.product-list#demo1",
|
||||||
|
"product-questions-and-answers",
|
||||||
|
"newsletter"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"list-context.product-list#demo1": {
|
||||||
|
"blocks": ["product-summary.shelf#demo1"],
|
||||||
|
"children": ["html#slider-layout"]
|
||||||
|
},
|
||||||
|
|
||||||
|
"product-summary.shelf#demo1": {
|
||||||
|
"children": [
|
||||||
|
"html#sliderPrateleira"
|
||||||
|
// "product-summary-name",
|
||||||
|
// "product-summary-description",
|
||||||
|
// "product-summary-image",
|
||||||
|
// "product-summary-price",
|
||||||
|
// "product-summary-sku-selector",
|
||||||
|
// "product-summary-buy-button"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"html#sliderPrateleira": {
|
||||||
|
"props": {
|
||||||
|
"testId": "vtex-product-summary",
|
||||||
|
"blockClass": "prateleira-flexcol"
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"product-summary-image",
|
||||||
|
"product-summary-name",
|
||||||
|
"product-list-price",
|
||||||
|
"product-selling-price"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"html#slider-layout": {
|
||||||
|
"props": {
|
||||||
|
"testId": "product-summary-list",
|
||||||
|
"blockClass": "slider-layout-wrapper"
|
||||||
|
},
|
||||||
|
"children": ["slider-layout#demo-products"]
|
||||||
|
},
|
||||||
|
|
||||||
|
"slider-layout#demo-products": {
|
||||||
|
"props": {
|
||||||
|
"itemsPerPage": {
|
||||||
|
"desktop": 4,
|
||||||
|
"tablet": 3,
|
||||||
|
"phone": 2
|
||||||
|
},
|
||||||
|
"infinite": true,
|
||||||
|
"showNavigationArrows": "always",
|
||||||
|
"blockClass": "carousel"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
"html#breadcrumb": {
|
"html#breadcrumb": {
|
||||||
"props": {
|
"props": {
|
||||||
"tag": "section",
|
"tag": "section",
|
||||||
@ -19,18 +71,94 @@
|
|||||||
"children": ["breadcrumb"]
|
"children": ["breadcrumb"]
|
||||||
},
|
},
|
||||||
"flex-layout.row#specifications-title": {
|
"flex-layout.row#specifications-title": {
|
||||||
|
"props": {
|
||||||
|
"props": {
|
||||||
|
"marginBottom": 7,
|
||||||
|
"marginTop": 7
|
||||||
|
}
|
||||||
|
},
|
||||||
"children": ["rich-text#specifications"]
|
"children": ["rich-text#specifications"]
|
||||||
},
|
},
|
||||||
"rich-text#specifications": {
|
"rich-text#specifications": {
|
||||||
"props": {
|
"props": {
|
||||||
"text": "##### Product Specifications"
|
"text": "##### Você também pode gostar:",
|
||||||
|
"textPosition": "CENTER",
|
||||||
|
"textAlignment": "CENTER",
|
||||||
|
"blockClass": "specifications-texto"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"flex-layout.row#description": {
|
"flex-layout.row#description": {
|
||||||
"props": {
|
"props": {
|
||||||
"marginBottom": 7
|
"marginBottom": 7
|
||||||
},
|
},
|
||||||
"children": ["product-description"]
|
"children": ["html#product-description"]
|
||||||
|
},
|
||||||
|
"html#product-description": {
|
||||||
|
"props": {
|
||||||
|
"testId": "product-description"
|
||||||
|
},
|
||||||
|
"children": ["tab-layout#description"]
|
||||||
|
},
|
||||||
|
"tab-layout#description": {
|
||||||
|
"children": ["tab-list#description", "tab-content#description"],
|
||||||
|
"props": {
|
||||||
|
"blockClass": "description",
|
||||||
|
"defaultActiveTabId": "description1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"tab-content#description": {
|
||||||
|
"children": ["product-images#description", "product-description"]
|
||||||
|
},
|
||||||
|
"product-images#description": {
|
||||||
|
"props": {
|
||||||
|
"displayMode": "first-image",
|
||||||
|
"zoomMode": "disable",
|
||||||
|
"blockClass": "imageDescricao"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tab-list#description": {
|
||||||
|
"props": {
|
||||||
|
"blockClass": "listaDescricao"
|
||||||
|
},
|
||||||
|
"children": [
|
||||||
|
"tab-list.item#description1",
|
||||||
|
"tab-list.item#description2",
|
||||||
|
"tab-list.item#description3",
|
||||||
|
"tab-list.item#description4",
|
||||||
|
"tab-list.item#description5"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"tab-list.item#description1": {
|
||||||
|
"props": {
|
||||||
|
"tabId": "description1",
|
||||||
|
"label": "Descrição",
|
||||||
|
"defaultActiveTab": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tab-list.item#description2": {
|
||||||
|
"props": {
|
||||||
|
"tabId": "description2",
|
||||||
|
"label": "Descrição"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tab-list.item#description3": {
|
||||||
|
"props": {
|
||||||
|
"tabId": "description3",
|
||||||
|
"label": "Descrição"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tab-list.item#description4": {
|
||||||
|
"props": {
|
||||||
|
"tabId": "description4",
|
||||||
|
"label": "Descrição"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tab-list.item#description5": {
|
||||||
|
"props": {
|
||||||
|
"tabId": "description5",
|
||||||
|
"label": "Descrição"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"condition-layout.product#availability": {
|
"condition-layout.product#availability": {
|
||||||
"props": {
|
"props": {
|
||||||
@ -78,20 +206,30 @@
|
|||||||
"flex-layout.col#stack": {
|
"flex-layout.col#stack": {
|
||||||
"children": ["stack-layout"],
|
"children": ["stack-layout"],
|
||||||
"props": {
|
"props": {
|
||||||
"width": "60%",
|
"width": "50%",
|
||||||
"rowGap": 0
|
"rowGap": 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"flex-layout.row#product-image": {
|
"flex-layout.row#product-image": {
|
||||||
|
"children": ["html#product-images"]
|
||||||
|
},
|
||||||
|
"html#product-images": {
|
||||||
|
"props": {
|
||||||
|
"testId": "product-images"
|
||||||
|
},
|
||||||
"children": ["product-images"]
|
"children": ["product-images"]
|
||||||
},
|
},
|
||||||
"product-images": {
|
"product-images": {
|
||||||
"props": {
|
"props": {
|
||||||
"aspectRatio": {
|
"aspectRatio": {
|
||||||
"desktop": "auto",
|
"desktop": "auto",
|
||||||
|
"testId": "",
|
||||||
"phone": "16:9"
|
"phone": "16:9"
|
||||||
},
|
},
|
||||||
"displayThumbnailsArrows": true
|
"displayThumbnailsArrows": false,
|
||||||
|
"showNavigationArrows": false,
|
||||||
|
"showPaginationDots": false,
|
||||||
|
"thumbnailsOrientation": "horizontal"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"flex-layout.col#right-col": {
|
"flex-layout.col#right-col": {
|
||||||
@ -100,23 +238,94 @@
|
|||||||
"rowGap": 0
|
"rowGap": 0
|
||||||
},
|
},
|
||||||
"children": [
|
"children": [
|
||||||
"flex-layout.row#product-name",
|
"html#product-name",
|
||||||
|
"html#codigo",
|
||||||
"product-rating-summary",
|
"product-rating-summary",
|
||||||
"flex-layout.row#list-price-savings",
|
"html#selling-price",
|
||||||
"flex-layout.row#selling-price",
|
// "flex-layout.row#selling-price",
|
||||||
"product-installments",
|
"html#product-installments",
|
||||||
"product-separator",
|
"html#pix-component",
|
||||||
"product-identifier.product",
|
"html#sku-selector",
|
||||||
"sku-selector",
|
// "html#product-quantity",
|
||||||
"product-quantity",
|
// "html#add-to-cart-button",
|
||||||
|
"html#cart-content",
|
||||||
|
"Placeholder",
|
||||||
"product-assembly-options",
|
"product-assembly-options",
|
||||||
"product-gifts",
|
"product-gifts",
|
||||||
"flex-layout.row#buy-button",
|
|
||||||
"availability-subscriber",
|
"availability-subscriber",
|
||||||
"shipping-simulator",
|
"html#shipping-simulator"
|
||||||
"share#default"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"html#product-name": {
|
||||||
|
"props": {
|
||||||
|
"marginBottom": 3,
|
||||||
|
"testId": "product-name",
|
||||||
|
"blockClass": "productName"
|
||||||
|
},
|
||||||
|
"children": ["vtex.store-components:product-name"]
|
||||||
|
},
|
||||||
|
"html#codigo": {
|
||||||
|
"props": {
|
||||||
|
"blockClass": "codigo",
|
||||||
|
"testId": "product-code"
|
||||||
|
},
|
||||||
|
"children": ["product-identifier.product"]
|
||||||
|
},
|
||||||
|
|
||||||
|
"html#product-installments": {
|
||||||
|
"props": {
|
||||||
|
"testId": "product-installments"
|
||||||
|
},
|
||||||
|
"children": ["product-installments"]
|
||||||
|
},
|
||||||
|
|
||||||
|
"html#selling-price": {
|
||||||
|
"props": {
|
||||||
|
"testId": "product-price"
|
||||||
|
},
|
||||||
|
"children": ["flex-layout.row#selling-price"]
|
||||||
|
},
|
||||||
|
|
||||||
|
"html#pix-component": {
|
||||||
|
"props": {
|
||||||
|
"testId": "pix-price",
|
||||||
|
"blockClass": "pix"
|
||||||
|
},
|
||||||
|
"children": ["pix-component"]
|
||||||
|
},
|
||||||
|
"html#add-to-cart-button": {
|
||||||
|
"props": {
|
||||||
|
"testId": "add-to-cart-button",
|
||||||
|
"blockClass": "addButton"
|
||||||
|
},
|
||||||
|
"children": ["flex-layout.row#buy-button"]
|
||||||
|
},
|
||||||
|
|
||||||
|
"html#product-quantity": {
|
||||||
|
"props": {
|
||||||
|
"testId": "product-quantity"
|
||||||
|
},
|
||||||
|
"children": ["product-quantity"]
|
||||||
|
},
|
||||||
|
"html#cart-content": {
|
||||||
|
"props": {
|
||||||
|
"blockClass": "cart-content"
|
||||||
|
},
|
||||||
|
"children": ["html#product-quantity", "html#add-to-cart-button"]
|
||||||
|
},
|
||||||
|
"html#sku-selector": {
|
||||||
|
"props": {
|
||||||
|
"testId": "sku-selector"
|
||||||
|
},
|
||||||
|
"children": ["sku-selector"]
|
||||||
|
},
|
||||||
|
"html#shipping-simulator": {
|
||||||
|
"props": {
|
||||||
|
"testId": "shipping-simulator",
|
||||||
|
"blockClass": "shippingSimulator"
|
||||||
|
},
|
||||||
|
"children": ["shipping-simulator"]
|
||||||
|
},
|
||||||
|
|
||||||
"flex-layout.row#product-name": {
|
"flex-layout.row#product-name": {
|
||||||
"props": {
|
"props": {
|
||||||
@ -128,14 +337,16 @@
|
|||||||
"sku-selector": {
|
"sku-selector": {
|
||||||
"props": {
|
"props": {
|
||||||
"variationsSpacing": 3,
|
"variationsSpacing": 3,
|
||||||
"showValueNameForImageVariation": true
|
"showValueNameForImageVariation": true,
|
||||||
|
"blockClass": "sku-selector"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"flex-layout.row#buy-button": {
|
"flex-layout.row#buy-button": {
|
||||||
"props": {
|
"props": {
|
||||||
"marginTop": 4,
|
"marginTop": 4,
|
||||||
"marginBottom": 7
|
"marginBottom": 7,
|
||||||
|
"blockClass": "buyButton"
|
||||||
},
|
},
|
||||||
"children": ["add-to-cart-button"]
|
"children": ["add-to-cart-button"]
|
||||||
},
|
},
|
||||||
@ -159,10 +370,10 @@
|
|||||||
"blockClass": "info-availability"
|
"blockClass": "info-availability"
|
||||||
},
|
},
|
||||||
"children": [
|
"children": [
|
||||||
"flex-layout.row#product-name",
|
"html#product-name",
|
||||||
"product-identifier.product",
|
"html#codigo",
|
||||||
"sku-selector",
|
"flex-layout.row#availability",
|
||||||
"flex-layout.row#availability"
|
"html#sku-selector"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"flex-layout.row#availability": {
|
"flex-layout.row#availability": {
|
||||||
|
@ -4,11 +4,9 @@
|
|||||||
"colGap": 2,
|
"colGap": 2,
|
||||||
"preserveLayoutOnMobile": true,
|
"preserveLayoutOnMobile": true,
|
||||||
"preventHorizontalStretch": true,
|
"preventHorizontalStretch": true,
|
||||||
"marginBottom": 4
|
"marginBottom": 0
|
||||||
},
|
},
|
||||||
"children": [
|
"children": ["product-selling-price"]
|
||||||
"product-selling-price"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
|
|
||||||
"flex-layout.row#list-price-savings": {
|
"flex-layout.row#list-price-savings": {
|
||||||
@ -19,9 +17,6 @@
|
|||||||
"marginBottom": 2,
|
"marginBottom": 2,
|
||||||
"marginTop": 5
|
"marginTop": 5
|
||||||
},
|
},
|
||||||
"children": [
|
"children": ["product-list-price", "product-price-savings"]
|
||||||
"product-list-price",
|
|
||||||
"product-price-savings"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,6 @@
|
|||||||
{
|
{
|
||||||
"modal-trigger#quickview": {
|
"modal-trigger#quickview": {
|
||||||
"children": [
|
"children": ["icon-expand", "modal-layout#quickview"],
|
||||||
"icon-expand",
|
|
||||||
"modal-layout#quickview"
|
|
||||||
],
|
|
||||||
"props": {
|
"props": {
|
||||||
"blockClass": "quickview"
|
"blockClass": "quickview"
|
||||||
}
|
}
|
||||||
@ -35,11 +32,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"flex-layout.col#quickviewPrice": {
|
"flex-layout.col#quickviewPrice": {
|
||||||
"children": [
|
"children": ["flex-layout.row#selling-price", "product-installments"]
|
||||||
"flex-layout.row#list-price-savings",
|
|
||||||
"flex-layout.row#selling-price",
|
|
||||||
"product-installments"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"modal-actions#quickview": {
|
"modal-actions#quickview": {
|
||||||
"props": {
|
"props": {
|
||||||
@ -63,9 +56,7 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
"flex-layout.col#quickview-product-quantity": {
|
"flex-layout.col#quickview-product-quantity": {
|
||||||
"children": [
|
"children": ["product-summary-quantity#quickview"]
|
||||||
"product-summary-quantity#quickview"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"product-summary-quantity#quickview": {
|
"product-summary-quantity#quickview": {
|
||||||
"props": {
|
"props": {
|
||||||
@ -74,18 +65,14 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"flex-layout.col#quickview-add-to-card-button": {
|
"flex-layout.col#quickview-add-to-card-button": {
|
||||||
"children": [
|
"children": ["add-to-cart-button"],
|
||||||
"add-to-cart-button"
|
|
||||||
],
|
|
||||||
"props": {
|
"props": {
|
||||||
"width": "grow"
|
"width": "grow"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"flex-layout.row#quickview-actions-2": {
|
"flex-layout.row#quickview-actions-2": {
|
||||||
"children": [
|
"children": ["link.product#button-pdp"]
|
||||||
"link.product#button-pdp"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"link.product#button-pdp": {
|
"link.product#button-pdp": {
|
||||||
"props": {
|
"props": {
|
||||||
@ -107,15 +94,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"flex-layout.col#quickview-images": {
|
"flex-layout.col#quickview-images": {
|
||||||
"children": [
|
"children": ["product-images#quickview"]
|
||||||
"product-images#quickview"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"flex-layout.col#quickview-product-details": {
|
"flex-layout.col#quickview-product-details": {
|
||||||
"children": [
|
"children": ["modal-content#quickview", "modal-actions#quickview"],
|
||||||
"modal-content#quickview",
|
|
||||||
"modal-actions#quickview"
|
|
||||||
],
|
|
||||||
"props": {
|
"props": {
|
||||||
"preventVerticalStretch": true,
|
"preventVerticalStretch": true,
|
||||||
"blockClass": "quickviewDetails"
|
"blockClass": "quickviewDetails"
|
||||||
@ -134,7 +116,7 @@
|
|||||||
"blockClass": "quickview"
|
"blockClass": "quickview"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"product-images#quickview" : {
|
"product-images#quickview": {
|
||||||
"props": {
|
"props": {
|
||||||
"blockClass": "quickview",
|
"blockClass": "quickview",
|
||||||
"showNavigationArrows": true
|
"showNavigationArrows": true
|
||||||
|
@ -108,10 +108,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"flex-layout.row#searchinfo": {
|
"flex-layout.row#searchinfo": {
|
||||||
"children": [
|
"children": ["flex-layout.col#productCount", "flex-layout.row#orderByAndSwitcher"]
|
||||||
"flex-layout.col#productCount",
|
|
||||||
"flex-layout.row#orderByAndSwitcher"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"flex-layout.row#orderByAndSwitcher": {
|
"flex-layout.row#orderByAndSwitcher": {
|
||||||
"children": ["order-by.v2", "gallery-layout-switcher"],
|
"children": ["order-by.v2", "gallery-layout-switcher"],
|
||||||
@ -275,19 +272,29 @@
|
|||||||
"props": {
|
"props": {
|
||||||
"name": "grid"
|
"name": "grid"
|
||||||
},
|
},
|
||||||
"children": ["icon-grid", "responsive-layout.desktop#textOptionGrid"]
|
"children": [
|
||||||
|
"icon-grid",
|
||||||
|
"responsive-layout.desktop#textOptionGrid"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"gallery-layout-option#list": {
|
"gallery-layout-option#list": {
|
||||||
"props": {
|
"props": {
|
||||||
"name": "list"
|
"name": "list"
|
||||||
},
|
},
|
||||||
"children": ["icon-inline-grid", "responsive-layout.desktop#textOptionList"]
|
"children": [
|
||||||
|
"icon-inline-grid",
|
||||||
|
"responsive-layout.desktop#textOptionList"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"responsive-layout.desktop#textOptionGrid": {
|
"responsive-layout.desktop#textOptionGrid": {
|
||||||
"children": ["rich-text#option-grid"]
|
"children": [
|
||||||
|
"rich-text#option-grid"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"responsive-layout.desktop#textOptionList": {
|
"responsive-layout.desktop#textOptionList": {
|
||||||
"children": ["rich-text#option-list"]
|
"children": [
|
||||||
|
"rich-text#option-list"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"rich-text#option-grid": {
|
"rich-text#option-grid": {
|
||||||
"props": {
|
"props": {
|
||||||
|
@ -2,8 +2,14 @@
|
|||||||
"example-component": {
|
"example-component": {
|
||||||
"component": "Example"
|
"component": "Example"
|
||||||
},
|
},
|
||||||
|
"pix-component": {
|
||||||
|
"component": "Pix"
|
||||||
|
},
|
||||||
"html": {
|
"html": {
|
||||||
"component": "html",
|
"component": "html",
|
||||||
"composition": "children"
|
"composition": "children"
|
||||||
|
},
|
||||||
|
"Placeholder": {
|
||||||
|
"component": "Placeholder"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
465
styles/configs/font-faces.css
Normal file
465
styles/configs/font-faces.css
Normal file
@ -0,0 +1,465 @@
|
|||||||
|
/* cyrillic-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4taVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||||
|
U+FE2E-FE2F;
|
||||||
|
}
|
||||||
|
/* cyrillic */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4kaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||||
|
}
|
||||||
|
/* greek-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4saVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+1F00-1FFF;
|
||||||
|
}
|
||||||
|
/* greek */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4jaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0370-03FF;
|
||||||
|
}
|
||||||
|
/* hebrew */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4iaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
|
||||||
|
}
|
||||||
|
/* vietnamese */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4vaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
|
||||||
|
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||||
|
}
|
||||||
|
/* latin-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4uaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
|
||||||
|
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||||
|
}
|
||||||
|
/* latin */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4gaVI.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
||||||
|
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
||||||
|
U+FEFF, U+FFFD;
|
||||||
|
}
|
||||||
|
/* cyrillic-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4taVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||||
|
U+FE2E-FE2F;
|
||||||
|
}
|
||||||
|
/* cyrillic */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4kaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||||
|
}
|
||||||
|
/* greek-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4saVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+1F00-1FFF;
|
||||||
|
}
|
||||||
|
/* greek */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4jaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0370-03FF;
|
||||||
|
}
|
||||||
|
/* hebrew */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4iaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
|
||||||
|
}
|
||||||
|
/* vietnamese */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4vaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
|
||||||
|
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||||
|
}
|
||||||
|
/* latin-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
|
||||||
|
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||||
|
}
|
||||||
|
/* latin */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVI.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
||||||
|
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
||||||
|
U+FEFF, U+FFFD;
|
||||||
|
}
|
||||||
|
/* cyrillic-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4taVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||||
|
U+FE2E-FE2F;
|
||||||
|
}
|
||||||
|
/* cyrillic */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4kaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||||
|
}
|
||||||
|
/* greek-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4saVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+1F00-1FFF;
|
||||||
|
}
|
||||||
|
/* greek */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4jaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0370-03FF;
|
||||||
|
}
|
||||||
|
/* hebrew */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4iaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
|
||||||
|
}
|
||||||
|
/* vietnamese */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4vaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
|
||||||
|
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||||
|
}
|
||||||
|
/* latin-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4uaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
|
||||||
|
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||||
|
}
|
||||||
|
/* latin */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0B4gaVI.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
||||||
|
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
||||||
|
U+FEFF, U+FFFD;
|
||||||
|
}
|
||||||
|
/* cyrillic-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 600;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4taVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||||
|
U+FE2E-FE2F;
|
||||||
|
}
|
||||||
|
/* cyrillic */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 600;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4kaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||||
|
}
|
||||||
|
/* greek-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 600;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4saVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+1F00-1FFF;
|
||||||
|
}
|
||||||
|
/* greek */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 600;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4jaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0370-03FF;
|
||||||
|
}
|
||||||
|
/* hebrew */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 600;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4iaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
|
||||||
|
}
|
||||||
|
/* vietnamese */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 600;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4vaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
|
||||||
|
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||||
|
}
|
||||||
|
/* latin-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 600;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4uaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
|
||||||
|
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||||
|
}
|
||||||
|
/* latin */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 600;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4gaVI.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
||||||
|
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
||||||
|
U+FEFF, U+FFFD;
|
||||||
|
}
|
||||||
|
/* cyrillic-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4taVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
||||||
|
U+FE2E-FE2F;
|
||||||
|
}
|
||||||
|
/* cyrillic */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4kaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
||||||
|
}
|
||||||
|
/* greek-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4saVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+1F00-1FFF;
|
||||||
|
}
|
||||||
|
/* greek */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4jaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0370-03FF;
|
||||||
|
}
|
||||||
|
/* hebrew */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4iaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
|
||||||
|
}
|
||||||
|
/* vietnamese */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4vaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
|
||||||
|
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
||||||
|
}
|
||||||
|
/* latin-ext */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4uaVIGxA.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
|
||||||
|
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||||||
|
}
|
||||||
|
/* latin */
|
||||||
|
@font-face {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-stretch: normal;
|
||||||
|
font-display: swap;
|
||||||
|
src: url(https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4gaVI.woff2)
|
||||||
|
format("woff2");
|
||||||
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
||||||
|
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
||||||
|
U+FEFF, U+FFFD;
|
||||||
|
}
|
@ -1,26 +1,28 @@
|
|||||||
{
|
{
|
||||||
"typeScale": [
|
"typeScale": [3, 2.25, 1.5, 1.25, 1, 0.875, 0.75],
|
||||||
3, 2.25, 1.5, 1.25, 1, 0.875, 0.75
|
|
||||||
],
|
|
||||||
"spacing": [0.125, 0.25, 0.5, 0.75, 1, 1.5, 2, 3, 4, 8, 16],
|
"spacing": [0.125, 0.25, 0.5, 0.75, 1, 1.5, 2, 3, 4, 8, 16],
|
||||||
"customMedia": [
|
"customMedia": [
|
||||||
{ "s": 20 },
|
{ "s": 20 },
|
||||||
{ "ns": {
|
{
|
||||||
|
"ns": {
|
||||||
"value": 40,
|
"value": 40,
|
||||||
"minWidth": true
|
"minWidth": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{ "m": {
|
{
|
||||||
|
"m": {
|
||||||
"value": 40,
|
"value": 40,
|
||||||
"minWidth": true
|
"minWidth": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{ "l": {
|
{
|
||||||
|
"l": {
|
||||||
"value": 64,
|
"value": 64,
|
||||||
"minWidth": true
|
"minWidth": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{ "xl": {
|
{
|
||||||
|
"xl": {
|
||||||
"value": 80,
|
"value": 80,
|
||||||
"minWidth": true
|
"minWidth": true
|
||||||
}
|
}
|
||||||
@ -245,99 +247,99 @@
|
|||||||
"maxWidths": [1, 2, 4, 8, 16, 32, 48, 64, 96],
|
"maxWidths": [1, 2, 4, 8, 16, 32, 48, 64, 96],
|
||||||
"heights": [1, 2, 4, 8, 16],
|
"heights": [1, 2, 4, 8, 16],
|
||||||
"sizes": [
|
"sizes": [
|
||||||
{"name": "small", "value": 2},
|
{ "name": "small", "value": 2 },
|
||||||
{"name": "regular", "value": 2.5},
|
{ "name": "regular", "value": 2.5 },
|
||||||
{"name": "large", "value": 3}
|
{ "name": "large", "value": 3 }
|
||||||
],
|
],
|
||||||
"typography":{
|
"typography": {
|
||||||
"measure": [30, 34, 20],
|
"measure": [30, 34, 20],
|
||||||
"styles": {
|
"styles": {
|
||||||
"heading-1": {
|
"heading-1": {
|
||||||
"fontFamily": "San Francisco, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif",
|
"fontFamily": "Open Sans, sans-serif",
|
||||||
"fontWeight": "700",
|
"fontWeight": "700",
|
||||||
"fontSize": "3rem",
|
"fontSize": "3rem",
|
||||||
"textTransform": "initial",
|
"textTransform": "initial",
|
||||||
"letterSpacing": "0"
|
"letterSpacing": "0"
|
||||||
},
|
},
|
||||||
"heading-2": {
|
"heading-2": {
|
||||||
"fontFamily": "San Francisco, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif",
|
"fontFamily": "Open Sans, sans-serif",
|
||||||
"fontWeight": "700",
|
"fontWeight": "700",
|
||||||
"fontSize": "2.25rem",
|
"fontSize": "2.25rem",
|
||||||
"textTransform": "initial",
|
"textTransform": "initial",
|
||||||
"letterSpacing": "0"
|
"letterSpacing": "0"
|
||||||
},
|
},
|
||||||
"heading-3": {
|
"heading-3": {
|
||||||
"fontFamily": "San Francisco, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif",
|
"fontFamily": "Open Sans, sans-serif",
|
||||||
"fontWeight": "700",
|
"fontWeight": "700",
|
||||||
"fontSize": "1.75rem",
|
"fontSize": "1.75rem",
|
||||||
"textTransform": "initial",
|
"textTransform": "initial",
|
||||||
"letterSpacing": "0"
|
"letterSpacing": "0"
|
||||||
},
|
},
|
||||||
"heading-4": {
|
"heading-4": {
|
||||||
"fontFamily": "San Francisco, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif",
|
"fontFamily": "Open Sans, sans-serif",
|
||||||
"fontWeight": "normal",
|
"fontWeight": "normal",
|
||||||
"fontSize": "1.5rem",
|
"fontSize": "1.5rem",
|
||||||
"textTransform": "initial",
|
"textTransform": "initial",
|
||||||
"letterSpacing": "0"
|
"letterSpacing": "0"
|
||||||
},
|
},
|
||||||
"heading-5": {
|
"heading-5": {
|
||||||
"fontFamily": "San Francisco, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif",
|
"fontFamily": "Open Sans, sans-serif",
|
||||||
"fontWeight": "normal",
|
"fontWeight": "normal",
|
||||||
"fontSize": "1.25rem",
|
"fontSize": "1.25rem",
|
||||||
"textTransform": "initial",
|
"textTransform": "initial",
|
||||||
"letterSpacing": "0"
|
"letterSpacing": "0"
|
||||||
},
|
},
|
||||||
"heading-6": {
|
"heading-6": {
|
||||||
"fontFamily": "San Francisco, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif",
|
"fontFamily": "Open Sans, sans-serif",
|
||||||
"fontWeight": "normal",
|
"fontWeight": "normal",
|
||||||
"fontSize": "1.25rem",
|
"fontSize": "1.25rem",
|
||||||
"textTransform": "initial",
|
"textTransform": "initial",
|
||||||
"letterSpacing": "0"
|
"letterSpacing": "0"
|
||||||
},
|
},
|
||||||
"body": {
|
"body": {
|
||||||
"fontFamily": "San Francisco, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif",
|
"fontFamily": "Open Sans, sans-serif",
|
||||||
"fontWeight": "normal",
|
"fontWeight": "normal",
|
||||||
"fontSize": "1rem",
|
"fontSize": "1rem",
|
||||||
"textTransform": "initial",
|
"textTransform": "initial",
|
||||||
"letterSpacing": "0"
|
"letterSpacing": "0"
|
||||||
},
|
},
|
||||||
"small": {
|
"small": {
|
||||||
"fontFamily": "San Francisco, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif",
|
"fontFamily": "Open Sans, sans-serif",
|
||||||
"fontWeight": "normal",
|
"fontWeight": "normal",
|
||||||
"fontSize": "0.875rem",
|
"fontSize": "0.875rem",
|
||||||
"textTransform": "initial",
|
"textTransform": "initial",
|
||||||
"letterSpacing": "0"
|
"letterSpacing": "0"
|
||||||
},
|
},
|
||||||
"mini": {
|
"mini": {
|
||||||
"fontFamily": "San Francisco, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif",
|
"fontFamily": "Open Sans, sans-serif",
|
||||||
"fontWeight": "normal",
|
"fontWeight": "normal",
|
||||||
"fontSize": "0.75rem",
|
"fontSize": "0.75rem",
|
||||||
"textTransform": "initial",
|
"textTransform": "initial",
|
||||||
"letterSpacing": "0"
|
"letterSpacing": "0"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"fontFamily": "San Francisco, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif",
|
"fontFamily": "Open Sans, sans-serif",
|
||||||
"fontWeight": "500",
|
"fontWeight": "500",
|
||||||
"fontSize": "1rem",
|
"fontSize": "1rem",
|
||||||
"textTransform": "uppercase",
|
"textTransform": "uppercase",
|
||||||
"letterSpacing": "0"
|
"letterSpacing": "0"
|
||||||
},
|
},
|
||||||
"action--small": {
|
"action--small": {
|
||||||
"fontFamily": "San Francisco, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif",
|
"fontFamily": "Open Sans, sans-serif",
|
||||||
"fontWeight": "500",
|
"fontWeight": "500",
|
||||||
"fontSize": "0.875rem",
|
"fontSize": "0.875rem",
|
||||||
"textTransform": "uppercase",
|
"textTransform": "uppercase",
|
||||||
"letterSpacing": "0"
|
"letterSpacing": "0"
|
||||||
},
|
},
|
||||||
"action--large": {
|
"action--large": {
|
||||||
"fontFamily": "San Francisco, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif",
|
"fontFamily": "Open Sans, sans-serif",
|
||||||
"fontWeight": "500",
|
"fontWeight": "500",
|
||||||
"fontSize": "1.25rem",
|
"fontSize": "1.25rem",
|
||||||
"textTransform": "uppercase",
|
"textTransform": "uppercase",
|
||||||
"letterSpacing": "0"
|
"letterSpacing": "0"
|
||||||
},
|
},
|
||||||
"code": {
|
"code": {
|
||||||
"fontFamily": "Consolas, monaco, monospace",
|
"fontFamily": "Open Sans, sans-serif",
|
||||||
"fontWeight": "normal",
|
"fontWeight": "normal",
|
||||||
"fontSize": "1rem",
|
"fontSize": "1rem",
|
||||||
"textTransform": "initial",
|
"textTransform": "initial",
|
||||||
|
@ -7,3 +7,45 @@
|
|||||||
*/
|
*/
|
||||||
/* Media Query M3 */
|
/* Media Query M3 */
|
||||||
/* Grid breakpoints */
|
/* Grid breakpoints */
|
||||||
|
.html {
|
||||||
|
background-color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.html--pdp-breadcrumb {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.html--addButton {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-store-components-3-x-discountInsideContainer) {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.html--prateleira-flexcol {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
.html--prateleira-flexcol {
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
.html--prateleira-flexcol {
|
||||||
|
min-width: 434.4px;
|
||||||
|
min-height: 568.4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
.html--slider-layout-wrapper {
|
||||||
|
margin: 0 350px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.html--cart-content {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
75
styles/css/store-components.css
Normal file
75
styles/css/store-components.css
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
/*
|
||||||
|
0 - 600PX: Phone
|
||||||
|
600 - 900px: Table portrait
|
||||||
|
900 - 1200px: Tablet landscape
|
||||||
|
[1200 - 1800] is where our nortal styles apply
|
||||||
|
1800px + : Big desktop
|
||||||
|
*/
|
||||||
|
/* Media Query M3 */
|
||||||
|
/* Grid breakpoints */
|
||||||
|
.newsletter {
|
||||||
|
background: black;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .label {
|
||||||
|
font-size: 0;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .label::before {
|
||||||
|
content: "Assine nossa newsletter";
|
||||||
|
font-size: 24px;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 38px;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .label::after {
|
||||||
|
content: "Receba ofertas e novidades por e-mail";
|
||||||
|
white-space: pre;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .inputGroup {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .inputGroup :global(.vtex-input) :global(.vtex-input-prefix__group) {
|
||||||
|
border: none;
|
||||||
|
border-bottom: 1px #929292 solid;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .inputGroup :global(.vtex-input) :global(.vtex-input-prefix__group) :global(.vtex-styleguide-9-x-input) {
|
||||||
|
background: black;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
color: #929292;
|
||||||
|
width: 774px;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .inputGroup :global(.vtex-input) :global(.vtex-input-prefix__group) :global(.vtex-styleguide-9-x-input)::before {
|
||||||
|
content: "Digite seu e-mail";
|
||||||
|
font-size: 16px;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .inputGroup :global(.vtex-store-components-3-x-buttonContainer) {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .inputGroup :global(.vtex-store-components-3-x-buttonContainer) :global(.vtex-button) {
|
||||||
|
background: black;
|
||||||
|
border: none;
|
||||||
|
border-bottom: 3px gray solid;
|
||||||
|
border-radius: 0;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
}
|
@ -7,10 +7,38 @@
|
|||||||
*/
|
*/
|
||||||
/* Media Query M3 */
|
/* Media Query M3 */
|
||||||
/* Grid breakpoints */
|
/* Grid breakpoints */
|
||||||
.homeLink .homeIcon {
|
.container {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.container .homeLink {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.container .homeLink .homeIcon {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
.container .homeLink::before {
|
||||||
.homeLink::before {
|
|
||||||
content: "Home";
|
content: "Home";
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
.container .homeLink::before {
|
||||||
|
vertical-align: super;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.container .arrow--1 .link {
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
.container .arrow--1 .link::before {
|
||||||
|
content: "Sapatos";
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #929292;
|
||||||
}
|
}
|
@ -1,3 +1,4 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
/*
|
/*
|
||||||
0 - 600PX: Phone
|
0 - 600PX: Phone
|
||||||
600 - 900px: Table portrait
|
600 - 900px: Table portrait
|
||||||
@ -7,6 +8,108 @@
|
|||||||
*/
|
*/
|
||||||
/* Media Query M3 */
|
/* Media Query M3 */
|
||||||
/* Grid breakpoints */
|
/* Grid breakpoints */
|
||||||
.vtex-breadcrumb-1-x-container {
|
:global(.vtex-breadcrumb-1-x-container) {
|
||||||
background-color: red;
|
padding: 0 40px;
|
||||||
|
}
|
||||||
|
:global(.vtex-breadcrumb-1-x-container) :nth-child(n) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
:global(.vtex-breadcrumb-1-x-container) :global(.vtex-breadcrumb-1-x-term) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-telemarketing-2-x-wrapper) :global(.vtex-store-components-3-x-container) {
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-store-components-3-x-container) {
|
||||||
|
padding-left: 0px;
|
||||||
|
padding-right: 0px;
|
||||||
|
}
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
:global(.vtex-store-components-3-x-container) {
|
||||||
|
max-width: 100%;
|
||||||
|
margin: 0 320px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-container) :global(.vtex-flex-layout-0-x-flexRowContent) :global(.vtex-flex-layout-0-x-stretchChildrenWidth) {
|
||||||
|
padding-right: 0 !important;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-container) :global(.vtex-flex-layout-0-x-flexRowContent) {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: flex-start;
|
||||||
|
padding: 0px 40px;
|
||||||
|
gap: 32px;
|
||||||
|
margin-top: 16px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
:global(.vtex-store-components-3-x-container) :global(.vtex-flex-layout-0-x-flexRowContent) {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-container) :global(.vtex-flex-layout-0-x-flexRowContent) :global(.vtex-flex-layout-0-x-flexRow) :global(.vtex-flex-layout-0-x-flexRowContent) {
|
||||||
|
display: block;
|
||||||
|
padding: 0;
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.addButton {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flexRow--buyButton {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.flexRow--buyButton .flexRowContent--buyButton {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.flexRow--buyButton .flexRowContent--buyButton :global(.vtex-button) {
|
||||||
|
background-color: black;
|
||||||
|
height: 49px;
|
||||||
|
border: none;
|
||||||
|
border-radius: unset;
|
||||||
|
}
|
||||||
|
.flexRow--buyButton .flexRowContent--buyButton :global(.vtex-add-to-cart-button-0-x-buttonText) {
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
.flexRow--buyButton .flexRowContent--buyButton :global(.vtex-add-to-cart-button-0-x-buttonText)::after {
|
||||||
|
content: "ADICIONAR À SACOLA";
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
:global(.vtex-flex-layout-0-x-flexRowContent) {
|
||||||
|
margin-top: 0 !important;
|
||||||
|
margin-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
.flexColChild {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 376px) {
|
||||||
|
:global(.vtex-add-to-cart-button-0-x-buttonText) {
|
||||||
|
max-width: 168px;
|
||||||
|
}
|
||||||
|
.flexRow--buyButton .flexRowContent--buyButton :global(.vtex-button) {
|
||||||
|
height: 74px !important;
|
||||||
|
}
|
||||||
}
|
}
|
@ -1,16 +0,0 @@
|
|||||||
/*
|
|
||||||
0 - 600PX: Phone
|
|
||||||
600 - 900px: Table portrait
|
|
||||||
900 - 1200px: Tablet landscape
|
|
||||||
[1200 - 1800] is where our nortal styles apply
|
|
||||||
1800px + : Big desktop
|
|
||||||
*/
|
|
||||||
/* Media Query M3 */
|
|
||||||
/* Grid breakpoints */
|
|
||||||
.vtex-breadcrumb-1-x-container {
|
|
||||||
background-color: red;
|
|
||||||
}
|
|
||||||
|
|
||||||
.vtex-breadcrumb-1-x-container {
|
|
||||||
padding: 0 !important;
|
|
||||||
}
|
|
@ -1,3 +1,30 @@
|
|||||||
.product-identifier--productReference {
|
/*
|
||||||
margin-bottom: 1rem;
|
0 - 600PX: Phone
|
||||||
|
600 - 900px: Table portrait
|
||||||
|
900 - 1200px: Tablet landscape
|
||||||
|
[1200 - 1800] is where our nortal styles apply
|
||||||
|
1800px + : Big desktop
|
||||||
|
*/
|
||||||
|
/* Media Query M3 */
|
||||||
|
/* Grid breakpoints */
|
||||||
|
.product-identifier__label,
|
||||||
|
.product-identifier__separator {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-identifier__value {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
float: right;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
color: rgba(146, 146, 146, 0.48);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
.product-identifier__value {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
}
|
}
|
@ -1,79 +1,74 @@
|
|||||||
.listPrice {
|
/*
|
||||||
color: #727273;
|
0 - 600PX: Phone
|
||||||
margin-bottom: .25rem;
|
600 - 900px: Table portrait
|
||||||
font-size: 1rem;
|
900 - 1200px: Tablet landscape
|
||||||
}
|
[1200 - 1800] is where our nortal styles apply
|
||||||
|
1800px + : Big desktop
|
||||||
|
*/
|
||||||
|
/* Media Query M3 */
|
||||||
|
/* Grid breakpoints */
|
||||||
.sellingPrice {
|
.sellingPrice {
|
||||||
color: #3f3f40;
|
font-style: normal;
|
||||||
font-size: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sellingPriceValue {
|
|
||||||
font-size: 2.25rem;
|
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
font-size: 25px;
|
||||||
|
line-height: 38px;
|
||||||
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.installments {
|
.flexRowContent {
|
||||||
color: #727273;
|
margin: 0 !important;
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.savings {
|
.listPriceValue {
|
||||||
font-weight: 500;
|
text-decoration-line: line-through;
|
||||||
color: #79B03A;
|
text-decoration-color: #bababa;
|
||||||
|
}
|
||||||
|
.listPriceValue::before {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #bababa;
|
||||||
|
line-height: 19px;
|
||||||
|
content: "de";
|
||||||
|
margin-right: 6px;
|
||||||
|
}
|
||||||
|
.listPriceValue::after {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #bababa;
|
||||||
|
line-height: 19px;
|
||||||
|
content: "por";
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
.listPriceValue .currencyCode,
|
||||||
|
.listPriceValue .currencyLiteral,
|
||||||
|
.listPriceValue .currencyInteger {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #bababa;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sellingPriceValue--summary {
|
@media screen and (max-width: 1024px) {
|
||||||
font-size: 1.25rem;
|
.listPrice {
|
||||||
font-weight: 600;
|
height: 19px;
|
||||||
color: #2E2E2E;
|
}
|
||||||
|
.listPriceValue .currencyCode,
|
||||||
|
.listPriceValue .currencyLiteral,
|
||||||
|
.listPriceValue .currencyInteger {
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
}
|
||||||
|
.sellingPrice {
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
.currencyGroup {
|
||||||
.savings--summary {
|
color: #bababa;
|
||||||
background: #8BC34A;
|
|
||||||
border-radius: 1000px;
|
|
||||||
align-items: center;
|
|
||||||
display: flex;
|
|
||||||
|
|
||||||
padding-left: 0.5rem;
|
|
||||||
padding-right: 0.5rem;
|
|
||||||
font-size: 0.875rem;
|
|
||||||
font-weight: 600;
|
|
||||||
vertical-align: baseline;
|
|
||||||
color: #FFFFFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
.savings-discount--summary {
|
|
||||||
font-size: 0.875rem;
|
|
||||||
font-weight: 600;
|
|
||||||
vertical-align: baseline;
|
|
||||||
color: #FFFFFF;
|
|
||||||
padding-left: 0.5rem;
|
|
||||||
padding-right: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.listPrice--summary {
|
|
||||||
margin-bottom: 0.25rem;
|
|
||||||
font-size: .875rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.installments--summary {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
font-size: 0.875rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.savings--summaryPercentage {
|
|
||||||
background: #0f3e99;
|
|
||||||
border-radius: 1000px;
|
|
||||||
align-items: center;
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.savingsPercentage--summaryPercentage {
|
|
||||||
font-size: 0.875rem;
|
|
||||||
font-weight: 600;
|
|
||||||
vertical-align: baseline;
|
|
||||||
color: #FFFFFF;
|
|
||||||
padding: 0.25rem 0.5rem 0.25rem 0.5rem;
|
|
||||||
}
|
}
|
59
styles/css/vtex.product-quantity.css
Normal file
59
styles/css/vtex.product-quantity.css
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
/*
|
||||||
|
0 - 600PX: Phone
|
||||||
|
600 - 900px: Table portrait
|
||||||
|
900 - 1200px: Tablet landscape
|
||||||
|
[1200 - 1800] is where our nortal styles apply
|
||||||
|
1800px + : Big desktop
|
||||||
|
*/
|
||||||
|
/* Media Query M3 */
|
||||||
|
/* Grid breakpoints */
|
||||||
|
.quantitySelectorContainer {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.quantitySelectorContainer .quantitySelectorTitle {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.quantitySelectorContainer :global(.vtex-numeric-stepper-wrapper) :global(.vtex-numeric-stepper-container) :global(.vtex-numeric-stepper__input) {
|
||||||
|
width: 32px;
|
||||||
|
height: 49px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-bottom-width: 1px;
|
||||||
|
border-color: #cccccc;
|
||||||
|
color: #929292;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
}
|
||||||
|
.quantitySelectorContainer :global(.vtex-numeric-stepper-wrapper) :global(.vtex-numeric-stepper-container) :global(.vtex-numeric-stepper__plus-button-container) {
|
||||||
|
height: 49px;
|
||||||
|
}
|
||||||
|
.quantitySelectorContainer :global(.vtex-numeric-stepper-wrapper) :global(.vtex-numeric-stepper-container) :global(.vtex-numeric-stepper__plus-button-container) :global(.vtex-numeric-stepper__plus-button) {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
height: 49px;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-bottom-width: 1px;
|
||||||
|
border-color: #cccccc;
|
||||||
|
color: #000000;
|
||||||
|
border-radius: 0;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
}
|
||||||
|
.quantitySelectorContainer :global(.vtex-numeric-stepper-wrapper) :global(.vtex-numeric-stepper-container) :global(.vtex-numeric-stepper__minus-button-container) {
|
||||||
|
height: 49px;
|
||||||
|
}
|
||||||
|
.quantitySelectorContainer :global(.vtex-numeric-stepper-wrapper) :global(.vtex-numeric-stepper-container) :global(.vtex-numeric-stepper__minus-button-container) :global(.vtex-numeric-stepper__minus-button) {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
height: 49px;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-bottom-width: 1px;
|
||||||
|
border-color: #cccccc;
|
||||||
|
color: #000000;
|
||||||
|
border-radius: 0;
|
||||||
|
background-color: #ffffff;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
}
|
@ -7,3 +7,26 @@
|
|||||||
*/
|
*/
|
||||||
/* Media Query M3 */
|
/* Media Query M3 */
|
||||||
/* Grid breakpoints */
|
/* Grid breakpoints */
|
||||||
|
.heading--specifications-texto {
|
||||||
|
margin: 0 0 16px;
|
||||||
|
}
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
.heading--specifications-texto {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 38px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
.heading--specifications-texto {
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 38px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 376px) {
|
||||||
|
.heading--specifications-texto {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
}
|
@ -1,31 +1,236 @@
|
|||||||
|
/*
|
||||||
|
0 - 600PX: Phone
|
||||||
|
600 - 900px: Table portrait
|
||||||
|
900 - 1200px: Tablet landscape
|
||||||
|
[1200 - 1800] is where our nortal styles apply
|
||||||
|
1800px + : Big desktop
|
||||||
|
*/
|
||||||
|
/* Media Query M3 */
|
||||||
|
/* Grid breakpoints */
|
||||||
.sliderLayoutContainer {
|
.sliderLayoutContainer {
|
||||||
|
padding: 16px 40px 113px;
|
||||||
|
margin-bottom: -49px;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer {
|
||||||
|
padding: 0 24px 36px;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack {
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) {
|
||||||
|
margin: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) {
|
||||||
|
align-items: center;
|
||||||
|
max-width: 434.4px !important;
|
||||||
|
min-height: 543.4px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-imageContainer) {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-imageContainer) :global(.vtex-product-summary-2-x-imageNormal) {
|
||||||
|
height: 314px;
|
||||||
|
background-color: #ededed;
|
||||||
|
}
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-imageContainer) :global(.vtex-product-summary-2-x-imageNormal) {
|
||||||
|
min-width: 434.4px;
|
||||||
|
min-height: 434.4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-nameContainer) {
|
||||||
|
display: flex;
|
||||||
|
padding: 0;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-nameContainer) :global(.vtex-product-summary-2-x-productBrand) {
|
||||||
.sliderLayoutContainer--carousel {
|
display: flex;
|
||||||
background-color: #F0F0F0;
|
max-width: 282.4px;
|
||||||
min-height: 450px;
|
height: auto;
|
||||||
|
align-items: center;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
text-align: center;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-priceContainer) {
|
||||||
|
display: flex;
|
||||||
|
order: 3;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-priceContainer) :global(.vtex-store-components-3-x-listPrice) {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
text-decoration-line: line-through;
|
||||||
|
gap: 1px;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-priceContainer) :global(.vtex-store-components-3-x-listPrice) :global(.vtex-store-components-3-x-listPriceLabel) {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
text-align: center;
|
||||||
|
color: #bababa;
|
||||||
|
text-transform: lowercase;
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-priceContainer) :global(.vtex-store-components-3-x-listPrice) :global(.vtex-store-components-3-x-listPriceValue) {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
text-align: center;
|
||||||
|
color: #bababa;
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-priceContainer) :global(.vtex-store-components-3-x-listPrice)::after {
|
||||||
|
content: "por";
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
text-align: center;
|
||||||
|
color: #bababa;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-priceContainer) :global(.vtex-store-components-3-x-sellingPrice) {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-priceContainer) :global(.vtex-store-components-3-x-sellingPrice) :global(.vtex-product-summary-2-x-currencyContainer) {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 33px;
|
||||||
|
text-align: center;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-priceContainer) :global(.vtex-store-components-3-x-sellingPrice) :global(.vtex-product-summary-2-x-currencyContainer) :nth-child(n) {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 33px;
|
||||||
|
text-align: center;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-priceContainer) :global(.vtex-store-components-3-x-sellingPrice) :global(.vtex-store-components-3-x-sellingPriceLabel) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-priceContainer) :global(.vtex-store-components-3-x-installmentsPrice) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-buyButtonContainer) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-description) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .sliderTrackContainer .sliderTrack .slide .slideChildrenContainer :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) :global(.vtex-product-summary-2-x-SKUSelectorContainer) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .paginationDotsContainer {
|
||||||
|
bottom: 113px;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .paginationDotsContainer .paginationDot {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
background-color: #000;
|
||||||
|
border: 0.5px solid #000;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer .paginationDotsContainer .paginationDot--isActive {
|
||||||
|
background-color: #fff;
|
||||||
|
height: 17px !important;
|
||||||
|
width: 17px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sliderTrackContainer {
|
.slide .slideChildrenContainer :global(.vtex-product-summary-2-x-clearLink) :global(.vtex-product-summary-2-x-container) :global(.vtex-product-summary-2-x-element) .html--prateleira-flexcol {
|
||||||
max-width: 100%;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
.paginationDotsContainer {
|
@media screen and (max-width: 1024px) {
|
||||||
margin-top: .5rem;
|
:global(.vtex-product-summary-2-x-productBrand) {
|
||||||
margin-bottom: .5rem;
|
font-size: 14px !important;
|
||||||
|
line-height: 19px !important;
|
||||||
|
height: auto !important;
|
||||||
|
}
|
||||||
|
:global(.vtex-product-summary-2-x-imageContainer) {
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
.sliderTrackContainer {
|
||||||
|
padding: 0 24px 24px !important;
|
||||||
|
}
|
||||||
|
.sliderTrack {
|
||||||
|
gap: 12px !important;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer {
|
||||||
|
margin-bottom: -49px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 376px) {
|
||||||
|
.sliderLayoutContainer {
|
||||||
|
margin-bottom: -81px;
|
||||||
|
}
|
||||||
|
.sliderTrack {
|
||||||
|
gap: 8px !important;
|
||||||
|
}
|
||||||
|
:global(.vtex-product-summary-2-x-imageContainer) :global(.vtex-product-summary-2-x-imageNormal) {
|
||||||
|
height: 124.8px !important;
|
||||||
|
}
|
||||||
|
.sliderTrackContainer {
|
||||||
|
padding-bottom: 16px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-product-price-1-x-interestRate)::after {
|
||||||
|
content: "sem juros";
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
color: #929292;
|
||||||
}
|
}
|
||||||
|
|
||||||
.layoutContainer--shelf {
|
:global(.vtex-product-price-1-x-installments) {
|
||||||
margin-top: 20px;
|
font-size: 0;
|
||||||
margin-bottom: 20px;
|
|
||||||
max-width: 96rem;
|
|
||||||
min-height: 550px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.slide--shelf {
|
:global(.vtex-product-price-1-x-installmentValue) {
|
||||||
margin-bottom: 25px;
|
font-family: "Open Sans";
|
||||||
padding-left: .5rem;
|
font-style: normal;
|
||||||
padding-right: .5rem;
|
font-weight: 400;
|
||||||
min-height: 550px;
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
:global(.vtex-product-price-1-x-installmentValue)::before {
|
||||||
|
content: " de ";
|
||||||
|
}
|
||||||
|
:global(.vtex-product-price-1-x-installmentValue)::after {
|
||||||
|
content: " ";
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-product-price-1-x-installmentsNumber) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
:global(.vtex-product-price-1-x-installmentsNumber)::after {
|
||||||
|
content: " x ";
|
||||||
}
|
}
|
@ -1,3 +1,4 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
/*
|
/*
|
||||||
0 - 600PX: Phone
|
0 - 600PX: Phone
|
||||||
600 - 900px: Table portrait
|
600 - 900px: Table portrait
|
||||||
@ -8,5 +9,610 @@
|
|||||||
/* Media Query M3 */
|
/* Media Query M3 */
|
||||||
/* Grid breakpoints */
|
/* Grid breakpoints */
|
||||||
.newsletter {
|
.newsletter {
|
||||||
background: red;
|
background: black;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .label {
|
||||||
|
font-size: 0;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .label::before {
|
||||||
|
content: "Assine nossa newsletter";
|
||||||
|
font-size: 24px;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 38px;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .label::after {
|
||||||
|
content: "Receba ofertas e novidades por e-mail";
|
||||||
|
white-space: pre;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
@media (max-width: 350px) {
|
||||||
|
.newsletter .container .form .label::after {
|
||||||
|
white-space: unset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.newsletter .container .form .inputGroup {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .inputGroup :global(.vtex-input) {
|
||||||
|
width: 686px;
|
||||||
|
}
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
.newsletter .container .form .inputGroup :global(.vtex-input) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.newsletter .container .form .inputGroup :global(.vtex-input) :global(.vtex-input-prefix__group) {
|
||||||
|
border: none;
|
||||||
|
border-bottom: 1px #929292 solid;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .inputGroup :global(.vtex-input) :global(.vtex-input-prefix__group) :global(.vtex-styleguide-9-x-input) {
|
||||||
|
background: black;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
color: #929292;
|
||||||
|
width: 774px;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .inputGroup :global(.vtex-input) :global(.vtex-input-prefix__group) :global(.vtex-styleguide-9-x-input)::before {
|
||||||
|
content: "Digite seu e-mail";
|
||||||
|
font-size: 16px;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .inputGroup :global(.vtex-store-components-3-x-buttonContainer) {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.newsletter .container .form .inputGroup :global(.vtex-store-components-3-x-buttonContainer) :global(.vtex-button) {
|
||||||
|
width: 88px;
|
||||||
|
background: black;
|
||||||
|
border: none;
|
||||||
|
border-bottom: 3px gray solid;
|
||||||
|
border-radius: 0;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.productBrand {
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 34px;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
float: right;
|
||||||
|
color: #575757;
|
||||||
|
}
|
||||||
|
|
||||||
|
.productImageTag {
|
||||||
|
object-fit: unset !important;
|
||||||
|
max-height: 100% !important;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-store-components-3-x-productImageTag--zoom) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-stack-layout-0-x-stackItem) {
|
||||||
|
min-height: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
.skuSelectorContainer {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
}
|
||||||
|
|
||||||
|
.skuSelectorSubcontainer--tamanho {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--tamanho .skuSelectorNameContainer {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--tamanho .skuSelectorNameContainer .skuSelectorTextContainer .skuSelectorName {
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--tamanho .skuSelectorNameContainer .skuSelectorTextContainer .skuSelectorName::after {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
content: "OUTROS TAMANHOS: ";
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--tamanho .skuSelectorNameContainer .skuSelectorOptionsList {
|
||||||
|
margin: 0;
|
||||||
|
margin-left: 0;
|
||||||
|
column-gap: 16px;
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--tamanho .skuSelectorNameContainer .skuSelectorOptionsList .skuSelectorItem {
|
||||||
|
border-radius: 100%;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--tamanho .skuSelectorNameContainer .skuSelectorOptionsList .skuSelectorItem .frameAround--sku-selector {
|
||||||
|
border-color: #000000;
|
||||||
|
border-width: 2px;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
border-radius: 24px;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 5;
|
||||||
|
margin: 0 auto;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--tamanho .skuSelectorNameContainer .skuSelectorOptionsList .skuSelectorItem .skuSelectorInternalBox {
|
||||||
|
border-radius: 100%;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
border: 1px solid #989898;
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--tamanho .skuSelectorNameContainer .skuSelectorOptionsList .skuSelectorItem .skuSelectorInternalBox .diagonalCross {
|
||||||
|
width: 30px;
|
||||||
|
height: 30px;
|
||||||
|
transform: rotate(274deg);
|
||||||
|
left: 4px;
|
||||||
|
top: 5px;
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--tamanho .skuSelectorNameContainer .skuSelectorOptionsList .skuSelectorItem .skuSelectorInternalBox .skuSelectorItemTextValue {
|
||||||
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 0 auto;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: rgba(185, 185, 185, 0.6);
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--tamanho .skuSelectorNameContainer .skuSelectorOptionsList .skuSelectorItem--selected .skuSelectorInternalBox .skuSelectorItemTextValue {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.skuSelectorSubcontainer--cor .skuSelectorNameContainer {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--cor .skuSelectorNameContainer .skuSelectorTextContainer .skuSelectorName,
|
||||||
|
.skuSelectorSubcontainer--cor .skuSelectorNameContainer .skuSelectorTextContainer .skuSelectorNameSeparator,
|
||||||
|
.skuSelectorSubcontainer--cor .skuSelectorNameContainer .skuSelectorTextContainer .skuSelectorSelectorImageValue {
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--cor .skuSelectorNameContainer .skuSelectorTextContainer::after {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
content: "OUTRAS CORES:";
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--cor .skuSelectorNameContainer .skuSelectorOptionsList {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--cor .skuSelectorNameContainer .skuSelectorOptionsList .skuSelectorItem--sku-selector .frameAround--sku-selector {
|
||||||
|
border: 2px solid #000000;
|
||||||
|
border-radius: 24px;
|
||||||
|
z-index: 5;
|
||||||
|
}
|
||||||
|
.skuSelectorSubcontainer--cor .skuSelectorNameContainer .skuSelectorOptionsList .skuSelectorItem--sku-selector .skuSelectorInternalBox {
|
||||||
|
border-radius: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingContainer {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-tab-layout-0-x-contentContainer) {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: flex-start;
|
||||||
|
padding: 0px 32px;
|
||||||
|
gap: 32px;
|
||||||
|
}
|
||||||
|
:global(.vtex-tab-layout-0-x-contentContainer) .productImagesContainer {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
:global(.vtex-tab-layout-0-x-contentContainer) .productDescriptionContainer {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
:global(.vtex-tab-layout-0-x-contentContainer) .productDescriptionContainer .productDescriptionTitle {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 32px;
|
||||||
|
color: #575757;
|
||||||
|
}
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
:global(.vtex-tab-layout-0-x-contentContainer) .productDescriptionContainer .productDescriptionTitle {
|
||||||
|
font-size: 32px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-tab-layout-0-x-contentContainer) .productDescriptionContainer .productDescriptionText {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
:global(.vtex-tab-layout-0-x-contentContainer) .productDescriptionContainer .productDescriptionText {
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
:global(.vtex-tab-layout-0-x-contentContainer) .productDescriptionContainer .productDescriptionText :first-child {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.carouselGaleryThumbs {
|
||||||
|
margin-top: 16px;
|
||||||
|
}
|
||||||
|
@media (max-width: 639px) {
|
||||||
|
.carouselGaleryThumbs {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.carouselGaleryThumbs :first-child {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: flex-start;
|
||||||
|
padding: 0px;
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
.carouselGaleryThumbs :first-child :first-child .productImagesThumb {
|
||||||
|
height: 90px !important;
|
||||||
|
width: 90px !important;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
.carouselGaleryThumbs :first-child :first-child .productImagesThumb .figure {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: flex-start;
|
||||||
|
padding: 0px;
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
.carouselGaleryThumbs :first-child :first-child .productImagesThumb .figure .thumbImg {
|
||||||
|
height: 90px;
|
||||||
|
width: 90px;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingContainer {
|
||||||
|
display: flex;
|
||||||
|
margin: 0;
|
||||||
|
align-items: center;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.shippingContainer :global(.vtex-address-form__postalCode) {
|
||||||
|
display: flex;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
@media (max-width: 540px) {
|
||||||
|
.shippingContainer :global(.vtex-address-form__postalCode) {
|
||||||
|
width: calc(100% - 47px);
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.shippingContainer :global(.vtex-address-form__postalCode) :global(.vtex-input) {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.shippingContainer :global(.vtex-address-form__postalCode) :global(.vtex-input) :global(.vtex-input__label) {
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
.shippingContainer :global(.vtex-address-form__postalCode) :global(.vtex-input) :global(.vtex-input__label)::before {
|
||||||
|
content: "CALCULAR FRETE:";
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
.shippingContainer :global(.vtex-address-form__postalCode) :global(.vtex-input) :global(.vtex-input-prefix__group) {
|
||||||
|
width: 231px;
|
||||||
|
height: 49px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 16.5px 0 16.5px 16px;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
@media (max-width: 540px) {
|
||||||
|
.shippingContainer :global(.vtex-address-form__postalCode) :global(.vtex-input) :global(.vtex-input-prefix__group) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.shippingContainer :global(.vtex-address-form__postalCode) :global(.vtex-input) :global(.vtex-input-prefix__group) :global(.vtex-address-form-4-x-input) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 8px 0;
|
||||||
|
}
|
||||||
|
.shippingContainer :global(.vtex-address-form__postalCode) :global(.vtex-input) :global(.vtex-input__error) {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
.shippingContainer :global(.vtex-address-form__postalCode) :global(.vtex-address-form__postalCode-forgottenURL) {
|
||||||
|
display: flex;
|
||||||
|
position: absolute;
|
||||||
|
padding: 0;
|
||||||
|
left: 312px;
|
||||||
|
top: 41.5px;
|
||||||
|
}
|
||||||
|
@media (max-width: 540px) {
|
||||||
|
.shippingContainer :global(.vtex-address-form__postalCode) :global(.vtex-address-form__postalCode-forgottenURL) {
|
||||||
|
margin-top: 8px;
|
||||||
|
margin-right: -49px;
|
||||||
|
justify-content: right;
|
||||||
|
position: static;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.shippingContainer :global(.vtex-address-form__postalCode) :global(.vtex-address-form__postalCode-forgottenURL) :last-child {
|
||||||
|
color: #000;
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
|
.shippingContainer :global(.vtex-address-form__postalCode) :global(.vtex-address-form__postalCode-forgottenURL) :last-child :last-child {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.shippingContainer :global(.vtex-button) {
|
||||||
|
display: flex;
|
||||||
|
width: 49px;
|
||||||
|
height: 49px;
|
||||||
|
align-self: end;
|
||||||
|
background: #000;
|
||||||
|
border: 1px solid #000;
|
||||||
|
border-radius: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
@media (max-width: 540px) {
|
||||||
|
.shippingContainer :global(.vtex-button) {
|
||||||
|
align-self: center;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.shippingContainer :global(.vtex-button) :global(.vtex-button__label) {
|
||||||
|
padding: 0;
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
.shippingContainer :global(.vtex-button) :global(.vtex-button__label)::before {
|
||||||
|
content: "OK";
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTable {
|
||||||
|
border: 0;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
.shippingTable .shippingTableHead {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.shippingTable .shippingTableHead .shippingTableRow {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 103px 56px 136px;
|
||||||
|
grid-template-areas: "A B C";
|
||||||
|
column-gap: 32px;
|
||||||
|
}
|
||||||
|
.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryName,
|
||||||
|
.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryEstimate,
|
||||||
|
.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryPrice {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #202020;
|
||||||
|
text-transform: uppercase;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryName {
|
||||||
|
text-align: left;
|
||||||
|
grid-area: A;
|
||||||
|
}
|
||||||
|
.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryEstimate {
|
||||||
|
grid-area: C;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryPrice {
|
||||||
|
text-align: left;
|
||||||
|
grid-area: B;
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryPrice::after {
|
||||||
|
content: "Valor";
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.shippingTable .shippingTableBody .shippingTableRow {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 103px 56px 136px;
|
||||||
|
grid-template-areas: "A B C";
|
||||||
|
column-gap: 32px;
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
.shippingTable .shippingTableBody .shippingTableRow :nth-child(n) {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: #afafaf;
|
||||||
|
}
|
||||||
|
.shippingTable .shippingTableBody .shippingTableRow .shippingTableCell {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.shippingTable .shippingTableBody .shippingTableRow .shippingTableRadioBtn {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.shippingTable .shippingTableBody .shippingTableRow .shippingTableCellDeliveryName {
|
||||||
|
grid-area: A;
|
||||||
|
text-transform: capitalize;
|
||||||
|
}
|
||||||
|
.shippingTable .shippingTableBody .shippingTableRow .shippingTableCellDeliveryEstimate {
|
||||||
|
white-space: nowrap;
|
||||||
|
grid-area: C;
|
||||||
|
}
|
||||||
|
.shippingTable .shippingTableBody .shippingTableRow .shippingTableCellDeliveryPrice {
|
||||||
|
grid-area: B;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
:global(.vtex-flex-layout-0-x-stretchChildrenWidth) {
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
.productBrand {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.productDescriptionTitle {
|
||||||
|
font-size: 20px !important;
|
||||||
|
line-height: 32px !important;
|
||||||
|
}
|
||||||
|
.productDescriptionText {
|
||||||
|
font-size: 14px !important;
|
||||||
|
line-height: 19px !important;
|
||||||
|
}
|
||||||
|
.container .form {
|
||||||
|
margin: 0 16px;
|
||||||
|
max-width: 992px;
|
||||||
|
}
|
||||||
|
.container .form .label {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.container .form .label::after {
|
||||||
|
font-size: 16px !important;
|
||||||
|
line-height: 22px !important;
|
||||||
|
}
|
||||||
|
.container .form .inputGroup {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.container .form .inputGroup :global(.vtex-styleguide-9-x-input) {
|
||||||
|
font-size: 12px !important;
|
||||||
|
line-height: 16px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) :global(.vtex-store-components-3-x-title) {
|
||||||
|
font-size: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) :global(.vtex-store-components-3-x-title)::after {
|
||||||
|
content: "Produto indisponível";
|
||||||
|
font-family: "Open Sans", "sans-serif";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #868686;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) :global(.vtex-store-components-3-x-subscribeLabel) {
|
||||||
|
font-size: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) :global(.vtex-store-components-3-x-subscribeLabel)::before {
|
||||||
|
content: "Deseja saber quando estiver disponível?";
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #868686;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) :global(.vtex-store-components-3-x-form) {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) :global(.vtex-store-components-3-x-form) :global(.vtex-store-components-3-x-content) {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
grid-column-gap: 8px;
|
||||||
|
grid-row-gap: 13px;
|
||||||
|
}
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) :global(.vtex-store-components-3-x-form) :global(.vtex-store-components-3-x-content) {
|
||||||
|
min-width: 765px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) :global(.vtex-store-components-3-x-form) :global(.vtex-store-components-3-x-content) :global(.vtex-store-components-3-x-inputName) {
|
||||||
|
grid-area: 1/1/2/2;
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) :global(.vtex-store-components-3-x-form) :global(.vtex-store-components-3-x-content) :global(.vtex-store-components-3-x-inputName) :global(.vtex-input) :global(.vtex-input-prefix__group) :global(.vtex-styleguide-9-x-input) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #989898;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) :global(.vtex-store-components-3-x-form) :global(.vtex-store-components-3-x-content) :global(.vtex-store-components-3-x-inputEmail) {
|
||||||
|
grid-area: 1/2/2/3;
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) :global(.vtex-store-components-3-x-form) :global(.vtex-store-components-3-x-content) :global(.vtex-store-components-3-x-inputEmail) :global(.vtex-input) :global(.vtex-input-prefix__group) :global(.vtex-styleguide-9-x-input) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #989898;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) :global(.vtex-store-components-3-x-form) :global(.vtex-store-components-3-x-content) :global(.vtex-store-components-3-x-submit) {
|
||||||
|
grid-area: 2/1/3/3;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) :global(.vtex-store-components-3-x-form) :global(.vtex-store-components-3-x-content) :global(.vtex-store-components-3-x-submit) :global(.vtex-button) {
|
||||||
|
font-size: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) :global(.vtex-store-components-3-x-form) :global(.vtex-store-components-3-x-content) :global(.vtex-store-components-3-x-submit) :global(.vtex-button)::before {
|
||||||
|
content: "AVISE-ME";
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
height: 49px;
|
||||||
|
background: #000000;
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
color: #ffffff;
|
||||||
}
|
}
|
116
styles/css/vtex.tab-layout.css
Normal file
116
styles/css/vtex.tab-layout.css
Normal file
@ -0,0 +1,116 @@
|
|||||||
|
/*
|
||||||
|
0 - 600PX: Phone
|
||||||
|
600 - 900px: Table portrait
|
||||||
|
900 - 1200px: Tablet landscape
|
||||||
|
[1200 - 1800] is where our nortal styles apply
|
||||||
|
1800px + : Big desktop
|
||||||
|
*/
|
||||||
|
/* Media Query M3 */
|
||||||
|
/* Grid breakpoints */
|
||||||
|
.listContainer--listaDescricao {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: flex-start;
|
||||||
|
padding: 0px 64px;
|
||||||
|
gap: 99px;
|
||||||
|
border-bottom: 1px solid #b9b9b9;
|
||||||
|
margin-bottom: 32px;
|
||||||
|
}
|
||||||
|
.listContainer--listaDescricao .listItem {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 38px;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
color: #bfbfbf;
|
||||||
|
}
|
||||||
|
.listContainer--listaDescricao .listItem :global(.vtex-button) {
|
||||||
|
border-radius: 0;
|
||||||
|
border: none;
|
||||||
|
background-color: white;
|
||||||
|
padding: 0px 16px;
|
||||||
|
}
|
||||||
|
.listContainer--listaDescricao .listItem :global(.vtex-button) :global(.vtex-button__label) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 38px;
|
||||||
|
color: #bfbfbf;
|
||||||
|
padding-top: 0 !important;
|
||||||
|
padding-bottom: 0 !important;
|
||||||
|
padding-left: 0 !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
|
text-transform: capitalize;
|
||||||
|
}
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
.listContainer--listaDescricao .listItem :global(.vtex-button) :global(.vtex-button__label) {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.listContainer--listaDescricao .listItemActive :global(.vtex-button) {
|
||||||
|
border-radius: 0;
|
||||||
|
border: none;
|
||||||
|
border-bottom: 2px solid #000000;
|
||||||
|
background-color: white;
|
||||||
|
padding: 0px 16px;
|
||||||
|
}
|
||||||
|
.listContainer--listaDescricao .listItemActive :global(.vtex-button) :global(.vtex-button__label) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 38px;
|
||||||
|
color: #000000;
|
||||||
|
padding-top: 0 !important;
|
||||||
|
padding-bottom: 0 !important;
|
||||||
|
padding-left: 0 !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
|
text-transform: capitalize;
|
||||||
|
}
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
.listContainer--listaDescricao .listItemActive :global(.vtex-button) :global(.vtex-button__label) {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
.listContainer--listaDescricao {
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 16px;
|
||||||
|
padding: 16px 0;
|
||||||
|
border-top: 1px solid #b9b9b9;
|
||||||
|
margin-top: 16px;
|
||||||
|
}
|
||||||
|
.listItem :global(.vtex-button) {
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
.listItemActive :global(.vtex-button) {
|
||||||
|
padding: 0 !important;
|
||||||
|
border: none !important;
|
||||||
|
}
|
||||||
|
.contentContainer {
|
||||||
|
flex-direction: column;
|
||||||
|
padding: 0;
|
||||||
|
padding-bottom: 16px;
|
||||||
|
border-bottom: 1px solid #b9b9b9;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-productImagesContainer) {
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-productDescriptionContainer) {
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 376px) {
|
||||||
|
.listContainer--listaDescricao {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
.contentContainer {
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
.html {
|
||||||
|
background-color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.html--pdp-breadcrumb {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.html--addButton {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-store-components-3-x-discountInsideContainer) {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.html--prateleira-flexcol {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
min-width: 434.4px;
|
||||||
|
min-height: 568.4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.html--slider-layout-wrapper {
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
margin: 0 350px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.html--cart-content {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -1,9 +1,38 @@
|
|||||||
.homeLink {
|
.container {
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.homeLink {
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
.homeIcon {
|
.homeIcon {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.homeLink::before {
|
||||||
.homeLink::before {
|
|
||||||
content: "Home";
|
content: "Home";
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #929292;
|
||||||
|
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
vertical-align: super;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.arrow--1 {
|
||||||
|
.link {
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
.link::before {
|
||||||
|
content: "Sapatos";
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
122
styles/sass/pages/product/vtex.flex-layout.scss
Normal file
122
styles/sass/pages/product/vtex.flex-layout.scss
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
// .flexRow {
|
||||||
|
// width: auto;
|
||||||
|
// padding: 0 40px;
|
||||||
|
// }
|
||||||
|
:global(.vtex-breadcrumb-1-x-container) {
|
||||||
|
padding: 0 40px;
|
||||||
|
|
||||||
|
:nth-child(n) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-breadcrumb-1-x-term) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-telemarketing-2-x-wrapper) {
|
||||||
|
:global(.vtex-store-components-3-x-container) {
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-store-components-3-x-container) {
|
||||||
|
padding-left: 0px;
|
||||||
|
padding-right: 0px;
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
max-width: 100%;
|
||||||
|
margin: 0 320px;
|
||||||
|
}
|
||||||
|
:global(.vtex-flex-layout-0-x-flexRowContent) {
|
||||||
|
:global(.vtex-flex-layout-0-x-stretchChildrenWidth) {
|
||||||
|
padding-right: 0 !important;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-flex-layout-0-x-flexRowContent) {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: flex-start;
|
||||||
|
padding: 0px 40px;
|
||||||
|
gap: 32px;
|
||||||
|
margin-top: 16px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
:global(.vtex-flex-layout-0-x-flexRow) {
|
||||||
|
:global(.vtex-flex-layout-0-x-flexRowContent) {
|
||||||
|
display: block;
|
||||||
|
padding: 0;
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.addButton {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flexRow--buyButton {
|
||||||
|
width: 100%;
|
||||||
|
.flexRowContent--buyButton {
|
||||||
|
margin: 0;
|
||||||
|
:global(.vtex-button) {
|
||||||
|
background-color: black;
|
||||||
|
height: 49px;
|
||||||
|
border: none;
|
||||||
|
border-radius: unset;
|
||||||
|
}
|
||||||
|
:global(.vtex-add-to-cart-button-0-x-buttonText) {
|
||||||
|
font-size: 0;
|
||||||
|
&::after {
|
||||||
|
content: "ADICIONAR À SACOLA";
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
:global(.vtex-flex-layout-0-x-flexRowContent) {
|
||||||
|
margin-top: 0 !important;
|
||||||
|
margin-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
.flexColChild {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 376px) {
|
||||||
|
:global(.vtex-add-to-cart-button-0-x-buttonText) {
|
||||||
|
max-width: 168px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flexRow--buyButton {
|
||||||
|
.flexRowContent--buyButton {
|
||||||
|
:global(.vtex-button) {
|
||||||
|
height: 74px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
20
styles/sass/pages/product/vtex.product-identifier.scss
Normal file
20
styles/sass/pages/product/vtex.product-identifier.scss
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
.product-identifier__label,
|
||||||
|
.product-identifier__separator {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.product-identifier__value {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
float: right;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
color: rgba(146, 146, 146, 0.48);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
.product-identifier__value {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
}
|
69
styles/sass/pages/product/vtex.product-price.scss
Normal file
69
styles/sass/pages/product/vtex.product-price.scss
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
.sellingPrice {
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 25px;
|
||||||
|
line-height: 38px;
|
||||||
|
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.flexRowContent {
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.listPriceValue {
|
||||||
|
text-decoration-line: line-through;
|
||||||
|
text-decoration-color: #bababa;
|
||||||
|
&::before {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #bababa;
|
||||||
|
line-height: 19px;
|
||||||
|
content: "de";
|
||||||
|
margin-right: 6px;
|
||||||
|
}
|
||||||
|
&::after {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #bababa;
|
||||||
|
line-height: 19px;
|
||||||
|
content: "por";
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
.currencyCode,
|
||||||
|
.currencyLiteral,
|
||||||
|
.currencyInteger {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #bababa;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
.listPrice {
|
||||||
|
height: 19px;
|
||||||
|
}
|
||||||
|
.listPriceValue {
|
||||||
|
.currencyCode,
|
||||||
|
.currencyLiteral,
|
||||||
|
.currencyInteger {
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.sellingPrice {
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.currencyGroup {
|
||||||
|
color: #bababa;
|
||||||
|
}
|
56
styles/sass/pages/product/vtex.product-quantity.scss
Normal file
56
styles/sass/pages/product/vtex.product-quantity.scss
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
.quantitySelectorContainer {
|
||||||
|
margin: 0;
|
||||||
|
.quantitySelectorTitle {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
:global(.vtex-numeric-stepper-wrapper) {
|
||||||
|
:global(.vtex-numeric-stepper-container) {
|
||||||
|
:global(.vtex-numeric-stepper__input) {
|
||||||
|
width: 32px;
|
||||||
|
height: 49px;
|
||||||
|
border-left-width: 0px;
|
||||||
|
border-right-width: 0px;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-bottom-width: 1px;
|
||||||
|
border-color: #cccccc;
|
||||||
|
color: #929292;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
}
|
||||||
|
:global(.vtex-numeric-stepper__plus-button-container) {
|
||||||
|
height: 49px;
|
||||||
|
:global(.vtex-numeric-stepper__plus-button) {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
height: 49px;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-bottom-width: 1px;
|
||||||
|
border-color: #cccccc;
|
||||||
|
color: #000000;
|
||||||
|
border-radius: 0;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-numeric-stepper__minus-button-container) {
|
||||||
|
height: 49px;
|
||||||
|
:global(.vtex-numeric-stepper__minus-button) {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
height: 49px;
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-bottom-width: 1px;
|
||||||
|
border-color: #cccccc;
|
||||||
|
color: #000000;
|
||||||
|
border-radius: 0;
|
||||||
|
background-color: #ffffff;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// .quantitySelectorStepper {
|
||||||
|
// }
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
.heading--specifications-texto {
|
||||||
|
margin: 0 0 16px;
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 38px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
.heading--specifications-texto {
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 38px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 376px) {
|
||||||
|
.heading--specifications-texto {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
}
|
262
styles/sass/pages/product/vtex.slider-layout.scss
Normal file
262
styles/sass/pages/product/vtex.slider-layout.scss
Normal file
@ -0,0 +1,262 @@
|
|||||||
|
.sliderLayoutContainer {
|
||||||
|
padding: 16px 40px 113px;
|
||||||
|
margin-bottom: -49px;
|
||||||
|
|
||||||
|
.sliderTrackContainer {
|
||||||
|
padding: 0 24px 36px;
|
||||||
|
|
||||||
|
.sliderTrack {
|
||||||
|
gap: 16px;
|
||||||
|
|
||||||
|
.slide {
|
||||||
|
.slideChildrenContainer {
|
||||||
|
:global(.vtex-product-summary-2-x-container) {
|
||||||
|
margin: 0;
|
||||||
|
width: 100%;
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
align-items: center;
|
||||||
|
max-width: 434.4px !important;
|
||||||
|
min-height: 543.4px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-product-summary-2-x-element) {
|
||||||
|
:global(.vtex-product-summary-2-x-imageContainer) {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
:global(.vtex-product-summary-2-x-imageNormal) {
|
||||||
|
height: 314px;
|
||||||
|
background-color: #ededed;
|
||||||
|
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
min-width: 434.4px;
|
||||||
|
min-height: 434.4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-product-summary-2-x-nameContainer) {
|
||||||
|
display: flex;
|
||||||
|
padding: 0;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
:global(.vtex-product-summary-2-x-productBrand) {
|
||||||
|
display: flex;
|
||||||
|
max-width: 282.4px;
|
||||||
|
height: auto;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
text-align: center;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-product-summary-2-x-priceContainer) {
|
||||||
|
display: flex;
|
||||||
|
order: 3;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
:global(.vtex-store-components-3-x-listPrice) {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
text-decoration-line: line-through;
|
||||||
|
gap: 1px;
|
||||||
|
|
||||||
|
:global(.vtex-store-components-3-x-listPriceLabel) {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
text-align: center;
|
||||||
|
color: #bababa;
|
||||||
|
text-transform: lowercase;
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-listPriceValue) {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
text-align: center;
|
||||||
|
color: #bababa;
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-listPrice)::after {
|
||||||
|
content: "por";
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
text-align: center;
|
||||||
|
color: #bababa;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-store-components-3-x-sellingPrice) {
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
:global(.vtex-product-summary-2-x-currencyContainer) {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 33px;
|
||||||
|
text-align: center;
|
||||||
|
color: #000;
|
||||||
|
:nth-child(n) {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 33px;
|
||||||
|
text-align: center;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-store-components-3-x-sellingPriceLabel) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-store-components-3-x-installmentsPrice) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-product-summary-2-x-buyButtonContainer) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
:global(.vtex-product-summary-2-x-description) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
:global(.vtex-product-summary-2-x-SKUSelectorContainer) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.paginationDotsContainer {
|
||||||
|
bottom: 113px;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.paginationDot {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
background-color: #000;
|
||||||
|
border: 0.5px solid #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.paginationDot--isActive {
|
||||||
|
background-color: #fff;
|
||||||
|
height: 17px !important;
|
||||||
|
width: 17px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.slide {
|
||||||
|
.slideChildrenContainer {
|
||||||
|
:global(.vtex-product-summary-2-x-clearLink) {
|
||||||
|
:global(.vtex-product-summary-2-x-container) {
|
||||||
|
:global(.vtex-product-summary-2-x-element) {
|
||||||
|
.html--prateleira-flexcol {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
:global(.vtex-product-summary-2-x-productBrand) {
|
||||||
|
font-size: 14px !important;
|
||||||
|
line-height: 19px !important;
|
||||||
|
height: auto !important;
|
||||||
|
}
|
||||||
|
:global(.vtex-product-summary-2-x-imageContainer) {
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
.sliderTrackContainer {
|
||||||
|
padding: 0 24px 24px !important;
|
||||||
|
}
|
||||||
|
.sliderTrack {
|
||||||
|
gap: 12px !important;
|
||||||
|
}
|
||||||
|
.sliderLayoutContainer {
|
||||||
|
margin-bottom: -49px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 376px) {
|
||||||
|
.sliderLayoutContainer {
|
||||||
|
margin-bottom: -81px;
|
||||||
|
}
|
||||||
|
.sliderTrack {
|
||||||
|
gap: 8px !important;
|
||||||
|
}
|
||||||
|
:global(.vtex-product-summary-2-x-imageContainer) {
|
||||||
|
:global(.vtex-product-summary-2-x-imageNormal) {
|
||||||
|
height: 124.8px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.sliderTrackContainer {
|
||||||
|
padding-bottom: 16px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-product-price-1-x-interestRate) {
|
||||||
|
&::after {
|
||||||
|
content: "sem juros";
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-product-price-1-x-installments) {
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-product-price-1-x-installmentValue) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
color: #929292;
|
||||||
|
&::before {
|
||||||
|
content: " de ";
|
||||||
|
}
|
||||||
|
&::after {
|
||||||
|
content: " ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-product-price-1-x-installmentsNumber) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
color: #929292;
|
||||||
|
&::after {
|
||||||
|
content: " x ";
|
||||||
|
}
|
||||||
|
}
|
@ -1,3 +1,646 @@
|
|||||||
.newsletter{
|
.newsletter {
|
||||||
background: red;
|
background: black;
|
||||||
|
.container {
|
||||||
|
.form {
|
||||||
|
.label {
|
||||||
|
font-size: 0;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 8px;
|
||||||
|
&::before {
|
||||||
|
content: "Assine nossa newsletter";
|
||||||
|
font-size: 24px;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 38px;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
&::after {
|
||||||
|
content: "Receba ofertas e novidades por e-mail";
|
||||||
|
white-space: pre;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
color: #929292;
|
||||||
|
@media (max-width: 350px) {
|
||||||
|
white-space: unset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.inputGroup {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
:global(.vtex-input) {
|
||||||
|
width: 686px;
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
:global(.vtex-input-prefix__group) {
|
||||||
|
border: none;
|
||||||
|
border-bottom: 1px #929292 solid;
|
||||||
|
border-radius: 0;
|
||||||
|
:global(.vtex-styleguide-9-x-input) {
|
||||||
|
background: black;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
color: #929292;
|
||||||
|
width: 774px;
|
||||||
|
&::before {
|
||||||
|
content: "Digite seu e-mail";
|
||||||
|
font-size: 16px;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-buttonContainer) {
|
||||||
|
padding: 0;
|
||||||
|
:global(.vtex-button) {
|
||||||
|
width: 88px;
|
||||||
|
background: black;
|
||||||
|
border: none;
|
||||||
|
border-bottom: 3px gray solid;
|
||||||
|
border-radius: 0;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.productBrand {
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 34px;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
float: right;
|
||||||
|
color: #575757;
|
||||||
|
}
|
||||||
|
.productImageTag {
|
||||||
|
object-fit: unset !important;
|
||||||
|
max-height: 100% !important;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-productImageTag--zoom) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
:global(.vtex-stack-layout-0-x-stackItem) {
|
||||||
|
min-height: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
.skuSelectorContainer {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
}
|
||||||
|
|
||||||
|
.skuSelectorSubcontainer--tamanho {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
.skuSelectorNameContainer {
|
||||||
|
margin: 0;
|
||||||
|
.skuSelectorTextContainer {
|
||||||
|
.skuSelectorName {
|
||||||
|
font-size: 0;
|
||||||
|
&::after {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
content: "OUTROS TAMANHOS: ";
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.skuSelectorOptionsList {
|
||||||
|
margin: 0;
|
||||||
|
margin-left: 0;
|
||||||
|
column-gap: 16px;
|
||||||
|
.skuSelectorItem {
|
||||||
|
border-radius: 100%;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
margin: 0;
|
||||||
|
// border: 1px solid #989898;
|
||||||
|
.frameAround--sku-selector {
|
||||||
|
border-color: #000000;
|
||||||
|
border-width: 2px;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
border-radius: 24px;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 5;
|
||||||
|
margin: 0 auto;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
}
|
||||||
|
.skuSelectorInternalBox {
|
||||||
|
border-radius: 100%;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
border: 1px solid #989898;
|
||||||
|
.diagonalCross {
|
||||||
|
width: 30px;
|
||||||
|
height: 30px;
|
||||||
|
transform: rotate(274deg);
|
||||||
|
left: 4px;
|
||||||
|
top: 5px;
|
||||||
|
}
|
||||||
|
.skuSelectorItemTextValue {
|
||||||
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 0 auto;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: rgba(185, 185, 185, 0.6);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.skuSelectorItem--selected {
|
||||||
|
.skuSelectorInternalBox {
|
||||||
|
.skuSelectorItemTextValue {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.skuSelectorSubcontainer--cor {
|
||||||
|
.skuSelectorNameContainer {
|
||||||
|
margin: 0;
|
||||||
|
.skuSelectorTextContainer {
|
||||||
|
.skuSelectorName,
|
||||||
|
.skuSelectorNameSeparator,
|
||||||
|
.skuSelectorSelectorImageValue {
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
&::after {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
content: "OUTRAS CORES:";
|
||||||
|
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.skuSelectorOptionsList {
|
||||||
|
margin: 0;
|
||||||
|
.skuSelectorItem--sku-selector {
|
||||||
|
.frameAround--sku-selector {
|
||||||
|
border: 2px solid #000000;
|
||||||
|
border-radius: 24px;
|
||||||
|
z-index: 5;
|
||||||
|
}
|
||||||
|
.skuSelectorInternalBox {
|
||||||
|
border-radius: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.shippingContainer {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-tab-layout-0-x-contentContainer) {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: flex-start;
|
||||||
|
padding: 0px 32px;
|
||||||
|
gap: 32px;
|
||||||
|
.productImagesContainer {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
.productDescriptionContainer {
|
||||||
|
width: 50%;
|
||||||
|
.productDescriptionTitle {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 32px;
|
||||||
|
color: #575757;
|
||||||
|
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
font-size: 32px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.productDescriptionText {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 22px;
|
||||||
|
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
color: #929292;
|
||||||
|
:first-child {
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// .swiper-container-initialized {
|
||||||
|
// .swiper-wrapper {
|
||||||
|
.carouselGaleryThumbs {
|
||||||
|
margin-top: 16px;
|
||||||
|
@media (max-width: 639px) {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
:first-child {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: flex-start;
|
||||||
|
padding: 0px;
|
||||||
|
gap: 16px;
|
||||||
|
:first-child {
|
||||||
|
.productImagesThumb {
|
||||||
|
height: 90px !important;
|
||||||
|
width: 90px !important;
|
||||||
|
margin-bottom: 0;
|
||||||
|
.figure {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: flex-start;
|
||||||
|
padding: 0px;
|
||||||
|
gap: 16px;
|
||||||
|
.thumbImg {
|
||||||
|
height: 90px;
|
||||||
|
width: 90px;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.shippingContainer {
|
||||||
|
display: flex;
|
||||||
|
margin: 0;
|
||||||
|
align-items: center;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
:global(.vtex-address-form__postalCode) {
|
||||||
|
display: flex;
|
||||||
|
padding-bottom: 0;
|
||||||
|
|
||||||
|
@media (max-width: 540px) {
|
||||||
|
width: calc(100% - 47px);
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-input) {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
:global(.vtex-input__label) {
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-input__label)::before {
|
||||||
|
content: "CALCULAR FRETE:";
|
||||||
|
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #929292;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-input-prefix__group) {
|
||||||
|
@media (max-width: 540px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
width: 231px;
|
||||||
|
height: 49px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 16.5px 0 16.5px 16px;
|
||||||
|
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 0;
|
||||||
|
|
||||||
|
:global(.vtex-address-form-4-x-input) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 8px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-input__error) {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-address-form__postalCode-forgottenURL) {
|
||||||
|
display: flex;
|
||||||
|
position: absolute;
|
||||||
|
padding: 0;
|
||||||
|
left: 312px;
|
||||||
|
top: 41.5px;
|
||||||
|
|
||||||
|
@media (max-width: 540px) {
|
||||||
|
margin-top: 8px;
|
||||||
|
margin-right: -49px;
|
||||||
|
justify-content: right;
|
||||||
|
position: static;
|
||||||
|
}
|
||||||
|
|
||||||
|
:last-child {
|
||||||
|
color: #000;
|
||||||
|
line-height: normal;
|
||||||
|
:last-child {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-button) {
|
||||||
|
display: flex;
|
||||||
|
width: 49px;
|
||||||
|
height: 49px;
|
||||||
|
align-self: end;
|
||||||
|
background: #000;
|
||||||
|
border: 1px solid #000;
|
||||||
|
border-radius: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
@media (max-width: 540px) {
|
||||||
|
align-self: center;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-button__label) {
|
||||||
|
padding: 0;
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-button__label)::before {
|
||||||
|
content: "OK";
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.shippingTable {
|
||||||
|
border: 0;
|
||||||
|
width: auto;
|
||||||
|
.shippingTableHead {
|
||||||
|
display: block;
|
||||||
|
.shippingTableRow {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 103px 56px 136px;
|
||||||
|
grid-template-areas: "A B C";
|
||||||
|
column-gap: 32px;
|
||||||
|
.shippingTableHeadDeliveryName,
|
||||||
|
.shippingTableHeadDeliveryEstimate,
|
||||||
|
.shippingTableHeadDeliveryPrice {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #202020;
|
||||||
|
text-transform: uppercase;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.shippingTableHeadDeliveryName {
|
||||||
|
text-align: left;
|
||||||
|
grid-area: A;
|
||||||
|
}
|
||||||
|
.shippingTableHeadDeliveryEstimate {
|
||||||
|
grid-area: C;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
.shippingTableHeadDeliveryPrice {
|
||||||
|
text-align: left;
|
||||||
|
grid-area: B;
|
||||||
|
font-size: 0;
|
||||||
|
&::after {
|
||||||
|
content: "Valor";
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.shippingTableBody {
|
||||||
|
.shippingTableRow {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 103px 56px 136px;
|
||||||
|
grid-template-areas: "A B C";
|
||||||
|
column-gap: 32px;
|
||||||
|
margin-top: 15px;
|
||||||
|
:nth-child(n) {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: #afafaf;
|
||||||
|
}
|
||||||
|
.shippingTableCell {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.shippingTableRadioBtn {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.shippingTableCellDeliveryName {
|
||||||
|
grid-area: A;
|
||||||
|
text-transform: capitalize;
|
||||||
|
}
|
||||||
|
.shippingTableCellDeliveryEstimate {
|
||||||
|
white-space: nowrap;
|
||||||
|
grid-area: C;
|
||||||
|
}
|
||||||
|
.shippingTableCellDeliveryPrice {
|
||||||
|
grid-area: B;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
:global(.vtex-flex-layout-0-x-stretchChildrenWidth) {
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.productBrand {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.productDescriptionTitle {
|
||||||
|
font-size: 20px !important;
|
||||||
|
line-height: 32px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.productDescriptionText {
|
||||||
|
font-size: 14px !important;
|
||||||
|
line-height: 19px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
.form {
|
||||||
|
margin: 0 16px;
|
||||||
|
max-width: 992px;
|
||||||
|
.label {
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
font-size: 16px !important;
|
||||||
|
line-height: 22px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.inputGroup {
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
:global(.vtex-styleguide-9-x-input) {
|
||||||
|
font-size: 12px !important;
|
||||||
|
line-height: 16px !important;
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.vtex-store-components-3-x-subscriberContainer) {
|
||||||
|
:global(.vtex-store-components-3-x-title) {
|
||||||
|
font-size: 0;
|
||||||
|
margin: 0;
|
||||||
|
&::after {
|
||||||
|
content: "Produto indisponível";
|
||||||
|
font-family: "Open Sans", "sans-serif";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #868686;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-subscribeLabel) {
|
||||||
|
font-size: 0;
|
||||||
|
margin: 0;
|
||||||
|
&::before {
|
||||||
|
content: "Deseja saber quando estiver disponível?";
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #868686;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-form) {
|
||||||
|
margin: 0;
|
||||||
|
:global(.vtex-store-components-3-x-content) {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
grid-column-gap: 8px;
|
||||||
|
grid-row-gap: 13px;
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
min-width: 765px;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-inputName) {
|
||||||
|
grid-area: 1 / 1 / 2 / 2;
|
||||||
|
margin: 0 !important;
|
||||||
|
:global(.vtex-input) {
|
||||||
|
:global(.vtex-input-prefix__group) {
|
||||||
|
:global(.vtex-styleguide-9-x-input) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #989898;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-inputEmail) {
|
||||||
|
grid-area: 1 / 2 / 2 / 3;
|
||||||
|
margin: 0 !important;
|
||||||
|
:global(.vtex-input) {
|
||||||
|
:global(.vtex-input-prefix__group) {
|
||||||
|
:global(.vtex-styleguide-9-x-input) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #989898;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-submit) {
|
||||||
|
grid-area: 2 / 1 / 3 / 3;
|
||||||
|
:global(.vtex-button) {
|
||||||
|
font-size: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
:global(.vtex-button)::before {
|
||||||
|
content: "AVISE-ME";
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
height: 49px;
|
||||||
|
background: #000000;
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
110
styles/sass/pages/product/vtex.tab-layout.scss
Normal file
110
styles/sass/pages/product/vtex.tab-layout.scss
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
.listContainer--listaDescricao {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: flex-start;
|
||||||
|
padding: 0px 64px;
|
||||||
|
gap: 99px;
|
||||||
|
border-bottom: 1px solid #b9b9b9;
|
||||||
|
margin-bottom: 32px;
|
||||||
|
.listItem {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 38px;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
color: #bfbfbf;
|
||||||
|
:global(.vtex-button) {
|
||||||
|
border-radius: 0;
|
||||||
|
border: none;
|
||||||
|
background-color: white;
|
||||||
|
padding: 0px 16px;
|
||||||
|
:global(.vtex-button__label) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 38px;
|
||||||
|
color: #bfbfbf;
|
||||||
|
padding-top: 0 !important;
|
||||||
|
padding-bottom: 0 !important;
|
||||||
|
padding-left: 0 !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
|
text-transform: capitalize;
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.listItemActive {
|
||||||
|
:global(.vtex-button) {
|
||||||
|
border-radius: 0;
|
||||||
|
border: none;
|
||||||
|
border-bottom: 2px solid #000000;
|
||||||
|
background-color: white;
|
||||||
|
padding: 0px 16px;
|
||||||
|
:global(.vtex-button__label) {
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 38px;
|
||||||
|
color: #000000;
|
||||||
|
padding-top: 0 !important;
|
||||||
|
padding-bottom: 0 !important;
|
||||||
|
padding-left: 0 !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
|
text-transform: capitalize;
|
||||||
|
@media (min-width: 2560px) {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
.listContainer--listaDescricao {
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 16px;
|
||||||
|
padding: 16px 0;
|
||||||
|
border-top: 1px solid #b9b9b9;
|
||||||
|
margin-top: 16px;
|
||||||
|
}
|
||||||
|
.listItem {
|
||||||
|
:global(.vtex-button) {
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.listItemActive {
|
||||||
|
:global(.vtex-button) {
|
||||||
|
padding: 0 !important;
|
||||||
|
border: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.contentContainer {
|
||||||
|
flex-direction: column;
|
||||||
|
padding: 0;
|
||||||
|
padding-bottom: 16px;
|
||||||
|
border-bottom: 1px solid #b9b9b9;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-productImagesContainer) {
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
:global(.vtex-store-components-3-x-productDescriptionContainer) {
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 376px) {
|
||||||
|
.listContainer--listaDescricao {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
.contentContainer {
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user