Merge branch 'development' of https://github.com/ourworld-tsc/www_ourzone into development

This commit is contained in:
sasha-astiadi 2023-07-20 18:37:05 +02:00
commit ad30de582a
6 changed files with 21 additions and 17 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 MiB

After

Width:  |  Height:  |  Size: 1.6 MiB

View File

@ -13,7 +13,7 @@ weight: 1
<div class="px-4 md:px-16 lg:px-28">
# **Welcome to**<br>OurZone&trade;
# **Welcome to** OurZone&trade;
### Realize Your Ultimate Entrepreneurial Dreams with the Worlds First Neo-Digital Freezone
@ -79,7 +79,7 @@ World Bank's report ranked Tanzania as one of the top 10 most improved economies
<!-- section 2 security -->
{% row(margin="withContainer" padding="bottom") %}
{% row(style="left" margin="withContainer" padding="bottom") %}
![placeholder](./img/freezone2.png#mx-auto)

View File

@ -29,7 +29,7 @@ Join our exclusive community and be part of the revolutionary Neo-Digital Freezo
<div class="pt-0 lg:pt-12">
![Image](./img/HEADER3.png#mx-auto)
![Image](./img/header3.png#mx-auto)
</div>
{% end %}

View File

@ -94,7 +94,7 @@ img[src*="#fig"] {
@apply font-medium;
}
h2 {
@apply text-2xl md:text-4xl lg:text-6xl font-bold leading-4 my-4;
@apply text-3xl md:text-4xl lg:text-6xl font-bold leading-4 my-4;
font-family: "lato", sans-serif;
line-height: 0.9;
@ -139,7 +139,6 @@ img[src*="#fig"] {
lg:text-lg
px-8
py-1
mr-5
my-4
border-2
shadow

View File

@ -15,7 +15,7 @@
<img class="w-40 h-auto sm:w-15" src="{{section.extra.logoPath}}" alt="Ourworld Logo" />
</a>
</div>
<div class="-mr-2 -my-2 lg:hidden">
<div class="mr-2 -my-2 lg:hidden">
<button id="hamburger-btn" type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 focus:text-gray-500 transition duration-150 ease-in-out my-2">
<!-- Heroicon name: menu -->
<svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">

View File

@ -98,17 +98,17 @@ Parameters:
{% if "none" in margin %}
{% set margin_class = " mx-0" %}
{% elif "wide" in margin %}
{% set margin_class = " mx-8 sm:mx-8 md:mx-12 lg:mx-16 xl:mx-20 " %}
{% set margin_class = " mx-4 sm:mx-8 md:mx-12 lg:mx-16 xl:mx-20 " %}
{% elif "moderate" in margin %}
{% set margin_class = " mx-8 sm:mx-16 md:mx-20 lg:mx-28" %}
{% set margin_class = " mx-4 sm:mx-16 md:mx-20 lg:mx-28" %}
{% elif "narrow" in margin %}
{% set margin_class = " mx-8 sm:mx-20 md:mx-28 lg:mx-40" %}
{% set margin_class = " mx-4 sm:mx-20 md:mx-28 lg:mx-40" %}
{% elif "tight" in margin %}
{% set margin_class = " mx-8 sm:mx-32 md:mx-40 lg:mx-80 xl:mx-96" %}
{% set margin_class = " mx-4 sm:mx-32 md:mx-40 lg:mx-80 xl:mx-96" %}
{% elif "header" in margin %}
{% set margin_class = " mx-8 sm:mx-20 md:mx-28 lg:mx-40 my-10" %}
{% set margin_class = " mx-4 sm:mx-20 md:mx-28 lg:mx-40 my-10" %}
{% elif "withContainer" in margin %}
{% set margin_class = " mx-8 " %}
{% set margin_class = " mx-4 " %}
{% endif %}
{% if "lean-left" in margin %}
{% set margin = margin_class | replace(from=" ", to=" first:")%}
@ -141,14 +141,19 @@ Parameters:
{% endif %}
{% if "right" in style %}
{% set row_class = row_class ~ " text-center lg:text-right md:text-right justify-center " %}
{% set col_class = col_class ~ " flex-1" %}
{% endif %}
{% set row_class = row_class ~ " text-center lg:text-right md:text-right justify-center " %}
{% set col_class = col_class ~ " flex-1" %}
{% endif %}
{% if "left" in style %}
{% set row_class = row_class ~ " text-center lg:text-left md:text-left justify-center " %}
{% set col_class = col_class ~ " flex-1" %}
{% endif %}
{% if "items-end" in style %}
{% set row_class = row_class ~ " lg:items-end" %}
{% set col_class = col_class ~ " flex-1 " %}
{% set row_class = row_class ~ " lg:items-end" %}
{% set col_class = col_class ~ " flex-1 " %}
{% endif %}