BON POUR EXEMPLE TENANT
Massively template sur BaseBillet Story template sur MetaBillet
|
|
@ -0,0 +1,25 @@
|
||||||
|
import os
|
||||||
|
|
||||||
|
from django.core.management.base import BaseCommand
|
||||||
|
from Customers.models import Client, Domain
|
||||||
|
|
||||||
|
|
||||||
|
class Command(BaseCommand):
|
||||||
|
|
||||||
|
def handle(self, *args, **options):
|
||||||
|
|
||||||
|
tenant_demo = Client.objects.get_or_create(schema_name="demo",
|
||||||
|
name="demo",
|
||||||
|
paid_until='2200-12-05',
|
||||||
|
on_trial=False)[0]
|
||||||
|
|
||||||
|
# Add one or more domains for the tenant
|
||||||
|
|
||||||
|
tenant_demo_domain = Domain.objects.get_or_create(domain=f'demo.{os.getenv("DOMAIN")}',
|
||||||
|
tenant=tenant_demo,
|
||||||
|
is_primary=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
from django.core.management import call_command
|
||||||
|
from django.core.management.commands.flush import Command as FlushCommand
|
||||||
|
from django.db import transaction
|
||||||
|
|
||||||
|
|
||||||
|
class Command(FlushCommand):
|
||||||
|
@transaction.atomic
|
||||||
|
def handle(self, *args, **options):
|
||||||
|
options['allow_cascade'] = True
|
||||||
|
call_command('flush', *args, **options)
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class ApibilletConfig(AppConfig):
|
||||||
|
name = 'ApiBillet'
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
||||||
|
from Customers.models import Client, Domain
|
||||||
|
import os
|
||||||
|
|
||||||
|
def new_tenants(schema_name):
|
||||||
|
tenant = Client.objects.get_or_create(schema_name=schema_name,
|
||||||
|
name=schema_name,
|
||||||
|
paid_until='2200-12-05',
|
||||||
|
on_trial=False)[0]
|
||||||
|
|
||||||
|
# Add one or more domains for the tenant
|
||||||
|
|
||||||
|
tenant_domain = Domain.objects.get_or_create(domain=f'{schema_name}.{os.getenv("DOMAIN")}',
|
||||||
|
tenant=tenant,
|
||||||
|
is_primary=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
return tenant, tenant_domain
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class BasebilletConfig(AppConfig):
|
||||||
|
name = 'BaseBillet'
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
||||||
|
|
@ -1,63 +1,63 @@
|
||||||
Creative Commons Attribution 3.0 Unported
|
Creative Commons Attribution 3.0 Unported
|
||||||
http://creativecommons.org/licenses/by/3.0/
|
http://creativecommons.org/licenses/by/3.0/
|
||||||
|
|
||||||
License
|
License
|
||||||
|
|
||||||
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
|
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
|
||||||
|
|
||||||
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
|
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
|
||||||
|
|
||||||
1. Definitions
|
1. Definitions
|
||||||
|
|
||||||
1. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License.
|
1. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License.
|
||||||
2. "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined above) for the purposes of this License.
|
2. "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined above) for the purposes of this License.
|
||||||
3. "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership.
|
3. "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership.
|
||||||
4. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License.
|
4. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License.
|
||||||
5. "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast.
|
5. "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast.
|
||||||
6. "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work.
|
6. "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work.
|
||||||
7. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.
|
7. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.
|
||||||
8. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images.
|
8. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images.
|
||||||
9. "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium.
|
9. "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium.
|
||||||
|
|
||||||
2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws.
|
2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws.
|
||||||
|
|
||||||
3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:
|
3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:
|
||||||
|
|
||||||
1. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections;
|
1. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections;
|
||||||
2. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified.";
|
2. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified.";
|
||||||
3. to Distribute and Publicly Perform the Work including as incorporated in Collections; and,
|
3. to Distribute and Publicly Perform the Work including as incorporated in Collections; and,
|
||||||
4. to Distribute and Publicly Perform Adaptations.
|
4. to Distribute and Publicly Perform Adaptations.
|
||||||
5.
|
5.
|
||||||
|
|
||||||
For the avoidance of doubt:
|
For the avoidance of doubt:
|
||||||
1. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License;
|
1. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License;
|
||||||
2. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and,
|
2. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and,
|
||||||
3. Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License.
|
3. Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License.
|
||||||
|
|
||||||
The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved.
|
The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved.
|
||||||
|
|
||||||
4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:
|
4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:
|
||||||
|
|
||||||
1. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(b), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(b), as requested.
|
1. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(b), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(b), as requested.
|
||||||
2. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4 (b) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties.
|
2. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4 (b) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties.
|
||||||
3. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise.
|
3. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise.
|
||||||
|
|
||||||
5. Representations, Warranties and Disclaimer
|
5. Representations, Warranties and Disclaimer
|
||||||
|
|
||||||
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
|
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
|
||||||
|
|
||||||
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
7. Termination
|
7. Termination
|
||||||
|
|
||||||
1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.
|
1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.
|
||||||
2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.
|
2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.
|
||||||
|
|
||||||
8. Miscellaneous
|
8. Miscellaneous
|
||||||
|
|
||||||
1. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.
|
1. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.
|
||||||
2. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.
|
2. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.
|
||||||
3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
|
3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
|
||||||
4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.
|
4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.
|
||||||
5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.
|
5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.
|
||||||
6. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
|
6. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
|
||||||
|
|
@ -1,32 +1,32 @@
|
||||||
Massively by HTML5 UP
|
Massively by HTML5 UP
|
||||||
html5up.net | @ajlkn
|
html5up.net | @ajlkn
|
||||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
|
|
||||||
|
|
||||||
This is Massively, a text-heavy, article-oriented design built around a huge background
|
This is Massively, a text-heavy, article-oriented design built around a huge background
|
||||||
image (with a new parallax implementation I'm testing) and scroll effects (powered by
|
image (with a new parallax implementation I'm testing) and scroll effects (powered by
|
||||||
Scrollex). A *slight* departure from all the one-pagers I've been doing lately, but one
|
Scrollex). A *slight* departure from all the one-pagers I've been doing lately, but one
|
||||||
that fulfills a few user requests and makes use of some new techniques I've been wanting
|
that fulfills a few user requests and makes use of some new techniques I've been wanting
|
||||||
to try out. Enjoy it :)
|
to try out. Enjoy it :)
|
||||||
|
|
||||||
Demo images* courtesy of Unsplash, a radtastic collection of CC0 (public domain) images
|
Demo images* courtesy of Unsplash, a radtastic collection of CC0 (public domain) images
|
||||||
you can use for pretty much whatever.
|
you can use for pretty much whatever.
|
||||||
|
|
||||||
(* = not included)
|
(* = not included)
|
||||||
|
|
||||||
AJ
|
AJ
|
||||||
aj@lkn.io | @ajlkn
|
aj@lkn.io | @ajlkn
|
||||||
|
|
||||||
|
|
||||||
Credits:
|
Credits:
|
||||||
|
|
||||||
Demo Images:
|
Demo Images:
|
||||||
Unsplash (unsplash.com)
|
Unsplash (unsplash.com)
|
||||||
|
|
||||||
Icons:
|
Icons:
|
||||||
Font Awesome (fontawesome.io)
|
Font Awesome (fontawesome.io)
|
||||||
|
|
||||||
Other:
|
Other:
|
||||||
jQuery (jquery.com)
|
jQuery (jquery.com)
|
||||||
Scrollex (github.com/ajlkn/jquery.scrollex)
|
Scrollex (github.com/ajlkn/jquery.scrollex)
|
||||||
Responsive Tools (github.com/ajlkn/responsive-tools)
|
Responsive Tools (github.com/ajlkn/responsive-tools)
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
@import url(fontawesome-all.min.css);
|
@import url(fontawesome-all.min.css);
|
||||||
@import url("https://fonts.googleapis.com/css?family=Merriweather:300,700,300italic,700italic|Source+Sans+Pro:900");
|
@import url("https://fonts.googleapis.com/css?family=Merriweather:300,700,300italic,700italic|Source+Sans+Pro:900");
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Massively by HTML5 UP
|
Massively by HTML5 UP
|
||||||
html5up.net | @ajlkn
|
html5up.net | @ajlkn
|
||||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
html, body, div, span, applet, object,
|
html, body, div, span, applet, object,
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
@import url(font-awesome.min.css);
|
@import url(font-awesome.min.css);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Massively by HTML5 UP
|
Massively by HTML5 UP
|
||||||
html5up.net | @ajlkn
|
html5up.net | @ajlkn
|
||||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Wrapper */
|
/* Wrapper */
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
/* breakpoints.js v1.0 | @ajlkn | MIT licensed */
|
/* breakpoints.js v1.0 | @ajlkn | MIT licensed */
|
||||||
var breakpoints=function(){"use strict";function e(e){t.init(e)}var t={list:null,media:{},events:[],init:function(e){t.list=e,window.addEventListener("resize",t.poll),window.addEventListener("orientationchange",t.poll),window.addEventListener("load",t.poll),window.addEventListener("fullscreenchange",t.poll)},active:function(e){var n,a,s,i,r,d,c;if(!(e in t.media)){if(">="==e.substr(0,2)?(a="gte",n=e.substr(2)):"<="==e.substr(0,2)?(a="lte",n=e.substr(2)):">"==e.substr(0,1)?(a="gt",n=e.substr(1)):"<"==e.substr(0,1)?(a="lt",n=e.substr(1)):"!"==e.substr(0,1)?(a="not",n=e.substr(1)):(a="eq",n=e),n&&n in t.list)if(i=t.list[n],Array.isArray(i)){if(r=parseInt(i[0]),d=parseInt(i[1]),isNaN(r)){if(isNaN(d))return;c=i[1].substr(String(d).length)}else c=i[0].substr(String(r).length);if(isNaN(r))switch(a){case"gte":s="screen";break;case"lte":s="screen and (max-width: "+d+c+")";break;case"gt":s="screen and (min-width: "+(d+1)+c+")";break;case"lt":s="screen and (max-width: -1px)";break;case"not":s="screen and (min-width: "+(d+1)+c+")";break;default:s="screen and (max-width: "+d+c+")"}else if(isNaN(d))switch(a){case"gte":s="screen and (min-width: "+r+c+")";break;case"lte":s="screen";break;case"gt":s="screen and (max-width: -1px)";break;case"lt":s="screen and (max-width: "+(r-1)+c+")";break;case"not":s="screen and (max-width: "+(r-1)+c+")";break;default:s="screen and (min-width: "+r+c+")"}else switch(a){case"gte":s="screen and (min-width: "+r+c+")";break;case"lte":s="screen and (max-width: "+d+c+")";break;case"gt":s="screen and (min-width: "+(d+1)+c+")";break;case"lt":s="screen and (max-width: "+(r-1)+c+")";break;case"not":s="screen and (max-width: "+(r-1)+c+"), screen and (min-width: "+(d+1)+c+")";break;default:s="screen and (min-width: "+r+c+") and (max-width: "+d+c+")"}}else s="("==i.charAt(0)?"screen and "+i:i;t.media[e]=!!s&&s}return t.media[e]!==!1&&window.matchMedia(t.media[e]).matches},on:function(e,n){t.events.push({query:e,handler:n,state:!1}),t.active(e)&&n()},poll:function(){var e,n;for(e=0;e<t.events.length;e++)n=t.events[e],t.active(n.query)?n.state||(n.state=!0,n.handler()):n.state&&(n.state=!1)}};return e._=t,e.on=function(e,n){t.on(e,n)},e.active=function(e){return t.active(e)},e}();!function(e,t){"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?module.exports=t():e.breakpoints=t()}(this,function(){return breakpoints});
|
var breakpoints=function(){"use strict";function e(e){t.init(e)}var t={list:null,media:{},events:[],init:function(e){t.list=e,window.addEventListener("resize",t.poll),window.addEventListener("orientationchange",t.poll),window.addEventListener("load",t.poll),window.addEventListener("fullscreenchange",t.poll)},active:function(e){var n,a,s,i,r,d,c;if(!(e in t.media)){if(">="==e.substr(0,2)?(a="gte",n=e.substr(2)):"<="==e.substr(0,2)?(a="lte",n=e.substr(2)):">"==e.substr(0,1)?(a="gt",n=e.substr(1)):"<"==e.substr(0,1)?(a="lt",n=e.substr(1)):"!"==e.substr(0,1)?(a="not",n=e.substr(1)):(a="eq",n=e),n&&n in t.list)if(i=t.list[n],Array.isArray(i)){if(r=parseInt(i[0]),d=parseInt(i[1]),isNaN(r)){if(isNaN(d))return;c=i[1].substr(String(d).length)}else c=i[0].substr(String(r).length);if(isNaN(r))switch(a){case"gte":s="screen";break;case"lte":s="screen and (max-width: "+d+c+")";break;case"gt":s="screen and (min-width: "+(d+1)+c+")";break;case"lt":s="screen and (max-width: -1px)";break;case"not":s="screen and (min-width: "+(d+1)+c+")";break;default:s="screen and (max-width: "+d+c+")"}else if(isNaN(d))switch(a){case"gte":s="screen and (min-width: "+r+c+")";break;case"lte":s="screen";break;case"gt":s="screen and (max-width: -1px)";break;case"lt":s="screen and (max-width: "+(r-1)+c+")";break;case"not":s="screen and (max-width: "+(r-1)+c+")";break;default:s="screen and (min-width: "+r+c+")"}else switch(a){case"gte":s="screen and (min-width: "+r+c+")";break;case"lte":s="screen and (max-width: "+d+c+")";break;case"gt":s="screen and (min-width: "+(d+1)+c+")";break;case"lt":s="screen and (max-width: "+(r-1)+c+")";break;case"not":s="screen and (max-width: "+(r-1)+c+"), screen and (min-width: "+(d+1)+c+")";break;default:s="screen and (min-width: "+r+c+") and (max-width: "+d+c+")"}}else s="("==i.charAt(0)?"screen and "+i:i;t.media[e]=!!s&&s}return t.media[e]!==!1&&window.matchMedia(t.media[e]).matches},on:function(e,n){t.events.push({query:e,handler:n,state:!1}),t.active(e)&&n()},poll:function(){var e,n;for(e=0;e<t.events.length;e++)n=t.events[e],t.active(n.query)?n.state||(n.state=!0,n.handler()):n.state&&(n.state=!1)}};return e._=t,e.on=function(e,n){t.on(e,n)},e.active=function(e){return t.active(e)},e}();!function(e,t){"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?module.exports=t():e.breakpoints=t()}(this,function(){return breakpoints});
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
/* browser.js v1.0 | @ajlkn | MIT licensed */
|
/* browser.js v1.0 | @ajlkn | MIT licensed */
|
||||||
var browser=function(){"use strict";var e={name:null,version:null,os:null,osVersion:null,touch:null,mobile:null,_canUse:null,canUse:function(n){e._canUse||(e._canUse=document.createElement("div"));var o=e._canUse.style,r=n.charAt(0).toUpperCase()+n.slice(1);return n in o||"Moz"+r in o||"Webkit"+r in o||"O"+r in o||"ms"+r in o},init:function(){var n,o,r,i,t=navigator.userAgent;for(n="other",o=0,r=[["firefox",/Firefox\/([0-9\.]+)/],["bb",/BlackBerry.+Version\/([0-9\.]+)/],["bb",/BB[0-9]+.+Version\/([0-9\.]+)/],["opera",/OPR\/([0-9\.]+)/],["opera",/Opera\/([0-9\.]+)/],["edge",/Edge\/([0-9\.]+)/],["safari",/Version\/([0-9\.]+).+Safari/],["chrome",/Chrome\/([0-9\.]+)/],["ie",/MSIE ([0-9]+)/],["ie",/Trident\/.+rv:([0-9]+)/]],i=0;i<r.length;i++)if(t.match(r[i][1])){n=r[i][0],o=parseFloat(RegExp.$1);break}for(e.name=n,e.version=o,n="other",o=0,r=[["ios",/([0-9_]+) like Mac OS X/,function(e){return e.replace("_",".").replace("_","")}],["ios",/CPU like Mac OS X/,function(e){return 0}],["wp",/Windows Phone ([0-9\.]+)/,null],["android",/Android ([0-9\.]+)/,null],["mac",/Macintosh.+Mac OS X ([0-9_]+)/,function(e){return e.replace("_",".").replace("_","")}],["windows",/Windows NT ([0-9\.]+)/,null],["bb",/BlackBerry.+Version\/([0-9\.]+)/,null],["bb",/BB[0-9]+.+Version\/([0-9\.]+)/,null],["linux",/Linux/,null],["bsd",/BSD/,null],["unix",/X11/,null]],i=0;i<r.length;i++)if(t.match(r[i][1])){n=r[i][0],o=parseFloat(r[i][2]?r[i][2](RegExp.$1):RegExp.$1);break}e.os=n,e.osVersion=o,e.touch="wp"==e.os?navigator.msMaxTouchPoints>0:!!("ontouchstart"in window),e.mobile="wp"==e.os||"android"==e.os||"ios"==e.os||"bb"==e.os}};return e.init(),e}();!function(e,n){"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?module.exports=n():e.browser=n()}(this,function(){return browser});
|
var browser=function(){"use strict";var e={name:null,version:null,os:null,osVersion:null,touch:null,mobile:null,_canUse:null,canUse:function(n){e._canUse||(e._canUse=document.createElement("div"));var o=e._canUse.style,r=n.charAt(0).toUpperCase()+n.slice(1);return n in o||"Moz"+r in o||"Webkit"+r in o||"O"+r in o||"ms"+r in o},init:function(){var n,o,r,i,t=navigator.userAgent;for(n="other",o=0,r=[["firefox",/Firefox\/([0-9\.]+)/],["bb",/BlackBerry.+Version\/([0-9\.]+)/],["bb",/BB[0-9]+.+Version\/([0-9\.]+)/],["opera",/OPR\/([0-9\.]+)/],["opera",/Opera\/([0-9\.]+)/],["edge",/Edge\/([0-9\.]+)/],["safari",/Version\/([0-9\.]+).+Safari/],["chrome",/Chrome\/([0-9\.]+)/],["ie",/MSIE ([0-9]+)/],["ie",/Trident\/.+rv:([0-9]+)/]],i=0;i<r.length;i++)if(t.match(r[i][1])){n=r[i][0],o=parseFloat(RegExp.$1);break}for(e.name=n,e.version=o,n="other",o=0,r=[["ios",/([0-9_]+) like Mac OS X/,function(e){return e.replace("_",".").replace("_","")}],["ios",/CPU like Mac OS X/,function(e){return 0}],["wp",/Windows Phone ([0-9\.]+)/,null],["android",/Android ([0-9\.]+)/,null],["mac",/Macintosh.+Mac OS X ([0-9_]+)/,function(e){return e.replace("_",".").replace("_","")}],["windows",/Windows NT ([0-9\.]+)/,null],["bb",/BlackBerry.+Version\/([0-9\.]+)/,null],["bb",/BB[0-9]+.+Version\/([0-9\.]+)/,null],["linux",/Linux/,null],["bsd",/BSD/,null],["unix",/X11/,null]],i=0;i<r.length;i++)if(t.match(r[i][1])){n=r[i][0],o=parseFloat(r[i][2]?r[i][2](RegExp.$1):RegExp.$1);break}e.os=n,e.osVersion=o,e.touch="wp"==e.os?navigator.msMaxTouchPoints>0:!!("ontouchstart"in window),e.mobile="wp"==e.os||"android"==e.os||"ios"==e.os||"bb"==e.os}};return e.init(),e}();!function(e,n){"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?module.exports=n():e.browser=n()}(this,function(){return browser});
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
/* jquery.scrollex v0.2.1 | (c) @ajlkn | github.com/ajlkn/jquery.scrollex | MIT licensed */
|
/* jquery.scrollex v0.2.1 | (c) @ajlkn | github.com/ajlkn/jquery.scrollex | MIT licensed */
|
||||||
!function(t){function e(t,e,n){return"string"==typeof t&&("%"==t.slice(-1)?t=parseInt(t.substring(0,t.length-1))/100*e:"vh"==t.slice(-2)?t=parseInt(t.substring(0,t.length-2))/100*n:"px"==t.slice(-2)&&(t=parseInt(t.substring(0,t.length-2)))),t}var n=t(window),i=1,o={};n.on("scroll",function(){var e=n.scrollTop();t.map(o,function(t){window.clearTimeout(t.timeoutId),t.timeoutId=window.setTimeout(function(){t.handler(e)},t.options.delay)})}).on("load",function(){n.trigger("scroll")}),jQuery.fn.scrollex=function(l){var s=t(this);if(0==this.length)return s;if(this.length>1){for(var r=0;r<this.length;r++)t(this[r]).scrollex(l);return s}if(s.data("_scrollexId"))return s;var a,u,h,c,p;switch(a=i++,u=jQuery.extend({top:0,bottom:0,delay:0,mode:"default",enter:null,leave:null,initialize:null,terminate:null,scroll:null},l),u.mode){case"top":h=function(t,e,n,i,o){return t>=i&&o>=t};break;case"bottom":h=function(t,e,n,i,o){return n>=i&&o>=n};break;case"middle":h=function(t,e,n,i,o){return e>=i&&o>=e};break;case"top-only":h=function(t,e,n,i,o){return i>=t&&n>=i};break;case"bottom-only":h=function(t,e,n,i,o){return n>=o&&o>=t};break;default:case"default":h=function(t,e,n,i,o){return n>=i&&o>=t}}return c=function(t){var i,o,l,s,r,a,u=this.state,h=!1,c=this.$element.offset();i=n.height(),o=t+i/2,l=t+i,s=this.$element.outerHeight(),r=c.top+e(this.options.top,s,i),a=c.top+s-e(this.options.bottom,s,i),h=this.test(t,o,l,r,a),h!=u&&(this.state=h,h?this.options.enter&&this.options.enter.apply(this.element):this.options.leave&&this.options.leave.apply(this.element)),this.options.scroll&&this.options.scroll.apply(this.element,[(o-r)/(a-r)])},p={id:a,options:u,test:h,handler:c,state:null,element:this,$element:s,timeoutId:null},o[a]=p,s.data("_scrollexId",p.id),p.options.initialize&&p.options.initialize.apply(this),s},jQuery.fn.unscrollex=function(){var e=t(this);if(0==this.length)return e;if(this.length>1){for(var n=0;n<this.length;n++)t(this[n]).unscrollex();return e}var i,l;return(i=e.data("_scrollexId"))?(l=o[i],window.clearTimeout(l.timeoutId),delete o[i],e.removeData("_scrollexId"),l.options.terminate&&l.options.terminate.apply(this),e):e}}(jQuery);
|
!function(t){function e(t,e,n){return"string"==typeof t&&("%"==t.slice(-1)?t=parseInt(t.substring(0,t.length-1))/100*e:"vh"==t.slice(-2)?t=parseInt(t.substring(0,t.length-2))/100*n:"px"==t.slice(-2)&&(t=parseInt(t.substring(0,t.length-2)))),t}var n=t(window),i=1,o={};n.on("scroll",function(){var e=n.scrollTop();t.map(o,function(t){window.clearTimeout(t.timeoutId),t.timeoutId=window.setTimeout(function(){t.handler(e)},t.options.delay)})}).on("load",function(){n.trigger("scroll")}),jQuery.fn.scrollex=function(l){var s=t(this);if(0==this.length)return s;if(this.length>1){for(var r=0;r<this.length;r++)t(this[r]).scrollex(l);return s}if(s.data("_scrollexId"))return s;var a,u,h,c,p;switch(a=i++,u=jQuery.extend({top:0,bottom:0,delay:0,mode:"default",enter:null,leave:null,initialize:null,terminate:null,scroll:null},l),u.mode){case"top":h=function(t,e,n,i,o){return t>=i&&o>=t};break;case"bottom":h=function(t,e,n,i,o){return n>=i&&o>=n};break;case"middle":h=function(t,e,n,i,o){return e>=i&&o>=e};break;case"top-only":h=function(t,e,n,i,o){return i>=t&&n>=i};break;case"bottom-only":h=function(t,e,n,i,o){return n>=o&&o>=t};break;default:case"default":h=function(t,e,n,i,o){return n>=i&&o>=t}}return c=function(t){var i,o,l,s,r,a,u=this.state,h=!1,c=this.$element.offset();i=n.height(),o=t+i/2,l=t+i,s=this.$element.outerHeight(),r=c.top+e(this.options.top,s,i),a=c.top+s-e(this.options.bottom,s,i),h=this.test(t,o,l,r,a),h!=u&&(this.state=h,h?this.options.enter&&this.options.enter.apply(this.element):this.options.leave&&this.options.leave.apply(this.element)),this.options.scroll&&this.options.scroll.apply(this.element,[(o-r)/(a-r)])},p={id:a,options:u,test:h,handler:c,state:null,element:this,$element:s,timeoutId:null},o[a]=p,s.data("_scrollexId",p.id),p.options.initialize&&p.options.initialize.apply(this),s},jQuery.fn.unscrollex=function(){var e=t(this);if(0==this.length)return e;if(this.length>1){for(var n=0;n<this.length;n++)t(this[n]).unscrollex();return e}var i,l;return(i=e.data("_scrollexId"))?(l=o[i],window.clearTimeout(l.timeoutId),delete o[i],e.removeData("_scrollexId"),l.options.terminate&&l.options.terminate.apply(this),e):e}}(jQuery);
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
/* jquery.scrolly v1.0.0-dev | (c) @ajlkn | MIT licensed */
|
/* jquery.scrolly v1.0.0-dev | (c) @ajlkn | MIT licensed */
|
||||||
(function(e){function u(s,o){var u,a,f;if((u=e(s))[t]==0)return n;a=u[i]()[r];switch(o.anchor){case"middle":f=a-(e(window).height()-u.outerHeight())/2;break;default:case r:f=Math.max(a,0)}return typeof o[i]=="function"?f-=o[i]():f-=o[i],f}var t="length",n=null,r="top",i="offset",s="click.scrolly",o=e(window);e.fn.scrolly=function(i){var o,a,f,l,c=e(this);if(this[t]==0)return c;if(this[t]>1){for(o=0;o<this[t];o++)e(this[o]).scrolly(i);return c}l=n,f=c.attr("href");if(f.charAt(0)!="#"||f[t]<2)return c;a=jQuery.extend({anchor:r,easing:"swing",offset:0,parent:e("body,html"),pollOnce:!1,speed:1e3},i),a.pollOnce&&(l=u(f,a)),c.off(s).on(s,function(e){var t=l!==n?l:u(f,a);t!==n&&(e.preventDefault(),a.parent.stop().animate({scrollTop:t},a.speed,a.easing))})}})(jQuery);
|
(function(e){function u(s,o){var u,a,f;if((u=e(s))[t]==0)return n;a=u[i]()[r];switch(o.anchor){case"middle":f=a-(e(window).height()-u.outerHeight())/2;break;default:case r:f=Math.max(a,0)}return typeof o[i]=="function"?f-=o[i]():f-=o[i],f}var t="length",n=null,r="top",i="offset",s="click.scrolly",o=e(window);e.fn.scrolly=function(i){var o,a,f,l,c=e(this);if(this[t]==0)return c;if(this[t]>1){for(o=0;o<this[t];o++)e(this[o]).scrolly(i);return c}l=n,f=c.attr("href");if(f.charAt(0)!="#"||f[t]<2)return c;a=jQuery.extend({anchor:r,easing:"swing",offset:0,parent:e("body,html"),pollOnce:!1,speed:1e3},i),a.pollOnce&&(l=u(f,a)),c.off(s).on(s,function(e){var t=l!==n?l:u(f,a);t!==n&&(e.preventDefault(),a.parent.stop().animate({scrollTop:t},a.speed,a.easing))})}})(jQuery);
|
||||||
|
|
@ -1,258 +1,258 @@
|
||||||
/*
|
/*
|
||||||
Massively by HTML5 UP
|
Massively by HTML5 UP
|
||||||
html5up.net | @ajlkn
|
html5up.net | @ajlkn
|
||||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
(function($) {
|
(function($) {
|
||||||
|
|
||||||
var $window = $(window),
|
var $window = $(window),
|
||||||
$body = $('body'),
|
$body = $('body'),
|
||||||
$wrapper = $('#wrapper'),
|
$wrapper = $('#wrapper'),
|
||||||
$header = $('#header'),
|
$header = $('#header'),
|
||||||
$nav = $('#nav'),
|
$nav = $('#nav'),
|
||||||
$main = $('#main'),
|
$main = $('#main'),
|
||||||
$navPanelToggle, $navPanel, $navPanelInner;
|
$navPanelToggle, $navPanel, $navPanelInner;
|
||||||
|
|
||||||
// Breakpoints.
|
// Breakpoints.
|
||||||
breakpoints({
|
breakpoints({
|
||||||
default: ['1681px', null ],
|
default: ['1681px', null ],
|
||||||
xlarge: ['1281px', '1680px' ],
|
xlarge: ['1281px', '1680px' ],
|
||||||
large: ['981px', '1280px' ],
|
large: ['981px', '1280px' ],
|
||||||
medium: ['737px', '980px' ],
|
medium: ['737px', '980px' ],
|
||||||
small: ['481px', '736px' ],
|
small: ['481px', '736px' ],
|
||||||
xsmall: ['361px', '480px' ],
|
xsmall: ['361px', '480px' ],
|
||||||
xxsmall: [null, '360px' ]
|
xxsmall: [null, '360px' ]
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Applies parallax scrolling to an element's background image.
|
* Applies parallax scrolling to an element's background image.
|
||||||
* @return {jQuery} jQuery object.
|
* @return {jQuery} jQuery object.
|
||||||
*/
|
*/
|
||||||
$.fn._parallax = function(intensity) {
|
$.fn._parallax = function(intensity) {
|
||||||
|
|
||||||
var $window = $(window),
|
var $window = $(window),
|
||||||
$this = $(this);
|
$this = $(this);
|
||||||
|
|
||||||
if (this.length == 0 || intensity === 0)
|
if (this.length == 0 || intensity === 0)
|
||||||
return $this;
|
return $this;
|
||||||
|
|
||||||
if (this.length > 1) {
|
if (this.length > 1) {
|
||||||
|
|
||||||
for (var i=0; i < this.length; i++)
|
for (var i=0; i < this.length; i++)
|
||||||
$(this[i])._parallax(intensity);
|
$(this[i])._parallax(intensity);
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!intensity)
|
if (!intensity)
|
||||||
intensity = 0.25;
|
intensity = 0.25;
|
||||||
|
|
||||||
$this.each(function() {
|
$this.each(function() {
|
||||||
|
|
||||||
var $t = $(this),
|
var $t = $(this),
|
||||||
$bg = $('<div class="bg"></div>').appendTo($t),
|
$bg = $('<div class="bg"></div>').appendTo($t),
|
||||||
on, off;
|
on, off;
|
||||||
|
|
||||||
on = function() {
|
on = function() {
|
||||||
|
|
||||||
$bg
|
$bg
|
||||||
.removeClass('fixed')
|
.removeClass('fixed')
|
||||||
.css('transform', 'matrix(1,0,0,1,0,0)');
|
.css('transform', 'matrix(1,0,0,1,0,0)');
|
||||||
|
|
||||||
$window
|
$window
|
||||||
.on('scroll._parallax', function() {
|
.on('scroll._parallax', function() {
|
||||||
|
|
||||||
var pos = parseInt($window.scrollTop()) - parseInt($t.position().top);
|
var pos = parseInt($window.scrollTop()) - parseInt($t.position().top);
|
||||||
|
|
||||||
$bg.css('transform', 'matrix(1,0,0,1,0,' + (pos * intensity) + ')');
|
$bg.css('transform', 'matrix(1,0,0,1,0,' + (pos * intensity) + ')');
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
off = function() {
|
off = function() {
|
||||||
|
|
||||||
$bg
|
$bg
|
||||||
.addClass('fixed')
|
.addClass('fixed')
|
||||||
.css('transform', 'none');
|
.css('transform', 'none');
|
||||||
|
|
||||||
$window
|
$window
|
||||||
.off('scroll._parallax');
|
.off('scroll._parallax');
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Disable parallax on ..
|
// Disable parallax on ..
|
||||||
if (browser.name == 'ie' // IE
|
if (browser.name == 'ie' // IE
|
||||||
|| browser.name == 'edge' // Edge
|
|| browser.name == 'edge' // Edge
|
||||||
|| window.devicePixelRatio > 1 // Retina/HiDPI (= poor performance)
|
|| window.devicePixelRatio > 1 // Retina/HiDPI (= poor performance)
|
||||||
|| browser.mobile) // Mobile devices
|
|| browser.mobile) // Mobile devices
|
||||||
off();
|
off();
|
||||||
|
|
||||||
// Enable everywhere else.
|
// Enable everywhere else.
|
||||||
else {
|
else {
|
||||||
|
|
||||||
breakpoints.on('>large', on);
|
breakpoints.on('>large', on);
|
||||||
breakpoints.on('<=large', off);
|
breakpoints.on('<=large', off);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$window
|
$window
|
||||||
.off('load._parallax resize._parallax')
|
.off('load._parallax resize._parallax')
|
||||||
.on('load._parallax resize._parallax', function() {
|
.on('load._parallax resize._parallax', function() {
|
||||||
$window.trigger('scroll');
|
$window.trigger('scroll');
|
||||||
});
|
});
|
||||||
|
|
||||||
return $(this);
|
return $(this);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Play initial animations on page load.
|
// Play initial animations on page load.
|
||||||
$window.on('load', function() {
|
$window.on('load', function() {
|
||||||
window.setTimeout(function() {
|
window.setTimeout(function() {
|
||||||
$body.removeClass('is-preload');
|
$body.removeClass('is-preload');
|
||||||
}, 100);
|
}, 100);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Scrolly.
|
// Scrolly.
|
||||||
$('.scrolly').scrolly();
|
$('.scrolly').scrolly();
|
||||||
|
|
||||||
// Background.
|
// Background.
|
||||||
$wrapper._parallax(0.925);
|
$wrapper._parallax(0.925);
|
||||||
|
|
||||||
// Nav Panel.
|
// Nav Panel.
|
||||||
|
|
||||||
// Toggle.
|
// Toggle.
|
||||||
$navPanelToggle = $(
|
$navPanelToggle = $(
|
||||||
'<a href="#navPanel" id="navPanelToggle">Menu</a>'
|
'<a href="#navPanel" id="navPanelToggle">Menu</a>'
|
||||||
)
|
)
|
||||||
.appendTo($wrapper);
|
.appendTo($wrapper);
|
||||||
|
|
||||||
// Change toggle styling once we've scrolled past the header.
|
// Change toggle styling once we've scrolled past the header.
|
||||||
$header.scrollex({
|
$header.scrollex({
|
||||||
bottom: '5vh',
|
bottom: '5vh',
|
||||||
enter: function() {
|
enter: function() {
|
||||||
$navPanelToggle.removeClass('alt');
|
$navPanelToggle.removeClass('alt');
|
||||||
},
|
},
|
||||||
leave: function() {
|
leave: function() {
|
||||||
$navPanelToggle.addClass('alt');
|
$navPanelToggle.addClass('alt');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Panel.
|
// Panel.
|
||||||
$navPanel = $(
|
$navPanel = $(
|
||||||
'<div id="navPanel">' +
|
'<div id="navPanel">' +
|
||||||
'<nav>' +
|
'<nav>' +
|
||||||
'</nav>' +
|
'</nav>' +
|
||||||
'<a href="#navPanel" class="close"></a>' +
|
'<a href="#navPanel" class="close"></a>' +
|
||||||
'</div>'
|
'</div>'
|
||||||
)
|
)
|
||||||
.appendTo($body)
|
.appendTo($body)
|
||||||
.panel({
|
.panel({
|
||||||
delay: 500,
|
delay: 500,
|
||||||
hideOnClick: true,
|
hideOnClick: true,
|
||||||
hideOnSwipe: true,
|
hideOnSwipe: true,
|
||||||
resetScroll: true,
|
resetScroll: true,
|
||||||
resetForms: true,
|
resetForms: true,
|
||||||
side: 'right',
|
side: 'right',
|
||||||
target: $body,
|
target: $body,
|
||||||
visibleClass: 'is-navPanel-visible'
|
visibleClass: 'is-navPanel-visible'
|
||||||
});
|
});
|
||||||
|
|
||||||
// Get inner.
|
// Get inner.
|
||||||
$navPanelInner = $navPanel.children('nav');
|
$navPanelInner = $navPanel.children('nav');
|
||||||
|
|
||||||
// Move nav content on breakpoint change.
|
// Move nav content on breakpoint change.
|
||||||
var $navContent = $nav.children();
|
var $navContent = $nav.children();
|
||||||
|
|
||||||
breakpoints.on('>medium', function() {
|
breakpoints.on('>medium', function() {
|
||||||
|
|
||||||
// NavPanel -> Nav.
|
// NavPanel -> Nav.
|
||||||
$navContent.appendTo($nav);
|
$navContent.appendTo($nav);
|
||||||
|
|
||||||
// Flip icon classes.
|
// Flip icon classes.
|
||||||
$nav.find('.icons, .icon')
|
$nav.find('.icons, .icon')
|
||||||
.removeClass('alt');
|
.removeClass('alt');
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
breakpoints.on('<=medium', function() {
|
breakpoints.on('<=medium', function() {
|
||||||
|
|
||||||
// Nav -> NavPanel.
|
// Nav -> NavPanel.
|
||||||
$navContent.appendTo($navPanelInner);
|
$navContent.appendTo($navPanelInner);
|
||||||
|
|
||||||
// Flip icon classes.
|
// Flip icon classes.
|
||||||
$navPanelInner.find('.icons, .icon')
|
$navPanelInner.find('.icons, .icon')
|
||||||
.addClass('alt');
|
.addClass('alt');
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Hack: Disable transitions on WP.
|
// Hack: Disable transitions on WP.
|
||||||
if (browser.os == 'wp'
|
if (browser.os == 'wp'
|
||||||
&& browser.osVersion < 10)
|
&& browser.osVersion < 10)
|
||||||
$navPanel
|
$navPanel
|
||||||
.css('transition', 'none');
|
.css('transition', 'none');
|
||||||
|
|
||||||
// Intro.
|
// Intro.
|
||||||
var $intro = $('#intro');
|
var $intro = $('#intro');
|
||||||
|
|
||||||
if ($intro.length > 0) {
|
if ($intro.length > 0) {
|
||||||
|
|
||||||
// Hack: Fix flex min-height on IE.
|
// Hack: Fix flex min-height on IE.
|
||||||
if (browser.name == 'ie') {
|
if (browser.name == 'ie') {
|
||||||
$window.on('resize.ie-intro-fix', function() {
|
$window.on('resize.ie-intro-fix', function() {
|
||||||
|
|
||||||
var h = $intro.height();
|
var h = $intro.height();
|
||||||
|
|
||||||
if (h > $window.height())
|
if (h > $window.height())
|
||||||
$intro.css('height', 'auto');
|
$intro.css('height', 'auto');
|
||||||
else
|
else
|
||||||
$intro.css('height', h);
|
$intro.css('height', h);
|
||||||
|
|
||||||
}).trigger('resize.ie-intro-fix');
|
}).trigger('resize.ie-intro-fix');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hide intro on scroll (> small).
|
// Hide intro on scroll (> small).
|
||||||
breakpoints.on('>small', function() {
|
breakpoints.on('>small', function() {
|
||||||
|
|
||||||
$main.unscrollex();
|
$main.unscrollex();
|
||||||
|
|
||||||
$main.scrollex({
|
$main.scrollex({
|
||||||
mode: 'bottom',
|
mode: 'bottom',
|
||||||
top: '25vh',
|
top: '25vh',
|
||||||
bottom: '-50vh',
|
bottom: '-50vh',
|
||||||
enter: function() {
|
enter: function() {
|
||||||
$intro.addClass('hidden');
|
$intro.addClass('hidden');
|
||||||
},
|
},
|
||||||
leave: function() {
|
leave: function() {
|
||||||
$intro.removeClass('hidden');
|
$intro.removeClass('hidden');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Hide intro on scroll (<= small).
|
// Hide intro on scroll (<= small).
|
||||||
breakpoints.on('<=small', function() {
|
breakpoints.on('<=small', function() {
|
||||||
|
|
||||||
$main.unscrollex();
|
$main.unscrollex();
|
||||||
|
|
||||||
$main.scrollex({
|
$main.scrollex({
|
||||||
mode: 'middle',
|
mode: 'middle',
|
||||||
top: '15vh',
|
top: '15vh',
|
||||||
bottom: '-15vh',
|
bottom: '-15vh',
|
||||||
enter: function() {
|
enter: function() {
|
||||||
$intro.addClass('hidden');
|
$intro.addClass('hidden');
|
||||||
},
|
},
|
||||||
leave: function() {
|
leave: function() {
|
||||||
$intro.removeClass('hidden');
|
$intro.removeClass('hidden');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
|
@ -1,48 +1,48 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Basic */
|
/* Basic */
|
||||||
|
|
||||||
// MSIE: Required for IEMobile.
|
// MSIE: Required for IEMobile.
|
||||||
@-ms-viewport {
|
@-ms-viewport {
|
||||||
width: device-width;
|
width: device-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
// MSIE: Prevents scrollbar from overlapping content.
|
// MSIE: Prevents scrollbar from overlapping content.
|
||||||
body {
|
body {
|
||||||
-ms-overflow-style: scrollbar;
|
-ms-overflow-style: scrollbar;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ensures page width is always >=320px.
|
// Ensures page width is always >=320px.
|
||||||
@include breakpoint('<=xsmall') {
|
@include breakpoint('<=xsmall') {
|
||||||
html, body {
|
html, body {
|
||||||
min-width: 320px;
|
min-width: 320px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set box model to border-box.
|
// Set box model to border-box.
|
||||||
// Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
|
// Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
|
||||||
html {
|
html {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
*, *:before, *:after {
|
*, *:before, *:after {
|
||||||
box-sizing: inherit;
|
box-sizing: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|
||||||
background-color: _palette(invert, bg);
|
background-color: _palette(invert, bg);
|
||||||
|
|
||||||
// Stops initial animations until page loads.
|
// Stops initial animations until page loads.
|
||||||
&.is-preload {
|
&.is-preload {
|
||||||
*, *:before, *:after {
|
*, *:before, *:after {
|
||||||
@include vendor('animation', 'none !important');
|
@include vendor('animation', 'none !important');
|
||||||
@include vendor('transition', 'none !important');
|
@include vendor('transition', 'none !important');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -1,76 +1,76 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
// Reset.
|
// Reset.
|
||||||
// Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)
|
// Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)
|
||||||
|
|
||||||
html, body, div, span, applet, object,
|
html, body, div, span, applet, object,
|
||||||
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
|
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
|
||||||
pre, a, abbr, acronym, address, big, cite,
|
pre, a, abbr, acronym, address, big, cite,
|
||||||
code, del, dfn, em, img, ins, kbd, q, s, samp,
|
code, del, dfn, em, img, ins, kbd, q, s, samp,
|
||||||
small, strike, strong, sub, sup, tt, var, b,
|
small, strike, strong, sub, sup, tt, var, b,
|
||||||
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
|
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
|
||||||
form, label, legend, table, caption, tbody,
|
form, label, legend, table, caption, tbody,
|
||||||
tfoot, thead, tr, th, td, article, aside,
|
tfoot, thead, tr, th, td, article, aside,
|
||||||
canvas, details, embed, figure, figcaption,
|
canvas, details, embed, figure, figcaption,
|
||||||
footer, header, hgroup, menu, nav, output, ruby,
|
footer, header, hgroup, menu, nav, output, ruby,
|
||||||
section, summary, time, mark, audio, video {
|
section, summary, time, mark, audio, video {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
font-size: 100%;
|
font-size: 100%;
|
||||||
font: inherit;
|
font: inherit;
|
||||||
vertical-align: baseline;
|
vertical-align: baseline;
|
||||||
}
|
}
|
||||||
|
|
||||||
article, aside, details, figcaption, figure,
|
article, aside, details, figcaption, figure,
|
||||||
footer, header, hgroup, menu, nav, section {
|
footer, header, hgroup, menu, nav, section {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol, ul {
|
ol, ul {
|
||||||
list-style:none;
|
list-style:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote, q {
|
blockquote, q {
|
||||||
quotes: none;
|
quotes: none;
|
||||||
|
|
||||||
&:before,
|
&:before,
|
||||||
&:after {
|
&:after {
|
||||||
content: '';
|
content: '';
|
||||||
content: none;
|
content: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border-spacing: 0;
|
border-spacing: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
-webkit-text-size-adjust: none;
|
-webkit-text-size-adjust: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
mark {
|
mark {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
input::-moz-focus-inner {
|
input::-moz-focus-inner {
|
||||||
border: 0;
|
border: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
input, select, textarea {
|
input, select, textarea {
|
||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
-ms-appearance: none;
|
-ms-appearance: none;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
}
|
}
|
||||||
|
|
@ -1,213 +1,213 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Type */
|
/* Type */
|
||||||
|
|
||||||
html {
|
html {
|
||||||
font-size: 16pt;
|
font-size: 16pt;
|
||||||
|
|
||||||
@include breakpoint('<=xlarge') {
|
@include breakpoint('<=xlarge') {
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=large') {
|
@include breakpoint('<=large') {
|
||||||
font-size: 11pt;
|
font-size: 11pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=xxsmall') {
|
@include breakpoint('<=xxsmall') {
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
color: _palette(fg);
|
color: _palette(fg);
|
||||||
}
|
}
|
||||||
|
|
||||||
body, input, select, textarea {
|
body, input, select, textarea {
|
||||||
font-family: _font(family);
|
font-family: _font(family);
|
||||||
font-weight: _font(weight);
|
font-weight: _font(weight);
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
line-height: 2.375;
|
line-height: 2.375;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
@include vendor('transition', (
|
@include vendor('transition', (
|
||||||
'color #{_duration(transition)} ease-in-out',
|
'color #{_duration(transition)} ease-in-out',
|
||||||
'background-color #{_duration(transition)} ease-in-out',
|
'background-color #{_duration(transition)} ease-in-out',
|
||||||
'border-color #{_duration(transition)} ease-in-out',
|
'border-color #{_duration(transition)} ease-in-out',
|
||||||
'box-shadow #{_duration(transition)} ease-in-out'
|
'box-shadow #{_duration(transition)} ease-in-out'
|
||||||
));
|
));
|
||||||
border-bottom: dotted 1px;
|
border-bottom: dotted 1px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
border-bottom-color: transparent;
|
border-bottom-color: transparent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
strong, b {
|
strong, b {
|
||||||
font-weight: _font(weight-bold);
|
font-weight: _font(weight-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
em, i {
|
em, i {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
font-family: _font(family-heading);
|
font-family: _font(family-heading);
|
||||||
font-weight: _font(weight-heading);
|
font-weight: _font(weight-heading);
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
letter-spacing: 0.075em;
|
letter-spacing: 0.075em;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
margin: 0 0 (_size(element-margin) * 0.5) 0;
|
margin: 0 0 (_size(element-margin) * 0.5) 0;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 4rem;
|
font-size: 4rem;
|
||||||
line-height: 1.1;
|
line-height: 1.1;
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 1.75rem;
|
font-size: 1.75rem;
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
margin: 0 0 (_size(element-margin) * 0.75) 0;
|
margin: 0 0 (_size(element-margin) * 0.75) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
margin: 0 0 (_size(element-margin) * 0.75) 0;
|
margin: 0 0 (_size(element-margin) * 0.75) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
h5 {
|
h5 {
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
h6 {
|
h6 {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub {
|
sub {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 0.5rem;
|
top: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
sup {
|
sup {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -0.5rem;
|
top: -0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
border-left: solid 4px;
|
border-left: solid 4px;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
padding: (_size(element-margin) / 4) 0 (_size(element-margin) / 4) _size(element-margin);
|
padding: (_size(element-margin) / 4) 0 (_size(element-margin) / 4) _size(element-margin);
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
border-radius: _size(border-radius);
|
border-radius: _size(border-radius);
|
||||||
border: solid 2px;
|
border: solid 2px;
|
||||||
font-family: _font(family-fixed);
|
font-family: _font(family-fixed);
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
margin: 0 0.25rem;
|
margin: 0 0.25rem;
|
||||||
padding: 0.25rem 0.65rem;
|
padding: 0.25rem 0.65rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
font-family: _font(family-fixed);
|
font-family: _font(family-fixed);
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
|
|
||||||
code {
|
code {
|
||||||
display: block;
|
display: block;
|
||||||
line-height: 1.75;
|
line-height: 1.75;
|
||||||
padding: 1rem 1.5rem;
|
padding: 1rem 1.5rem;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
border: 0;
|
border: 0;
|
||||||
border-bottom: solid 2px;
|
border-bottom: solid 2px;
|
||||||
margin: (_size(element-margin) * 1.5) 0;
|
margin: (_size(element-margin) * 1.5) 0;
|
||||||
|
|
||||||
&.major {
|
&.major {
|
||||||
margin: (_size(element-margin) * 2.5) 0;
|
margin: (_size(element-margin) * 2.5) 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.align-left {
|
.align-left {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.align-center {
|
.align-center {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.align-right {
|
.align-right {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin color-typography($p: null) {
|
@mixin color-typography($p: null) {
|
||||||
@if $p != null {
|
@if $p != null {
|
||||||
color: _palette($p, fg);
|
color: _palette($p, fg);
|
||||||
}
|
}
|
||||||
|
|
||||||
input, select, textarea {
|
input, select, textarea {
|
||||||
color: _palette($p, fg-bold);
|
color: _palette($p, fg-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: _palette($p, fg-bold);
|
color: _palette($p, fg-bold);
|
||||||
border-bottom-color: transparentize(_palette($p, fg), 0.5);
|
border-bottom-color: transparentize(_palette($p, fg), 0.5);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
border-bottom-color: transparent;
|
border-bottom-color: transparent;
|
||||||
color: _palette($p, accent) !important;
|
color: _palette($p, accent) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
strong, b {
|
strong, b {
|
||||||
color: _palette($p, fg-bold);
|
color: _palette($p, fg-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
color: _palette($p, fg-bold);
|
color: _palette($p, fg-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
border-left-color: _palette($p, border);
|
border-left-color: _palette($p, border);
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
background: _palette($p, border-bg);
|
background: _palette($p, border-bg);
|
||||||
border-color: _palette($p, border);
|
border-color: _palette($p, border);
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
border-bottom-color: _palette($p, border);
|
border-bottom-color: _palette($p, border);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include color-typography;
|
@include color-typography;
|
||||||
|
|
@ -1,101 +1,101 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Actions */
|
/* Actions */
|
||||||
|
|
||||||
ul.actions {
|
ul.actions {
|
||||||
@include vendor('display', 'flex');
|
@include vendor('display', 'flex');
|
||||||
cursor: default;
|
cursor: default;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin-left: (_size(element-margin) * -0.5);
|
margin-left: (_size(element-margin) * -0.5);
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
padding: 0 0 0 (_size(element-margin) * 0.5);
|
padding: 0 0 0 (_size(element-margin) * 0.5);
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.special {
|
&.special {
|
||||||
@include vendor('justify-content', 'center');
|
@include vendor('justify-content', 'center');
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
&:first-child {
|
&:first-child {
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.stacked {
|
&.stacked {
|
||||||
@include vendor('flex-direction', 'column');
|
@include vendor('flex-direction', 'column');
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
padding: (_size(element-margin) * 0.65) 0 0 0;
|
padding: (_size(element-margin) * 0.65) 0 0 0;
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.fit {
|
&.fit {
|
||||||
width: calc(100% + #{_size(element-margin) * 0.5});
|
width: calc(100% + #{_size(element-margin) * 0.5});
|
||||||
|
|
||||||
li {
|
li {
|
||||||
@include vendor('flex-grow', '1');
|
@include vendor('flex-grow', '1');
|
||||||
@include vendor('flex-shrink', '1');
|
@include vendor('flex-shrink', '1');
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
> * {
|
> * {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.stacked {
|
&.stacked {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=xsmall') {
|
@include breakpoint('<=xsmall') {
|
||||||
&:not(.fixed) {
|
&:not(.fixed) {
|
||||||
@include vendor('flex-direction', 'column');
|
@include vendor('flex-direction', 'column');
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
@include vendor('flex-grow', '1');
|
@include vendor('flex-grow', '1');
|
||||||
@include vendor('flex-shrink', '1');
|
@include vendor('flex-shrink', '1');
|
||||||
padding: (_size(element-margin) * 0.5) 0 0 0;
|
padding: (_size(element-margin) * 0.5) 0 0 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
> * {
|
> * {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="submit"],
|
input[type="submit"],
|
||||||
input[type="reset"],
|
input[type="reset"],
|
||||||
input[type="button"],
|
input[type="button"],
|
||||||
button,
|
button,
|
||||||
.button {
|
.button {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
&.icon {
|
&.icon {
|
||||||
&:before {
|
&:before {
|
||||||
margin-left: -0.5rem;
|
margin-left: -0.5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,34 +1,34 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Box */
|
/* Box */
|
||||||
|
|
||||||
.box {
|
.box {
|
||||||
border-radius: _size(border-radius);
|
border-radius: _size(border-radius);
|
||||||
border: solid 2px;
|
border: solid 2px;
|
||||||
margin-bottom: _size(element-margin);
|
margin-bottom: _size(element-margin);
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
|
|
||||||
> :last-child,
|
> :last-child,
|
||||||
> :last-child > :last-child,
|
> :last-child > :last-child,
|
||||||
> :last-child > :last-child > :last-child {
|
> :last-child > :last-child > :last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.alt {
|
&.alt {
|
||||||
border: 0;
|
border: 0;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin color-box($p: null) {
|
@mixin color-box($p: null) {
|
||||||
.box {
|
.box {
|
||||||
border-color: _palette($p, border);
|
border-color: _palette($p, border);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include color-box;
|
@include color-box;
|
||||||
|
|
@ -1,134 +1,134 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Button */
|
/* Button */
|
||||||
|
|
||||||
input[type="submit"],
|
input[type="submit"],
|
||||||
input[type="reset"],
|
input[type="reset"],
|
||||||
input[type="button"],
|
input[type="button"],
|
||||||
button,
|
button,
|
||||||
.button {
|
.button {
|
||||||
@include vendor('appearance', 'none');
|
@include vendor('appearance', 'none');
|
||||||
@include vendor('transition', (
|
@include vendor('transition', (
|
||||||
'background-color #{_duration(transition)} ease-in-out',
|
'background-color #{_duration(transition)} ease-in-out',
|
||||||
'box-shadow #{_duration(transition)} ease-in-out',
|
'box-shadow #{_duration(transition)} ease-in-out',
|
||||||
'color #{_duration(transition)} ease-in-out'
|
'color #{_duration(transition)} ease-in-out'
|
||||||
));
|
));
|
||||||
border: 0;
|
border: 0;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-family: _font(family-heading);
|
font-family: _font(family-heading);
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
font-weight: _font(weight-heading);
|
font-weight: _font(weight-heading);
|
||||||
letter-spacing: 0.075em;
|
letter-spacing: 0.075em;
|
||||||
height: 3rem;
|
height: 3rem;
|
||||||
line-height: 3rem;
|
line-height: 3rem;
|
||||||
padding: 0 2rem;
|
padding: 0 2rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
&.icon {
|
&.icon {
|
||||||
&:before {
|
&:before {
|
||||||
margin-right: 0.5rem;
|
margin-right: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.solo {
|
&.solo {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 4rem;
|
width: 4rem;
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
line-height: 4rem;
|
line-height: 4rem;
|
||||||
border-radius: 4rem;
|
border-radius: 4rem;
|
||||||
text-indent: 4rem;
|
text-indent: 4rem;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: block;
|
display: block;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: inherit;
|
width: inherit;
|
||||||
height: inherit;
|
height: inherit;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-indent: 0;
|
text-indent: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.fit {
|
&.fit {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.small {
|
&.small {
|
||||||
font-size: 0.7rem;
|
font-size: 0.7rem;
|
||||||
height: 2.5rem;
|
height: 2.5rem;
|
||||||
line-height: 2.5rem;
|
line-height: 2.5rem;
|
||||||
padding: 0 1.5rem;
|
padding: 0 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.large {
|
&.large {
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
height: 3.5rem;
|
height: 3.5rem;
|
||||||
line-height: 3.5rem;
|
line-height: 3.5rem;
|
||||||
padding: 0 2.75rem;
|
padding: 0 2.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=medium') {
|
@include breakpoint('<=medium') {
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
height: 3.25rem;
|
height: 3.25rem;
|
||||||
line-height: 3.25rem;
|
line-height: 3.25rem;
|
||||||
|
|
||||||
&.large {
|
&.large {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
height: 3.75rem;
|
height: 3.75rem;
|
||||||
line-height: 3.75rem;
|
line-height: 3.75rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.disabled,
|
&.disabled,
|
||||||
&:disabled {
|
&:disabled {
|
||||||
@include vendor('pointer-events', 'none');
|
@include vendor('pointer-events', 'none');
|
||||||
opacity: 0.25;
|
opacity: 0.25;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin color-button($p: null) {
|
@mixin color-button($p: null) {
|
||||||
$highlight: _palette($p, highlight);
|
$highlight: _palette($p, highlight);
|
||||||
|
|
||||||
input[type="submit"],
|
input[type="submit"],
|
||||||
input[type="reset"],
|
input[type="reset"],
|
||||||
input[type="button"],
|
input[type="button"],
|
||||||
button,
|
button,
|
||||||
.button {
|
.button {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
box-shadow: inset 0 0 0 2px _palette($p, fg-bold);
|
box-shadow: inset 0 0 0 2px _palette($p, fg-bold);
|
||||||
color: _palette($p, fg-bold) !important;
|
color: _palette($p, fg-bold) !important;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
box-shadow: inset 0 0 0 2px _palette($p, accent);
|
box-shadow: inset 0 0 0 2px _palette($p, accent);
|
||||||
color: _palette($p, accent) !important;
|
color: _palette($p, accent) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.primary {
|
&.primary {
|
||||||
background-color: _palette($p, fg-bold);
|
background-color: _palette($p, fg-bold);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
color: _palette($p, bg) !important;
|
color: _palette($p, bg) !important;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: _palette($p, accent);
|
background-color: _palette($p, accent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include color-button;
|
@include color-button;
|
||||||
|
|
@ -1,293 +1,293 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Form */
|
/* Form */
|
||||||
|
|
||||||
form {
|
form {
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
|
|
||||||
> :last-child {
|
> :last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
> .fields {
|
> .fields {
|
||||||
$gutter: (_size(element-margin) * 0.75);
|
$gutter: (_size(element-margin) * 0.75);
|
||||||
|
|
||||||
@include vendor('display', 'flex');
|
@include vendor('display', 'flex');
|
||||||
@include vendor('flex-wrap', 'wrap');
|
@include vendor('flex-wrap', 'wrap');
|
||||||
width: calc(100% + #{$gutter * 2});
|
width: calc(100% + #{$gutter * 2});
|
||||||
margin: ($gutter * -1) 0 _size(element-margin) ($gutter * -1);
|
margin: ($gutter * -1) 0 _size(element-margin) ($gutter * -1);
|
||||||
|
|
||||||
> .field {
|
> .field {
|
||||||
@include vendor('flex-grow', '0');
|
@include vendor('flex-grow', '0');
|
||||||
@include vendor('flex-shrink', '0');
|
@include vendor('flex-shrink', '0');
|
||||||
padding: $gutter 0 0 $gutter;
|
padding: $gutter 0 0 $gutter;
|
||||||
width: calc(100% - #{$gutter * 1});
|
width: calc(100% - #{$gutter * 1});
|
||||||
|
|
||||||
&.half {
|
&.half {
|
||||||
width: calc(50% - #{$gutter * 0.5});
|
width: calc(50% - #{$gutter * 0.5});
|
||||||
}
|
}
|
||||||
|
|
||||||
&.third {
|
&.third {
|
||||||
width: calc(#{100% / 3} - #{$gutter * (1 / 3)});
|
width: calc(#{100% / 3} - #{$gutter * (1 / 3)});
|
||||||
}
|
}
|
||||||
|
|
||||||
&.quarter {
|
&.quarter {
|
||||||
width: calc(25% - #{$gutter * 0.25});
|
width: calc(25% - #{$gutter * 0.25});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=xsmall') {
|
@include breakpoint('<=xsmall') {
|
||||||
> .fields {
|
> .fields {
|
||||||
$gutter: (_size(element-margin) * 0.75);
|
$gutter: (_size(element-margin) * 0.75);
|
||||||
|
|
||||||
width: calc(100% + #{$gutter * 2});
|
width: calc(100% + #{$gutter * 2});
|
||||||
margin: ($gutter * -1) 0 _size(element-margin) ($gutter * -1);
|
margin: ($gutter * -1) 0 _size(element-margin) ($gutter * -1);
|
||||||
|
|
||||||
> .field {
|
> .field {
|
||||||
padding: $gutter 0 0 $gutter;
|
padding: $gutter 0 0 $gutter;
|
||||||
width: calc(100% - #{$gutter * 1});
|
width: calc(100% - #{$gutter * 1});
|
||||||
|
|
||||||
&.half {
|
&.half {
|
||||||
width: calc(100% - #{$gutter * 1});
|
width: calc(100% - #{$gutter * 1});
|
||||||
}
|
}
|
||||||
|
|
||||||
&.third {
|
&.third {
|
||||||
width: calc(100% - #{$gutter * 1});
|
width: calc(100% - #{$gutter * 1});
|
||||||
}
|
}
|
||||||
|
|
||||||
&.quarter {
|
&.quarter {
|
||||||
width: calc(100% - #{$gutter * 1});
|
width: calc(100% - #{$gutter * 1});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
display: block;
|
display: block;
|
||||||
font-family: _font(family-heading);
|
font-family: _font(family-heading);
|
||||||
font-weight: _font(weight-heading);
|
font-weight: _font(weight-heading);
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
letter-spacing: 0.075em;
|
letter-spacing: 0.075em;
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
margin: 0 0 (_size(element-margin) * 0.375) 0;
|
margin: 0 0 (_size(element-margin) * 0.375) 0;
|
||||||
|
|
||||||
@include breakpoint('<=medium') {
|
@include breakpoint('<=medium') {
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="text"],
|
input[type="text"],
|
||||||
input[type="password"],
|
input[type="password"],
|
||||||
input[type="email"],
|
input[type="email"],
|
||||||
select,
|
select,
|
||||||
textarea {
|
textarea {
|
||||||
@include vendor('appearance', 'none');
|
@include vendor('appearance', 'none');
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
border: solid 2px;
|
border: solid 2px;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
display: block;
|
display: block;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
padding: 0 1rem;
|
padding: 0 1rem;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
&:invalid {
|
&:invalid {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
background-size: 1.25rem;
|
background-size: 1.25rem;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: calc(100% - 1rem) center;
|
background-position: calc(100% - 1rem) center;
|
||||||
height: _size(element-height);
|
height: _size(element-height);
|
||||||
padding-right: _size(element-height);
|
padding-right: _size(element-height);
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
&::-ms-value {
|
&::-ms-value {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&::-ms-expand {
|
&::-ms-expand {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="text"],
|
input[type="text"],
|
||||||
input[type="password"],
|
input[type="password"],
|
||||||
input[type="email"],
|
input[type="email"],
|
||||||
select {
|
select {
|
||||||
height: _size(element-height);
|
height: _size(element-height);
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
padding: 0.75rem 1rem;
|
padding: 0.75rem 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="checkbox"],
|
input[type="checkbox"],
|
||||||
input[type="radio"], {
|
input[type="radio"], {
|
||||||
@include vendor('appearance', 'none');
|
@include vendor('appearance', 'none');
|
||||||
display: block;
|
display: block;
|
||||||
float: left;
|
float: left;
|
||||||
margin-right: -2rem;
|
margin-right: -2rem;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
width: 1rem;
|
width: 1rem;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
|
|
||||||
& + label {
|
& + label {
|
||||||
@include icon(false, solid);
|
@include icon(false, solid);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
letter-spacing: 0;
|
letter-spacing: 0;
|
||||||
font-family: _font(family);
|
font-family: _font(family);
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
font-weight: _font(weight);
|
font-weight: _font(weight);
|
||||||
padding-left: (_size(element-height) * 0.6) + 1rem;
|
padding-left: (_size(element-height) * 0.6) + 1rem;
|
||||||
padding-right: 1rem;
|
padding-right: 1rem;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
border: solid 2px;
|
border: solid 2px;
|
||||||
content: '';
|
content: '';
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
height: (_size(element-height) * 0.6);
|
height: (_size(element-height) * 0.6);
|
||||||
left: 0;
|
left: 0;
|
||||||
line-height: (_size(element-height) * 0.55);
|
line-height: (_size(element-height) * 0.55);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
top: -0.125rem;
|
top: -0.125rem;
|
||||||
width: (_size(element-height) * 0.6);
|
width: (_size(element-height) * 0.6);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:checked + label {
|
&:checked + label {
|
||||||
&:before {
|
&:before {
|
||||||
content: '\f00c';
|
content: '\f00c';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="checkbox"] {
|
input[type="checkbox"] {
|
||||||
& + label {
|
& + label {
|
||||||
&:before {
|
&:before {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="radio"] {
|
input[type="radio"] {
|
||||||
& + label {
|
& + label {
|
||||||
&:before {
|
&:before {
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-input-placeholder {
|
::-webkit-input-placeholder {
|
||||||
opacity: 1.0;
|
opacity: 1.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
:-moz-placeholder {
|
:-moz-placeholder {
|
||||||
opacity: 1.0;
|
opacity: 1.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-moz-placeholder {
|
::-moz-placeholder {
|
||||||
opacity: 1.0;
|
opacity: 1.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
:-ms-input-placeholder {
|
:-ms-input-placeholder {
|
||||||
opacity: 1.0;
|
opacity: 1.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin color-form($p: null) {
|
@mixin color-form($p: null) {
|
||||||
label {
|
label {
|
||||||
color: _palette($p, fg-bold);
|
color: _palette($p, fg-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="text"],
|
input[type="text"],
|
||||||
input[type="password"],
|
input[type="password"],
|
||||||
input[type="email"],
|
input[type="email"],
|
||||||
select,
|
select,
|
||||||
textarea {
|
textarea {
|
||||||
border-color: _palette($p, border);
|
border-color: _palette($p, border);
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
border-color: _palette($p, accent);
|
border-color: _palette($p, accent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
background-image: svg-url("<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'><path d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='#{_palette($p, border)}' /></svg>");
|
background-image: svg-url("<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'><path d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='#{_palette($p, border)}' /></svg>");
|
||||||
|
|
||||||
option {
|
option {
|
||||||
background-color: _palette($p, bg);
|
background-color: _palette($p, bg);
|
||||||
color: _palette($p, fg);
|
color: _palette($p, fg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.select-wrapper {
|
.select-wrapper {
|
||||||
&:before {
|
&:before {
|
||||||
color: _palette($p, border);
|
color: _palette($p, border);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="checkbox"],
|
input[type="checkbox"],
|
||||||
input[type="radio"], {
|
input[type="radio"], {
|
||||||
& + label {
|
& + label {
|
||||||
color: _palette($p, fg);
|
color: _palette($p, fg);
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
border-color: _palette($p, border);
|
border-color: _palette($p, border);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:checked + label {
|
&:checked + label {
|
||||||
&:before {
|
&:before {
|
||||||
background-color: _palette($p, fg-bold);
|
background-color: _palette($p, fg-bold);
|
||||||
border-color: _palette($p, fg-bold);
|
border-color: _palette($p, fg-bold);
|
||||||
color: _palette($p, bg);
|
color: _palette($p, bg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus + label {
|
&:focus + label {
|
||||||
&:before {
|
&:before {
|
||||||
border-color: _palette($p, accent);
|
border-color: _palette($p, accent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-input-placeholder {
|
::-webkit-input-placeholder {
|
||||||
color: _palette($p, fg-light) !important;
|
color: _palette($p, fg-light) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
:-moz-placeholder {
|
:-moz-placeholder {
|
||||||
color: _palette($p, fg-light) !important;
|
color: _palette($p, fg-light) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-moz-placeholder {
|
::-moz-placeholder {
|
||||||
color: _palette($p, fg-light) !important;
|
color: _palette($p, fg-light) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
:-ms-input-placeholder {
|
:-ms-input-placeholder {
|
||||||
color: _palette($p, fg-light) !important;
|
color: _palette($p, fg-light) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.formerize-placeholder {
|
.formerize-placeholder {
|
||||||
color: _palette($p, fg-light) !important;
|
color: _palette($p, fg-light) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include color-form;
|
@include color-form;
|
||||||
|
|
@ -1,33 +1,33 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Icon */
|
/* Icon */
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
@include icon;
|
@include icon;
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
> .label {
|
> .label {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.solid {
|
&.solid {
|
||||||
&:before {
|
&:before {
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.brands {
|
&.brands {
|
||||||
&:before {
|
&:before {
|
||||||
font-family: 'Font Awesome 5 Brands';
|
font-family: 'Font Awesome 5 Brands';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,52 +1,52 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Icons */
|
/* Icons */
|
||||||
|
|
||||||
ul.icons {
|
ul.icons {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 0 0.5rem 0 0;
|
padding: 0 0.5rem 0 0;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
|
||||||
&:last-child {
|
&:last-child {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
&:before {
|
&:before {
|
||||||
width: 2.25rem;
|
width: 2.25rem;
|
||||||
height: 2.25rem;
|
height: 2.25rem;
|
||||||
line-height: 2.25rem;
|
line-height: 2.25rem;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.alt {
|
&.alt {
|
||||||
li {
|
li {
|
||||||
.icon {
|
.icon {
|
||||||
&:before {
|
&:before {
|
||||||
@include vendor('transition', (
|
@include vendor('transition', (
|
||||||
'color #{_duration(transition)} ease-in-out',
|
'color #{_duration(transition)} ease-in-out',
|
||||||
'background-color #{_duration(transition)} ease-in-out',
|
'background-color #{_duration(transition)} ease-in-out',
|
||||||
'border-color #{_duration(transition)} ease-in-out',
|
'border-color #{_duration(transition)} ease-in-out',
|
||||||
'box-shadow #{_duration(transition)} ease-in-out'
|
'box-shadow #{_duration(transition)} ease-in-out'
|
||||||
));
|
));
|
||||||
|
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,92 +1,92 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Image */
|
/* Image */
|
||||||
|
|
||||||
.image {
|
.image {
|
||||||
border: 0;
|
border: 0;
|
||||||
border-radius: _size(border-radius);
|
border-radius: _size(border-radius);
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
img {
|
img {
|
||||||
border-radius: _size(border-radius);
|
border-radius: _size(border-radius);
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.left,
|
&.left,
|
||||||
&.right {
|
&.right {
|
||||||
max-width: 40%;
|
max-width: 40%;
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.left {
|
&.left {
|
||||||
float: left;
|
float: left;
|
||||||
margin: 0 2rem 2rem 0;
|
margin: 0 2rem 2rem 0;
|
||||||
top: 0.75rem;
|
top: 0.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.right {
|
&.right {
|
||||||
float: right;
|
float: right;
|
||||||
margin: 0 0 2rem 2rem;
|
margin: 0 0 2rem 2rem;
|
||||||
top: 0.75rem;
|
top: 0.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.fit {
|
&.fit {
|
||||||
display: block;
|
display: block;
|
||||||
margin: (_size(element-margin) * 1.25) 0;
|
margin: (_size(element-margin) * 1.25) 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.main {
|
&.main {
|
||||||
display: block;
|
display: block;
|
||||||
margin: (_size(element-margin) * 2) 0;
|
margin: (_size(element-margin) * 2) 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=small') {
|
@include breakpoint('<=small') {
|
||||||
&.fit {
|
&.fit {
|
||||||
margin: _size(element-margin) 0;
|
margin: _size(element-margin) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.main {
|
&.main {
|
||||||
margin: _size(element-margin) 0;
|
margin: _size(element-margin) 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
a.image {
|
a.image {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
img {
|
img {
|
||||||
@include vendor('transition', 'transform #{_duration(transition)} ease-out');
|
@include vendor('transition', 'transform #{_duration(transition)} ease-out');
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
img {
|
img {
|
||||||
@include vendor('transform', 'scale(1.05)');
|
@include vendor('transform', 'scale(1.05)');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,98 +1,98 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* List */
|
/* List */
|
||||||
|
|
||||||
ol {
|
ol {
|
||||||
list-style: decimal;
|
list-style: decimal;
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
padding-left: 1.25rem;
|
padding-left: 1.25rem;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
padding-left: 0.25rem;
|
padding-left: 0.25rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
list-style: disc;
|
list-style: disc;
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
padding-left: 1rem;
|
padding-left: 1rem;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
padding-left: 0.5rem;
|
padding-left: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.divided {
|
&.divided {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
border-top: solid 1px;
|
border-top: solid 1px;
|
||||||
padding: 0.5rem 0;
|
padding: 0.5rem 0;
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dl {
|
dl {
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
|
|
||||||
dt {
|
dt {
|
||||||
display: block;
|
display: block;
|
||||||
font-weight: _font(weight-bold);
|
font-weight: _font(weight-bold);
|
||||||
margin: 0 0 (_size(element-margin) * 0.5) 0;
|
margin: 0 0 (_size(element-margin) * 0.5) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
dd {
|
dd {
|
||||||
margin-left: _size(element-margin);
|
margin-left: _size(element-margin);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin color-list($p: null) {
|
@mixin color-list($p: null) {
|
||||||
ul {
|
ul {
|
||||||
&.divided {
|
&.divided {
|
||||||
li {
|
li {
|
||||||
border-top-color: _palette($p, border);
|
border-top-color: _palette($p, border);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.icons {
|
&.icons {
|
||||||
li {
|
li {
|
||||||
a.icon {
|
a.icon {
|
||||||
&:hover {
|
&:hover {
|
||||||
&:before {
|
&:before {
|
||||||
color: _palette($p, accent);
|
color: _palette($p, accent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.alt {
|
&.alt {
|
||||||
li {
|
li {
|
||||||
.icon {
|
.icon {
|
||||||
&:before {
|
&:before {
|
||||||
box-shadow: inset 0 0 0 2px _palette($p, border);
|
box-shadow: inset 0 0 0 2px _palette($p, border);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
a.icon {
|
a.icon {
|
||||||
&:hover {
|
&:hover {
|
||||||
&:before {
|
&:before {
|
||||||
box-shadow: inset 0 0 0 2px _palette($p, accent);
|
box-shadow: inset 0 0 0 2px _palette($p, accent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include color-list;
|
@include color-list;
|
||||||
|
|
@ -1,111 +1,111 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Pagination */
|
/* Pagination */
|
||||||
|
|
||||||
.pagination {
|
.pagination {
|
||||||
@include vendor('display', 'inline-flex');
|
@include vendor('display', 'inline-flex');
|
||||||
@include vendor('user-select', 'none');
|
@include vendor('user-select', 'none');
|
||||||
cursor: default;
|
cursor: default;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0 0 _size(element-margin) 2px;
|
margin: 0 0 _size(element-margin) 2px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
a, span {
|
a, span {
|
||||||
@include vendor('transition', (
|
@include vendor('transition', (
|
||||||
'background-color #{_duration(transition)} ease-in-out',
|
'background-color #{_duration(transition)} ease-in-out',
|
||||||
'border-color #{_duration(transition)} ease-in-out',
|
'border-color #{_duration(transition)} ease-in-out',
|
||||||
'box-shadow #{_duration(transition)} ease-in-out',
|
'box-shadow #{_duration(transition)} ease-in-out',
|
||||||
'color #{_duration(transition)} ease-in-out'
|
'color #{_duration(transition)} ease-in-out'
|
||||||
));
|
));
|
||||||
border: solid 2px;
|
border: solid 2px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-family: _font(family-heading);
|
font-family: _font(family-heading);
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
font-weight: _font(weight-heading);
|
font-weight: _font(weight-heading);
|
||||||
height: _size(element-height);
|
height: _size(element-height);
|
||||||
letter-spacing: 0.075em;
|
letter-spacing: 0.075em;
|
||||||
letter-spacing: _font(letter-spacing-heading);
|
letter-spacing: _font(letter-spacing-heading);
|
||||||
line-height: calc(#{_size(element-height)} - 4px);
|
line-height: calc(#{_size(element-height)} - 4px);
|
||||||
margin-left: -2px;
|
margin-left: -2px;
|
||||||
min-width: _size(element-height);
|
min-width: _size(element-height);
|
||||||
position: relative;
|
position: relative;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
.next, .previous {
|
.next, .previous {
|
||||||
@include icon(false, solid);
|
@include icon(false, solid);
|
||||||
padding: 0 1.75rem;
|
padding: 0 1.75rem;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
color: inherit !important;
|
color: inherit !important;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.previous {
|
.previous {
|
||||||
&:before {
|
&:before {
|
||||||
content: '\f104';
|
content: '\f104';
|
||||||
margin-right: (0.75em / 0.8);
|
margin-right: (0.75em / 0.8);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.next {
|
.next {
|
||||||
&:before {
|
&:before {
|
||||||
content: '\f105';
|
content: '\f105';
|
||||||
float: right;
|
float: right;
|
||||||
margin-left: (0.75em / 0.8);
|
margin-left: (0.75em / 0.8);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=medium') {
|
@include breakpoint('<=medium') {
|
||||||
a, span {
|
a, span {
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=xsmall') {
|
@include breakpoint('<=xsmall') {
|
||||||
.page, .extra {
|
.page, .extra {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin color-pagination($p: null) {
|
@mixin color-pagination($p: null) {
|
||||||
.pagination {
|
.pagination {
|
||||||
a, span {
|
a, span {
|
||||||
border-color: _palette($p, border);
|
border-color: _palette($p, border);
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: _palette($p, fg-bold) !important;
|
color: _palette($p, fg-bold) !important;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: _palette($p, accent) !important;
|
color: _palette($p, accent) !important;
|
||||||
border-color: _palette($p, accent);
|
border-color: _palette($p, accent);
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|
||||||
& + a,
|
& + a,
|
||||||
& + span {
|
& + span {
|
||||||
border-left-color: _palette($p, accent);
|
border-left-color: _palette($p, accent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
background-color: _palette($p, border);
|
background-color: _palette($p, border);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
color: _palette($p, border);
|
color: _palette($p, border);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include color-pagination;
|
@include color-pagination;
|
||||||
|
|
@ -1,35 +1,35 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Row */
|
/* Row */
|
||||||
|
|
||||||
.row {
|
.row {
|
||||||
@include html-grid(1.5rem);
|
@include html-grid(1.5rem);
|
||||||
|
|
||||||
@include breakpoint('<=xlarge') {
|
@include breakpoint('<=xlarge') {
|
||||||
@include html-grid(1.5rem, 'xlarge');
|
@include html-grid(1.5rem, 'xlarge');
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=large') {
|
@include breakpoint('<=large') {
|
||||||
@include html-grid(1.5rem, 'large');
|
@include html-grid(1.5rem, 'large');
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=medium') {
|
@include breakpoint('<=medium') {
|
||||||
@include html-grid(1.5rem, 'medium');
|
@include html-grid(1.5rem, 'medium');
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=small') {
|
@include breakpoint('<=small') {
|
||||||
@include html-grid(1.5rem, 'small');
|
@include html-grid(1.5rem, 'small');
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=xsmall') {
|
@include breakpoint('<=xsmall') {
|
||||||
@include html-grid(1.5rem, 'xsmall');
|
@include html-grid(1.5rem, 'xsmall');
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=xxsmall') {
|
@include breakpoint('<=xxsmall') {
|
||||||
@include html-grid(1.5rem, 'xxsmall');
|
@include html-grid(1.5rem, 'xxsmall');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,112 +1,112 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Section/Article */
|
/* Section/Article */
|
||||||
|
|
||||||
section, article {
|
section, article {
|
||||||
&.special {
|
&.special {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
|
||||||
> .date {
|
> .date {
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
height: 1;
|
height: 1;
|
||||||
margin: 0 0 (_size(element-margin) * 0.5) 0;
|
margin: 0 0 (_size(element-margin) * 0.5) 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
> p {
|
> p {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
> h1 + p {
|
> h1 + p {
|
||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
margin-top: -0.5rem;
|
margin-top: -0.5rem;
|
||||||
line-height: 2;
|
line-height: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
> h2 + p {
|
> h2 + p {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
margin-top: -0.75rem;
|
margin-top: -0.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
> h3 + p {
|
> h3 + p {
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
margin-top: -0.75rem;
|
margin-top: -0.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
> h4 + p {
|
> h4 + p {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
margin-top: -0.75rem;
|
margin-top: -0.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.major {
|
&.major {
|
||||||
margin: 0 0 (_size(element-margin) * 2) 0;
|
margin: 0 0 (_size(element-margin) * 2) 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
> :last-child {
|
> :last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
> p {
|
> p {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
> .date {
|
> .date {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
margin: 0 0 (_size(element-margin) * 2) 0;
|
margin: 0 0 (_size(element-margin) * 2) 0;
|
||||||
|
|
||||||
&:before, &:after {
|
&:before, &:after {
|
||||||
content: '';
|
content: '';
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
width: calc(50% - 6rem);
|
width: calc(50% - 6rem);
|
||||||
border-top: solid 2px;
|
border-top: solid 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
left: 0;
|
left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:after {
|
&:after {
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=medium') {
|
@include breakpoint('<=medium') {
|
||||||
br {
|
br {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=small') {
|
@include breakpoint('<=small') {
|
||||||
&.major {
|
&.major {
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin color-section($p: null) {
|
@mixin color-section($p: null) {
|
||||||
header {
|
header {
|
||||||
&.major {
|
&.major {
|
||||||
.date {
|
.date {
|
||||||
&:before, &:after {
|
&:before, &:after {
|
||||||
border-top-color: _palette($p, border);
|
border-top-color: _palette($p, border);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include color-section;
|
@include color-section;
|
||||||
|
|
@ -1,122 +1,122 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Table */
|
/* Table */
|
||||||
|
|
||||||
.table-wrapper {
|
.table-wrapper {
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
tbody {
|
tbody {
|
||||||
tr {
|
tr {
|
||||||
border: solid 1px;
|
border: solid 1px;
|
||||||
border-left: 0;
|
border-left: 0;
|
||||||
border-right: 0;
|
border-right: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
padding: 0.75rem 0.75rem;
|
padding: 0.75rem 0.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
font-family: _font(family-heading);
|
font-family: _font(family-heading);
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
font-weight: _font(weight-heading);
|
font-weight: _font(weight-heading);
|
||||||
letter-spacing: 0.075em;
|
letter-spacing: 0.075em;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
padding: 0 0.75rem 0.75rem 0.75rem;
|
padding: 0 0.75rem 0.75rem 0.75rem;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
@include breakpoint('<=medium') {
|
@include breakpoint('<=medium') {
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
thead {
|
thead {
|
||||||
border-bottom: solid 2px;
|
border-bottom: solid 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
tfoot {
|
tfoot {
|
||||||
border-top: solid 2px;
|
border-top: solid 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.alt {
|
&.alt {
|
||||||
border-collapse: separate;
|
border-collapse: separate;
|
||||||
|
|
||||||
tbody {
|
tbody {
|
||||||
tr {
|
tr {
|
||||||
td {
|
td {
|
||||||
border: solid 1px;
|
border: solid 1px;
|
||||||
border-left-width: 0;
|
border-left-width: 0;
|
||||||
border-top-width: 0;
|
border-top-width: 0;
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
border-left-width: 1px;
|
border-left-width: 1px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
td {
|
td {
|
||||||
border-top-width: 1px;
|
border-top-width: 1px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
thead {
|
thead {
|
||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
tfoot {
|
tfoot {
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin color-table($p: null) {
|
@mixin color-table($p: null) {
|
||||||
table {
|
table {
|
||||||
tbody {
|
tbody {
|
||||||
tr {
|
tr {
|
||||||
border-color: _palette($p, border);
|
border-color: _palette($p, border);
|
||||||
|
|
||||||
&:nth-child(2n + 1) {
|
&:nth-child(2n + 1) {
|
||||||
background-color: _palette($p, border-bg);
|
background-color: _palette($p, border-bg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
color: _palette($p, fg-bold);
|
color: _palette($p, fg-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
thead {
|
thead {
|
||||||
border-bottom-color: _palette($p, border);
|
border-bottom-color: _palette($p, border);
|
||||||
}
|
}
|
||||||
|
|
||||||
tfoot {
|
tfoot {
|
||||||
border-top-color: _palette($p, border);
|
border-top-color: _palette($p, border);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.alt {
|
&.alt {
|
||||||
tbody {
|
tbody {
|
||||||
tr {
|
tr {
|
||||||
td {
|
td {
|
||||||
border-color: _palette($p, border);
|
border-color: _palette($p, border);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include color-table;
|
@include color-table;
|
||||||
|
|
@ -1,243 +1,243 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Footer */
|
/* Footer */
|
||||||
|
|
||||||
#footer {
|
#footer {
|
||||||
@include color(alt);
|
@include color(alt);
|
||||||
@include vendor('display', 'flex');
|
@include vendor('display', 'flex');
|
||||||
background-color: _palette(alt, bg);
|
background-color: _palette(alt, bg);
|
||||||
color: _palette(fg-light);
|
color: _palette(fg-light);
|
||||||
cursor: default;
|
cursor: default;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
width: calc(100% - #{_size(padding) * 2});
|
width: calc(100% - #{_size(padding) * 2});
|
||||||
max-width: _size(wrapper);
|
max-width: _size(wrapper);
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
|
||||||
> section {
|
> section {
|
||||||
@include vendor('flex-basis', '50%');
|
@include vendor('flex-basis', '50%');
|
||||||
@include vendor('flex-grow', '1');
|
@include vendor('flex-grow', '1');
|
||||||
@include vendor('flex-shrink', '1');
|
@include vendor('flex-shrink', '1');
|
||||||
@include padding((_size(padding) * 2), (_size(padding) * 2));
|
@include padding((_size(padding) * 2), (_size(padding) * 2));
|
||||||
border-left: solid 2px _palette(alt, border);
|
border-left: solid 2px _palette(alt, border);
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
border-left: 0;
|
border-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.split {
|
&.split {
|
||||||
@include vendor('display', 'flex');
|
@include vendor('display', 'flex');
|
||||||
@include vendor('flex-direction', 'column');
|
@include vendor('flex-direction', 'column');
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
> section {
|
> section {
|
||||||
@include padding((_size(padding) * 2) - 1, (_size(padding) * 2));
|
@include padding((_size(padding) * 2) - 1, (_size(padding) * 2));
|
||||||
border-top: solid 2px _palette(alt, border);
|
border-top: solid 2px _palette(alt, border);
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
@include padding((_size(padding) * 2) - 1, (_size(padding) * 2), (_size(padding), 0, 0, 0));
|
@include padding((_size(padding) * 2) - 1, (_size(padding) * 2), (_size(padding), 0, 0, 0));
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:last-child {
|
&:last-child {
|
||||||
@include padding((_size(padding) * 2) - 1, (_size(padding) * 2), (0, 0, _size(padding), 0));
|
@include padding((_size(padding) * 2) - 1, (_size(padding) * 2), (0, 0, _size(padding), 0));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.contact {
|
&.contact {
|
||||||
> section {
|
> section {
|
||||||
@include vendor('display', 'flex');
|
@include vendor('display', 'flex');
|
||||||
@include vendor('align-items', 'center');
|
@include vendor('align-items', 'center');
|
||||||
padding: (_size(padding) * 1.575) (_size(padding) * 2);
|
padding: (_size(padding) * 1.575) (_size(padding) * 2);
|
||||||
|
|
||||||
> * {
|
> * {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
> :first-child {
|
> :first-child {
|
||||||
@include vendor('flex-shrink', '0');
|
@include vendor('flex-shrink', '0');
|
||||||
@include vendor('flex-grow', '0');
|
@include vendor('flex-grow', '0');
|
||||||
width: 6rem;
|
width: 6rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
> :last-child {
|
> :last-child {
|
||||||
@include vendor('flex-shrink', '1');
|
@include vendor('flex-shrink', '1');
|
||||||
@include vendor('flex-grow', '1');
|
@include vendor('flex-grow', '1');
|
||||||
}
|
}
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
padding: (_size(padding) * 2) (_size(padding) * 2) ((_size(padding) * 2) - 1) (_size(padding) * 2);
|
padding: (_size(padding) * 2) (_size(padding) * 2) ((_size(padding) * 2) - 1) (_size(padding) * 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:last-child {
|
&:last-child {
|
||||||
padding: ((_size(padding) * 2) - 1) (_size(padding) * 2) (_size(padding) * 2) (_size(padding) * 2);
|
padding: ((_size(padding) * 2) - 1) (_size(padding) * 2) (_size(padding) * 2) (_size(padding) * 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.alt {
|
&.alt {
|
||||||
@include vendor('align-items', 'flex-start');
|
@include vendor('align-items', 'flex-start');
|
||||||
|
|
||||||
> :last-child {
|
> :last-child {
|
||||||
margin-top: -0.325rem;
|
margin-top: -0.325rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
form label,
|
form label,
|
||||||
h3,
|
h3,
|
||||||
p {
|
p {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=medium') {
|
@include breakpoint('<=medium') {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
> section {
|
> section {
|
||||||
border-top: solid 2px _palette(alt, border);
|
border-top: solid 2px _palette(alt, border);
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.split {
|
&.split {
|
||||||
> section {
|
> section {
|
||||||
@include padding((_size(padding) * 2), (_size(padding) * 2));
|
@include padding((_size(padding) * 2), (_size(padding) * 2));
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
@include padding((_size(padding) * 2), (_size(padding) * 2));
|
@include padding((_size(padding) * 2), (_size(padding) * 2));
|
||||||
}
|
}
|
||||||
|
|
||||||
&:last-child {
|
&:last-child {
|
||||||
@include padding((_size(padding) * 2), (_size(padding) * 2));
|
@include padding((_size(padding) * 2), (_size(padding) * 2));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.contact {
|
&.contact {
|
||||||
> section {
|
> section {
|
||||||
padding: (_size(padding) * 2);
|
padding: (_size(padding) * 2);
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
padding: (_size(padding) * 2);
|
padding: (_size(padding) * 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:last-child {
|
&:last-child {
|
||||||
padding: (_size(padding) * 2);
|
padding: (_size(padding) * 2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
form label,
|
form label,
|
||||||
h3,
|
h3,
|
||||||
p {
|
p {
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=small') {
|
@include breakpoint('<=small') {
|
||||||
> section {
|
> section {
|
||||||
@include padding((_size(padding) * 1), (_size(padding) * 1));
|
@include padding((_size(padding) * 1), (_size(padding) * 1));
|
||||||
|
|
||||||
&.split {
|
&.split {
|
||||||
> section {
|
> section {
|
||||||
@include padding((_size(padding) * 1), (_size(padding) * 1));
|
@include padding((_size(padding) * 1), (_size(padding) * 1));
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
@include padding((_size(padding) * 1), (_size(padding) * 1));
|
@include padding((_size(padding) * 1), (_size(padding) * 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
&:last-child {
|
&:last-child {
|
||||||
@include padding((_size(padding) * 1), (_size(padding) * 1));
|
@include padding((_size(padding) * 1), (_size(padding) * 1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.contact {
|
&.contact {
|
||||||
> section {
|
> section {
|
||||||
padding: (_size(padding) * 1);
|
padding: (_size(padding) * 1);
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
padding: (_size(padding) * 1);
|
padding: (_size(padding) * 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:last-child {
|
&:last-child {
|
||||||
padding: (_size(padding) * 1);
|
padding: (_size(padding) * 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=xsmall') {
|
@include breakpoint('<=xsmall') {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#copyright {
|
#copyright {
|
||||||
@include color-typography(invert);
|
@include color-typography(invert);
|
||||||
position: relative;
|
position: relative;
|
||||||
color: transparentize(_palette(invert, fg), 0.75);
|
color: transparentize(_palette(invert, fg), 0.75);
|
||||||
cursor: default;
|
cursor: default;
|
||||||
font-family: _font(family-heading);
|
font-family: _font(family-heading);
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
font-weight: _font(weight-heading);
|
font-weight: _font(weight-heading);
|
||||||
letter-spacing: 0.075em;
|
letter-spacing: 0.075em;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
margin: (_size(padding) * 2) auto (_size(padding) * 4) auto;
|
margin: (_size(padding) * 2) auto (_size(padding) * 4) auto;
|
||||||
width: calc(100% - #{_size(padding) * 2});
|
width: calc(100% - #{_size(padding) * 2});
|
||||||
max-width: _size(wrapper);
|
max-width: _size(wrapper);
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
border-bottom-color: inherit;
|
border-bottom-color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
border-left: solid 2px;
|
border-left: solid 2px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
padding-left: 1rem;
|
padding-left: 1rem;
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
border-left: 0;
|
border-left: 0;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=large') {
|
@include breakpoint('<=large') {
|
||||||
margin: (_size(padding) * 2) auto;
|
margin: (_size(padding) * 2) auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=xsmall') {
|
@include breakpoint('<=xsmall') {
|
||||||
ul {
|
ul {
|
||||||
li {
|
li {
|
||||||
border-left: 0;
|
border-left: 0;
|
||||||
margin: 1rem 0 0 0;
|
margin: 1rem 0 0 0;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,63 +1,63 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Header */
|
/* Header */
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
@include color-typography(invert);
|
@include color-typography(invert);
|
||||||
@include vendor('align-items', 'center');
|
@include vendor('align-items', 'center');
|
||||||
@include vendor('display', 'flex');
|
@include vendor('display', 'flex');
|
||||||
@include vendor('flex-direction', 'column');
|
@include vendor('flex-direction', 'column');
|
||||||
@include vendor('justify-content', 'flex-end');
|
@include vendor('justify-content', 'flex-end');
|
||||||
@include vendor('pointer-events', 'none');
|
@include vendor('pointer-events', 'none');
|
||||||
@include vendor('user-select', 'none');
|
@include vendor('user-select', 'none');
|
||||||
height: 20rem;
|
height: 20rem;
|
||||||
padding-bottom: (_size(padding) * 4);
|
padding-bottom: (_size(padding) * 4);
|
||||||
position: relative;
|
position: relative;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
@include vendor('transition', (
|
@include vendor('transition', (
|
||||||
'border-color #{_duration(transition)} ease-in-out',
|
'border-color #{_duration(transition)} ease-in-out',
|
||||||
'color #{_duration(transition)} ease-in-out',
|
'color #{_duration(transition)} ease-in-out',
|
||||||
'opacity 0.5s ease',
|
'opacity 0.5s ease',
|
||||||
'transform 0.5s ease',
|
'transform 0.5s ease',
|
||||||
'visibility 0.5s'
|
'visibility 0.5s'
|
||||||
));
|
));
|
||||||
@include vendor('pointer-events', 'auto');
|
@include vendor('pointer-events', 'auto');
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-color: _palette(invert, border);
|
border-color: _palette(invert, border);
|
||||||
border-width: 5px !important;
|
border-width: 5px !important;
|
||||||
font-family: _font(family-heading);
|
font-family: _font(family-heading);
|
||||||
font-size: 2.25rem;
|
font-size: 2.25rem;
|
||||||
font-weight: _font(weight-heading);
|
font-weight: _font(weight-heading);
|
||||||
letter-spacing: 0.075em;
|
letter-spacing: 0.075em;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
padding: 1rem 1.75rem;
|
padding: 1rem 1.75rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
border-color: _palette(invert, accent) !important;
|
border-color: _palette(invert, accent) !important;
|
||||||
color: _palette(invert, accent) !important;
|
color: _palette(invert, accent) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=medium') {
|
@include breakpoint('<=medium') {
|
||||||
height: 14rem;
|
height: 14rem;
|
||||||
padding-bottom: (_size(padding) * 2);
|
padding-bottom: (_size(padding) * 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=small') {
|
@include breakpoint('<=small') {
|
||||||
padding-bottom: (_size(padding) * 1.5);
|
padding-bottom: (_size(padding) * 1.5);
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
font-size: 1.75rem;
|
font-size: 1.75rem;
|
||||||
border-width: 3px !important;
|
border-width: 3px !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,115 +1,115 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Intro */
|
/* Intro */
|
||||||
|
|
||||||
#intro {
|
#intro {
|
||||||
@include color-typography(invert);
|
@include color-typography(invert);
|
||||||
@include color-button(invert);
|
@include color-button(invert);
|
||||||
@include padding(_size(padding) * 4, _size(padding) * 2);
|
@include padding(_size(padding) * 4, _size(padding) * 2);
|
||||||
@include vendor('align-items', 'center');
|
@include vendor('align-items', 'center');
|
||||||
@include vendor('display', 'flex');
|
@include vendor('display', 'flex');
|
||||||
@include vendor('flex-direction', 'column');
|
@include vendor('flex-direction', 'column');
|
||||||
@include vendor('justify-content', 'flex-end');
|
@include vendor('justify-content', 'flex-end');
|
||||||
@include vendor('transition', (
|
@include vendor('transition', (
|
||||||
'opacity 1s ease',
|
'opacity 1s ease',
|
||||||
'transform 1s ease'
|
'transform 1s ease'
|
||||||
));
|
));
|
||||||
position: relative;
|
position: relative;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 5rem;
|
font-size: 5rem;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
margin-top: -0.25rem;
|
margin-top: -0.25rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
& + #header {
|
& + #header {
|
||||||
margin-top: -20rem;
|
margin-top: -20rem;
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
@include vendor('transform', 'translateY(2rem)');
|
@include vendor('transform', 'translateY(2rem)');
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.hidden {
|
&.hidden {
|
||||||
@include vendor('pointer-events', 'none');
|
@include vendor('pointer-events', 'none');
|
||||||
@include vendor('transform', 'translateY(2rem)');
|
@include vendor('transform', 'translateY(2rem)');
|
||||||
@include vendor('transition', (
|
@include vendor('transition', (
|
||||||
'opacity 0.5s ease',
|
'opacity 0.5s ease',
|
||||||
'transform 0.5s ease',
|
'transform 0.5s ease',
|
||||||
'visibility 0.5s'
|
'visibility 0.5s'
|
||||||
));
|
));
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
|
|
||||||
& + #header {
|
& + #header {
|
||||||
.logo {
|
.logo {
|
||||||
@include vendor('transform', 'translateY(0)');
|
@include vendor('transform', 'translateY(0)');
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body.is-preload & {
|
body.is-preload & {
|
||||||
@include vendor('transform', 'translateY(2rem)');
|
@include vendor('transform', 'translateY(2rem)');
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
|
||||||
&:not(.hidden) {
|
&:not(.hidden) {
|
||||||
& + #header + #nav {
|
& + #header + #nav {
|
||||||
@include vendor('transform', 'translateY(4rem)');
|
@include vendor('transform', 'translateY(4rem)');
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=medium') {
|
@include breakpoint('<=medium') {
|
||||||
@include padding(_size(padding) * 2, _size(padding) * 2);
|
@include padding(_size(padding) * 2, _size(padding) * 2);
|
||||||
min-height: 90vh;
|
min-height: 90vh;
|
||||||
|
|
||||||
p {
|
p {
|
||||||
br {
|
br {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
& + #header {
|
& + #header {
|
||||||
margin-top: -14rem;
|
margin-top: -14rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=small') {
|
@include breakpoint('<=small') {
|
||||||
@include padding(_size(padding) * 1.5, _size(padding) * 1);
|
@include padding(_size(padding) * 1.5, _size(padding) * 1);
|
||||||
min-height: 80vh;
|
min-height: 80vh;
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 3.25rem;
|
font-size: 3.25rem;
|
||||||
line-height: 1.1;
|
line-height: 1.1;
|
||||||
margin-bottom: _size(element-margin) * 0.5;
|
margin-bottom: _size(element-margin) * 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
margin-top: 0rem;
|
margin-top: 0rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.actions {
|
.actions {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,158 +1,158 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Main */
|
/* Main */
|
||||||
|
|
||||||
#main {
|
#main {
|
||||||
background-color: _palette(bg);
|
background-color: _palette(bg);
|
||||||
position: relative;
|
position: relative;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
width: calc(100% - #{_size(padding) * 2});
|
width: calc(100% - #{_size(padding) * 2});
|
||||||
max-width: _size(wrapper);
|
max-width: _size(wrapper);
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
|
||||||
> * {
|
> * {
|
||||||
@include padding((_size(padding) * 2), (_size(padding) * 2));
|
@include padding((_size(padding) * 2), (_size(padding) * 2));
|
||||||
border-top: solid 2px _palette(border);
|
border-top: solid 2px _palette(border);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
> footer {
|
> footer {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
> .post {
|
> .post {
|
||||||
@include padding((_size(padding) * 4), (_size(padding) * 4));
|
@include padding((_size(padding) * 4), (_size(padding) * 4));
|
||||||
|
|
||||||
header {
|
header {
|
||||||
&.major {
|
&.major {
|
||||||
> .date {
|
> .date {
|
||||||
margin-top: -2rem;
|
margin-top: -2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
> h1, h2 {
|
> h1, h2 {
|
||||||
font-size: 4rem;
|
font-size: 4rem;
|
||||||
line-height: 1.1;
|
line-height: 1.1;
|
||||||
margin: 0 0 _size(element-margin) 0;
|
margin: 0 0 _size(element-margin) 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.featured {
|
&.featured {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=large') {
|
@include breakpoint('<=large') {
|
||||||
@include padding((_size(padding) * 3), (_size(padding) * 2));
|
@include padding((_size(padding) * 3), (_size(padding) * 2));
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=small') {
|
@include breakpoint('<=small') {
|
||||||
@include padding((_size(padding) * 2), (_size(padding) * 1));
|
@include padding((_size(padding) * 2), (_size(padding) * 1));
|
||||||
|
|
||||||
header {
|
header {
|
||||||
&.major {
|
&.major {
|
||||||
> .date {
|
> .date {
|
||||||
margin-top: -1rem;
|
margin-top: -1rem;
|
||||||
margin-bottom: _size(element-margin);
|
margin-bottom: _size(element-margin);
|
||||||
}
|
}
|
||||||
|
|
||||||
> h1, h2 {
|
> h1, h2 {
|
||||||
font-size: 2.5rem;
|
font-size: 2.5rem;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
margin: 0 0 (_size(element-margin) * 0.75) 0;
|
margin: 0 0 (_size(element-margin) * 0.75) 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
> .posts {
|
> .posts {
|
||||||
@include fixed-grid((
|
@include fixed-grid((
|
||||||
columns: 2,
|
columns: 2,
|
||||||
gutters: (_size(padding) * 4),
|
gutters: (_size(padding) * 4),
|
||||||
horizontal-align: center,
|
horizontal-align: center,
|
||||||
vertical-align: flex-start,
|
vertical-align: flex-start,
|
||||||
flush: false
|
flush: false
|
||||||
));
|
));
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
> article {
|
> article {
|
||||||
border-color: _palette(border);
|
border-color: _palette(border);
|
||||||
border-left-width: 2px;
|
border-left-width: 2px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-top-width: 2px;
|
border-top-width: 2px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
> :last-child {
|
> :last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-child(2n - 1) {
|
&:nth-child(2n - 1) {
|
||||||
border-left-width: 0;
|
border-left-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-child(-n + 2) {
|
&:nth-child(-n + 2) {
|
||||||
border-top-width: 0;
|
border-top-width: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=medium') {
|
@include breakpoint('<=medium') {
|
||||||
@include fixed-grid-resize((
|
@include fixed-grid-resize((
|
||||||
columns: 2,
|
columns: 2,
|
||||||
gutters: (_size(padding) * 2.5),
|
gutters: (_size(padding) * 2.5),
|
||||||
flush: false
|
flush: false
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=small') {
|
@include breakpoint('<=small') {
|
||||||
@include fixed-grid-resize((
|
@include fixed-grid-resize((
|
||||||
columns: 1,
|
columns: 1,
|
||||||
gutters: (_size(padding) * 2),
|
gutters: (_size(padding) * 2),
|
||||||
prev-columns: 2,
|
prev-columns: 2,
|
||||||
flush: false
|
flush: false
|
||||||
));
|
));
|
||||||
|
|
||||||
> article {
|
> article {
|
||||||
&:nth-child(2n - 1) {
|
&:nth-child(2n - 1) {
|
||||||
border-left-width: 2px;
|
border-left-width: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-child(-n + 2) {
|
&:nth-child(-n + 2) {
|
||||||
border-top-width: 2px;
|
border-top-width: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-child(n) {
|
&:nth-child(n) {
|
||||||
border-left-width: 0;
|
border-left-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-child(-n + 1) {
|
&:nth-child(-n + 1) {
|
||||||
border-top-width: 0;
|
border-top-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.image {
|
.image {
|
||||||
max-width: 25rem;
|
max-width: 25rem;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=small') {
|
@include breakpoint('<=small') {
|
||||||
> * {
|
> * {
|
||||||
@include padding((_size(padding) * 1), (_size(padding) * 1));
|
@include padding((_size(padding) * 1), (_size(padding) * 1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=xsmall') {
|
@include breakpoint('<=xsmall') {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,85 +1,85 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Nav */
|
/* Nav */
|
||||||
|
|
||||||
#nav {
|
#nav {
|
||||||
@include color-list(invert);
|
@include color-list(invert);
|
||||||
@include color-typography(invert);
|
@include color-typography(invert);
|
||||||
@include vendor('display', 'flex');
|
@include vendor('display', 'flex');
|
||||||
@include vendor('transition', (
|
@include vendor('transition', (
|
||||||
'transform 1s ease',
|
'transform 1s ease',
|
||||||
'opacity 1s ease'
|
'opacity 1s ease'
|
||||||
));
|
));
|
||||||
background: rgba(255,255,255,0.175);
|
background: rgba(255,255,255,0.175);
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
line-height: 4rem;
|
line-height: 4rem;
|
||||||
margin: -4rem auto 0 auto;
|
margin: -4rem auto 0 auto;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 0 2rem 0 0;
|
padding: 0 2rem 0 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: calc(100% - #{_size(padding) * 2});
|
width: calc(100% - #{_size(padding) * 2});
|
||||||
max-width: _size(wrapper);
|
max-width: _size(wrapper);
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
&.links {
|
&.links {
|
||||||
@include vendor('display', 'flex');
|
@include vendor('display', 'flex');
|
||||||
@include vendor('flex-grow', '1');
|
@include vendor('flex-grow', '1');
|
||||||
@include vendor('flex-shrink', '1');
|
@include vendor('flex-shrink', '1');
|
||||||
font-family: _font(family-heading);
|
font-family: _font(family-heading);
|
||||||
font-weight: _font(weight-heading);
|
font-weight: _font(weight-heading);
|
||||||
letter-spacing: 0.075em;
|
letter-spacing: 0.075em;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
display: block;
|
display: block;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
@include vendor('transition', (
|
@include vendor('transition', (
|
||||||
'background-color #{_duration(transition)} ease-in-out',
|
'background-color #{_duration(transition)} ease-in-out',
|
||||||
'color #{_duration(transition)} ease-in-out'
|
'color #{_duration(transition)} ease-in-out'
|
||||||
));
|
));
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
outline: none;
|
outline: none;
|
||||||
padding: 0 2rem;
|
padding: 0 2rem;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: inherit !important;
|
color: inherit !important;
|
||||||
background-color: transparentize(_palette(invert, fg), 0.9);
|
background-color: transparentize(_palette(invert, fg), 0.9);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
background-color: _palette(invert, fg);
|
background-color: _palette(invert, fg);
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: _palette(invert, bg);
|
color: _palette(invert, bg);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: _palette(invert, accent) !important;
|
color: _palette(invert, accent) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.icons {
|
&.icons {
|
||||||
@include vendor('flex-grow', '0');
|
@include vendor('flex-grow', '0');
|
||||||
@include vendor('flex-shrink', '0');
|
@include vendor('flex-shrink', '0');
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=medium') {
|
@include breakpoint('<=medium') {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,153 +1,153 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Nav Panel */
|
/* Nav Panel */
|
||||||
|
|
||||||
#navPanelToggle {
|
#navPanelToggle {
|
||||||
@include icon(false, solid);
|
@include icon(false, solid);
|
||||||
@include vendor('transition', (
|
@include vendor('transition', (
|
||||||
'color #{_duration(transition)} ease-in-out',
|
'color #{_duration(transition)} ease-in-out',
|
||||||
'background-color #{_duration(transition)} ease-in-out',
|
'background-color #{_duration(transition)} ease-in-out',
|
||||||
'box-shadow #{_duration(transition)} ease-in-out'
|
'box-shadow #{_duration(transition)} ease-in-out'
|
||||||
));
|
));
|
||||||
display: none;
|
display: none;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0.75rem;
|
top: 0.75rem;
|
||||||
right: 0.75rem;
|
right: 0.75rem;
|
||||||
border: 0;
|
border: 0;
|
||||||
color: _palette(invert, fg-bold);
|
color: _palette(invert, fg-bold);
|
||||||
font-family: _font(family-heading);
|
font-family: _font(family-heading);
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
font-weight: _font(weight-heading);
|
font-weight: _font(weight-heading);
|
||||||
letter-spacing: 0.075em;
|
letter-spacing: 0.075em;
|
||||||
padding: 0.375rem 1.25rem;
|
padding: 0.375rem 1.25rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
z-index: _misc(z-index-base) + 1;
|
z-index: _misc(z-index-base) + 1;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
content: '\f0c9';
|
content: '\f0c9';
|
||||||
margin-right: 0.5rem;
|
margin-right: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.alt {
|
&.alt {
|
||||||
background-color: transparentize(_palette(bg), 0.125);
|
background-color: transparentize(_palette(bg), 0.125);
|
||||||
box-shadow: 0 0.125rem 0.75rem 0 transparentize(_palette(invert, bg), 0.75);
|
box-shadow: 0 0.125rem 0.75rem 0 transparentize(_palette(invert, bg), 0.75);
|
||||||
color: _palette(fg-bold);
|
color: _palette(fg-bold);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: _palette(bg);
|
background-color: _palette(bg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=medium') {
|
@include breakpoint('<=medium') {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=small') {
|
@include breakpoint('<=small') {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
padding: 0.25rem 1rem;
|
padding: 0.25rem 1rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#navPanel {
|
#navPanel {
|
||||||
@include vendor('transform', 'translateX(20rem)');
|
@include vendor('transform', 'translateX(20rem)');
|
||||||
@include vendor('transition', ('transform #{_duration(menu)} ease', 'box-shadow #{_duration(menu)} ease', 'visibility #{_duration(menu)}'));
|
@include vendor('transition', ('transform #{_duration(menu)} ease', 'box-shadow #{_duration(menu)} ease', 'visibility #{_duration(menu)}'));
|
||||||
display: none;
|
display: none;
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
background: _palette(bg);
|
background: _palette(bg);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
color: _palette(fg-bold);
|
color: _palette(fg-bold);
|
||||||
height: 100%;
|
height: 100%;
|
||||||
max-width: 80%;
|
max-width: 80%;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
padding: 3rem 2rem;
|
padding: 3rem 2rem;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
right: 0;
|
right: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
width: 20rem;
|
width: 20rem;
|
||||||
z-index: _misc(z-index-base) + 2;
|
z-index: _misc(z-index-base) + 2;
|
||||||
|
|
||||||
.links {
|
.links {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
border-top: solid 2px _palette(border);
|
border-top: solid 2px _palette(border);
|
||||||
|
|
||||||
a {
|
a {
|
||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
display: block;
|
display: block;
|
||||||
font-family: _font(family-heading);
|
font-family: _font(family-heading);
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
font-weight: _font(weight-heading);
|
font-weight: _font(weight-heading);
|
||||||
letter-spacing: 0.075em;
|
letter-spacing: 0.075em;
|
||||||
padding: 0.75rem 0;
|
padding: 0.75rem 0;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.close {
|
.close {
|
||||||
@include icon(false, solid);
|
@include icon(false, solid);
|
||||||
@include vendor('transition', 'color #{_duration(transition)} ease-in-out');
|
@include vendor('transition', 'color #{_duration(transition)} ease-in-out');
|
||||||
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
||||||
border: 0;
|
border: 0;
|
||||||
color: _palette(fg-light);
|
color: _palette(fg-light);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: block;
|
display: block;
|
||||||
height: 3.25rem;
|
height: 3.25rem;
|
||||||
line-height: 3.25rem;
|
line-height: 3.25rem;
|
||||||
padding-right: 1.25rem;
|
padding-right: 1.25rem;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
top: 0;
|
top: 0;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
width: 7rem;
|
width: 7rem;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
content: '\f00d';
|
content: '\f00d';
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: _palette(fg-bold);
|
color: _palette(fg-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=small') {
|
@include breakpoint('<=small') {
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
line-height: 4rem;
|
line-height: 4rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=medium') {
|
@include breakpoint('<=medium') {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=small') {
|
@include breakpoint('<=small') {
|
||||||
padding: 2.5rem 1.75rem;
|
padding: 2.5rem 1.75rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=medium') {
|
@include breakpoint('<=medium') {
|
||||||
body.is-navPanel-visible {
|
body.is-navPanel-visible {
|
||||||
#wrapper {
|
#wrapper {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
#navPanel {
|
#navPanel {
|
||||||
@include vendor('transform', 'translateX(0)');
|
@include vendor('transform', 'translateX(0)');
|
||||||
box-shadow: 0 0 1.5rem 0 rgba(0,0,0,0.2);
|
box-shadow: 0 0 1.5rem 0 rgba(0,0,0,0.2);
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,64 +1,64 @@
|
||||||
///
|
///
|
||||||
/// Massively by HTML5 UP
|
/// Massively by HTML5 UP
|
||||||
/// html5up.net | @ajlkn
|
/// html5up.net | @ajlkn
|
||||||
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
///
|
///
|
||||||
|
|
||||||
/* Wrapper */
|
/* Wrapper */
|
||||||
|
|
||||||
#wrapper {
|
#wrapper {
|
||||||
@include vendor('transition', 'opacity #{_duration(menu)} ease');
|
@include vendor('transition', 'opacity #{_duration(menu)} ease');
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
> .bg {
|
> .bg {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: _palette(wrapper-bg);
|
background-color: _palette(wrapper-bg);
|
||||||
background-image: url('../../images/overlay.png'), linear-gradient(0deg, rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../../images/bg.jpg');
|
background-image: url('../../images/overlay.png'), linear-gradient(0deg, rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../../images/bg.jpg');
|
||||||
background-size: auto, auto, 100% auto;
|
background-size: auto, auto, 100% auto;
|
||||||
background-position: center, center, top center;
|
background-position: center, center, top center;
|
||||||
background-repeat: repeat, no-repeat, no-repeat;
|
background-repeat: repeat, no-repeat, no-repeat;
|
||||||
background-attachment: scroll, scroll, scroll;
|
background-attachment: scroll, scroll, scroll;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
|
|
||||||
&.fixed {
|
&.fixed {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.fade-in {
|
&.fade-in {
|
||||||
&:before {
|
&:before {
|
||||||
@include vendor('pointer-events', 'none');
|
@include vendor('pointer-events', 'none');
|
||||||
@include vendor('transition', 'opacity 1s ease-in-out');
|
@include vendor('transition', 'opacity 1s ease-in-out');
|
||||||
@include vendor('transition-delay', '0.75s');
|
@include vendor('transition-delay', '0.75s');
|
||||||
background: _palette(invert, bg);
|
background: _palette(invert, bg);
|
||||||
content: '';
|
content: '';
|
||||||
display: block;
|
display: block;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
left: 0;
|
left: 0;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.is-preload & {
|
body.is-preload & {
|
||||||
&:before {
|
&:before {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include orientation(portrait) {
|
@include orientation(portrait) {
|
||||||
> .bg {
|
> .bg {
|
||||||
background-size: auto, auto, auto 175%;
|
background-size: auto, auto, auto 175%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,338 +1,338 @@
|
||||||
// fixed-grid.scss v1.0 | @ajlkn | MIT licensed */
|
// fixed-grid.scss v1.0 | @ajlkn | MIT licensed */
|
||||||
|
|
||||||
// Mixins.
|
// Mixins.
|
||||||
|
|
||||||
/// Initializes base fixed-grid classes.
|
/// Initializes base fixed-grid classes.
|
||||||
/// @param {string} $vertical-align Vertical alignment of cells.
|
/// @param {string} $vertical-align Vertical alignment of cells.
|
||||||
/// @param {string} $horizontal-align Horizontal alignment of cells.
|
/// @param {string} $horizontal-align Horizontal alignment of cells.
|
||||||
@mixin fixed-grid-base($vertical-align: null, $horizontal-align: null) {
|
@mixin fixed-grid-base($vertical-align: null, $horizontal-align: null) {
|
||||||
|
|
||||||
// Grid.
|
// Grid.
|
||||||
@include vendor('display', 'flex');
|
@include vendor('display', 'flex');
|
||||||
@include vendor('flex-wrap', 'wrap');
|
@include vendor('flex-wrap', 'wrap');
|
||||||
|
|
||||||
// Vertical alignment.
|
// Vertical alignment.
|
||||||
@if ($vertical-align == top) {
|
@if ($vertical-align == top) {
|
||||||
@include vendor('align-items', 'flex-start');
|
@include vendor('align-items', 'flex-start');
|
||||||
}
|
}
|
||||||
@else if ($vertical-align == bottom) {
|
@else if ($vertical-align == bottom) {
|
||||||
@include vendor('align-items', 'flex-end');
|
@include vendor('align-items', 'flex-end');
|
||||||
}
|
}
|
||||||
@else if ($vertical-align == center) {
|
@else if ($vertical-align == center) {
|
||||||
@include vendor('align-items', 'center');
|
@include vendor('align-items', 'center');
|
||||||
}
|
}
|
||||||
@else {
|
@else {
|
||||||
@include vendor('align-items', 'stretch');
|
@include vendor('align-items', 'stretch');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Horizontal alignment.
|
// Horizontal alignment.
|
||||||
@if ($horizontal-align != null) {
|
@if ($horizontal-align != null) {
|
||||||
text-align: $horizontal-align;
|
text-align: $horizontal-align;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Cells.
|
// Cells.
|
||||||
> * {
|
> * {
|
||||||
@include vendor('flex-shrink', '1');
|
@include vendor('flex-shrink', '1');
|
||||||
@include vendor('flex-grow', '0');
|
@include vendor('flex-grow', '0');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Sets up fixed-grid columns.
|
/// Sets up fixed-grid columns.
|
||||||
/// @param {integer} $columns Columns.
|
/// @param {integer} $columns Columns.
|
||||||
@mixin fixed-grid-columns($columns) {
|
@mixin fixed-grid-columns($columns) {
|
||||||
|
|
||||||
> * {
|
> * {
|
||||||
$cell-width: 100% / $columns;
|
$cell-width: 100% / $columns;
|
||||||
width: #{$cell-width};
|
width: #{$cell-width};
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Sets up fixed-grid gutters.
|
/// Sets up fixed-grid gutters.
|
||||||
/// @param {integer} $columns Columns.
|
/// @param {integer} $columns Columns.
|
||||||
/// @param {number} $gutters Gutters.
|
/// @param {number} $gutters Gutters.
|
||||||
@mixin fixed-grid-gutters($columns, $gutters) {
|
@mixin fixed-grid-gutters($columns, $gutters) {
|
||||||
|
|
||||||
// Apply padding.
|
// Apply padding.
|
||||||
> * {
|
> * {
|
||||||
$cell-width: 100% / $columns;
|
$cell-width: 100% / $columns;
|
||||||
|
|
||||||
padding: ($gutters * 0.5);
|
padding: ($gutters * 0.5);
|
||||||
width: $cell-width;
|
width: $cell-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Sets up fixed-grid gutters (flush).
|
/// Sets up fixed-grid gutters (flush).
|
||||||
/// @param {integer} $columns Columns.
|
/// @param {integer} $columns Columns.
|
||||||
/// @param {number} $gutters Gutters.
|
/// @param {number} $gutters Gutters.
|
||||||
@mixin fixed-grid-gutters-flush($columns, $gutters) {
|
@mixin fixed-grid-gutters-flush($columns, $gutters) {
|
||||||
|
|
||||||
// Apply padding.
|
// Apply padding.
|
||||||
> * {
|
> * {
|
||||||
$cell-width: 100% / $columns;
|
$cell-width: 100% / $columns;
|
||||||
$cell-width-pad: $gutters / $columns;
|
$cell-width-pad: $gutters / $columns;
|
||||||
|
|
||||||
padding: ($gutters * 0.5);
|
padding: ($gutters * 0.5);
|
||||||
width: calc(#{$cell-width} + #{$cell-width-pad});
|
width: calc(#{$cell-width} + #{$cell-width-pad});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clear top/bottom gutters.
|
// Clear top/bottom gutters.
|
||||||
> :nth-child(-n + #{$columns}) {
|
> :nth-child(-n + #{$columns}) {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
> :nth-last-child(-n + #{$columns}) {
|
> :nth-last-child(-n + #{$columns}) {
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clear left/right gutters.
|
// Clear left/right gutters.
|
||||||
> :nth-child(#{$columns}n + 1) {
|
> :nth-child(#{$columns}n + 1) {
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
> :nth-child(#{$columns}n) {
|
> :nth-child(#{$columns}n) {
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Adjust widths of leftmost and rightmost cells.
|
// Adjust widths of leftmost and rightmost cells.
|
||||||
> :nth-child(#{$columns}n + 1),
|
> :nth-child(#{$columns}n + 1),
|
||||||
> :nth-child(#{$columns}n) {
|
> :nth-child(#{$columns}n) {
|
||||||
$cell-width: 100% / $columns;
|
$cell-width: 100% / $columns;
|
||||||
$cell-width-pad: ($gutters / $columns) - ($gutters / 2);
|
$cell-width-pad: ($gutters / $columns) - ($gutters / 2);
|
||||||
|
|
||||||
width: calc(#{$cell-width} + #{$cell-width-pad});
|
width: calc(#{$cell-width} + #{$cell-width-pad});
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Reset fixed-grid gutters (flush only).
|
/// Reset fixed-grid gutters (flush only).
|
||||||
/// Used to override a previous set of fixed-grid gutter classes.
|
/// Used to override a previous set of fixed-grid gutter classes.
|
||||||
/// @param {integer} $columns Columns.
|
/// @param {integer} $columns Columns.
|
||||||
/// @param {number} $gutters Gutters.
|
/// @param {number} $gutters Gutters.
|
||||||
/// @param {integer} $prev-columns Previous columns.
|
/// @param {integer} $prev-columns Previous columns.
|
||||||
@mixin fixed-grid-gutters-flush-reset($columns, $gutters, $prev-columns) {
|
@mixin fixed-grid-gutters-flush-reset($columns, $gutters, $prev-columns) {
|
||||||
|
|
||||||
// Apply padding.
|
// Apply padding.
|
||||||
> * {
|
> * {
|
||||||
$cell-width: 100% / $prev-columns;
|
$cell-width: 100% / $prev-columns;
|
||||||
$cell-width-pad: $gutters / $prev-columns;
|
$cell-width-pad: $gutters / $prev-columns;
|
||||||
|
|
||||||
padding: ($gutters * 0.5);
|
padding: ($gutters * 0.5);
|
||||||
width: calc(#{$cell-width} + #{$cell-width-pad});
|
width: calc(#{$cell-width} + #{$cell-width-pad});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clear top/bottom gutters.
|
// Clear top/bottom gutters.
|
||||||
> :nth-child(-n + #{$prev-columns}) {
|
> :nth-child(-n + #{$prev-columns}) {
|
||||||
padding-top: ($gutters * 0.5);
|
padding-top: ($gutters * 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
> :nth-last-child(-n + #{$prev-columns}) {
|
> :nth-last-child(-n + #{$prev-columns}) {
|
||||||
padding-bottom: ($gutters * 0.5);
|
padding-bottom: ($gutters * 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clear left/right gutters.
|
// Clear left/right gutters.
|
||||||
> :nth-child(#{$prev-columns}n + 1) {
|
> :nth-child(#{$prev-columns}n + 1) {
|
||||||
padding-left: ($gutters * 0.5);
|
padding-left: ($gutters * 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
> :nth-child(#{$prev-columns}n) {
|
> :nth-child(#{$prev-columns}n) {
|
||||||
padding-right: ($gutters * 0.5);
|
padding-right: ($gutters * 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Adjust widths of leftmost and rightmost cells.
|
// Adjust widths of leftmost and rightmost cells.
|
||||||
> :nth-child(#{$prev-columns}n + 1),
|
> :nth-child(#{$prev-columns}n + 1),
|
||||||
> :nth-child(#{$prev-columns}n) {
|
> :nth-child(#{$prev-columns}n) {
|
||||||
$cell-width: 100% / $columns;
|
$cell-width: 100% / $columns;
|
||||||
$cell-width-pad: $gutters / $columns;
|
$cell-width-pad: $gutters / $columns;
|
||||||
|
|
||||||
padding: ($gutters * 0.5);
|
padding: ($gutters * 0.5);
|
||||||
width: calc(#{$cell-width} + #{$cell-width-pad});
|
width: calc(#{$cell-width} + #{$cell-width-pad});
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Adds debug styles to current fixed-grid element.
|
/// Adds debug styles to current fixed-grid element.
|
||||||
@mixin fixed-grid-debug() {
|
@mixin fixed-grid-debug() {
|
||||||
|
|
||||||
box-shadow: 0 0 0 1px red;
|
box-shadow: 0 0 0 1px red;
|
||||||
|
|
||||||
> * {
|
> * {
|
||||||
box-shadow: inset 0 0 0 1px blue;
|
box-shadow: inset 0 0 0 1px blue;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
> * {
|
> * {
|
||||||
position: relative;
|
position: relative;
|
||||||
box-shadow: inset 0 0 0 1px green;
|
box-shadow: inset 0 0 0 1px green;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Initializes the current element as a fixed grid.
|
/// Initializes the current element as a fixed grid.
|
||||||
/// @param {integer} $columns Columns (optional).
|
/// @param {integer} $columns Columns (optional).
|
||||||
/// @param {number} $gutters Gutters (optional).
|
/// @param {number} $gutters Gutters (optional).
|
||||||
/// @param {bool} $flush If true, clears padding around the very edge of the grid.
|
/// @param {bool} $flush If true, clears padding around the very edge of the grid.
|
||||||
@mixin fixed-grid($settings: ()) {
|
@mixin fixed-grid($settings: ()) {
|
||||||
|
|
||||||
// Settings.
|
// Settings.
|
||||||
|
|
||||||
// Debug.
|
// Debug.
|
||||||
$debug: false;
|
$debug: false;
|
||||||
|
|
||||||
@if (map-has-key($settings, 'debug')) {
|
@if (map-has-key($settings, 'debug')) {
|
||||||
$debug: map-get($settings, 'debug');
|
$debug: map-get($settings, 'debug');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Vertical align.
|
// Vertical align.
|
||||||
$vertical-align: null;
|
$vertical-align: null;
|
||||||
|
|
||||||
@if (map-has-key($settings, 'vertical-align')) {
|
@if (map-has-key($settings, 'vertical-align')) {
|
||||||
$vertical-align: map-get($settings, 'vertical-align');
|
$vertical-align: map-get($settings, 'vertical-align');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Horizontal align.
|
// Horizontal align.
|
||||||
$horizontal-align: null;
|
$horizontal-align: null;
|
||||||
|
|
||||||
@if (map-has-key($settings, 'horizontal-align')) {
|
@if (map-has-key($settings, 'horizontal-align')) {
|
||||||
$horizontal-align: map-get($settings, 'horizontal-align');
|
$horizontal-align: map-get($settings, 'horizontal-align');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Columns.
|
// Columns.
|
||||||
$columns: null;
|
$columns: null;
|
||||||
|
|
||||||
@if (map-has-key($settings, 'columns')) {
|
@if (map-has-key($settings, 'columns')) {
|
||||||
$columns: map-get($settings, 'columns');
|
$columns: map-get($settings, 'columns');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Gutters.
|
// Gutters.
|
||||||
$gutters: 0;
|
$gutters: 0;
|
||||||
|
|
||||||
@if (map-has-key($settings, 'gutters')) {
|
@if (map-has-key($settings, 'gutters')) {
|
||||||
$gutters: map-get($settings, 'gutters');
|
$gutters: map-get($settings, 'gutters');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Flush.
|
// Flush.
|
||||||
$flush: true;
|
$flush: true;
|
||||||
|
|
||||||
@if (map-has-key($settings, 'flush')) {
|
@if (map-has-key($settings, 'flush')) {
|
||||||
$flush: map-get($settings, 'flush');
|
$flush: map-get($settings, 'flush');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Initialize base grid.
|
// Initialize base grid.
|
||||||
@include fixed-grid-base($vertical-align, $horizontal-align);
|
@include fixed-grid-base($vertical-align, $horizontal-align);
|
||||||
|
|
||||||
// Debug?
|
// Debug?
|
||||||
@if ($debug) {
|
@if ($debug) {
|
||||||
@include fixed-grid-debug;
|
@include fixed-grid-debug;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Columns specified?
|
// Columns specified?
|
||||||
@if ($columns != null) {
|
@if ($columns != null) {
|
||||||
|
|
||||||
// Initialize columns.
|
// Initialize columns.
|
||||||
@include fixed-grid-columns($columns);
|
@include fixed-grid-columns($columns);
|
||||||
|
|
||||||
// Gutters specified?
|
// Gutters specified?
|
||||||
@if ($gutters > 0) {
|
@if ($gutters > 0) {
|
||||||
|
|
||||||
// Flush gutters?
|
// Flush gutters?
|
||||||
@if ($flush) {
|
@if ($flush) {
|
||||||
|
|
||||||
// Initialize gutters (flush).
|
// Initialize gutters (flush).
|
||||||
@include fixed-grid-gutters-flush($columns, $gutters);
|
@include fixed-grid-gutters-flush($columns, $gutters);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Otherwise ...
|
// Otherwise ...
|
||||||
@else {
|
@else {
|
||||||
|
|
||||||
// Initialize gutters.
|
// Initialize gutters.
|
||||||
@include fixed-grid-gutters($columns, $gutters);
|
@include fixed-grid-gutters($columns, $gutters);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Resizes a previously-initialized grid.
|
/// Resizes a previously-initialized grid.
|
||||||
/// @param {integer} $columns Columns.
|
/// @param {integer} $columns Columns.
|
||||||
/// @param {number} $gutters Gutters (optional).
|
/// @param {number} $gutters Gutters (optional).
|
||||||
/// @param {list} $reset A list of previously-initialized grid columns (only if $flush is true).
|
/// @param {list} $reset A list of previously-initialized grid columns (only if $flush is true).
|
||||||
/// @param {bool} $flush If true, clears padding around the very edge of the grid.
|
/// @param {bool} $flush If true, clears padding around the very edge of the grid.
|
||||||
@mixin fixed-grid-resize($settings: ()) {
|
@mixin fixed-grid-resize($settings: ()) {
|
||||||
|
|
||||||
// Settings.
|
// Settings.
|
||||||
|
|
||||||
// Columns.
|
// Columns.
|
||||||
$columns: 1;
|
$columns: 1;
|
||||||
|
|
||||||
@if (map-has-key($settings, 'columns')) {
|
@if (map-has-key($settings, 'columns')) {
|
||||||
$columns: map-get($settings, 'columns');
|
$columns: map-get($settings, 'columns');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Gutters.
|
// Gutters.
|
||||||
$gutters: 0;
|
$gutters: 0;
|
||||||
|
|
||||||
@if (map-has-key($settings, 'gutters')) {
|
@if (map-has-key($settings, 'gutters')) {
|
||||||
$gutters: map-get($settings, 'gutters');
|
$gutters: map-get($settings, 'gutters');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Previous columns.
|
// Previous columns.
|
||||||
$prev-columns: false;
|
$prev-columns: false;
|
||||||
|
|
||||||
@if (map-has-key($settings, 'prev-columns')) {
|
@if (map-has-key($settings, 'prev-columns')) {
|
||||||
$prev-columns: map-get($settings, 'prev-columns');
|
$prev-columns: map-get($settings, 'prev-columns');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Flush.
|
// Flush.
|
||||||
$flush: true;
|
$flush: true;
|
||||||
|
|
||||||
@if (map-has-key($settings, 'flush')) {
|
@if (map-has-key($settings, 'flush')) {
|
||||||
$flush: map-get($settings, 'flush');
|
$flush: map-get($settings, 'flush');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Resize columns.
|
// Resize columns.
|
||||||
@include fixed-grid-columns($columns);
|
@include fixed-grid-columns($columns);
|
||||||
|
|
||||||
// Gutters specified?
|
// Gutters specified?
|
||||||
@if ($gutters > 0) {
|
@if ($gutters > 0) {
|
||||||
|
|
||||||
// Flush gutters?
|
// Flush gutters?
|
||||||
@if ($flush) {
|
@if ($flush) {
|
||||||
|
|
||||||
// Previous columns specified?
|
// Previous columns specified?
|
||||||
@if ($prev-columns) {
|
@if ($prev-columns) {
|
||||||
|
|
||||||
// Convert to list if it isn't one already.
|
// Convert to list if it isn't one already.
|
||||||
@if (type-of($prev-columns) != list) {
|
@if (type-of($prev-columns) != list) {
|
||||||
$prev-columns: ($prev-columns);
|
$prev-columns: ($prev-columns);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Step through list of previous columns and reset them.
|
// Step through list of previous columns and reset them.
|
||||||
@each $x in $prev-columns {
|
@each $x in $prev-columns {
|
||||||
@include fixed-grid-gutters-flush-reset($columns, $gutters, $x);
|
@include fixed-grid-gutters-flush-reset($columns, $gutters, $x);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Resize gutters (flush).
|
// Resize gutters (flush).
|
||||||
@include fixed-grid-gutters-flush($columns, $gutters);
|
@include fixed-grid-gutters-flush($columns, $gutters);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Otherwise ...
|
// Otherwise ...
|
||||||
@else {
|
@else {
|
||||||
|
|
||||||
// Resize gutters.
|
// Resize gutters.
|
||||||
@include fixed-grid-gutters($columns, $gutters);
|
@include fixed-grid-gutters($columns, $gutters);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -1,90 +1,90 @@
|
||||||
/// Removes a specific item from a list.
|
/// Removes a specific item from a list.
|
||||||
/// @author Hugo Giraudel
|
/// @author Hugo Giraudel
|
||||||
/// @param {list} $list List.
|
/// @param {list} $list List.
|
||||||
/// @param {integer} $index Index.
|
/// @param {integer} $index Index.
|
||||||
/// @return {list} Updated list.
|
/// @return {list} Updated list.
|
||||||
@function remove-nth($list, $index) {
|
@function remove-nth($list, $index) {
|
||||||
|
|
||||||
$result: null;
|
$result: null;
|
||||||
|
|
||||||
@if type-of($index) != number {
|
@if type-of($index) != number {
|
||||||
@warn "$index: #{quote($index)} is not a number for `remove-nth`.";
|
@warn "$index: #{quote($index)} is not a number for `remove-nth`.";
|
||||||
}
|
}
|
||||||
@else if $index == 0 {
|
@else if $index == 0 {
|
||||||
@warn "List index 0 must be a non-zero integer for `remove-nth`.";
|
@warn "List index 0 must be a non-zero integer for `remove-nth`.";
|
||||||
}
|
}
|
||||||
@else if abs($index) > length($list) {
|
@else if abs($index) > length($list) {
|
||||||
@warn "List index is #{$index} but list is only #{length($list)} item long for `remove-nth`.";
|
@warn "List index is #{$index} but list is only #{length($list)} item long for `remove-nth`.";
|
||||||
}
|
}
|
||||||
@else {
|
@else {
|
||||||
|
|
||||||
$result: ();
|
$result: ();
|
||||||
$index: if($index < 0, length($list) + $index + 1, $index);
|
$index: if($index < 0, length($list) + $index + 1, $index);
|
||||||
|
|
||||||
@for $i from 1 through length($list) {
|
@for $i from 1 through length($list) {
|
||||||
|
|
||||||
@if $i != $index {
|
@if $i != $index {
|
||||||
$result: append($result, nth($list, $i));
|
$result: append($result, nth($list, $i));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@return $result;
|
@return $result;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets a value from a map.
|
/// Gets a value from a map.
|
||||||
/// @author Hugo Giraudel
|
/// @author Hugo Giraudel
|
||||||
/// @param {map} $map Map.
|
/// @param {map} $map Map.
|
||||||
/// @param {string} $keys Key(s).
|
/// @param {string} $keys Key(s).
|
||||||
/// @return {string} Value.
|
/// @return {string} Value.
|
||||||
@function val($map, $keys...) {
|
@function val($map, $keys...) {
|
||||||
|
|
||||||
@if nth($keys, 1) == null {
|
@if nth($keys, 1) == null {
|
||||||
$keys: remove-nth($keys, 1);
|
$keys: remove-nth($keys, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@each $key in $keys {
|
@each $key in $keys {
|
||||||
$map: map-get($map, $key);
|
$map: map-get($map, $key);
|
||||||
}
|
}
|
||||||
|
|
||||||
@return $map;
|
@return $map;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets a duration value.
|
/// Gets a duration value.
|
||||||
/// @param {string} $keys Key(s).
|
/// @param {string} $keys Key(s).
|
||||||
/// @return {string} Value.
|
/// @return {string} Value.
|
||||||
@function _duration($keys...) {
|
@function _duration($keys...) {
|
||||||
@return val($duration, $keys...);
|
@return val($duration, $keys...);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets a font value.
|
/// Gets a font value.
|
||||||
/// @param {string} $keys Key(s).
|
/// @param {string} $keys Key(s).
|
||||||
/// @return {string} Value.
|
/// @return {string} Value.
|
||||||
@function _font($keys...) {
|
@function _font($keys...) {
|
||||||
@return val($font, $keys...);
|
@return val($font, $keys...);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets a misc value.
|
/// Gets a misc value.
|
||||||
/// @param {string} $keys Key(s).
|
/// @param {string} $keys Key(s).
|
||||||
/// @return {string} Value.
|
/// @return {string} Value.
|
||||||
@function _misc($keys...) {
|
@function _misc($keys...) {
|
||||||
@return val($misc, $keys...);
|
@return val($misc, $keys...);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets a palette value.
|
/// Gets a palette value.
|
||||||
/// @param {string} $keys Key(s).
|
/// @param {string} $keys Key(s).
|
||||||
/// @return {string} Value.
|
/// @return {string} Value.
|
||||||
@function _palette($keys...) {
|
@function _palette($keys...) {
|
||||||
@return val($palette, $keys...);
|
@return val($palette, $keys...);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets a size value.
|
/// Gets a size value.
|
||||||
/// @param {string} $keys Key(s).
|
/// @param {string} $keys Key(s).
|
||||||
/// @return {string} Value.
|
/// @return {string} Value.
|
||||||
@function _size($keys...) {
|
@function _size($keys...) {
|
||||||
@return val($size, $keys...);
|
@return val($size, $keys...);
|
||||||
}
|
}
|
||||||
|
|
@ -1,149 +1,149 @@
|
||||||
// html-grid.scss v1.0 | @ajlkn | MIT licensed */
|
// html-grid.scss v1.0 | @ajlkn | MIT licensed */
|
||||||
|
|
||||||
// Mixins.
|
// Mixins.
|
||||||
|
|
||||||
/// Initializes the current element as an HTML grid.
|
/// Initializes the current element as an HTML grid.
|
||||||
/// @param {mixed} $gutters Gutters (either a single number to set both column/row gutters, or a list to set them individually).
|
/// @param {mixed} $gutters Gutters (either a single number to set both column/row gutters, or a list to set them individually).
|
||||||
/// @param {mixed} $suffix Column class suffix (optional; either a single suffix or a list).
|
/// @param {mixed} $suffix Column class suffix (optional; either a single suffix or a list).
|
||||||
@mixin html-grid($gutters: 1.5em, $suffix: '') {
|
@mixin html-grid($gutters: 1.5em, $suffix: '') {
|
||||||
|
|
||||||
// Initialize.
|
// Initialize.
|
||||||
$cols: 12;
|
$cols: 12;
|
||||||
$multipliers: 0, 0.25, 0.5, 1, 1.50, 2.00;
|
$multipliers: 0, 0.25, 0.5, 1, 1.50, 2.00;
|
||||||
$unit: 100% / $cols;
|
$unit: 100% / $cols;
|
||||||
|
|
||||||
// Suffixes.
|
// Suffixes.
|
||||||
$suffixes: null;
|
$suffixes: null;
|
||||||
|
|
||||||
@if (type-of($suffix) == 'list') {
|
@if (type-of($suffix) == 'list') {
|
||||||
$suffixes: $suffix;
|
$suffixes: $suffix;
|
||||||
}
|
}
|
||||||
@else {
|
@else {
|
||||||
$suffixes: ($suffix);
|
$suffixes: ($suffix);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Gutters.
|
// Gutters.
|
||||||
$guttersCols: null;
|
$guttersCols: null;
|
||||||
$guttersRows: null;
|
$guttersRows: null;
|
||||||
|
|
||||||
@if (type-of($gutters) == 'list') {
|
@if (type-of($gutters) == 'list') {
|
||||||
|
|
||||||
$guttersCols: nth($gutters, 1);
|
$guttersCols: nth($gutters, 1);
|
||||||
$guttersRows: nth($gutters, 2);
|
$guttersRows: nth($gutters, 2);
|
||||||
|
|
||||||
}
|
}
|
||||||
@else {
|
@else {
|
||||||
|
|
||||||
$guttersCols: $gutters;
|
$guttersCols: $gutters;
|
||||||
$guttersRows: 0;
|
$guttersRows: 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Row.
|
// Row.
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
|
|
||||||
// Columns.
|
// Columns.
|
||||||
> * {
|
> * {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Gutters.
|
// Gutters.
|
||||||
&.gtr-uniform {
|
&.gtr-uniform {
|
||||||
> * {
|
> * {
|
||||||
> :last-child {
|
> :last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Alignment.
|
// Alignment.
|
||||||
&.aln-left {
|
&.aln-left {
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.aln-center {
|
&.aln-center {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.aln-right {
|
&.aln-right {
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.aln-top {
|
&.aln-top {
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.aln-middle {
|
&.aln-middle {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.aln-bottom {
|
&.aln-bottom {
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Step through suffixes.
|
// Step through suffixes.
|
||||||
@each $suffix in $suffixes {
|
@each $suffix in $suffixes {
|
||||||
|
|
||||||
// Suffix.
|
// Suffix.
|
||||||
@if ($suffix != '') {
|
@if ($suffix != '') {
|
||||||
$suffix: '-' + $suffix;
|
$suffix: '-' + $suffix;
|
||||||
}
|
}
|
||||||
@else {
|
@else {
|
||||||
$suffix: '';
|
$suffix: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Row.
|
// Row.
|
||||||
|
|
||||||
// Important.
|
// Important.
|
||||||
> .imp#{$suffix} {
|
> .imp#{$suffix} {
|
||||||
order: -1;
|
order: -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Columns, offsets.
|
// Columns, offsets.
|
||||||
@for $i from 1 through $cols {
|
@for $i from 1 through $cols {
|
||||||
> .col-#{$i}#{$suffix} {
|
> .col-#{$i}#{$suffix} {
|
||||||
width: $unit * $i;
|
width: $unit * $i;
|
||||||
}
|
}
|
||||||
|
|
||||||
> .off-#{$i}#{$suffix} {
|
> .off-#{$i}#{$suffix} {
|
||||||
margin-left: $unit * $i;
|
margin-left: $unit * $i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Step through multipliers.
|
// Step through multipliers.
|
||||||
@each $multiplier in $multipliers {
|
@each $multiplier in $multipliers {
|
||||||
|
|
||||||
// Gutters.
|
// Gutters.
|
||||||
$class: null;
|
$class: null;
|
||||||
|
|
||||||
@if ($multiplier != 1) {
|
@if ($multiplier != 1) {
|
||||||
$class: '.gtr-' + ($multiplier * 100);
|
$class: '.gtr-' + ($multiplier * 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
&#{$class} {
|
&#{$class} {
|
||||||
margin-top: ($guttersRows * $multiplier * -1);
|
margin-top: ($guttersRows * $multiplier * -1);
|
||||||
margin-left: ($guttersCols * $multiplier * -1);
|
margin-left: ($guttersCols * $multiplier * -1);
|
||||||
|
|
||||||
> * {
|
> * {
|
||||||
padding: ($guttersRows * $multiplier) 0 0 ($guttersCols * $multiplier);
|
padding: ($guttersRows * $multiplier) 0 0 ($guttersCols * $multiplier);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Uniform.
|
// Uniform.
|
||||||
&.gtr-uniform {
|
&.gtr-uniform {
|
||||||
margin-top: $guttersCols * $multiplier * -1;
|
margin-top: $guttersCols * $multiplier * -1;
|
||||||
|
|
||||||
> * {
|
> * {
|
||||||
padding-top: $guttersCols * $multiplier;
|
padding-top: $guttersCols * $multiplier;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -1,78 +1,78 @@
|
||||||
/// Makes an element's :before pseudoelement a FontAwesome icon.
|
/// Makes an element's :before pseudoelement a FontAwesome icon.
|
||||||
/// @param {string} $content Optional content value to use.
|
/// @param {string} $content Optional content value to use.
|
||||||
/// @param {string} $category Optional category to use.
|
/// @param {string} $category Optional category to use.
|
||||||
/// @param {string} $where Optional pseudoelement to target (before or after).
|
/// @param {string} $where Optional pseudoelement to target (before or after).
|
||||||
@mixin icon($content: false, $category: regular, $where: before) {
|
@mixin icon($content: false, $category: regular, $where: before) {
|
||||||
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
&:#{$where} {
|
&:#{$where} {
|
||||||
|
|
||||||
@if $content {
|
@if $content {
|
||||||
content: $content;
|
content: $content;
|
||||||
}
|
}
|
||||||
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-variant: normal;
|
font-variant: normal;
|
||||||
text-rendering: auto;
|
text-rendering: auto;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
text-transform: none !important;
|
text-transform: none !important;
|
||||||
|
|
||||||
@if ($category == brands) {
|
@if ($category == brands) {
|
||||||
font-family: 'Font Awesome 5 Brands';
|
font-family: 'Font Awesome 5 Brands';
|
||||||
}
|
}
|
||||||
@elseif ($category == solid) {
|
@elseif ($category == solid) {
|
||||||
font-family: 'Font Awesome 5 Free';
|
font-family: 'Font Awesome 5 Free';
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
@else {
|
@else {
|
||||||
font-family: 'Font Awesome 5 Free';
|
font-family: 'Font Awesome 5 Free';
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Applies padding to an element, taking the current element-margin value into account.
|
/// Applies padding to an element, taking the current element-margin value into account.
|
||||||
/// @param {mixed} $tb Top/bottom padding.
|
/// @param {mixed} $tb Top/bottom padding.
|
||||||
/// @param {mixed} $lr Left/right padding.
|
/// @param {mixed} $lr Left/right padding.
|
||||||
/// @param {list} $pad Optional extra padding (in the following order top, right, bottom, left)
|
/// @param {list} $pad Optional extra padding (in the following order top, right, bottom, left)
|
||||||
/// @param {bool} $important If true, adds !important.
|
/// @param {bool} $important If true, adds !important.
|
||||||
@mixin padding($tb, $lr, $pad: (0,0,0,0), $important: null) {
|
@mixin padding($tb, $lr, $pad: (0,0,0,0), $important: null) {
|
||||||
|
|
||||||
@if $important {
|
@if $important {
|
||||||
$important: '!important';
|
$important: '!important';
|
||||||
}
|
}
|
||||||
|
|
||||||
$x: 0.1em;
|
$x: 0.1em;
|
||||||
|
|
||||||
@if unit(_size(element-margin)) == 'rem' {
|
@if unit(_size(element-margin)) == 'rem' {
|
||||||
$x: 0.1rem;
|
$x: 0.1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
padding: ($tb + nth($pad,1)) ($lr + nth($pad,2)) max($x, $tb - _size(element-margin) + nth($pad,3)) ($lr + nth($pad,4)) #{$important};
|
padding: ($tb + nth($pad,1)) ($lr + nth($pad,2)) max($x, $tb - _size(element-margin) + nth($pad,3)) ($lr + nth($pad,4)) #{$important};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Encodes a SVG data URL so IE doesn't choke (via codepen.io/jakob-e/pen/YXXBrp).
|
/// Encodes a SVG data URL so IE doesn't choke (via codepen.io/jakob-e/pen/YXXBrp).
|
||||||
/// @param {string} $svg SVG data URL.
|
/// @param {string} $svg SVG data URL.
|
||||||
/// @return {string} Encoded SVG data URL.
|
/// @return {string} Encoded SVG data URL.
|
||||||
@function svg-url($svg) {
|
@function svg-url($svg) {
|
||||||
|
|
||||||
$svg: str-replace($svg, '"', '\'');
|
$svg: str-replace($svg, '"', '\'');
|
||||||
$svg: str-replace($svg, '%', '%25');
|
$svg: str-replace($svg, '%', '%25');
|
||||||
$svg: str-replace($svg, '<', '%3C');
|
$svg: str-replace($svg, '<', '%3C');
|
||||||
$svg: str-replace($svg, '>', '%3E');
|
$svg: str-replace($svg, '>', '%3E');
|
||||||
$svg: str-replace($svg, '&', '%26');
|
$svg: str-replace($svg, '&', '%26');
|
||||||
$svg: str-replace($svg, '#', '%23');
|
$svg: str-replace($svg, '#', '%23');
|
||||||
$svg: str-replace($svg, '{', '%7B');
|
$svg: str-replace($svg, '{', '%7B');
|
||||||
$svg: str-replace($svg, '}', '%7D');
|
$svg: str-replace($svg, '}', '%7D');
|
||||||
$svg: str-replace($svg, ';', '%3B');
|
$svg: str-replace($svg, ';', '%3B');
|
||||||
|
|
||||||
@return url("data:image/svg+xml;charset=utf8,#{$svg}");
|
@return url("data:image/svg+xml;charset=utf8,#{$svg}");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -1,62 +1,62 @@
|
||||||
// Misc.
|
// Misc.
|
||||||
$misc: (
|
$misc: (
|
||||||
z-index-base: 10000
|
z-index-base: 10000
|
||||||
);
|
);
|
||||||
|
|
||||||
// Duration.
|
// Duration.
|
||||||
$duration: (
|
$duration: (
|
||||||
menu: 0.5s,
|
menu: 0.5s,
|
||||||
transition: 0.2s
|
transition: 0.2s
|
||||||
);
|
);
|
||||||
|
|
||||||
// Size.
|
// Size.
|
||||||
$size: (
|
$size: (
|
||||||
element-height: 3rem,
|
element-height: 3rem,
|
||||||
element-margin: 2rem,
|
element-margin: 2rem,
|
||||||
padding: 2rem,
|
padding: 2rem,
|
||||||
wrapper: 72rem
|
wrapper: 72rem
|
||||||
);
|
);
|
||||||
|
|
||||||
// Font.
|
// Font.
|
||||||
$font: (
|
$font: (
|
||||||
family: ('Merriweather', Georgia, serif),
|
family: ('Merriweather', Georgia, serif),
|
||||||
family-heading: ('Source Sans Pro', Helvetica, sans-serif),
|
family-heading: ('Source Sans Pro', Helvetica, sans-serif),
|
||||||
family-fixed: ('Courier New', monospace),
|
family-fixed: ('Courier New', monospace),
|
||||||
weight: 300,
|
weight: 300,
|
||||||
weight-bold: 600,
|
weight-bold: 600,
|
||||||
weight-heading: 900
|
weight-heading: 900
|
||||||
);
|
);
|
||||||
|
|
||||||
// Palette.
|
// Palette.
|
||||||
$palette: (
|
$palette: (
|
||||||
wrapper-bg: #212931,
|
wrapper-bg: #212931,
|
||||||
|
|
||||||
bg: #ffffff,
|
bg: #ffffff,
|
||||||
fg: #212931,
|
fg: #212931,
|
||||||
fg-bold: #212931,
|
fg-bold: #212931,
|
||||||
fg-light: mix(#212931, #ffffff, 50%),
|
fg-light: mix(#212931, #ffffff, 50%),
|
||||||
border: mix(#dcdcdc, #ffffff, 50%),
|
border: mix(#dcdcdc, #ffffff, 50%),
|
||||||
border-bg: rgba(#dcdcdc, 0.25),
|
border-bg: rgba(#dcdcdc, 0.25),
|
||||||
accent: #18bfef,
|
accent: #18bfef,
|
||||||
|
|
||||||
alt: (
|
alt: (
|
||||||
bg: #f5f5f5,
|
bg: #f5f5f5,
|
||||||
fg: #717981,
|
fg: #717981,
|
||||||
fg-bold: #717981,
|
fg-bold: #717981,
|
||||||
fg-light: mix(#717981, #f5f5f5, 50%),
|
fg-light: mix(#717981, #f5f5f5, 50%),
|
||||||
border: mix(#dcdcdc, #f5f5f5, 75%),
|
border: mix(#dcdcdc, #f5f5f5, 75%),
|
||||||
border-bg: rgba(#dcdcdc, 0.5),
|
border-bg: rgba(#dcdcdc, 0.5),
|
||||||
accent: #18bfef,
|
accent: #18bfef,
|
||||||
),
|
),
|
||||||
|
|
||||||
invert: (
|
invert: (
|
||||||
bg: #1e252d,
|
bg: #1e252d,
|
||||||
bg-alt: #1e252d,
|
bg-alt: #1e252d,
|
||||||
fg: #ffffff,
|
fg: #ffffff,
|
||||||
fg-bold: #ffffff,
|
fg-bold: #ffffff,
|
||||||
fg-light: rgba(#ffffff, 0.5),
|
fg-light: rgba(#ffffff, 0.5),
|
||||||
border: #ffffff,
|
border: #ffffff,
|
||||||
border-bg: rgba(#ffffff,0.075),
|
border-bg: rgba(#ffffff,0.075),
|
||||||
accent: #18bfef,
|
accent: #18bfef,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
@ -1,71 +1,71 @@
|
||||||
@import 'libs/vars';
|
@import 'libs/vars';
|
||||||
@import 'libs/functions';
|
@import 'libs/functions';
|
||||||
@import 'libs/mixins';
|
@import 'libs/mixins';
|
||||||
@import 'libs/vendor';
|
@import 'libs/vendor';
|
||||||
@import 'libs/breakpoints';
|
@import 'libs/breakpoints';
|
||||||
@import 'libs/html-grid';
|
@import 'libs/html-grid';
|
||||||
@import 'libs/fixed-grid';
|
@import 'libs/fixed-grid';
|
||||||
@import 'fontawesome-all.min.css';
|
@import 'fontawesome-all.min.css';
|
||||||
@import url('https://fonts.googleapis.com/css?family=Merriweather:300,700,300italic,700italic|Source+Sans+Pro:900');
|
@import url('https://fonts.googleapis.com/css?family=Merriweather:300,700,300italic,700italic|Source+Sans+Pro:900');
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Massively by HTML5 UP
|
Massively by HTML5 UP
|
||||||
html5up.net | @ajlkn
|
html5up.net | @ajlkn
|
||||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Breakpoints.
|
// Breakpoints.
|
||||||
|
|
||||||
@include breakpoints((
|
@include breakpoints((
|
||||||
default: (1681px, null ),
|
default: (1681px, null ),
|
||||||
xlarge: (1281px, 1680px ),
|
xlarge: (1281px, 1680px ),
|
||||||
large: (981px, 1280px ),
|
large: (981px, 1280px ),
|
||||||
medium: (737px, 980px ),
|
medium: (737px, 980px ),
|
||||||
small: (481px, 736px ),
|
small: (481px, 736px ),
|
||||||
xsmall: (361px, 480px ),
|
xsmall: (361px, 480px ),
|
||||||
xxsmall: (null, 360px )
|
xxsmall: (null, 360px )
|
||||||
));
|
));
|
||||||
|
|
||||||
// Mixins.
|
// Mixins.
|
||||||
|
|
||||||
@mixin color($p) {
|
@mixin color($p) {
|
||||||
@include color-typography($p);
|
@include color-typography($p);
|
||||||
@include color-box($p);
|
@include color-box($p);
|
||||||
@include color-button($p);
|
@include color-button($p);
|
||||||
@include color-form($p);
|
@include color-form($p);
|
||||||
@include color-list($p);
|
@include color-list($p);
|
||||||
@include color-section($p);
|
@include color-section($p);
|
||||||
@include color-table($p);
|
@include color-table($p);
|
||||||
@include color-pagination($p);
|
@include color-pagination($p);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Base.
|
// Base.
|
||||||
|
|
||||||
@import 'base/reset';
|
@import 'base/reset';
|
||||||
@import 'base/page';
|
@import 'base/page';
|
||||||
@import 'base/typography';
|
@import 'base/typography';
|
||||||
|
|
||||||
// Component.
|
// Component.
|
||||||
|
|
||||||
@import 'components/row';
|
@import 'components/row';
|
||||||
@import 'components/box';
|
@import 'components/box';
|
||||||
@import 'components/button';
|
@import 'components/button';
|
||||||
@import 'components/form';
|
@import 'components/form';
|
||||||
@import 'components/icon';
|
@import 'components/icon';
|
||||||
@import 'components/image';
|
@import 'components/image';
|
||||||
@import 'components/actions';
|
@import 'components/actions';
|
||||||
@import 'components/icons';
|
@import 'components/icons';
|
||||||
@import 'components/list';
|
@import 'components/list';
|
||||||
@import 'components/section';
|
@import 'components/section';
|
||||||
@import 'components/table';
|
@import 'components/table';
|
||||||
@import 'components/pagination';
|
@import 'components/pagination';
|
||||||
|
|
||||||
// Layout.
|
// Layout.
|
||||||
|
|
||||||
@import 'layout/wrapper';
|
@import 'layout/wrapper';
|
||||||
@import 'layout/intro';
|
@import 'layout/intro';
|
||||||
@import 'layout/header';
|
@import 'layout/header';
|
||||||
@import 'layout/nav';
|
@import 'layout/nav';
|
||||||
@import 'layout/main';
|
@import 'layout/main';
|
||||||
@import 'layout/footer';
|
@import 'layout/footer';
|
||||||
@import 'layout/navPanel';
|
@import 'layout/navPanel';
|
||||||
|
|
@ -1,46 +1,46 @@
|
||||||
@import 'libs/vars';
|
@import 'libs/vars';
|
||||||
@import 'libs/functions';
|
@import 'libs/functions';
|
||||||
@import 'libs/mixins';
|
@import 'libs/mixins';
|
||||||
@import 'libs/vendor';
|
@import 'libs/vendor';
|
||||||
@import 'libs/breakpoints';
|
@import 'libs/breakpoints';
|
||||||
@import 'libs/html-grid';
|
@import 'libs/html-grid';
|
||||||
@import 'libs/fixed-grid';
|
@import 'libs/fixed-grid';
|
||||||
@import 'font-awesome.min.css';
|
@import 'font-awesome.min.css';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Massively by HTML5 UP
|
Massively by HTML5 UP
|
||||||
html5up.net | @ajlkn
|
html5up.net | @ajlkn
|
||||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Wrapper */
|
/* Wrapper */
|
||||||
|
|
||||||
#wrapper {
|
#wrapper {
|
||||||
background-color: _palette(wrapper-bg);
|
background-color: _palette(wrapper-bg);
|
||||||
background-image: url('../../images/overlay.png'), linear-gradient(0deg, rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../../images/bg.jpg');
|
background-image: url('../../images/overlay.png'), linear-gradient(0deg, rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../../images/bg.jpg');
|
||||||
background-size: auto, auto, 100% auto;
|
background-size: auto, auto, 100% auto;
|
||||||
background-position: center, center, top center;
|
background-position: center, center, top center;
|
||||||
background-repeat: repeat, no-repeat, no-repeat;
|
background-repeat: repeat, no-repeat, no-repeat;
|
||||||
background-attachment: fixed, fixed, fixed;
|
background-attachment: fixed, fixed, fixed;
|
||||||
|
|
||||||
&.fade-in {
|
&.fade-in {
|
||||||
&:before {
|
&:before {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Intro */
|
/* Intro */
|
||||||
|
|
||||||
#intro {
|
#intro {
|
||||||
body.is-preload & {
|
body.is-preload & {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
|
||||||
&:not(.hidden) {
|
&:not(.hidden) {
|
||||||
& + #header + #nav {
|
& + #header + #nav {
|
||||||
@include vendor('transform', 'none');
|
@include vendor('transform', 'none');
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Before Width: | Height: | Size: 674 KiB After Width: | Height: | Size: 674 KiB |
|
Before Width: | Height: | Size: 141 KiB After Width: | Height: | Size: 141 KiB |
|
Before Width: | Height: | Size: 820 KiB After Width: | Height: | Size: 820 KiB |
|
Before Width: | Height: | Size: 396 KiB After Width: | Height: | Size: 396 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 60 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
|
@ -1,63 +1,63 @@
|
||||||
Creative Commons Attribution 3.0 Unported
|
Creative Commons Attribution 3.0 Unported
|
||||||
http://creativecommons.org/licenses/by/3.0/
|
http://creativecommons.org/licenses/by/3.0/
|
||||||
|
|
||||||
License
|
License
|
||||||
|
|
||||||
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
|
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
|
||||||
|
|
||||||
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
|
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
|
||||||
|
|
||||||
1. Definitions
|
1. Definitions
|
||||||
|
|
||||||
1. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License.
|
1. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License.
|
||||||
2. "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined above) for the purposes of this License.
|
2. "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined above) for the purposes of this License.
|
||||||
3. "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership.
|
3. "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership.
|
||||||
4. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License.
|
4. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License.
|
||||||
5. "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast.
|
5. "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast.
|
||||||
6. "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work.
|
6. "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work.
|
||||||
7. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.
|
7. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.
|
||||||
8. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images.
|
8. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images.
|
||||||
9. "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium.
|
9. "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium.
|
||||||
|
|
||||||
2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws.
|
2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws.
|
||||||
|
|
||||||
3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:
|
3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:
|
||||||
|
|
||||||
1. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections;
|
1. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections;
|
||||||
2. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified.";
|
2. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified.";
|
||||||
3. to Distribute and Publicly Perform the Work including as incorporated in Collections; and,
|
3. to Distribute and Publicly Perform the Work including as incorporated in Collections; and,
|
||||||
4. to Distribute and Publicly Perform Adaptations.
|
4. to Distribute and Publicly Perform Adaptations.
|
||||||
5.
|
5.
|
||||||
|
|
||||||
For the avoidance of doubt:
|
For the avoidance of doubt:
|
||||||
1. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License;
|
1. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License;
|
||||||
2. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and,
|
2. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and,
|
||||||
3. Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License.
|
3. Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License.
|
||||||
|
|
||||||
The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved.
|
The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved.
|
||||||
|
|
||||||
4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:
|
4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:
|
||||||
|
|
||||||
1. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(b), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(b), as requested.
|
1. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(b), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(b), as requested.
|
||||||
2. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4 (b) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties.
|
2. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4 (b) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties.
|
||||||
3. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise.
|
3. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise.
|
||||||
|
|
||||||
5. Representations, Warranties and Disclaimer
|
5. Representations, Warranties and Disclaimer
|
||||||
|
|
||||||
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
|
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
|
||||||
|
|
||||||
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
7. Termination
|
7. Termination
|
||||||
|
|
||||||
1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.
|
1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.
|
||||||
2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.
|
2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.
|
||||||
|
|
||||||
8. Miscellaneous
|
8. Miscellaneous
|
||||||
|
|
||||||
1. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.
|
1. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.
|
||||||
2. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.
|
2. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.
|
||||||
3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
|
3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
|
||||||
4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.
|
4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.
|
||||||
5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.
|
5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.
|
||||||
6. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
|
6. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
|
||||||
|
|
@ -1,32 +1,32 @@
|
||||||
Massively by HTML5 UP
|
Massively by HTML5 UP
|
||||||
html5up.net | @ajlkn
|
html5up.net | @ajlkn
|
||||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
|
|
||||||
|
|
||||||
This is Massively, a text-heavy, article-oriented design built around a huge background
|
This is Massively, a text-heavy, article-oriented design built around a huge background
|
||||||
image (with a new parallax implementation I'm testing) and scroll effects (powered by
|
image (with a new parallax implementation I'm testing) and scroll effects (powered by
|
||||||
Scrollex). A *slight* departure from all the one-pagers I've been doing lately, but one
|
Scrollex). A *slight* departure from all the one-pagers I've been doing lately, but one
|
||||||
that fulfills a few user requests and makes use of some new techniques I've been wanting
|
that fulfills a few user requests and makes use of some new techniques I've been wanting
|
||||||
to try out. Enjoy it :)
|
to try out. Enjoy it :)
|
||||||
|
|
||||||
Demo images* courtesy of Unsplash, a radtastic collection of CC0 (public domain) images
|
Demo images* courtesy of Unsplash, a radtastic collection of CC0 (public domain) images
|
||||||
you can use for pretty much whatever.
|
you can use for pretty much whatever.
|
||||||
|
|
||||||
(* = not included)
|
(* = not included)
|
||||||
|
|
||||||
AJ
|
AJ
|
||||||
aj@lkn.io | @ajlkn
|
aj@lkn.io | @ajlkn
|
||||||
|
|
||||||
|
|
||||||
Credits:
|
Credits:
|
||||||
|
|
||||||
Demo Images:
|
Demo Images:
|
||||||
Unsplash (unsplash.com)
|
Unsplash (unsplash.com)
|
||||||
|
|
||||||
Icons:
|
Icons:
|
||||||
Font Awesome (fontawesome.io)
|
Font Awesome (fontawesome.io)
|
||||||
|
|
||||||
Other:
|
Other:
|
||||||
jQuery (jquery.com)
|
jQuery (jquery.com)
|
||||||
Scrollex (github.com/ajlkn/jquery.scrollex)
|
Scrollex (github.com/ajlkn/jquery.scrollex)
|
||||||
Responsive Tools (github.com/ajlkn/responsive-tools)
|
Responsive Tools (github.com/ajlkn/responsive-tools)
|
||||||
|
|
@ -1,499 +1,499 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<!--
|
<!--
|
||||||
Massively by HTML5 UP
|
Massively by HTML5 UP
|
||||||
html5up.net | @ajlkn
|
html5up.net | @ajlkn
|
||||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
-->
|
-->
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Elements Reference - Massively by HTML5 UP</title>
|
<title>Elements Reference - Massively by HTML5 UP</title>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
||||||
{% load static %}
|
{% load static %}
|
||||||
<link rel="stylesheet" href="{% static 'massively/assets/css/main.css' %}" />
|
<link rel="stylesheet" href="{% static 'massively/assets/css/main.css' %}" />
|
||||||
<noscript><link rel="stylesheet" href={% static 'massively/assets/css/noscript.css' %} /></noscript>
|
<noscript><link rel="stylesheet" href={% static 'massively/assets/css/noscript.css' %} /></noscript>
|
||||||
</head>
|
</head>
|
||||||
<body class="is-preload">
|
<body class="is-preload">
|
||||||
|
|
||||||
<!-- Wrapper -->
|
<!-- Wrapper -->
|
||||||
<div id="wrapper">
|
<div id="wrapper">
|
||||||
|
|
||||||
<!-- Header -->
|
<!-- Header -->
|
||||||
<header id="header">
|
<header id="header">
|
||||||
<a href="index.html" class="logo">Massively</a>
|
<a href="index.html" class="logo">Massively</a>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<!-- Nav -->
|
<!-- Nav -->
|
||||||
<nav id="nav">
|
<nav id="nav">
|
||||||
<ul class="links">
|
<ul class="links">
|
||||||
<li><a href="index.html">This is Massively</a></li>
|
<li><a href="index.html">This is Massively</a></li>
|
||||||
<li><a href="generic.html">Generic Page</a></li>
|
<li><a href="generic.html">Generic Page</a></li>
|
||||||
<li class="active"><a href="elements.html">Elements Reference</a></li>
|
<li class="active"><a href="elements.html">Elements Reference</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="icons">
|
<ul class="icons">
|
||||||
<li><a href="#" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
|
<li><a href="#" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
|
||||||
<li><a href="#" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
|
<li><a href="#" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
|
||||||
<li><a href="#" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
|
<li><a href="#" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
|
||||||
<li><a href="#" class="icon brands fa-github"><span class="label">GitHub</span></a></li>
|
<li><a href="#" class="icon brands fa-github"><span class="label">GitHub</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<!-- Main -->
|
<!-- Main -->
|
||||||
<div id="main">
|
<div id="main">
|
||||||
|
|
||||||
<!-- Post -->
|
<!-- Post -->
|
||||||
<section class="post">
|
<section class="post">
|
||||||
<header class="major">
|
<header class="major">
|
||||||
<h1>Elements<br />
|
<h1>Elements<br />
|
||||||
Reference</h1>
|
Reference</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<!-- Text stuff -->
|
<!-- Text stuff -->
|
||||||
<h2>Text</h2>
|
<h2>Text</h2>
|
||||||
<p>This is <b>bold</b> and this is <strong>strong</strong>. This is <i>italic</i> and this is <em>emphasized</em>.
|
<p>This is <b>bold</b> and this is <strong>strong</strong>. This is <i>italic</i> and this is <em>emphasized</em>.
|
||||||
This is <sup>superscript</sup> text and this is <sub>subscript</sub> text.
|
This is <sup>superscript</sup> text and this is <sub>subscript</sub> text.
|
||||||
This is <u>underlined</u> and this is code: <code>for (;;) { ... }</code>.
|
This is <u>underlined</u> and this is code: <code>for (;;) { ... }</code>.
|
||||||
Finally, this is a <a href="#">link</a>.</p>
|
Finally, this is a <a href="#">link</a>.</p>
|
||||||
<hr />
|
<hr />
|
||||||
<h2>Heading Level 2</h2>
|
<h2>Heading Level 2</h2>
|
||||||
<h3>Heading Level 3</h3>
|
<h3>Heading Level 3</h3>
|
||||||
<h4>Heading Level 4</h4>
|
<h4>Heading Level 4</h4>
|
||||||
<h5>Heading Level 5</h5>
|
<h5>Heading Level 5</h5>
|
||||||
<h6>Heading Level 6</h6>
|
<h6>Heading Level 6</h6>
|
||||||
<hr />
|
<hr />
|
||||||
<header>
|
<header>
|
||||||
<h2>Heading with a Subtitle</h2>
|
<h2>Heading with a Subtitle</h2>
|
||||||
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
|
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
|
||||||
</header>
|
</header>
|
||||||
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
|
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
|
||||||
<header>
|
<header>
|
||||||
<h3>Heading with a Subtitle</h3>
|
<h3>Heading with a Subtitle</h3>
|
||||||
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
|
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
|
||||||
</header>
|
</header>
|
||||||
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
|
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
|
||||||
<header>
|
<header>
|
||||||
<h4>Heading with a Subtitle</h4>
|
<h4>Heading with a Subtitle</h4>
|
||||||
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
|
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
|
||||||
</header>
|
</header>
|
||||||
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
|
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<!-- Lists -->
|
<!-- Lists -->
|
||||||
<h2>Lists</h2>
|
<h2>Lists</h2>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-6 col-12-small">
|
<div class="col-6 col-12-small">
|
||||||
|
|
||||||
<h3>Unordered</h3>
|
<h3>Unordered</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Dolor pulvinar etiam.</li>
|
<li>Dolor pulvinar etiam.</li>
|
||||||
<li>Sagittis lorem eleifend.</li>
|
<li>Sagittis lorem eleifend.</li>
|
||||||
<li>Felis feugiat dolore viverra.</li>
|
<li>Felis feugiat dolore viverra.</li>
|
||||||
<li>Dolor pulvinar etiam.</li>
|
<li>Dolor pulvinar etiam.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h3>Alternate</h3>
|
<h3>Alternate</h3>
|
||||||
<ul class="alt">
|
<ul class="alt">
|
||||||
<li>Dolor pulvinar etiam etiam.</li>
|
<li>Dolor pulvinar etiam etiam.</li>
|
||||||
<li>Sagittis adipiscing eleifend.</li>
|
<li>Sagittis adipiscing eleifend.</li>
|
||||||
<li>Felis enim dolore viverra.</li>
|
<li>Felis enim dolore viverra.</li>
|
||||||
<li>Dolor pulvinar etiam etiam.</li>
|
<li>Dolor pulvinar etiam etiam.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col-6 col-12-small">
|
<div class="col-6 col-12-small">
|
||||||
|
|
||||||
<h3>Ordered</h3>
|
<h3>Ordered</h3>
|
||||||
<ol>
|
<ol>
|
||||||
<li>Dolor pulvinar etiam.</li>
|
<li>Dolor pulvinar etiam.</li>
|
||||||
<li>Etiam vel felis at viverra.</li>
|
<li>Etiam vel felis at viverra.</li>
|
||||||
<li>Felis enim feugiat magna.</li>
|
<li>Felis enim feugiat magna.</li>
|
||||||
<li>Etiam vel felis nullam.</li>
|
<li>Etiam vel felis nullam.</li>
|
||||||
<li>Felis enim et tempus.</li>
|
<li>Felis enim et tempus.</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
<h3>Icons</h3>
|
<h3>Icons</h3>
|
||||||
<ul class="icons">
|
<ul class="icons">
|
||||||
<li><a href="#" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
|
<li><a href="#" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
|
||||||
<li><a href="#" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
|
<li><a href="#" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
|
||||||
<li><a href="#" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
|
<li><a href="#" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
|
||||||
<li><a href="#" class="icon brands fa-github"><span class="label">Github</span></a></li>
|
<li><a href="#" class="icon brands fa-github"><span class="label">Github</span></a></li>
|
||||||
<li><a href="#" class="icon brands fa-dribbble"><span class="label">Dribbble</span></a></li>
|
<li><a href="#" class="icon brands fa-dribbble"><span class="label">Dribbble</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="icons alt">
|
<ul class="icons alt">
|
||||||
<li><a href="#" class="icon brands alt fa-twitter"><span class="label">Twitter</span></a></li>
|
<li><a href="#" class="icon brands alt fa-twitter"><span class="label">Twitter</span></a></li>
|
||||||
<li><a href="#" class="icon brands alt fa-facebook-f"><span class="label">Facebook</span></a></li>
|
<li><a href="#" class="icon brands alt fa-facebook-f"><span class="label">Facebook</span></a></li>
|
||||||
<li><a href="#" class="icon brands alt fa-instagram"><span class="label">Instagram</span></a></li>
|
<li><a href="#" class="icon brands alt fa-instagram"><span class="label">Instagram</span></a></li>
|
||||||
<li><a href="#" class="icon brands alt fa-github"><span class="label">Github</span></a></li>
|
<li><a href="#" class="icon brands alt fa-github"><span class="label">Github</span></a></li>
|
||||||
<li><a href="#" class="icon brands alt fa-dribbble"><span class="label">Dribbble</span></a></li>
|
<li><a href="#" class="icon brands alt fa-dribbble"><span class="label">Dribbble</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<h3>Definition</h3>
|
<h3>Definition</h3>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Item 1</dt>
|
<dt>Item 1</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<p>Lorem ipsum dolor vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
|
<p>Lorem ipsum dolor vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
|
||||||
</dd>
|
</dd>
|
||||||
<dt>Item 2</dt>
|
<dt>Item 2</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<p>Lorem ipsum dolor vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
|
<p>Lorem ipsum dolor vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
|
||||||
</dd>
|
</dd>
|
||||||
<dt>Item 3</dt>
|
<dt>Item 3</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<p>Lorem ipsum dolor vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
|
<p>Lorem ipsum dolor vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
<h3>Actions</h3>
|
<h3>Actions</h3>
|
||||||
<ul class="actions">
|
<ul class="actions">
|
||||||
<li><a href="#" class="button primary">Primary</a></li>
|
<li><a href="#" class="button primary">Primary</a></li>
|
||||||
<li><a href="#" class="button">Default</a></li>
|
<li><a href="#" class="button">Default</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="actions small">
|
<ul class="actions small">
|
||||||
<li><a href="#" class="button primary small">Small</a></li>
|
<li><a href="#" class="button primary small">Small</a></li>
|
||||||
<li><a href="#" class="button small">Small</a></li>
|
<li><a href="#" class="button small">Small</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-6 col-12-small">
|
<div class="col-6 col-12-small">
|
||||||
<ul class="actions stacked">
|
<ul class="actions stacked">
|
||||||
<li><a href="#" class="button primary">Default</a></li>
|
<li><a href="#" class="button primary">Default</a></li>
|
||||||
<li><a href="#" class="button">Default</a></li>
|
<li><a href="#" class="button">Default</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-6 col-12-small">
|
<div class="col-6 col-12-small">
|
||||||
<ul class="actions stacked">
|
<ul class="actions stacked">
|
||||||
<li><a href="#" class="button primary small">Small</a></li>
|
<li><a href="#" class="button primary small">Small</a></li>
|
||||||
<li><a href="#" class="button small">Small</a></li>
|
<li><a href="#" class="button small">Small</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-6 col-12-small">
|
<div class="col-6 col-12-small">
|
||||||
<ul class="actions stacked">
|
<ul class="actions stacked">
|
||||||
<li><a href="#" class="button primary fit">Default</a></li>
|
<li><a href="#" class="button primary fit">Default</a></li>
|
||||||
<li><a href="#" class="button fit">Default</a></li>
|
<li><a href="#" class="button fit">Default</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-6 col-12-small">
|
<div class="col-6 col-12-small">
|
||||||
<ul class="actions stacked">
|
<ul class="actions stacked">
|
||||||
<li><a href="#" class="button primary small fit">Small</a></li>
|
<li><a href="#" class="button primary small fit">Small</a></li>
|
||||||
<li><a href="#" class="button small fit">Small</a></li>
|
<li><a href="#" class="button small fit">Small</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<!-- Blockquote -->
|
<!-- Blockquote -->
|
||||||
<h2>Blockquote</h2>
|
<h2>Blockquote</h2>
|
||||||
<blockquote>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan faucibus. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis.</blockquote>
|
<blockquote>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan faucibus. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis.</blockquote>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<!-- Table -->
|
<!-- Table -->
|
||||||
<h2>Table</h2>
|
<h2>Table</h2>
|
||||||
|
|
||||||
<h3>Default</h3>
|
<h3>Default</h3>
|
||||||
<div class="table-wrapper">
|
<div class="table-wrapper">
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th>Description</th>
|
<th>Description</th>
|
||||||
<th>Price</th>
|
<th>Price</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Item 1</td>
|
<td>Item 1</td>
|
||||||
<td>Ante turpis integer aliquet porttitor.</td>
|
<td>Ante turpis integer aliquet porttitor.</td>
|
||||||
<td>29.99</td>
|
<td>29.99</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Item 2</td>
|
<td>Item 2</td>
|
||||||
<td>Vis ac commodo adipiscing arcu aliquet.</td>
|
<td>Vis ac commodo adipiscing arcu aliquet.</td>
|
||||||
<td>19.99</td>
|
<td>19.99</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Item 3</td>
|
<td>Item 3</td>
|
||||||
<td> Morbi faucibus arcu accumsan lorem.</td>
|
<td> Morbi faucibus arcu accumsan lorem.</td>
|
||||||
<td>29.99</td>
|
<td>29.99</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Item 4</td>
|
<td>Item 4</td>
|
||||||
<td>Vitae integer tempus condimentum.</td>
|
<td>Vitae integer tempus condimentum.</td>
|
||||||
<td>19.99</td>
|
<td>19.99</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Item 5</td>
|
<td>Item 5</td>
|
||||||
<td>Ante turpis integer aliquet porttitor.</td>
|
<td>Ante turpis integer aliquet porttitor.</td>
|
||||||
<td>29.99</td>
|
<td>29.99</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2"></td>
|
<td colspan="2"></td>
|
||||||
<td>100.00</td>
|
<td>100.00</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tfoot>
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3>Alternate</h3>
|
<h3>Alternate</h3>
|
||||||
<div class="table-wrapper">
|
<div class="table-wrapper">
|
||||||
<table class="alt">
|
<table class="alt">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th>Description</th>
|
<th>Description</th>
|
||||||
<th>Price</th>
|
<th>Price</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Item 1</td>
|
<td>Item 1</td>
|
||||||
<td>Ante turpis integer aliquet porttitor.</td>
|
<td>Ante turpis integer aliquet porttitor.</td>
|
||||||
<td>29.99</td>
|
<td>29.99</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Item 2</td>
|
<td>Item 2</td>
|
||||||
<td>Vis ac commodo adipiscing arcu aliquet.</td>
|
<td>Vis ac commodo adipiscing arcu aliquet.</td>
|
||||||
<td>19.99</td>
|
<td>19.99</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Item 3</td>
|
<td>Item 3</td>
|
||||||
<td> Morbi faucibus arcu accumsan lorem.</td>
|
<td> Morbi faucibus arcu accumsan lorem.</td>
|
||||||
<td>29.99</td>
|
<td>29.99</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Item 4</td>
|
<td>Item 4</td>
|
||||||
<td>Vitae integer tempus condimentum.</td>
|
<td>Vitae integer tempus condimentum.</td>
|
||||||
<td>19.99</td>
|
<td>19.99</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Item 5</td>
|
<td>Item 5</td>
|
||||||
<td>Ante turpis integer aliquet porttitor.</td>
|
<td>Ante turpis integer aliquet porttitor.</td>
|
||||||
<td>29.99</td>
|
<td>29.99</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2"></td>
|
<td colspan="2"></td>
|
||||||
<td>100.00</td>
|
<td>100.00</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tfoot>
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<!-- Buttons -->
|
<!-- Buttons -->
|
||||||
<h2>Buttons</h2>
|
<h2>Buttons</h2>
|
||||||
<ul class="actions">
|
<ul class="actions">
|
||||||
<li><a href="#" class="button primary">Primary</a></li>
|
<li><a href="#" class="button primary">Primary</a></li>
|
||||||
<li><a href="#" class="button">Default</a></li>
|
<li><a href="#" class="button">Default</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="actions">
|
<ul class="actions">
|
||||||
<li><a href="#" class="button primary large">Large</a></li>
|
<li><a href="#" class="button primary large">Large</a></li>
|
||||||
<li><a href="#" class="button">Default</a></li>
|
<li><a href="#" class="button">Default</a></li>
|
||||||
<li><a href="#" class="button small">Small</a></li>
|
<li><a href="#" class="button small">Small</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="actions fit">
|
<ul class="actions fit">
|
||||||
<li><a href="#" class="button primary fit">Fit</a></li>
|
<li><a href="#" class="button primary fit">Fit</a></li>
|
||||||
<li><a href="#" class="button fit">Fit</a></li>
|
<li><a href="#" class="button fit">Fit</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="actions fit small">
|
<ul class="actions fit small">
|
||||||
<li><a href="#" class="button primary fit small">Fit + Small</a></li>
|
<li><a href="#" class="button primary fit small">Fit + Small</a></li>
|
||||||
<li><a href="#" class="button fit small">Fit + Small</a></li>
|
<li><a href="#" class="button fit small">Fit + Small</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="actions">
|
<ul class="actions">
|
||||||
<li><a href="#" class="button primary icon solid fa-search">Icon</a></li>
|
<li><a href="#" class="button primary icon solid fa-search">Icon</a></li>
|
||||||
<li><a href="#" class="button icon solid fa-download">Icon</a></li>
|
<li><a href="#" class="button icon solid fa-download">Icon</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="actions">
|
<ul class="actions">
|
||||||
<li><span class="button primary disabled">Primary</span></li>
|
<li><span class="button primary disabled">Primary</span></li>
|
||||||
<li><span class="button disabled">Default</span></li>
|
<li><span class="button disabled">Default</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<!-- Form -->
|
<!-- Form -->
|
||||||
<h2>Form</h2>
|
<h2>Form</h2>
|
||||||
|
|
||||||
<form method="post" action="#">
|
<form method="post" action="#">
|
||||||
<div class="row gtr-uniform">
|
<div class="row gtr-uniform">
|
||||||
<div class="col-6 col-12-xsmall">
|
<div class="col-6 col-12-xsmall">
|
||||||
<input type="text" name="demo-name" id="demo-name" value="" placeholder="Name" />
|
<input type="text" name="demo-name" id="demo-name" value="" placeholder="Name" />
|
||||||
</div>
|
</div>
|
||||||
<div class="col-6 col-12-xsmall">
|
<div class="col-6 col-12-xsmall">
|
||||||
<input type="email" name="demo-email" id="demo-email" value="" placeholder="Email" />
|
<input type="email" name="demo-email" id="demo-email" value="" placeholder="Email" />
|
||||||
</div>
|
</div>
|
||||||
<!-- Break -->
|
<!-- Break -->
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<select name="demo-category" id="demo-category">
|
<select name="demo-category" id="demo-category">
|
||||||
<option value="">- Category -</option>
|
<option value="">- Category -</option>
|
||||||
<option value="1">Manufacturing</option>
|
<option value="1">Manufacturing</option>
|
||||||
<option value="1">Shipping</option>
|
<option value="1">Shipping</option>
|
||||||
<option value="1">Administration</option>
|
<option value="1">Administration</option>
|
||||||
<option value="1">Human Resources</option>
|
<option value="1">Human Resources</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<!-- Break -->
|
<!-- Break -->
|
||||||
<div class="col-4 col-12-small">
|
<div class="col-4 col-12-small">
|
||||||
<input type="radio" id="demo-priority-low" name="demo-priority" checked>
|
<input type="radio" id="demo-priority-low" name="demo-priority" checked>
|
||||||
<label for="demo-priority-low">Low</label>
|
<label for="demo-priority-low">Low</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-4 col-12-small">
|
<div class="col-4 col-12-small">
|
||||||
<input type="radio" id="demo-priority-normal" name="demo-priority">
|
<input type="radio" id="demo-priority-normal" name="demo-priority">
|
||||||
<label for="demo-priority-normal">Normal</label>
|
<label for="demo-priority-normal">Normal</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-4 col-12-small">
|
<div class="col-4 col-12-small">
|
||||||
<input type="radio" id="demo-priority-high" name="demo-priority">
|
<input type="radio" id="demo-priority-high" name="demo-priority">
|
||||||
<label for="demo-priority-high">High</label>
|
<label for="demo-priority-high">High</label>
|
||||||
</div>
|
</div>
|
||||||
<!-- Break -->
|
<!-- Break -->
|
||||||
<div class="col-6 col-12-small">
|
<div class="col-6 col-12-small">
|
||||||
<input type="checkbox" id="demo-copy" name="demo-copy">
|
<input type="checkbox" id="demo-copy" name="demo-copy">
|
||||||
<label for="demo-copy">Email me a copy</label>
|
<label for="demo-copy">Email me a copy</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-6 col-12-small">
|
<div class="col-6 col-12-small">
|
||||||
<input type="checkbox" id="demo-human" name="demo-human" checked>
|
<input type="checkbox" id="demo-human" name="demo-human" checked>
|
||||||
<label for="demo-human">I am a human</label>
|
<label for="demo-human">I am a human</label>
|
||||||
</div>
|
</div>
|
||||||
<!-- Break -->
|
<!-- Break -->
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<textarea name="demo-message" id="demo-message" placeholder="Enter your message" rows="6"></textarea>
|
<textarea name="demo-message" id="demo-message" placeholder="Enter your message" rows="6"></textarea>
|
||||||
</div>
|
</div>
|
||||||
<!-- Break -->
|
<!-- Break -->
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<ul class="actions">
|
<ul class="actions">
|
||||||
<li><input type="submit" value="Send Message" class="primary" /></li>
|
<li><input type="submit" value="Send Message" class="primary" /></li>
|
||||||
<li><input type="reset" value="Reset" /></li>
|
<li><input type="reset" value="Reset" /></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<!-- Image -->
|
<!-- Image -->
|
||||||
<h2>Image</h2>
|
<h2>Image</h2>
|
||||||
|
|
||||||
<h3>Fit</h3>
|
<h3>Fit</h3>
|
||||||
<span class="image fit"><img src="images/pic01.jpg" alt="" /></span>
|
<span class="image fit"><img src="images/pic01.jpg" alt="" /></span>
|
||||||
<div class="box alt">
|
<div class="box alt">
|
||||||
<div class="row gtr-50 gtr-uniform">
|
<div class="row gtr-50 gtr-uniform">
|
||||||
<div class="col-4"><span class="image fit"><img src="images/pic02.jpg" alt="" /></span></div>
|
<div class="col-4"><span class="image fit"><img src="images/pic02.jpg" alt="" /></span></div>
|
||||||
<div class="col-4"><span class="image fit"><img src="images/pic03.jpg" alt="" /></span></div>
|
<div class="col-4"><span class="image fit"><img src="images/pic03.jpg" alt="" /></span></div>
|
||||||
<div class="col-4"><span class="image fit"><img src="images/pic04.jpg" alt="" /></span></div>
|
<div class="col-4"><span class="image fit"><img src="images/pic04.jpg" alt="" /></span></div>
|
||||||
<!-- Break -->
|
<!-- Break -->
|
||||||
<div class="col-4"><span class="image fit"><img src="images/pic04.jpg" alt="" /></span></div>
|
<div class="col-4"><span class="image fit"><img src="images/pic04.jpg" alt="" /></span></div>
|
||||||
<div class="col-4"><span class="image fit"><img src="images/pic02.jpg" alt="" /></span></div>
|
<div class="col-4"><span class="image fit"><img src="images/pic02.jpg" alt="" /></span></div>
|
||||||
<div class="col-4"><span class="image fit"><img src="images/pic03.jpg" alt="" /></span></div>
|
<div class="col-4"><span class="image fit"><img src="images/pic03.jpg" alt="" /></span></div>
|
||||||
<!-- Break -->
|
<!-- Break -->
|
||||||
<div class="col-4"><span class="image fit"><img src="images/pic03.jpg" alt="" /></span></div>
|
<div class="col-4"><span class="image fit"><img src="images/pic03.jpg" alt="" /></span></div>
|
||||||
<div class="col-4"><span class="image fit"><img src="images/pic04.jpg" alt="" /></span></div>
|
<div class="col-4"><span class="image fit"><img src="images/pic04.jpg" alt="" /></span></div>
|
||||||
<div class="col-4"><span class="image fit"><img src="images/pic02.jpg" alt="" /></span></div>
|
<div class="col-4"><span class="image fit"><img src="images/pic02.jpg" alt="" /></span></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3>Left & Right</h3>
|
<h3>Left & Right</h3>
|
||||||
<p><span class="image left"><img src="images/pic08.jpg" alt="" /></span>Lorem ipsum dolor sit accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Vestibulum ante ipsum primis in faucibus magna blandit adipiscing eu felis iaculis.</p>
|
<p><span class="image left"><img src="images/pic08.jpg" alt="" /></span>Lorem ipsum dolor sit accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Vestibulum ante ipsum primis in faucibus magna blandit adipiscing eu felis iaculis.</p>
|
||||||
<p><span class="image right"><img src="images/pic09.jpg" alt="" /></span>Lorem ipsum dolor sit accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Vestibulum ante ipsum primis in faucibus magna blandit adipiscing eu felis iaculis.</p>
|
<p><span class="image right"><img src="images/pic09.jpg" alt="" /></span>Lorem ipsum dolor sit accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Vestibulum ante ipsum primis in faucibus magna blandit adipiscing eu felis iaculis.</p>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<!-- Box -->
|
<!-- Box -->
|
||||||
<h2>Box</h2>
|
<h2>Box</h2>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<p>Felis sagittis eget tempus primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Magna sed etiam ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus lorem ipsum dolor sit amet nullam. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Vestibulum ante ipsum primis in faucibus magna blandit adipiscing eu felis iaculis volutpat lorem ipsum dolor.</p>
|
<p>Felis sagittis eget tempus primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Magna sed etiam ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus lorem ipsum dolor sit amet nullam. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Vestibulum ante ipsum primis in faucibus magna blandit adipiscing eu felis iaculis volutpat lorem ipsum dolor.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<!-- Preformatted Code -->
|
<!-- Preformatted Code -->
|
||||||
<h2>Preformatted</h2>
|
<h2>Preformatted</h2>
|
||||||
<pre><code>i = 0;
|
<pre><code>i = 0;
|
||||||
|
|
||||||
while (!deck.isInOrder()) {
|
while (!deck.isInOrder()) {
|
||||||
print 'Iteration ' + i;
|
print 'Iteration ' + i;
|
||||||
deck.shuffle();
|
deck.shuffle();
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
print 'It took ' + i + ' iterations to sort the deck.';
|
print 'It took ' + i + ' iterations to sort the deck.';
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
<section>
|
<section>
|
||||||
<form method="post" action="#">
|
<form method="post" action="#">
|
||||||
<div class="fields">
|
<div class="fields">
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="name">Name</label>
|
<label for="name">Name</label>
|
||||||
<input type="text" name="name" id="name" />
|
<input type="text" name="name" id="name" />
|
||||||
</div>
|
</div>
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="email">Email</label>
|
<label for="email">Email</label>
|
||||||
<input type="text" name="email" id="email" />
|
<input type="text" name="email" id="email" />
|
||||||
</div>
|
</div>
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="message">Message</label>
|
<label for="message">Message</label>
|
||||||
<textarea name="message" id="message" rows="3"></textarea>
|
<textarea name="message" id="message" rows="3"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<ul class="actions">
|
<ul class="actions">
|
||||||
<li><input type="submit" value="Send Message" /></li>
|
<li><input type="submit" value="Send Message" /></li>
|
||||||
</ul>
|
</ul>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
<section class="split contact">
|
<section class="split contact">
|
||||||
<section class="alt">
|
<section class="alt">
|
||||||
<h3>Address</h3>
|
<h3>Address</h3>
|
||||||
<p>1234 Somewhere Road #87257<br />
|
<p>1234 Somewhere Road #87257<br />
|
||||||
Nashville, TN 00000-0000</p>
|
Nashville, TN 00000-0000</p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h3>Phone</h3>
|
<h3>Phone</h3>
|
||||||
<p><a href="#">(000) 000-0000</a></p>
|
<p><a href="#">(000) 000-0000</a></p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h3>Email</h3>
|
<h3>Email</h3>
|
||||||
<p><a href="#">info@untitled.tld</a></p>
|
<p><a href="#">info@untitled.tld</a></p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h3>Social</h3>
|
<h3>Social</h3>
|
||||||
<ul class="icons alt">
|
<ul class="icons alt">
|
||||||
<li><a href="#" class="icon brands alt fa-twitter"><span class="label">Twitter</span></a></li>
|
<li><a href="#" class="icon brands alt fa-twitter"><span class="label">Twitter</span></a></li>
|
||||||
<li><a href="#" class="icon brands alt fa-facebook-f"><span class="label">Facebook</span></a></li>
|
<li><a href="#" class="icon brands alt fa-facebook-f"><span class="label">Facebook</span></a></li>
|
||||||
<li><a href="#" class="icon brands alt fa-instagram"><span class="label">Instagram</span></a></li>
|
<li><a href="#" class="icon brands alt fa-instagram"><span class="label">Instagram</span></a></li>
|
||||||
<li><a href="#" class="icon brands alt fa-github"><span class="label">GitHub</span></a></li>
|
<li><a href="#" class="icon brands alt fa-github"><span class="label">GitHub</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<!-- Copyright -->
|
<!-- Copyright -->
|
||||||
<div id="copyright">
|
<div id="copyright">
|
||||||
<ul><li>© Untitled</li><li>Design: <a href="https://html5up.net">HTML5 UP</a></li></ul>
|
<ul><li>© Untitled</li><li>Design: <a href="https://html5up.net">HTML5 UP</a></li></ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Scripts -->
|
<!-- Scripts -->
|
||||||
<script src="assets/js/jquery.min.js"></script>
|
<script src="assets/js/jquery.min.js"></script>
|
||||||
<script src="assets/js/jquery.scrollex.min.js"></script>
|
<script src="assets/js/jquery.scrollex.min.js"></script>
|
||||||
<script src="assets/js/jquery.scrolly.min.js"></script>
|
<script src="assets/js/jquery.scrolly.min.js"></script>
|
||||||
<script src="assets/js/browser.min.js"></script>
|
<script src="assets/js/browser.min.js"></script>
|
||||||
<script src="assets/js/breakpoints.min.js"></script>
|
<script src="assets/js/breakpoints.min.js"></script>
|
||||||
<script src="assets/js/util.js"></script>
|
<script src="assets/js/util.js"></script>
|
||||||
<script src="assets/js/main.js"></script>
|
<script src="assets/js/main.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
@ -1,127 +1,127 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<!--
|
<!--
|
||||||
Massively by HTML5 UP
|
Massively by HTML5 UP
|
||||||
html5up.net | @ajlkn
|
html5up.net | @ajlkn
|
||||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
-->
|
-->
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Generic Page - Massively by HTML5 UP</title>
|
<title>Generic Page - Massively by HTML5 UP</title>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
||||||
{% load static %}
|
{% load static %}
|
||||||
<link rel="stylesheet" href="{% static 'massively/assets/css/main.css' %}" />
|
<link rel="stylesheet" href="{% static 'massively/assets/css/main.css' %}" />
|
||||||
<noscript><link rel="stylesheet" href={% static 'massively/assets/css/noscript.css' %} /></noscript>
|
<noscript><link rel="stylesheet" href={% static 'massively/assets/css/noscript.css' %} /></noscript>
|
||||||
</head>
|
</head>
|
||||||
<body class="is-preload">
|
<body class="is-preload">
|
||||||
|
|
||||||
<!-- Wrapper -->
|
<!-- Wrapper -->
|
||||||
<div id="wrapper">
|
<div id="wrapper">
|
||||||
|
|
||||||
<!-- Header -->
|
<!-- Header -->
|
||||||
<header id="header">
|
<header id="header">
|
||||||
<a href="index.html" class="logo">Massively</a>
|
<a href="index.html" class="logo">Massively</a>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<!-- Nav -->
|
<!-- Nav -->
|
||||||
<nav id="nav">
|
<nav id="nav">
|
||||||
<ul class="links">
|
<ul class="links">
|
||||||
<li><a href="index.html">This is Massively</a></li>
|
<li><a href="index.html">This is Massively</a></li>
|
||||||
<li class="active"><a href="generic.html">Generic Page</a></li>
|
<li class="active"><a href="generic.html">Generic Page</a></li>
|
||||||
<li><a href="elements.html">Elements Reference</a></li>
|
<li><a href="elements.html">Elements Reference</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="icons">
|
<ul class="icons">
|
||||||
<li><a href="#" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
|
<li><a href="#" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
|
||||||
<li><a href="#" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
|
<li><a href="#" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
|
||||||
<li><a href="#" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
|
<li><a href="#" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
|
||||||
<li><a href="#" class="icon brands fa-github"><span class="label">GitHub</span></a></li>
|
<li><a href="#" class="icon brands fa-github"><span class="label">GitHub</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<!-- Main -->
|
<!-- Main -->
|
||||||
<div id="main">
|
<div id="main">
|
||||||
|
|
||||||
<!-- Post -->
|
<!-- Post -->
|
||||||
<section class="post">
|
<section class="post">
|
||||||
<header class="major">
|
<header class="major">
|
||||||
<span class="date">April 25, 2017</span>
|
<span class="date">April 25, 2017</span>
|
||||||
<h1>This is a<br />
|
<h1>This is a<br />
|
||||||
Generic Page</h1>
|
Generic Page</h1>
|
||||||
<p>Aenean ornare velit lacus varius enim ullamcorper proin aliquam<br />
|
<p>Aenean ornare velit lacus varius enim ullamcorper proin aliquam<br />
|
||||||
facilisis ante sed etiam magna interdum congue. Lorem ipsum dolor<br />
|
facilisis ante sed etiam magna interdum congue. Lorem ipsum dolor<br />
|
||||||
amet nullam sed etiam veroeros.</p>
|
amet nullam sed etiam veroeros.</p>
|
||||||
</header>
|
</header>
|
||||||
<div class="image main"><img src="images/pic01.jpg" alt="" /></div>
|
<div class="image main"><img src="images/pic01.jpg" alt="" /></div>
|
||||||
<p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis. Praesent rutrum sem diam, vitae egestas enim auctor sit amet. Pellentesque leo mauris, consectetur id ipsum sit amet, fergiat. Pellentesque in mi eu massa lacinia malesuada et a elit. Donec urna ex, lacinia in purus ac, pretium pulvinar mauris. Nunc lorem mauris, fringilla in aliquam at, euismod in lectus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Curabitur sapien risus, commodo eget turpis at, elementum convallis enim turpis, lorem ipsum dolor sit amet nullam.</p>
|
<p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis. Praesent rutrum sem diam, vitae egestas enim auctor sit amet. Pellentesque leo mauris, consectetur id ipsum sit amet, fergiat. Pellentesque in mi eu massa lacinia malesuada et a elit. Donec urna ex, lacinia in purus ac, pretium pulvinar mauris. Nunc lorem mauris, fringilla in aliquam at, euismod in lectus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Curabitur sapien risus, commodo eget turpis at, elementum convallis enim turpis, lorem ipsum dolor sit amet nullam.</p>
|
||||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis dapibus rutrum facilisis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Etiam tristique libero eu nibh porttitor fermentum. Nullam venenatis erat id vehicula viverra. Nunc ultrices eros ut ultricies condimentum. Mauris risus lacus, blandit sit amet venenatis non, bibendum vitae dolor. Nunc lorem mauris, fringilla in aliquam at, euismod in lectus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In non lorem sit amet elit placerat maximus. Pellentesque aliquam maximus risus. Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis. Praesent rutrum sem diam, vitae egestas enim auctor sit amet. Pellentesque leo mauris, consectetur id ipsum.</p>
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis dapibus rutrum facilisis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Etiam tristique libero eu nibh porttitor fermentum. Nullam venenatis erat id vehicula viverra. Nunc ultrices eros ut ultricies condimentum. Mauris risus lacus, blandit sit amet venenatis non, bibendum vitae dolor. Nunc lorem mauris, fringilla in aliquam at, euismod in lectus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In non lorem sit amet elit placerat maximus. Pellentesque aliquam maximus risus. Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis. Praesent rutrum sem diam, vitae egestas enim auctor sit amet. Pellentesque leo mauris, consectetur id ipsum.</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
<section>
|
<section>
|
||||||
<form method="post" action="#">
|
<form method="post" action="#">
|
||||||
<div class="fields">
|
<div class="fields">
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="name">Name</label>
|
<label for="name">Name</label>
|
||||||
<input type="text" name="name" id="name" />
|
<input type="text" name="name" id="name" />
|
||||||
</div>
|
</div>
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="email">Email</label>
|
<label for="email">Email</label>
|
||||||
<input type="text" name="email" id="email" />
|
<input type="text" name="email" id="email" />
|
||||||
</div>
|
</div>
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="message">Message</label>
|
<label for="message">Message</label>
|
||||||
<textarea name="message" id="message" rows="3"></textarea>
|
<textarea name="message" id="message" rows="3"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<ul class="actions">
|
<ul class="actions">
|
||||||
<li><input type="submit" value="Send Message" /></li>
|
<li><input type="submit" value="Send Message" /></li>
|
||||||
</ul>
|
</ul>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
<section class="split contact">
|
<section class="split contact">
|
||||||
<section class="alt">
|
<section class="alt">
|
||||||
<h3>Address</h3>
|
<h3>Address</h3>
|
||||||
<p>1234 Somewhere Road #87257<br />
|
<p>1234 Somewhere Road #87257<br />
|
||||||
Nashville, TN 00000-0000</p>
|
Nashville, TN 00000-0000</p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h3>Phone</h3>
|
<h3>Phone</h3>
|
||||||
<p><a href="#">(000) 000-0000</a></p>
|
<p><a href="#">(000) 000-0000</a></p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h3>Email</h3>
|
<h3>Email</h3>
|
||||||
<p><a href="#">info@untitled.tld</a></p>
|
<p><a href="#">info@untitled.tld</a></p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h3>Social</h3>
|
<h3>Social</h3>
|
||||||
<ul class="icons alt">
|
<ul class="icons alt">
|
||||||
<li><a href="#" class="icon brands alt fa-twitter"><span class="label">Twitter</span></a></li>
|
<li><a href="#" class="icon brands alt fa-twitter"><span class="label">Twitter</span></a></li>
|
||||||
<li><a href="#" class="icon brands alt fa-facebook-f"><span class="label">Facebook</span></a></li>
|
<li><a href="#" class="icon brands alt fa-facebook-f"><span class="label">Facebook</span></a></li>
|
||||||
<li><a href="#" class="icon brands alt fa-instagram"><span class="label">Instagram</span></a></li>
|
<li><a href="#" class="icon brands alt fa-instagram"><span class="label">Instagram</span></a></li>
|
||||||
<li><a href="#" class="icon brands alt fa-github"><span class="label">GitHub</span></a></li>
|
<li><a href="#" class="icon brands alt fa-github"><span class="label">GitHub</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<!-- Copyright -->
|
<!-- Copyright -->
|
||||||
<div id="copyright">
|
<div id="copyright">
|
||||||
<ul><li>© Untitled</li><li>Design: <a href="https://html5up.net">HTML5 UP</a></li></ul>
|
<ul><li>© Untitled</li><li>Design: <a href="https://html5up.net">HTML5 UP</a></li></ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Scripts -->
|
<!-- Scripts -->
|
||||||
<script src="assets/js/jquery.min.js"></script>
|
<script src="assets/js/jquery.min.js"></script>
|
||||||
<script src="assets/js/jquery.scrollex.min.js"></script>
|
<script src="assets/js/jquery.scrollex.min.js"></script>
|
||||||
<script src="assets/js/jquery.scrolly.min.js"></script>
|
<script src="assets/js/jquery.scrolly.min.js"></script>
|
||||||
<script src="assets/js/browser.min.js"></script>
|
<script src="assets/js/browser.min.js"></script>
|
||||||
<script src="assets/js/breakpoints.min.js"></script>
|
<script src="assets/js/breakpoints.min.js"></script>
|
||||||
<script src="assets/js/util.js"></script>
|
<script src="assets/js/util.js"></script>
|
||||||
<script src="assets/js/main.js"></script>
|
<script src="assets/js/main.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
@ -1,230 +1,230 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<!--
|
<!--
|
||||||
Massively by HTML5 UP
|
Massively by HTML5 UP
|
||||||
html5up.net | @ajlkn
|
html5up.net | @ajlkn
|
||||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
-->
|
-->
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Massively by HTML5 UP</title>
|
<title>Massively by HTML5 UP</title>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
||||||
{% load static %}
|
{% load static %}
|
||||||
<link rel="stylesheet" href="{% static 'massively/assets/css/main.css' %}" />
|
<link rel="stylesheet" href="{% static 'html5up-massively/assets/css/main.css' %}" />
|
||||||
<noscript><link rel="stylesheet" href="{% static 'massively/assets/css/noscript.css' %}" /></noscript>
|
<noscript><link rel="stylesheet" href="{% static 'html5up-massively/assets/css/noscript.css' %}" /></noscript>
|
||||||
</head>
|
</head>
|
||||||
<body class="is-preload">
|
<body class="is-preload">
|
||||||
|
|
||||||
<!-- Wrapper -->
|
<!-- Wrapper -->
|
||||||
<div id="wrapper" class="fade-in">
|
<div id="wrapper" class="fade-in">
|
||||||
|
|
||||||
<!-- Intro -->
|
<!-- Intro -->
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
<h1>This is<br />
|
<h1>This is<br />
|
||||||
Massively</h1>
|
Massively</h1>
|
||||||
<p>A free, fully responsive HTML5 + CSS3 site template designed by <a href="https://twitter.com/ajlkn">@ajlkn</a> for <a href="https://html5up.net">HTML5 UP</a><br />
|
<p>A free, fully responsive HTML5 + CSS3 site template designed by <a href="https://twitter.com/ajlkn">@ajlkn</a> for <a href="https://html5up.net">HTML5 UP</a><br />
|
||||||
and released for free under the <a href="https://html5up.net/license">Creative Commons license</a>.</p>
|
and released for free under the <a href="https://html5up.net/license">Creative Commons license</a>.</p>
|
||||||
<ul class="actions">
|
<ul class="actions">
|
||||||
<li><a href="#header" class="button icon solid solo fa-arrow-down scrolly">Continue</a></li>
|
<li><a href="#header" class="button icon solid solo fa-arrow-down scrolly">Continue</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Header -->
|
<!-- Header -->
|
||||||
<header id="header">
|
<header id="header">
|
||||||
<a href="index.html" class="logo">Massively</a>
|
<a href="index.html" class="logo">Massively</a>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<!-- Nav -->
|
<!-- Nav -->
|
||||||
<nav id="nav">
|
<nav id="nav">
|
||||||
<ul class="links">
|
<ul class="links">
|
||||||
<li class="active"><a href="index.html">This is Massively</a></li>
|
<li class="active"><a href="index.html">This is Massively</a></li>
|
||||||
<li><a href="generic.html">Generic Page</a></li>
|
<li><a href="generic.html">Generic Page</a></li>
|
||||||
<li><a href="elements.html">Elements Reference</a></li>
|
<li><a href="elements.html">Elements Reference</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="icons">
|
<ul class="icons">
|
||||||
<li><a href="#" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
|
<li><a href="#" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
|
||||||
<li><a href="#" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
|
<li><a href="#" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
|
||||||
<li><a href="#" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
|
<li><a href="#" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
|
||||||
<li><a href="#" class="icon brands fa-github"><span class="label">GitHub</span></a></li>
|
<li><a href="#" class="icon brands fa-github"><span class="label">GitHub</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<!-- Main -->
|
<!-- Main -->
|
||||||
<div id="main">
|
<div id="main">
|
||||||
|
|
||||||
<!-- Featured Post -->
|
<!-- Featured Post -->
|
||||||
<article class="post featured">
|
<article class="post featured">
|
||||||
<header class="major">
|
<header class="major">
|
||||||
<span class="date">April 25, 2017</span>
|
<span class="date">April 25, 2017</span>
|
||||||
<h2><a href="#">And this is a<br />
|
<h2><a href="#">And this is a<br />
|
||||||
massive headline</a></h2>
|
massive headline</a></h2>
|
||||||
<p>Aenean ornare velit lacus varius enim ullamcorper proin aliquam<br />
|
<p>Aenean ornare velit lacus varius enim ullamcorper proin aliquam<br />
|
||||||
facilisis ante sed etiam magna interdum congue. Lorem ipsum dolor<br />
|
facilisis ante sed etiam magna interdum congue. Lorem ipsum dolor<br />
|
||||||
amet nullam sed etiam veroeros.</p>
|
amet nullam sed etiam veroeros.</p>
|
||||||
</header>
|
</header>
|
||||||
<a href="#" class="image main"><img src="{% static 'massively/images/pic01.jpg' %}" alt="" /></a>
|
<a href="#" class="image main"><img src="{% static 'html5up-massively/images/pic01.jpg' %}" alt="" /></a>
|
||||||
<ul class="actions special">
|
<ul class="actions special">
|
||||||
<li><a href="#" class="button large">Full Story</a></li>
|
<li><a href="#" class="button large">Full Story</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
<!-- Posts -->
|
<!-- Posts -->
|
||||||
<section class="posts">
|
<section class="posts">
|
||||||
<article>
|
<article>
|
||||||
<header>
|
<header>
|
||||||
<span class="date">April 24, 2017</span>
|
<span class="date">April 24, 2017</span>
|
||||||
<h2><a href="#">Sed magna<br />
|
<h2><a href="#">Sed magna<br />
|
||||||
ipsum faucibus</a></h2>
|
ipsum faucibus</a></h2>
|
||||||
</header>
|
</header>
|
||||||
<a href="#" class="image fit"><img src="{% static 'massively/images/pic02.jpg' %}" alt="" /></a>
|
<a href="#" class="image fit"><img src="{% static 'html5up-massively/images/pic02.jpg' %}" alt="" /></a>
|
||||||
<p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis magna etiam.</p>
|
<p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis magna etiam.</p>
|
||||||
<ul class="actions special">
|
<ul class="actions special">
|
||||||
<li><a href="#" class="button">Full Story</a></li>
|
<li><a href="#" class="button">Full Story</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</article>
|
</article>
|
||||||
<article>
|
<article>
|
||||||
<header>
|
<header>
|
||||||
<span class="date">April 22, 2017</span>
|
<span class="date">April 22, 2017</span>
|
||||||
<h2><a href="#">Primis eget<br />
|
<h2><a href="#">Primis eget<br />
|
||||||
imperdiet lorem</a></h2>
|
imperdiet lorem</a></h2>
|
||||||
</header>
|
</header>
|
||||||
<a href="#" class="image fit"><img src="{% static 'massively/images/pic03.jpg' %}" alt="" /></a>
|
<a href="#" class="image fit"><img src="{% static 'html5up-massively/images/pic03.jpg' %}" alt="" /></a>
|
||||||
<p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis magna etiam.</p>
|
<p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis magna etiam.</p>
|
||||||
<ul class="actions special">
|
<ul class="actions special">
|
||||||
<li><a href="#" class="button">Full Story</a></li>
|
<li><a href="#" class="button">Full Story</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</article>
|
</article>
|
||||||
<article>
|
<article>
|
||||||
<header>
|
<header>
|
||||||
<span class="date">April 18, 2017</span>
|
<span class="date">April 18, 2017</span>
|
||||||
<h2><a href="#">Ante mattis<br />
|
<h2><a href="#">Ante mattis<br />
|
||||||
interdum dolor</a></h2>
|
interdum dolor</a></h2>
|
||||||
</header>
|
</header>
|
||||||
<a href="#" class="image fit"><img src="{% static 'massively/images/pic04.jpg' %}" alt="" /></a>
|
<a href="#" class="image fit"><img src="{% static 'html5up-massively/images/pic04.jpg' %}" alt="" /></a>
|
||||||
<p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis magna etiam.</p>
|
<p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis magna etiam.</p>
|
||||||
<ul class="actions special">
|
<ul class="actions special">
|
||||||
<li><a href="#" class="button">Full Story</a></li>
|
<li><a href="#" class="button">Full Story</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</article>
|
</article>
|
||||||
<article>
|
<article>
|
||||||
<header>
|
<header>
|
||||||
<span class="date">April 14, 2017</span>
|
<span class="date">April 14, 2017</span>
|
||||||
<h2><a href="#">Tempus sed<br />
|
<h2><a href="#">Tempus sed<br />
|
||||||
nulla imperdiet</a></h2>
|
nulla imperdiet</a></h2>
|
||||||
</header>
|
</header>
|
||||||
<a href="#" class="image fit"><img src="{% static 'massively/images/pic05.jpg' %}" alt="" /></a>
|
<a href="#" class="image fit"><img src="{% static 'html5up-massively/images/pic05.jpg' %}" alt="" /></a>
|
||||||
<p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis magna etiam.</p>
|
<p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis magna etiam.</p>
|
||||||
<ul class="actions special">
|
<ul class="actions special">
|
||||||
<li><a href="#" class="button">Full Story</a></li>
|
<li><a href="#" class="button">Full Story</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</article>
|
</article>
|
||||||
<article>
|
<article>
|
||||||
<header>
|
<header>
|
||||||
<span class="date">April 11, 2017</span>
|
<span class="date">April 11, 2017</span>
|
||||||
<h2><a href="#">Odio magna<br />
|
<h2><a href="#">Odio magna<br />
|
||||||
sed consectetur</a></h2>
|
sed consectetur</a></h2>
|
||||||
</header>
|
</header>
|
||||||
<a href="#" class="image fit"><img src="{% static 'massively/images/pic06.jpg' %}" alt="" /></a>
|
<a href="#" class="image fit"><img src="{% static 'html5up-massively/images/pic06.jpg' %}" alt="" /></a>
|
||||||
<p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis magna etiam.</p>
|
<p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis magna etiam.</p>
|
||||||
<ul class="actions special">
|
<ul class="actions special">
|
||||||
<li><a href="#" class="button">Full Story</a></li>
|
<li><a href="#" class="button">Full Story</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</article>
|
</article>
|
||||||
<article>
|
<article>
|
||||||
<header>
|
<header>
|
||||||
<span class="date">April 7, 2017</span>
|
<span class="date">April 7, 2017</span>
|
||||||
<h2><a href="#">Augue lorem<br />
|
<h2><a href="#">Augue lorem<br />
|
||||||
primis vestibulum</a></h2>
|
primis vestibulum</a></h2>
|
||||||
</header>
|
</header>
|
||||||
<a href="#" class="image fit"><img src="{% static 'massively/images/pic07.jpg' %}" alt="" /></a>
|
<a href="#" class="image fit"><img src="{% static 'html5up-massively/images/pic07.jpg' %}" alt="" /></a>
|
||||||
<p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis magna etiam.</p>
|
<p>Donec eget ex magna. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque venenatis dolor imperdiet dolor mattis sagittis magna etiam.</p>
|
||||||
<ul class="actions special">
|
<ul class="actions special">
|
||||||
<li><a href="#" class="button">Full Story</a></li>
|
<li><a href="#" class="button">Full Story</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<footer>
|
<footer>
|
||||||
<div class="pagination">
|
<div class="pagination">
|
||||||
<!--<a href="#" class="previous">Prev</a>-->
|
<!--<a href="#" class="previous">Prev</a>-->
|
||||||
<a href="#" class="page active">1</a>
|
<a href="#" class="page active">1</a>
|
||||||
<a href="#" class="page">2</a>
|
<a href="#" class="page">2</a>
|
||||||
<a href="#" class="page">3</a>
|
<a href="#" class="page">3</a>
|
||||||
<span class="extra">…</span>
|
<span class="extra">…</span>
|
||||||
<a href="#" class="page">8</a>
|
<a href="#" class="page">8</a>
|
||||||
<a href="#" class="page">9</a>
|
<a href="#" class="page">9</a>
|
||||||
<a href="#" class="page">10</a>
|
<a href="#" class="page">10</a>
|
||||||
<a href="#" class="next">Next</a>
|
<a href="#" class="next">Next</a>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
<section>
|
<section>
|
||||||
<form method="post" action="#">
|
<form method="post" action="#">
|
||||||
<div class="fields">
|
<div class="fields">
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="name">Name</label>
|
<label for="name">Name</label>
|
||||||
<input type="text" name="name" id="name" />
|
<input type="text" name="name" id="name" />
|
||||||
</div>
|
</div>
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="email">Email</label>
|
<label for="email">Email</label>
|
||||||
<input type="text" name="email" id="email" />
|
<input type="text" name="email" id="email" />
|
||||||
</div>
|
</div>
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="message">Message</label>
|
<label for="message">Message</label>
|
||||||
<textarea name="message" id="message" rows="3"></textarea>
|
<textarea name="message" id="message" rows="3"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<ul class="actions">
|
<ul class="actions">
|
||||||
<li><input type="submit" value="Send Message" /></li>
|
<li><input type="submit" value="Send Message" /></li>
|
||||||
</ul>
|
</ul>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
<section class="split contact">
|
<section class="split contact">
|
||||||
<section class="alt">
|
<section class="alt">
|
||||||
<h3>Address</h3>
|
<h3>Address</h3>
|
||||||
<p>1234 Somewhere Road #87257<br />
|
<p>1234 Somewhere Road #87257<br />
|
||||||
Nashville, TN 00000-0000</p>
|
Nashville, TN 00000-0000</p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h3>Phone</h3>
|
<h3>Phone</h3>
|
||||||
<p><a href="#">(000) 000-0000</a></p>
|
<p><a href="#">(000) 000-0000</a></p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h3>Email</h3>
|
<h3>Email</h3>
|
||||||
<p><a href="#">info@untitled.tld</a></p>
|
<p><a href="#">info@untitled.tld</a></p>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h3>Social</h3>
|
<h3>Social</h3>
|
||||||
<ul class="icons alt">
|
<ul class="icons alt">
|
||||||
<li><a href="#" class="icon brands alt fa-twitter"><span class="label">Twitter</span></a></li>
|
<li><a href="#" class="icon brands alt fa-twitter"><span class="label">Twitter</span></a></li>
|
||||||
<li><a href="#" class="icon brands alt fa-facebook-f"><span class="label">Facebook</span></a></li>
|
<li><a href="#" class="icon brands alt fa-facebook-f"><span class="label">Facebook</span></a></li>
|
||||||
<li><a href="#" class="icon brands alt fa-instagram"><span class="label">Instagram</span></a></li>
|
<li><a href="#" class="icon brands alt fa-instagram"><span class="label">Instagram</span></a></li>
|
||||||
<li><a href="#" class="icon brands alt fa-github"><span class="label">GitHub</span></a></li>
|
<li><a href="#" class="icon brands alt fa-github"><span class="label">GitHub</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<!-- Copyright -->
|
<!-- Copyright -->
|
||||||
<div id="copyright">
|
<div id="copyright">
|
||||||
<ul><li>© Untitled</li><li>Design: <a href="https://html5up.net">HTML5 UP</a></li></ul>
|
<ul><li>© Untitled</li><li>Design: <a href="https://html5up.net">HTML5 UP</a></li></ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Scripts -->
|
<!-- Scripts -->
|
||||||
<script src="{% static 'massively/assets/js/jquery.min.js' %}"></script>
|
<script src="{% static 'html5up-massively/assets/js/jquery.min.js' %}"></script>
|
||||||
<script src="{% static 'massively/assets/js/jquery.scrollex.min.js' %}"></script>
|
<script src="{% static 'html5up-massively/assets/js/jquery.scrollex.min.js' %}"></script>
|
||||||
<script src="{% static 'massively/assets/js/jquery.scrolly.min.js' %}"></script>
|
<script src="{% static 'html5up-massively/assets/js/jquery.scrolly.min.js' %}"></script>
|
||||||
<script src="{% static 'massively/assets/js/browser.min.js' %}"></script>
|
<script src="{% static 'html5up-massively/assets/js/browser.min.js' %}"></script>
|
||||||
<script src="{% static 'massively/assets/js/breakpoints.min.js' %}"></script>
|
<script src="{% static 'html5up-massively/assets/js/breakpoints.min.js' %}"></script>
|
||||||
<script src="{% static 'massively/assets/js/util.js' %}"></script>
|
<script src="{% static 'html5up-massively/assets/js/util.js' %}"></script>
|
||||||
<script src="{% static 'massively/assets/js/main.js' %}"></script>
|
<script src="{% static 'html5up-massively/assets/js/main.js' %}"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
from django.urls import include, path, re_path
|
||||||
|
|
||||||
|
from BaseBillet import views as base_view
|
||||||
|
|
||||||
|
urlpatterns = [
|
||||||
|
path('', base_view.index.as_view(), name="index"),
|
||||||
|
]
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
||||||
|
from rest_framework.permissions import AllowAny
|
||||||
|
from rest_framework.views import APIView
|
||||||
|
|
||||||
|
|
||||||
|
class index(APIView):
|
||||||
|
permission_classes = [AllowAny]
|
||||||
|
|
||||||
|
def get(self, request):
|
||||||
|
return render(request, 'html5up-massively/index.html')
|
||||||
|
|
@ -0,0 +1,63 @@
|
||||||
|
Creative Commons Attribution 3.0 Unported
|
||||||
|
http://creativecommons.org/licenses/by/3.0/
|
||||||
|
|
||||||
|
License
|
||||||
|
|
||||||
|
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
|
||||||
|
|
||||||
|
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
|
||||||
|
|
||||||
|
1. Definitions
|
||||||
|
|
||||||
|
1. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License.
|
||||||
|
2. "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined above) for the purposes of this License.
|
||||||
|
3. "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership.
|
||||||
|
4. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License.
|
||||||
|
5. "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast.
|
||||||
|
6. "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work.
|
||||||
|
7. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.
|
||||||
|
8. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images.
|
||||||
|
9. "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium.
|
||||||
|
|
||||||
|
2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws.
|
||||||
|
|
||||||
|
3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:
|
||||||
|
|
||||||
|
1. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections;
|
||||||
|
2. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified.";
|
||||||
|
3. to Distribute and Publicly Perform the Work including as incorporated in Collections; and,
|
||||||
|
4. to Distribute and Publicly Perform Adaptations.
|
||||||
|
5.
|
||||||
|
|
||||||
|
For the avoidance of doubt:
|
||||||
|
1. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License;
|
||||||
|
2. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and,
|
||||||
|
3. Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License.
|
||||||
|
|
||||||
|
The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved.
|
||||||
|
|
||||||
|
4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:
|
||||||
|
|
||||||
|
1. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(b), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(b), as requested.
|
||||||
|
2. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4 (b) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties.
|
||||||
|
3. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise.
|
||||||
|
|
||||||
|
5. Representations, Warranties and Disclaimer
|
||||||
|
|
||||||
|
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
|
||||||
|
|
||||||
|
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
7. Termination
|
||||||
|
|
||||||
|
1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.
|
||||||
|
2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.
|
||||||
|
|
||||||
|
8. Miscellaneous
|
||||||
|
|
||||||
|
1. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.
|
||||||
|
2. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.
|
||||||
|
3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
|
||||||
|
4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.
|
||||||
|
5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.
|
||||||
|
6. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
|
||||||
|
|
@ -0,0 +1,37 @@
|
||||||
|
Story by HTML5 UP
|
||||||
|
html5up.net | @ajlkn
|
||||||
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
|
|
||||||
|
|
||||||
|
Say hello to Story, a brand new responsive one-pager for HTML5 UP! Inspired by my work
|
||||||
|
on Carrd*, Story is built to be extremely modular and tweakable, and as such is entirely
|
||||||
|
built on reusable, insanely customizable elements (like "spotlight" and "gallery") that
|
||||||
|
can be endlessly duplicated and tweaked into whatever you need to tell your story --
|
||||||
|
without, in many cases, touching *any* CSS. Check out index-demo.html for an interactive
|
||||||
|
demo, and index.html for the actual template. Enjoy!
|
||||||
|
|
||||||
|
Demo images** courtesy of Unsplash, a radtastic collection of CC0 (public domain) images
|
||||||
|
you can use for pretty much whatever.
|
||||||
|
|
||||||
|
PS: Delete index-demo.html and assets/js/demo.js when you're done messing with the demo
|
||||||
|
as neither are needed in production :)
|
||||||
|
|
||||||
|
(* = my other side project -- carrd.co)
|
||||||
|
(** = not included)
|
||||||
|
|
||||||
|
AJ
|
||||||
|
aj@lkn.io | @ajlkn
|
||||||
|
|
||||||
|
|
||||||
|
Credits:
|
||||||
|
|
||||||
|
Demo Images:
|
||||||
|
Unsplash (unsplash.com)
|
||||||
|
|
||||||
|
Icons:
|
||||||
|
Font Awesome (fontawesome.io)
|
||||||
|
|
||||||
|
Other:
|
||||||
|
jQuery (jquery.com)
|
||||||
|
Scrollex (github.com/ajlkn/jquery.scrollex)
|
||||||
|
Responsive Tools (github.com/ajlkn/responsive-tools)
|
||||||
5
DjangoFiles/MetaBillet/static/html5up-story/assets/css/fontawesome-all.min.css
vendored
Normal file
|
|
@ -0,0 +1,387 @@
|
||||||
|
/*
|
||||||
|
Story by HTML5 UP
|
||||||
|
html5up.net | @ajlkn
|
||||||
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Banner (transitions) */
|
||||||
|
|
||||||
|
.banner.onload-content-fade-up .content {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.is-preload .banner.onload-content-fade-up .content {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onload-content-fade-down .content {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.is-preload .banner.onload-content-fade-down .content {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onload-content-fade-left .content {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.is-preload .banner.onload-content-fade-left .content {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onload-content-fade-right .content {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.is-preload .banner.onload-content-fade-right .content {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onload-content-fade-in .content {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.is-preload .banner.onload-content-fade-in .content {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onload-image-fade-up .image {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onload-image-fade-up .image img {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.is-preload .banner.onload-image-fade-up .image {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.is-preload .banner.onload-image-fade-up .image img {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onload-image-fade-down .image {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onload-image-fade-down .image img {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.is-preload .banner.onload-image-fade-down .image {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.is-preload .banner.onload-image-fade-down .image img {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onload-image-fade-left .image {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onload-image-fade-left .image img {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.is-preload .banner.onload-image-fade-left .image {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.is-preload .banner.onload-image-fade-left .image img {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onload-image-fade-right .image {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onload-image-fade-right .image img {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.is-preload .banner.onload-image-fade-right .image {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.is-preload .banner.onload-image-fade-right .image img {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onload-image-fade-in .image img {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.is-preload .banner.onload-image-fade-in .image img {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-content-fade-up .content {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-content-fade-up.is-inactive .content {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-content-fade-down .content {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-content-fade-down.is-inactive .content {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-content-fade-left .content {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-content-fade-left.is-inactive .content {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-content-fade-right .content {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-content-fade-right.is-inactive .content {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-content-fade-in .content {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-content-fade-in.is-inactive .content {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-up .image {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-up .image img {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-up.is-inactive .image {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-up.is-inactive .image img {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-down .image {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-down .image img {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-down.is-inactive .image {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-down.is-inactive .image img {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-left .image {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-left .image img {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-left.is-inactive .image {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-left.is-inactive .image img {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-right .image {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-right .image img {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-right.is-inactive .image {
|
||||||
|
-moz-transform: none;
|
||||||
|
-webkit-transform: none;
|
||||||
|
-ms-transform: none;
|
||||||
|
transform: none;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-right.is-inactive .image img {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-in .image img {
|
||||||
|
-moz-transition: none;
|
||||||
|
-webkit-transition: none;
|
||||||
|
-ms-transition: none;
|
||||||
|
transition: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner.onscroll-image-fade-in.is-inactive .image img {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
/* breakpoints.js v1.0 | @ajlkn | MIT licensed */
|
||||||
|
var breakpoints=function(){"use strict";function e(e){t.init(e)}var t={list:null,media:{},events:[],init:function(e){t.list=e,window.addEventListener("resize",t.poll),window.addEventListener("orientationchange",t.poll),window.addEventListener("load",t.poll),window.addEventListener("fullscreenchange",t.poll)},active:function(e){var n,a,s,i,r,d,c;if(!(e in t.media)){if(">="==e.substr(0,2)?(a="gte",n=e.substr(2)):"<="==e.substr(0,2)?(a="lte",n=e.substr(2)):">"==e.substr(0,1)?(a="gt",n=e.substr(1)):"<"==e.substr(0,1)?(a="lt",n=e.substr(1)):"!"==e.substr(0,1)?(a="not",n=e.substr(1)):(a="eq",n=e),n&&n in t.list)if(i=t.list[n],Array.isArray(i)){if(r=parseInt(i[0]),d=parseInt(i[1]),isNaN(r)){if(isNaN(d))return;c=i[1].substr(String(d).length)}else c=i[0].substr(String(r).length);if(isNaN(r))switch(a){case"gte":s="screen";break;case"lte":s="screen and (max-width: "+d+c+")";break;case"gt":s="screen and (min-width: "+(d+1)+c+")";break;case"lt":s="screen and (max-width: -1px)";break;case"not":s="screen and (min-width: "+(d+1)+c+")";break;default:s="screen and (max-width: "+d+c+")"}else if(isNaN(d))switch(a){case"gte":s="screen and (min-width: "+r+c+")";break;case"lte":s="screen";break;case"gt":s="screen and (max-width: -1px)";break;case"lt":s="screen and (max-width: "+(r-1)+c+")";break;case"not":s="screen and (max-width: "+(r-1)+c+")";break;default:s="screen and (min-width: "+r+c+")"}else switch(a){case"gte":s="screen and (min-width: "+r+c+")";break;case"lte":s="screen and (max-width: "+d+c+")";break;case"gt":s="screen and (min-width: "+(d+1)+c+")";break;case"lt":s="screen and (max-width: "+(r-1)+c+")";break;case"not":s="screen and (max-width: "+(r-1)+c+"), screen and (min-width: "+(d+1)+c+")";break;default:s="screen and (min-width: "+r+c+") and (max-width: "+d+c+")"}}else s="("==i.charAt(0)?"screen and "+i:i;t.media[e]=!!s&&s}return t.media[e]!==!1&&window.matchMedia(t.media[e]).matches},on:function(e,n){t.events.push({query:e,handler:n,state:!1}),t.active(e)&&n()},poll:function(){var e,n;for(e=0;e<t.events.length;e++)n=t.events[e],t.active(n.query)?n.state||(n.state=!0,n.handler()):n.state&&(n.state=!1)}};return e._=t,e.on=function(e,n){t.on(e,n)},e.active=function(e){return t.active(e)},e}();!function(e,t){"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?module.exports=t():e.breakpoints=t()}(this,function(){return breakpoints});
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
/* browser.js v1.0 | @ajlkn | MIT licensed */
|
||||||
|
var browser=function(){"use strict";var e={name:null,version:null,os:null,osVersion:null,touch:null,mobile:null,_canUse:null,canUse:function(n){e._canUse||(e._canUse=document.createElement("div"));var o=e._canUse.style,r=n.charAt(0).toUpperCase()+n.slice(1);return n in o||"Moz"+r in o||"Webkit"+r in o||"O"+r in o||"ms"+r in o},init:function(){var n,o,r,i,t=navigator.userAgent;for(n="other",o=0,r=[["firefox",/Firefox\/([0-9\.]+)/],["bb",/BlackBerry.+Version\/([0-9\.]+)/],["bb",/BB[0-9]+.+Version\/([0-9\.]+)/],["opera",/OPR\/([0-9\.]+)/],["opera",/Opera\/([0-9\.]+)/],["edge",/Edge\/([0-9\.]+)/],["safari",/Version\/([0-9\.]+).+Safari/],["chrome",/Chrome\/([0-9\.]+)/],["ie",/MSIE ([0-9]+)/],["ie",/Trident\/.+rv:([0-9]+)/]],i=0;i<r.length;i++)if(t.match(r[i][1])){n=r[i][0],o=parseFloat(RegExp.$1);break}for(e.name=n,e.version=o,n="other",o=0,r=[["ios",/([0-9_]+) like Mac OS X/,function(e){return e.replace("_",".").replace("_","")}],["ios",/CPU like Mac OS X/,function(e){return 0}],["wp",/Windows Phone ([0-9\.]+)/,null],["android",/Android ([0-9\.]+)/,null],["mac",/Macintosh.+Mac OS X ([0-9_]+)/,function(e){return e.replace("_",".").replace("_","")}],["windows",/Windows NT ([0-9\.]+)/,null],["bb",/BlackBerry.+Version\/([0-9\.]+)/,null],["bb",/BB[0-9]+.+Version\/([0-9\.]+)/,null],["linux",/Linux/,null],["bsd",/BSD/,null],["unix",/X11/,null]],i=0;i<r.length;i++)if(t.match(r[i][1])){n=r[i][0],o=parseFloat(r[i][2]?r[i][2](RegExp.$1):RegExp.$1);break}e.os=n,e.osVersion=o,e.touch="wp"==e.os?navigator.msMaxTouchPoints>0:!!("ontouchstart"in window),e.mobile="wp"==e.os||"android"==e.os||"ios"==e.os||"bb"==e.os}};return e.init(),e}();!function(e,n){"function"==typeof define&&define.amd?define([],n):"object"==typeof exports?module.exports=n():e.browser=n()}(this,function(){return browser});
|
||||||