Return-Path: X-Original-To: apmail-fineract-commits-archive@minotaur.apache.org Delivered-To: apmail-fineract-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DFF81109EB for ; Mon, 28 Dec 2015 10:54:11 +0000 (UTC) Received: (qmail 33844 invoked by uid 500); 28 Dec 2015 10:54:11 -0000 Delivered-To: apmail-fineract-commits-archive@fineract.apache.org Received: (qmail 33819 invoked by uid 500); 28 Dec 2015 10:54:11 -0000 Mailing-List: contact commits-help@fineract.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@fineract.incubator.apache.org Delivered-To: mailing list commits@fineract.incubator.apache.org Received: (qmail 33810 invoked by uid 99); 28 Dec 2015 10:54:11 -0000 Received: from Unknown (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Dec 2015 10:54:11 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 3DABB1A132B for ; Mon, 28 Dec 2015 10:54:11 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.247 X-Spam-Level: * X-Spam-Status: No, score=1.247 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.554, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id lI9P9gGXQb1O for ; Mon, 28 Dec 2015 10:54:04 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with SMTP id 6F2E942A65 for ; Mon, 28 Dec 2015 10:54:03 +0000 (UTC) Received: (qmail 33594 invoked by uid 99); 28 Dec 2015 10:54:03 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Dec 2015 10:54:03 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BA39BE041C; Mon, 28 Dec 2015 10:54:02 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: mage@apache.org To: commits@fineract.incubator.apache.org Date: Mon, 28 Dec 2015 10:54:06 -0000 Message-Id: <33a5cabecb92476fa10c1cb8a012680f@git.apache.org> In-Reply-To: <51a823670423425e9ff607ab620e9300@git.apache.org> References: <51a823670423425e9ff607ab620e9300@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [5/8] incubator-fineract-site git commit: added close symbol to slider menu added close symbol to slider menu Project: http://git-wip-us.apache.org/repos/asf/incubator-fineract-site/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-fineract-site/commit/0efa3295 Tree: http://git-wip-us.apache.org/repos/asf/incubator-fineract-site/tree/0efa3295 Diff: http://git-wip-us.apache.org/repos/asf/incubator-fineract-site/diff/0efa3295 Branch: refs/heads/master Commit: 0efa32957f18831b26b6e4c4d38de4ec6bc12c97 Parents: 4d25d43 Author: mage Authored: Sat Dec 26 12:33:52 2015 +0100 Committer: mage Committed: Sat Dec 26 12:33:52 2015 +0100 ---------------------------------------------------------------------- css/fineract.css | 25 +++++++++++- index.html | 109 +++++++++++++++++++++++++++++--------------------- 2 files changed, 86 insertions(+), 48 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-fineract-site/blob/0efa3295/css/fineract.css ---------------------------------------------------------------------- diff --git a/css/fineract.css b/css/fineract.css index 8c3fb0f..7b6af47 100644 --- a/css/fineract.css +++ b/css/fineract.css @@ -99,6 +99,18 @@ nav { color: #f8f8ff; font-size: 28pt; text-decoration: none; + cursor: pointer; +} + +.close-menu { + margin-left: 10px; + padding: 0; + color: #343434; + font-size: 28pt; + text-decoration: none; + cursor: pointer; + transform: rotate(90deg); + -wbekit-transform: rotate(90deg); } .modal { @@ -118,7 +130,6 @@ nav { .menu-slider { top: 0px; margin: 0; - padding: 5px; width: 200px; height: 100%; visibility: hidden; @@ -129,7 +140,12 @@ nav { z-index: 300; } -.menu-slider>li { +.menu-slider>ul { + margin-top: -5px; + padding: 0; +} + +.menu-slider>ul>li { padding: 15px; } @@ -211,6 +227,11 @@ h2 { .inline-list { margin-left: 20px; + margin-right: 20px; +} + +.inline-list>li { + text-align: justify; } hr { http://git-wip-us.apache.org/repos/asf/incubator-fineract-site/blob/0efa3295/index.html ---------------------------------------------------------------------- diff --git a/index.html b/index.html index 94c1e66..8abf4af 100644 --- a/index.html +++ b/index.html @@ -37,7 +37,7 @@ - +
-
-

Platform for Digital Financial Services

-
-

- Apache Fineract (\’fīn-,ǝ-ˌrakt\) is an open source system for core banking as a platform. Fineract provides a reliable, robust, and affordable solution for entrepreneurs, financial institutions, and service providers to offer financial services to the world’s 2 billion underbanked and unbanked. -

+
+
+

Platform for Digital Financial Services

+
+

+ Apache Fineract (\’fīn-,ǝ-ˌrakt\) is an open source system for core banking as a platform. Fineract provides a reliable, robust, and affordable solution for entrepreneurs, financial institutions, and service providers to offer financial services to the world’s 2 billion underbanked and unbanked. +

+

-
-

About

-
-

- Fineract can be deployed in any environment: cloud or on-premise, on or offline, mobile or PC; it’s extensible enough to support any organizational type or delivery channel, and flexible enough to support any product, service, or methodology. For any organization, big or small, it will provide the client data management, loan and savings portfolio management, integrated real time accounting, and social and financial reporting needed to bring digital financial services in a modern connected world. -

-

Rapid Product Creation

-

- Our flexible product creation engine allows you to instantly create, configure and roll out brand new products across any of your branches. You can respond to client demand in no time. You can also configure your product mix to ensure clients can only take on a responsible amount of loans at one time. -

-

Multiple Lending Methodologies

-

- The Fineract API supports -

+
+
+

About

+
+

+ Fineract can be deployed in any environment: cloud or on-premise, on or offline, mobile or PC; it’s extensible enough to support any organizational type or delivery channel, and flexible enough to support any product, service, or methodology. For any organization, big or small, it will provide the client data management, loan and savings portfolio management, integrated real time accounting, and social and financial reporting needed to bring digital financial services in a modern connected world. +

+

Rapid Product Creation

+

+ Our flexible product creation engine allows you to instantly create, configure and roll out brand new products across any of your branches. You can respond to client demand in no time. You can also configure your product mix to ensure clients can only take on a responsible amount of loans at one time. +

+

Multiple Lending Methodologies

+

+ The Fineract API supports +

  • individual lending,
  • Grameen Joint Liability group lending,
  • @@ -81,33 +87,36 @@
  • standing instructions for automated payments,
  • and co-op lending.
-

- For group lending, we have full functionality to configure and manage groups including client, group, center information and hierarchy. -

-

Full Range of Deposit Products

-

- Savings is one of the most proven services in the financial inclusion toolkit. Fineract supports your organization as it moves beyond basic passbook savings with support for -

+

+ For group lending, we have full functionality to configure and manage groups including client, group, center information and hierarchy. +

+

Full Range of Deposit Products

+

+ Savings is one of the most proven services in the financial inclusion toolkit. Fineract supports your organization as it moves beyond basic passbook savings with support for +

  • fixed (term) deposits,
  • recurring deposits,
  • and current accounts.
-

- Your client can benefit from a fluid mix of deposit and credit products to help them store up the funds to resist shocks and grow income needed to make larger purchases and investments. -

-

Interest, Penalties, and Fees

-

- Fineract supports: -

+

+ Your client can benefit from a fluid mix of deposit and credit products to help them store up the funds to resist shocks and grow income needed to make larger purchases and investments. +

+

Interest, Penalties, and Fees

+

+ Fineract supports: +

  • calculation of interest balance on daily or average daily balance with the ability to specify the compounding period daily or monthly
  • flat or percentage-based fees that can be applied and collected on a specific due date
  • minimum opening balance and a locking period that can be defined in days, weeks, months, and years
+

-
-

Contribute

+
+
+

Contribute

+

The Apache Fineract (incubating) community welcomes contributors who want to support the Fineract technology. Our community builds everything from this website, from the Fineract code to documentation and best practices information.

@@ -130,10 +139,10 @@ This list receives an email whenever new code is contributed to Apache Fineract.
To subscribe, send a blank email to commits-subscribe@fineract.incubator.apache.org. You can also read the archives.

-
+
-

Docs

+

Resources


@@ -178,10 +187,18 @@ }); $('.menu-slider-item').click(function() { - $('.menu-slider').toggleClass('slide-in slide-out') - $(".modal").css({ opacity: 0 }); + closeMenu(); + }); + + $('.close-menu').click(function() { + closeMenu(); }); }); + + function closeMenu() { + $('.menu-slider').toggleClass('slide-in slide-out') + $(".modal").css({ opacity: 0 }); + }