diff --git a/public/fonts/fontello.eot b/public/fonts/fontello.eot index 58911d0..55d7df5 100644 Binary files a/public/fonts/fontello.eot and b/public/fonts/fontello.eot differ diff --git a/public/fonts/fontello.svg b/public/fonts/fontello.svg index 9a636a0..1c60d92 100644 --- a/public/fonts/fontello.svg +++ b/public/fonts/fontello.svg @@ -70,7 +70,7 @@ - + @@ -284,7 +284,7 @@ - + @@ -414,6 +414,10 @@ + + + + @@ -558,6 +562,8 @@ + + @@ -786,8 +792,18 @@ + + + + + + + + + + @@ -834,8 +850,16 @@ + + + + + + + + diff --git a/public/fonts/fontello.ttf b/public/fonts/fontello.ttf index 3fe00d9..302f1af 100644 Binary files a/public/fonts/fontello.ttf and b/public/fonts/fontello.ttf differ diff --git a/public/fonts/fontello.woff b/public/fonts/fontello.woff index 630cf0a..19593b9 100644 Binary files a/public/fonts/fontello.woff and b/public/fonts/fontello.woff differ diff --git a/public/fonts/fontello.woff2 b/public/fonts/fontello.woff2 index ed1be89..96372bd 100644 Binary files a/public/fonts/fontello.woff2 and b/public/fonts/fontello.woff2 differ diff --git a/resources/js/Global/components/Blocks/Name.vue b/resources/js/Global/components/Blocks/Name.vue index ff9267a..b6d1189 100644 --- a/resources/js/Global/components/Blocks/Name.vue +++ b/resources/js/Global/components/Blocks/Name.vue @@ -57,6 +57,13 @@ font-size: 12px; } + .name-block.en-origin .text .En { + font-size: 13px; + text-transform: none; + letter-spacing: 0px; + margin-right: 0px; + } + /*----------------------------------------------------*/ /* Size MD */ /*----------------------------------------------------*/ @@ -71,12 +78,30 @@ font-size: 10px; letter-spacing: 3px; text-transform: uppercase; - color: #5a5a5a; margin-right: -3px; } .name-block.md .En.number { font-size: 36px; } + /*----------------------------------------------------*/ + /* Size SM */ + /*----------------------------------------------------*/ + .name-block.sm { + text-align:right; + padding: 0px 2px; + } + .name-block.sm .Fa { + font-size: 16px; + } + .name-block.sm .En { + font-size: 10px; + letter-spacing: 3px; + text-transform: uppercase; + margin-right: -3px; + } + .name-block.sm .En.number { + font-size: 36px; + } /*----------------------------------------------------*/ /* Size MD */ @@ -97,6 +122,16 @@ } + /*----------------------------------------------------*/ + /* Fa-Only */ + /*----------------------------------------------------*/ + .name-block.fa-only .En.number { + font-size: 22px; + line-height: 22px; + margin-left: 0px; + } + + /*----------------------------------------------------*/ /* number-absolute */ /*----------------------------------------------------*/ diff --git a/resources/js/Global/components/Blocks/Price.vue b/resources/js/Global/components/Blocks/Price.vue index 31d742d..62014f4 100644 --- a/resources/js/Global/components/Blocks/Price.vue +++ b/resources/js/Global/components/Blocks/Price.vue @@ -1,10 +1,10 @@ @@ -13,8 +13,8 @@ export default { props: { theme: { default: '' }, - original_price: { default: '' }, - price: { default: '1000' }, + original_price: String, + price: { default: 1000 }, label: { default: 'تومان' }, }, }; @@ -85,6 +85,24 @@ line-height: 25px; } + /*----------------------------------------------------*/ + /* SM Size */ + /*----------------------------------------------------*/ + .we-price.sm .number { + font-size: 20px; + line-height: 15px; + } + .we-price.sm .percent { + display: none; + } + .we-price.sm .label { + font-size: 11px; + line-height: 10px; + margin-top: 2px; + display: none; + } + + /*----------------------------------------------------*/ /* Colors */ diff --git a/resources/js/Global/components/Dividers/SectionTitle-Col.vue b/resources/js/Global/components/Dividers/SectionTitle-Col.vue index fc6ed11..b4dcd7a 100644 --- a/resources/js/Global/components/Dividers/SectionTitle-Col.vue +++ b/resources/js/Global/components/Dividers/SectionTitle-Col.vue @@ -1,11 +1,10 @@ @@ -18,7 +17,9 @@ export default { titleFa: { default: "عنوان بخش" }, titleEn: { default: "Part Title" }, color: { default: "cyan" }, - number: { default: "01" }, + number: String, + theme: String, + icon: String, }, data: function () { return {} @@ -29,31 +30,64 @@ export default { /* -------------------------------------------------------- SectionTitle :: Begin -------------------------------------------------------- */ +.section-title { + display: flex; + justify-content: right; + align-items: center; +} -.WM-Subtitle .Step { +.section-title .step { font-size: 50px; opacity: 0.2; - float: right; line-height: 60px; } -.WM-Subtitle .Title { +.section-title .v-icon { + font-size: 50px; + opacity: 0.2; +} + + +.section-title .Title { float: right; margin-right: -30px; margin-top: 8px; } -.WM-Subtitle .Title .FA { +.section-title .Title .Fa { font-size: 20px; line-height: 1.2; } -.WM-Subtitle .Title .EN { +.section-title .Title .En { font-size: 12px; letter-spacing: 5px; text-transform: uppercase; - font-family: 'Montserrat-Regular', sans-serif; + margin-right: -5px; +} + + +.section-title.icon-visible .v-icon { + opacity: 1; +} +.section-title.icon-visible .Title { + margin-right: 0px; + margin-top: 0px; +} +/* -------------------------------------------------------- + SM Size :: Begin +-------------------------------------------------------- */ +.section-title.sm .step { + font-size: 45px; + line-height: 55px; +} +.section-title.sm .Title .Fa { + font-size: 18px; + line-height: 20px; } +.section-title.sm .Title .En { + font-size: 10px; + } diff --git a/resources/js/Global/components/Inputs/Quantity-Select.vue b/resources/js/Global/components/Inputs/Quantity-Select.vue index 543eb63..43a025a 100644 --- a/resources/js/Global/components/Inputs/Quantity-Select.vue +++ b/resources/js/Global/components/Inputs/Quantity-Select.vue @@ -45,5 +45,20 @@ } + /*----------------------------------------------------*/ + /* SM Size */ + /*----------------------------------------------------*/ + .quantity-select.sm .value { + font-size: 30px; + } + .quantity-select.sm .value .unit { + display: none; + } + .quantity-select.sm .value { + padding-top: 0px; + margin-top: 0px; + } + + diff --git a/resources/js/Global/components/Inputs/RadioGroup.vue b/resources/js/Global/components/Inputs/RadioGroup.vue index febf6a4..2d8acb1 100644 --- a/resources/js/Global/components/Inputs/RadioGroup.vue +++ b/resources/js/Global/components/Inputs/RadioGroup.vue @@ -1,9 +1,9 @@