Changeset - 76c4029e3f8c
[Not reviewed]
0 6 1
Christopher Neugebauer - 6 years ago 2018-06-29 22:18:01
chrisjrn@gmail.com
Initial 2018ification
7 files changed with 90 insertions and 110 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/_footer.html
Show inline comments
 
{% load staticfiles %}
 
{% load sponsorship_tags %}
 
<div class="row">
 

	
 
  <div class="logo">
 
    <div class="circle">
 
      <div class="fill" style="background-image: url('{% static "images/logo.svg" %}');"></div>
 
    </div>
 
  </div>
 

	
 
  <div class="footer-copy">
 
    <p>&copy; 2017 North Bay Python, member project of <a href="https://sfconservancy.org" >Software Freedom Conservancy</a>, a 501(c)(3) charity.</p>
 
    <p>&copy; 2018 North Bay Python, member project of <a href="https://sfconservancy.org" >Software Freedom Conservancy</a>, a 501(c)(3) charity.</p>
 

	
 
    {% sponsors "platinum" as platinum %}
 

	
 
    {% comment %}
 
    <p>We acknowledge the support of our Platinum sponsor{{ platinum|length|pluralize}},
 
      {% for sponsor in platinum %}
 
        {% if forloop.last and not forloop.first %}
 
          and
 
        {% endif %}
 
        {{ sponsor }}{% if forloop.last %}.{% endif %}
 
      {% endfor %}
 

	
 
      {% endcomment %}
 

	
 
    <p>
 
      <a href="https://facebook.com/northbaypython">Facebook</a>
 
      | <a href="https://twitter.com/northbaypython">Twitter</a>
 
      | <a href="https://www.youtube.com/channel/UCLc1vUexbRTlRBJcUG9U6ug">YouTube</a>
 
      | <a href="https://webchat.freenode.net/?channels=%23nbpy">IRC</a>
 
      | <a href="/accessibility">Accessibility</a>
 
      | <a href="/code-of-conduct">Code of Conduct</a>
 
      | <a href="/about/colophon">Colophon</a>
 
      | <a href="/terms">Terms and Conditions</a>
 
    </p>
 

	
 
    <p>This site is <a href="https://github.com/northbaypython/website">free and open source software</a>, powered by <a href="https://github.com/chrisjrn/symposion/">Symposion</a> and <a href="https://github.com/chrisjrn/registrasion/">Registrasion</a>.</p>
 
  </div>
 
</div>
pinaxcon/templates/_homepage_speakers_snippet.html
Show inline comments
 
new file 100644
 
<h1>Speakers</h1>
 

	
 
<div class="row speaker-list">
 

	
 
  <div class="speaker" >
 
    <div class="image-alignment">
 
      <div class="circle" style="border: 0;">
 
          <div class="fill" style="background-image: url('{% static "images/brandon.jpg" %}');"></div>
 
      </div>
 
    </div>
 
    <h4>Brandon Rhodes</h4>
 
    <span class="presentation-title">Keynote Speaker</span>
 
  </div>
 

	
 
  <div class="speaker" >
 
    <div class="image-alignment">
 
      <div class="circle" style="border: 0;">
 
          <div class="fill" style="background-image: url('{% static "images/cczona.jpg" %}');"></div>
 
      </div>
 
    </div>
 
    <h4>Carina C. Zona</h4>
 
    <span class="presentation-title">Keynote Speaker</span>
 
  </div>
 

	
 
  {% speakers as speakers %}
 
  {% for speaker in speakers %}
 
    <div class="speaker" >
 
      <div class="image-alignment">
 
        <div class="circle" style="border: 0;">
 
          {% if speaker.photo %}
 
            <div class="fill" style="background-image: url('{% thumbnail speaker.photo '600x600' %}');"></div>
 
          {% else %}
 
            <div class="fill" style="background-image: url('{% static "images/website-background.svg" %}');"></div>
 
          {% endif %}
 
        </div>
 
      </div>
 
      {% for presentation in speaker.presentations.all %}
 
        <a href="{% url "schedule_presentation_detail" presentation.id %}">
 
        <h4>{{ speaker.conferencespeaker.name }}</h4>
 
          <span class="presentation-title">{{ presentation.title }}</span>
 
        </a>
 
      {% endfor %}
 
    </div>
 
  {% endfor %}
 

	
 
  <div class="speaker" >
 
    <div class="image-alignment">
 
      <div class="circle" style="border: 0;">
 
          <div class="fill" style="background-image: url('{% static "images/vmbrasseur.jpg" %}');"></div>
 
      </div>
 
    </div>
 
    <h4>VM Brasseur</h4>
 
    <span class="presentation-title">Speaker Training</span>
 
  </div>
 

	
 
</div>
 
</div>
 

	
 
<div class="homepage-block-footer full-width">
 
<div class="container">
 
  <div class="row">
 
    <div class="col-md-4">
 
      <a class="btn btn-lg btn-primary btn-shadow" href="/schedule">See the schedule</a>
 
    </div>
 
  </div>
 
</div>
pinaxcon/templates/static_pages/homepage.html
Show inline comments
 
{% extends "site_base_home.html" %}
 

	
 
{% load i18n %}
 
{% load staticfiles %}
 
{% load thumbnail %}
 
{% load sponsorship_tags %}
 
{% load schedule_tags %}
 

	
 
{% block head_title %}Welcome{% endblock %}
 

	
 
{% block body_class %}home{% endblock %}
 

	
 
{% block body %}
 

	
 
  <div class="homepage-block-bg website-background"></div>
 
  <div class="jumbotron homepage-block light">
 
    <div class="homepage-block-bg website-background"></div>
 
    <div class="hills main"></div>
 
    <div class="container homepage-block-content">
 
      <div class="tight-headings">
 
        <h1>North Bay Python</h1>
 
        <h2 class="homepage-subtitle">A Python conference north of the Golden Gate</h2>
 
        <h2 class="homepage-subtitle">A one-track Python conference in a live music venue, north of the Golden Gate</h2>
 
      </div>
 

	
 
      <div class="row">
 
        <div class="col-md-6">
 
          <h3>
 
            The Mystic Theatre</br>
 
            Petaluma, California
 
          </h3>
 

	
 
          <h4>
 
            December 2 &amp; 3, 2017<br/>
 
            Tickets on sale from $50
 
            November 3 &amp; 4, 2018<br/>
 
            Call for Proposals closes August 15th
 
          </h4>
 
        </div>
 
        <div class="col-md-4 col-md-offset-2 email-signup-panel">
 
          <div class="panel panel-default">
 
            <div class="panel-heading">
 
              <h2 class="panel-title">Sign up for our low-volume announcements newsletter!</h4>
 
            </div>
 
            <div class="panel-body">
 
              <form
 
                class="form-inline"
 
                action="https://tinyletter.com/northbaypython" method="post" target="popupwindow" onsubmit="window.open('https://tinyletter.com/northbaypython', 'popupwindow', 'scrollbars=yes,width=800,height=600');return true">
 
                <div class="form-group">
 
                  <span>
 
                    <label class="hidden-accessible" for="tlemail">Email address:</label>
 
                  </span>
 
                  <span>
 
                    <input class="form-control" type="email" name="email" id="tlemail" placeholder="E-mail address"/>
 
                  </span>
 
                </div>
 
                <span>
 
                  <input class="btn btn-primary" type="submit" value="Subscribe" />
 
                </span>
 

	
 
                <input type="hidden" value="1" name="embed"/>
 
              </form>
 
            </div>
 
          </div>
 
        </div>
 

	
 
      </div>
 

	
 
    </div>
 

	
 
    <div class="container homepage-block-footer">
 
      <div>
 
        <a class="btn btn-primary btn-lg" href="/attend">Buy a Ticket!</a>
 
        <a class="btn btn-primary btn-lg" href="/program/call-for-proposals">Propose a talk!</a>
 
        <a class="btn btn-default btn-lg " href="https://twitter.com/northbaypython">Twitter</a>
 
        <a class="btn btn-default btn-lg" href="https://facebook.com/northbaypython">Facebook</a>
 
      </div>
 
    </div>
 
  </div>
 

	
 
  <div class="jumbotron homepage-block white">
 
    <div class="container homepage-block-content">
 
      <h1>Speakers</h1>
 

	
 
      <div class="row speaker-list">
 

	
 
        <div class="speaker" >
 
          <div class="image-alignment">
 
            <div class="circle" style="border: 0;">
 
                <div class="fill" style="background-image: url('{% static "images/brandon.jpg" %}');"></div>
 
            </div>
 
          </div>
 
          <h4>Brandon Rhodes</h4>
 
          <span class="presentation-title">Keynote Speaker</span>
 
        </div>
 

	
 
        <div class="speaker" >
 
          <div class="image-alignment">
 
            <div class="circle" style="border: 0;">
 
                <div class="fill" style="background-image: url('{% static "images/cczona.jpg" %}');"></div>
 
            </div>
 
          </div>
 
          <h4>Carina C. Zona</h4>
 
          <span class="presentation-title">Keynote Speaker</span>
 
        </div>
 

	
 
        {% speakers as speakers %}
 
        {% for speaker in speakers %}
 
          <div class="speaker" >
 
            <div class="image-alignment">
 
              <div class="circle" style="border: 0;">
 
                {% if speaker.photo %}
 
                  <div class="fill" style="background-image: url('{% thumbnail speaker.photo '600x600' %}');"></div>
 
                {% else %}
 
                  <div class="fill" style="background-image: url('{% static "images/website-background.svg" %}');"></div>
 
                {% endif %}
 
              </div>
 
            </div>
 
            {% for presentation in speaker.presentations.all %}
 
              <a href="{% url "schedule_presentation_detail" presentation.id %}">
 
              <h4>{{ speaker.conferencespeaker.name }}</h4>
 
                <span class="presentation-title">{{ presentation.title }}</span>
 
              </a>
 
            {% endfor %}
 
          </div>
 
        {% endfor %}
 

	
 
        <div class="speaker" >
 
          <div class="image-alignment">
 
            <div class="circle" style="border: 0;">
 
                <div class="fill" style="background-image: url('{% static "images/vmbrasseur.jpg" %}');"></div>
 
            </div>
 
          </div>
 
          <h4>VM Brasseur</h4>
 
          <span class="presentation-title">Speaker Training</span>
 
        </div>
 

	
 
      </div>
 
    </div>
 

	
 
    <div class="homepage-block-footer full-width">
 
      <div class="container">
 
        <div class="row">
 
          <div class="col-md-4">
 
            <a class="btn btn-lg btn-primary btn-shadow" href="/schedule">See the schedule</a>
 
          </div>
 
        </div>
 
      </div>
 
    </div>
 
  </div>
 

	
 

	
 
  <div class="jumbotron homepage-block dark">
 
    <div class="homepage-block-bg mystic-background"></div>
 
    <div class="container homepage-block-content">
 
      <h1>Downtown Petaluma</h1>
 

	
 
      <p>North Bay Python's home is Petaluma, a delightfully quaint dairy town, nestled on a river at the edge of California's Wine Country. Here's what you can look forward to:</p>
 

	
 
      <ul>
 
        <li>An historic venue with countless restaurants and coffee shops in walking distance</li>
 
        <li>World-famous craft food and drink producers on your doorstep</li>
 
        <li>Charming <a href="/attend/hotels">small-town hotels</a>, as close as one block away</li>
 
        <li>Charming small-town hotels, as close as one block away</li>
 
      </ul>
 

	
 
      <p>&hellip; and it's <a href="/attend/travel">only an hour away from San Francisco</a> (on a good day).</p>
 
      <p>&hellip; and it's only an hour away from San Francisco (on a good day).</p>
 
    </div>
 

	
 
    <div class="homepage-block-footer full-width">
 
      <div class="container">
 
        <div class="row">
 
          <div class="col-md-4">
 
            <a class="btn btn-lg btn-primary btn-shadow" href="/about/petaluma">Learn More</a>
 
            <a class="btn btn-lg btn-info" href="/attend/hotels">Hotels</a>
 
            <a class="btn btn-lg btn-info" href="/attend/travel">Travel</a>
 
          </div>
 

	
 
          <div class="col-md-8 text-right photo-attribution">
 
            Image credit: <a href="https://www.instagram.com/p/BU-G5dGAkHt">Mystic Theatre</a>, &copy; 2017 Christopher Neugebauer (<a href="https://creativecommons.org/licenses/by-sa/2.0/">CC BY-SA 2.0</a>)
 
          </div>
 
        </div>
 
      </div>
 
    </div>
 
  </div>
 

	
 
  <div class="jumbotron homepage-block white">
 
    <div class="container homepage-block-content">
 
      <h1>Sponsors</h1>
 

	
 
      {% sponsor_levels as levels %}
 

	
 
      <div class="row sponsor-list">
 
      {% for level in levels %}
 
          {% if level.sponsors %}
 
              {% for sponsor in level.sponsors %}
 
                  <div class="sponsor">
 
                    <div class="logo-alignment">
 
                      {% if sponsor.website_logo %}
 
                          <a href="{{ sponsor.external_url }}">
 
                              <img src="{% thumbnail sponsor.website_logo '600x360' %}" alt="{{ sponsor.name }}">
 
                          </a>
 
                      {% else %}
 
                          <a href="{{ sponsor.external_url }}">{{ sponsor.name }}</a>
 
                      {% endif %}
 
                    </div>
 
                  </div>
 
              {% endfor %}
 
          {% endif %}
 
      {% endfor %}
 
      </div>
 
    </div>
 

	
 
    <div class="container homepage-block-footer">
 
      <div class="btn-group">
 
        <a class="btn btn-lg btn-primary btn-shadow" href="/sponsors/become-a-sponsor">Become a Sponsor</a>
 
      </div>
 
    </div>
 
  </div>
 

	
 
  <div class="jumbotron homepage-block dark">
 
    <div class="homepage-block-bg djangogirls-background"></div>
 
    <div class="container homepage-block-content">
 
      <h1>Inclusion and Diversity</h1>
static/images/hills-footer.svg
Show inline comments
 
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
<!-- Created with Inkscape (http://www.inkscape.org/) -->
 

	
 
<svg
 
   xmlns:dc="http://purl.org/dc/elements/1.1/"
 
   xmlns:cc="http://creativecommons.org/ns#"
 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 
   xmlns:svg="http://www.w3.org/2000/svg"
 
   xmlns="http://www.w3.org/2000/svg"
 
   xmlns:xlink="http://www.w3.org/1999/xlink"
 
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
 
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
 
   width="80.292168mm"
 
   height="40.067833mm"
 
   viewBox="0 0 284.49982 141.97264"
 
   id="svg4324"
 
   version="1.1"
 
   inkscape:version="0.91 r13725"
 
   sodipodi:docname="hills-footer.svg">
 
   sodipodi:docname="hills-to-ground.svg">
 
  <defs
 
     id="defs4326">
 
    <linearGradient
 
       id="linearGradient6747">
 
      <stop
 
         id="stop6749"
 
         offset="0"
 
         style="stop-color:#3c9c00;stop-opacity:1" />
 
      <stop
 
         id="stop6751"
 
         offset="1"
 
         style="stop-color:#309600;stop-opacity:1;" />
 
    </linearGradient>
 
    <clipPath
 
       id="clipPath3055"
 
       clipPathUnits="userSpaceOnUse">
 
      <path
 
         id="path3057"
 
         d="M 0,0 487,0 487,172 0,172 0,0 Z"
 
         inkscape:connector-curvature="0" />
 
    </clipPath>
 
    <linearGradient
 
       id="linearGradient2795">
 
      <stop
 
         style="stop-color:#b8b8b8;stop-opacity:0.49803922;"
 
         offset="0"
 
         id="stop2797" />
 
      <stop
 
         style="stop-color:#7f7f7f;stop-opacity:0;"
 
         offset="1"
 
         id="stop2799" />
 
    </linearGradient>
 
    <linearGradient
 
       id="linearGradient2787">
 
      <stop
 
         style="stop-color:#7f7f7f;stop-opacity:0.5;"
 
         offset="0"
 
         id="stop2789" />
 
      <stop
 
         style="stop-color:#7f7f7f;stop-opacity:0;"
 
         offset="1"
 
         id="stop2791" />
 
    </linearGradient>
 
    <linearGradient
 
       id="linearGradient3676">
 
      <stop
 
         style="stop-color:#b2b2b2;stop-opacity:0.5;"
 
         offset="0"
...
 
@@ -156,108 +156,92 @@
 
    <linearGradient
 
       inkscape:collect="always"
 
       xlink:href="#linearGradient4689"
 
       id="linearGradient1478"
 
       gradientUnits="userSpaceOnUse"
 
       gradientTransform="matrix(1.2438035,1.2438035,-1.2562584,1.2562584,-38.494319,-132.72918)"
 
       x1="78.698265"
 
       y1="63.044083"
 
       x2="135.66525"
 
       y2="114.39767" />
 
    <radialGradient
 
       inkscape:collect="always"
 
       xlink:href="#linearGradient2795"
 
       id="radialGradient1480"
 
       gradientUnits="userSpaceOnUse"
 
       gradientTransform="matrix(2.382716e-8,-0.296405,1.43676,4.683673e-7,-128.544,150.5202)"
 
       cx="61.518883"
 
       cy="132.28575"
 
       fx="61.518883"
 
       fy="132.28575"
 
       r="29.036913" />
 
    <linearGradient
 
       id="linearGradient4125">
 
      <stop
 
         style="stop-color:#000080;stop-opacity:0.28456914;"
 
         offset="0"
 
         id="stop4127" />
 
      <stop
 
         style="stop-color:#000080;stop-opacity:0;"
 
         offset="1"
 
         id="stop4129" />
 
    </linearGradient>
 
    <inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 526.18107 : 1"
 
       inkscape:vp_y="0 : 999.99992 : 0"
 
       inkscape:vp_z="744.09451 : 526.18108 : 1"
 
       inkscape:persp3d-origin="372.04725 : 350.78738 : 1"
 
       id="perspective3015" />
 
  </defs>
 
  <sodipodi:namedview
 
     id="base"
 
     pagecolor="#ffffff"
 
     bordercolor="#666666"
 
     borderopacity="1.0"
 
     inkscape:pageopacity="0.0"
 
     inkscape:pageshadow="2"
 
     inkscape:zoom="1.755"
 
     inkscape:cx="77.609054"
 
     inkscape:cy="88.326441"
 
     inkscape:cx="24.902502"
 
     inkscape:cy="65.534418"
 
     inkscape:document-units="px"
 
     inkscape:current-layer="layer1"
 
     showgrid="false"
 
     fit-margin-top="0"
 
     fit-margin-left="0"
 
     fit-margin-right="0"
 
     fit-margin-bottom="0"
 
     borderlayer="true"
 
     inkscape:window-width="1440"
 
     inkscape:window-height="803"
 
     inkscape:window-height="806"
 
     inkscape:window-x="0"
 
     inkscape:window-y="1"
 
     inkscape:window-maximized="1"
 
     inkscape:snap-page="true" />
 
  <metadata
 
     id="metadata4329">
 
    <rdf:RDF>
 
      <cc:Work
 
         rdf:about="">
 
        <dc:format>image/svg+xml</dc:format>
 
        <dc:type
 
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
 
        <dc:title />
 
      </cc:Work>
 
    </rdf:RDF>
 
  </metadata>
 
  <g
 
     inkscape:label="Layer 1"
 
     inkscape:groupmode="layer"
 
     id="layer1"
 
     transform="translate(224.79828,58.616302)">
 
    <path
 
       inkscape:connector-curvature="0"
 
       style="fill:url(#linearGradient1478);fill-opacity:1;stroke:#4d4d4d;stroke-width:2.86982584;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50980395"
 
       style="fill:url(#linearGradient1478);fill-opacity:1;stroke:#000000;stroke-width:4;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
 
       d="M 26.319975,8.1684509 C 16.23566,8.3197369 8.0676302,13.914623 -1.0240814,23.006346 l -27.7767806,27.711751 57.10057,56.540053 20.77709,0 c 12.179209,0 22.076871,-9.39127 22.895827,-21.355541 l 0,-54.576017 C 67.750124,27.883811 63.552614,24.693069 59.444044,21.820293 45.606272,12.139027 35.217905,8.0349699 26.319975,8.1684509 Z M -90.856361,14.9372 c -9.641009,0.06509 -19.732399,2.901519 -29.655619,8.990624 -6.44634,3.942923 -138.46214,80.136106 -143.67001,83.961266 l 130.58667,-0.49452 c 12.71898,-0.0482 5.96268,-0.13642 18.68175,-0.13642 l 137.868226,0 L -31.159503,53.141757 -53.407375,30.893879 C -63.637369,20.663891 -76.765655,14.842093 -90.856361,14.9372 Z M 28.763816,29.30651 c 4.065372,-0.0396 8.119552,1.467353 11.192321,4.540156 6.123588,6.1236 6.040627,16.209442 -0.210761,22.460864 -6.229255,6.229256 -16.270018,6.26708 -22.393606,0.143492 -6.145538,-6.145549 -6.08798,-16.162125 0.141252,-22.391369 3.1257,-3.125711 7.205422,-4.713551 11.270794,-4.753143 z"
 
       id="path1948"
 
       inkscape:export-filename="/Users/chrisjrn/Desktop/nbp-logo-2"
 
       inkscape:export-xdpi="187.72"
 
       inkscape:export-ydpi="187.72"
 
       sodipodi:nodetypes="scccscccssccssccssssssss" />
 
    <rect
 
       style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
 
       id="rect4168"
 
       width="79.772079"
 
       height="72.36467"
 
       x="-394.02905"
 
       y="-63.082413" />
 
    <path
 
       sodipodi:nodetypes="scccscccssccssccssssssss"
 
       inkscape:export-ydpi="187.72"
 
       inkscape:export-xdpi="187.72"
 
       inkscape:export-filename="/Users/chrisjrn/Desktop/nbp-logo-2"
 
       id="path4170"
 
       d="M 26.319975,8.1684506 C 16.23566,8.3197366 8.0676304,13.914623 -1.0240816,23.006346 l -27.7767804,27.711751 57.10057,56.540053 20.77709,0 c 12.17921,0 22.07687,-9.391273 22.89583,-21.355541 l 0,-54.576017 c -4.2225,-3.442781 -8.42001,-6.633523 -12.52858,-9.506299 C 45.606272,12.139027 35.217905,8.0349696 26.319975,8.1684506 Z M -90.856361,14.9372 c -9.641009,0.06509 -19.732399,2.901519 -29.655619,8.990624 -6.44634,3.942923 -138.46214,80.136106 -143.67001,83.961266 l 130.58667,-0.49452 c 12.71898,-0.0482 5.96268,-0.13642 18.68175,-0.13642 l 137.868226,0 L -31.159503,53.141757 -53.407375,30.893879 C -63.637369,20.663891 -76.765655,14.842093 -90.856361,14.9372 Z M 28.763816,29.30651 c 4.065372,-0.0396 8.119552,1.467353 11.192321,4.540156 6.123588,6.1236 6.040627,16.209442 -0.210761,22.460864 -6.229255,6.229256 -16.270018,6.26708 -22.393606,0.143492 -6.145538,-6.145549 -6.08798,-16.162125 0.141252,-22.391369 3.1257,-3.125711 7.205422,-4.713551 11.270794,-4.753143 z"
 
       style="fill:#d9d9d9;fill-opacity:0.78431374;stroke:none;stroke-width:2.86982584;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.49803922"
 
       inkscape:connector-curvature="0" />
 
  </g>
 
</svg>
static/images/hills.svg
Show inline comments
...
 
@@ -156,92 +156,92 @@
 
    <linearGradient
 
       inkscape:collect="always"
 
       xlink:href="#linearGradient4689"
 
       id="linearGradient1478"
 
       gradientUnits="userSpaceOnUse"
 
       gradientTransform="matrix(1.2438035,1.2438035,-1.2562584,1.2562584,-38.494319,-132.72918)"
 
       x1="78.698265"
 
       y1="63.044083"
 
       x2="135.66525"
 
       y2="114.39767" />
 
    <radialGradient
 
       inkscape:collect="always"
 
       xlink:href="#linearGradient2795"
 
       id="radialGradient1480"
 
       gradientUnits="userSpaceOnUse"
 
       gradientTransform="matrix(2.382716e-8,-0.296405,1.43676,4.683673e-7,-128.544,150.5202)"
 
       cx="61.518883"
 
       cy="132.28575"
 
       fx="61.518883"
 
       fy="132.28575"
 
       r="29.036913" />
 
    <linearGradient
 
       id="linearGradient4125">
 
      <stop
 
         style="stop-color:#000080;stop-opacity:0.28456914;"
 
         offset="0"
 
         id="stop4127" />
 
      <stop
 
         style="stop-color:#000080;stop-opacity:0;"
 
         offset="1"
 
         id="stop4129" />
 
    </linearGradient>
 
    <inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 526.18107 : 1"
 
       inkscape:vp_y="0 : 999.99992 : 0"
 
       inkscape:vp_z="744.09451 : 526.18108 : 1"
 
       inkscape:persp3d-origin="372.04725 : 350.78738 : 1"
 
       id="perspective3015" />
 
  </defs>
 
  <sodipodi:namedview
 
     id="base"
 
     pagecolor="#ffffff"
 
     bordercolor="#666666"
 
     borderopacity="1.0"
 
     inkscape:pageopacity="0.0"
 
     inkscape:pageshadow="2"
 
     inkscape:zoom="1.755"
 
     inkscape:cx="123.1931"
 
     inkscape:cx="24.902502"
 
     inkscape:cy="65.534418"
 
     inkscape:document-units="px"
 
     inkscape:current-layer="layer1"
 
     showgrid="false"
 
     fit-margin-top="0"
 
     fit-margin-left="0"
 
     fit-margin-right="0"
 
     fit-margin-bottom="0"
 
     borderlayer="true"
 
     inkscape:window-width="1440"
 
     inkscape:window-height="803"
 
     inkscape:window-height="806"
 
     inkscape:window-x="0"
 
     inkscape:window-y="1"
 
     inkscape:window-maximized="1"
 
     inkscape:snap-page="true" />
 
  <metadata
 
     id="metadata4329">
 
    <rdf:RDF>
 
      <cc:Work
 
         rdf:about="">
 
        <dc:format>image/svg+xml</dc:format>
 
        <dc:type
 
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
 
        <dc:title></dc:title>
 
        <dc:title />
 
      </cc:Work>
 
    </rdf:RDF>
 
  </metadata>
 
  <g
 
     inkscape:label="Layer 1"
 
     inkscape:groupmode="layer"
 
     id="layer1"
 
     transform="translate(224.79828,58.616302)">
 
    <path
 
       inkscape:connector-curvature="0"
 
       style="fill:url(#linearGradient1478);fill-opacity:1;stroke:#4d4d4d;stroke-width:2.86982584;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
 
       style="fill:url(#linearGradient1478);fill-opacity:1;stroke:#000000;stroke-width:4;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
 
       d="M 26.319975,8.1684509 C 16.23566,8.3197369 8.0676302,13.914623 -1.0240814,23.006346 l -27.7767806,27.711751 57.10057,56.540053 20.77709,0 c 12.179209,0 22.076871,-9.39127 22.895827,-21.355541 l 0,-54.576017 C 67.750124,27.883811 63.552614,24.693069 59.444044,21.820293 45.606272,12.139027 35.217905,8.0349699 26.319975,8.1684509 Z M -90.856361,14.9372 c -9.641009,0.06509 -19.732399,2.901519 -29.655619,8.990624 -6.44634,3.942923 -138.46214,80.136106 -143.67001,83.961266 l 130.58667,-0.49452 c 12.71898,-0.0482 5.96268,-0.13642 18.68175,-0.13642 l 137.868226,0 L -31.159503,53.141757 -53.407375,30.893879 C -63.637369,20.663891 -76.765655,14.842093 -90.856361,14.9372 Z M 28.763816,29.30651 c 4.065372,-0.0396 8.119552,1.467353 11.192321,4.540156 6.123588,6.1236 6.040627,16.209442 -0.210761,22.460864 -6.229255,6.229256 -16.270018,6.26708 -22.393606,0.143492 -6.145538,-6.145549 -6.08798,-16.162125 0.141252,-22.391369 3.1257,-3.125711 7.205422,-4.713551 11.270794,-4.753143 z"
 
       id="path1948"
 
       inkscape:export-filename="/Users/chrisjrn/Desktop/nbp-logo-2"
 
       inkscape:export-xdpi="187.72"
 
       inkscape:export-ydpi="187.72"
 
       sodipodi:nodetypes="scccscccssccssccssssssss" />
 
  </g>
 
</svg>
static/images/website-background.svg
Show inline comments
...
 
@@ -246,120 +246,120 @@
 
    <radialGradient
 
       inkscape:collect="always"
 
       xlink:href="#linearGradient2795"
 
       id="radialGradient2801-4"
 
       cx="61.518883"
 
       cy="132.28575"
 
       fx="61.518883"
 
       fy="132.28575"
 
       r="29.036913"
 
       gradientTransform="matrix(1,0,0,0.177966,0,108.7434)"
 
       gradientUnits="userSpaceOnUse" />
 
    <radialGradient
 
       inkscape:collect="always"
 
       xlink:href="#linearGradient2795"
 
       id="radialGradient1480-2"
 
       gradientUnits="userSpaceOnUse"
 
       gradientTransform="matrix(2.382716e-8,-0.296405,1.43676,4.683673e-7,-128.544,150.5202)"
 
       cx="61.518883"
 
       cy="132.28575"
 
       fx="61.518883"
 
       fy="132.28575"
 
       r="29.036913" />
 
    <inkscape:perspective
 
       sodipodi:type="inkscape:persp3d"
 
       inkscape:vp_x="0 : 526.1811 : 1"
 
       inkscape:vp_y="0 : 1000 : 0"
 
       inkscape:vp_z="744.0945 : 526.1811 : 1"
 
       inkscape:persp3d-origin="372.04725 : 350.7874 : 1"
 
       id="perspective3015-3" />
 
    <linearGradient
 
       y2="348.45154"
 
       x2="235.74745"
 
       y1="58.501038"
 
       x1="247.54834"
 
       gradientTransform="matrix(2.5458465,0,0,0.8368992,-1088.604,-267.49428)"
 
       gradientUnits="userSpaceOnUse"
 
       id="linearGradient4241"
 
       xlink:href="#linearGradient8426"
 
       inkscape:collect="always" />
 
  </defs>
 
  <sodipodi:namedview
 
     id="base"
 
     pagecolor="#ffffff"
 
     bordercolor="#666666"
 
     borderopacity="1.0"
 
     inkscape:pageopacity="0.0"
 
     inkscape:pageshadow="2"
 
     inkscape:zoom="4.525"
 
     inkscape:cx="75.72802"
 
     inkscape:cy="232.19034"
 
     inkscape:cx="78.600948"
 
     inkscape:cy="108.43343"
 
     inkscape:document-units="px"
 
     inkscape:current-layer="layer1"
 
     showgrid="false"
 
     fit-margin-top="0"
 
     fit-margin-left="0"
 
     fit-margin-right="0"
 
     fit-margin-bottom="0"
 
     borderlayer="true"
 
     inkscape:window-width="1440"
 
     inkscape:window-height="801"
 
     inkscape:window-height="806"
 
     inkscape:window-x="0"
 
     inkscape:window-y="1"
 
     inkscape:window-maximized="1" />
 
  <metadata
 
     id="metadata7095">
 
    <rdf:RDF>
 
      <cc:Work
 
         rdf:about="">
 
        <dc:format>image/svg+xml</dc:format>
 
        <dc:type
 
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
 
        <dc:title></dc:title>
 
        <dc:title />
 
      </cc:Work>
 
    </rdf:RDF>
 
  </metadata>
 
  <g
 
     inkscape:label="Layer 1"
 
     inkscape:groupmode="layer"
 
     id="layer1"
 
     transform="translate(619.31519,261.86623)">
 
    <rect
 
       inkscape:export-ydpi="294.04999"
 
       inkscape:export-xdpi="294.04999"
 
       inkscape:export-filename="/Users/chrisjrn/Desktop/twitter-cover.png"
 
       y="-262.05353"
 
       x="-620.38678"
 
       height="287.05975"
 
       width="144.04587"
 
       id="rect4233"
 
       style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4241);fill-opacity:1;fill-rule:nonzero;stroke:#666666;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
 
    <path
 
       inkscape:export-ydpi="187.72"
 
       inkscape:export-xdpi="187.72"
 
       inkscape:export-filename="/Users/chrisjrn/Desktop/nbp-logo-2"
 
       style="fill:#ffffff;fill-opacity:1;stroke:#b3b3b3;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none"
 
       d="m -617.0673,-184.40891 c -0.25719,-0.023 -0.9257,-0.12486 -1.16172,-0.17702 -1.00602,-0.22235 -2.04984,-0.67975 -2.80866,-1.23076 l -0.18454,-0.134 -0.19041,0.0959 c -0.4653,0.23431 -0.8614,0.32357 -1.43593,0.32357 -0.4646,0 -0.65308,-0.0288 -1.04159,-0.15923 -0.29295,-0.0983 -0.65479,-0.28724 -0.888,-0.46356 -0.11138,-0.0842 -0.22095,-0.14747 -0.24351,-0.14056 -0.0226,0.007 -0.18047,0.0628 -0.35094,0.12421 -0.17046,0.0614 -0.46567,0.14444 -0.65602,0.18451 -0.3089,0.065 -0.4078,0.0731 -0.92012,0.0748 -0.60182,0.002 -0.75986,-0.0154 -1.25715,-0.13929 -0.72399,-0.18034 -1.34787,-0.52242 -1.83426,-1.00574 -0.37971,-0.37732 -0.62612,-0.78914 -0.75299,-1.25843 -0.0839,-0.31047 -0.084,-0.86478 -5e-5,-1.17538 0.28835,-1.06735 1.32837,-1.9645 2.63054,-2.26917 l 0.20749,-0.0485 -0.0128,-0.26656 c -0.0226,-0.47057 0.12272,-0.79144 0.53201,-1.17423 0.256,-0.23943 0.5503,-0.42102 0.9278,-0.57247 0.2779,-0.11149 0.89088,-0.2749 1.03118,-0.2749 0.0908,0 0.0926,0.0286 -0.025,-0.39636 -0.0696,-0.25126 -0.0759,-0.31418 -0.0778,-0.77903 -10e-4,-0.33471 0.0102,-0.55652 0.0343,-0.65603 0.16716,-0.69004 0.44878,-1.20809 0.90662,-1.66774 0.45175,-0.45354 1.00587,-0.74934 1.66741,-0.8901 0.28446,-0.0605 0.87839,-0.0678 1.17539,-0.0145 0.43316,0.0778 0.91902,0.27524 1.28839,0.52342 0.38388,0.25794 0.88053,0.82958 1.06779,1.22903 0.0346,0.0738 0.0709,0.13472 0.0806,0.13534 0.01,5.2e-4 0.0974,-0.0472 0.19471,-0.10641 0.32559,-0.1978 0.76722,-0.35088 1.19107,-0.41285 0.1504,-0.022 0.22292,-0.0444 0.22292,-0.0688 0,-0.0199 0.058,-0.15074 0.12908,-0.2907 0.10924,-0.2154 0.17328,-0.2989 0.41685,-0.54349 0.4939,-0.49598 1.03522,-0.78639 1.82539,-0.97929 0.47449,-0.11584 0.78555,-0.15125 1.31885,-0.15015 1.82588,0.004 3.35806,0.8615 3.68135,2.06079 0.0654,0.24253 0.0608,0.66436 -0.01,0.90281 l -0.0528,0.17843 0.34316,-0.11572 c 0.89648,-0.30231 1.89577,-0.35828 2.85984,-0.1602 1.25739,0.25837 2.19726,0.94648 2.3884,1.74868 0.0392,0.16429 0.0403,0.51373 0.002,0.64396 -0.0439,0.15004 -0.0392,0.15588 0.14285,0.17608 0.47806,0.053 1.12171,0.24168 1.60506,0.47037 0.87442,0.41372 1.55004,1.05133 1.90069,1.79379 0.54021,1.14381 0.2704,2.40281 -0.72025,3.36091 -0.56101,0.54258 -1.27378,0.93019 -2.10427,1.14433 -0.17536,0.0452 -0.32569,0.0909 -0.33408,0.10144 -0.63403,0.80003 -1.19834,1.25719 -2.08449,1.68867 -1.25064,0.60895 -2.83687,0.80455 -4.27894,0.52765 -0.54411,-0.10448 -1.23427,-0.33612 -1.69617,-0.56929 l -0.17466,-0.0882 -0.29229,0.13879 c -0.71274,0.33845 -1.43494,0.55309 -2.31024,0.68662 -0.29451,0.0449 -0.54012,0.0604 -1.06605,0.0669 -0.37585,0.005 -0.73871,0.004 -0.80637,-0.002 z"
 
       id="path4239"
 
       inkscape:connector-curvature="0"
 
       sodipodi:nodetypes="csscssssssssssssscsssssssssssscssssssssscssscssssscssscssscc" />
 
    <path
 
       inkscape:export-ydpi="187.72"
 
       inkscape:export-xdpi="187.72"
 
       inkscape:export-filename="/Users/chrisjrn/Desktop/nbp-logo-2"
 
       sodipodi:nodetypes="csscssssssssssssscsssssssssssscssssssssscssscssssscssscssscc"
 
       inkscape:connector-curvature="0"
 
       id="path4285"
 
       d="m -490.98249,-49.31924 c -0.4321,-0.0387 -1.55531,-0.20979 -1.95186,-0.29742 -1.69027,-0.37358 -3.44406,-1.14208 -4.71898,-2.06786 l -0.31006,-0.22514 -0.31992,0.16112 c -0.78177,0.39368 -1.44728,0.54365 -2.41258,0.54365 -0.78061,0 -1.09728,-0.0484 -1.75005,-0.26753 -0.49219,-0.16523 -1.10015,-0.4826 -1.49197,-0.77887 -0.18713,-0.14149 -0.37122,-0.24776 -0.40913,-0.23615 -0.0379,0.0116 -0.30323,0.10541 -0.58963,0.2087 -0.28641,0.10321 -0.78241,0.24266 -1.10222,0.30999 -0.519,0.10927 -0.68517,0.12269 -1.54595,0.12578 -1.01114,0.004 -1.2767,-0.0259 -2.11221,-0.23402 -1.21642,-0.30298 -2.26463,-0.87773 -3.08184,-1.6898 -0.63796,-0.63394 -1.05199,-1.32587 -1.26515,-2.11435 -0.14103,-0.52164 -0.14104,-1.45297 -6e-5,-1.97483 0.48446,-1.79331 2.23185,-3.30066 4.4197,-3.81255 l 0.34861,-0.0815 -0.0216,-0.44785 c -0.0381,-0.79065 0.20617,-1.32975 0.89383,-1.97291 0.43014,-0.40227 0.92461,-0.70737 1.55888,-0.96183 0.4669,-0.18731 1.49681,-0.46188 1.73253,-0.46188 0.15261,0 0.15565,0.048 -0.0421,-0.66593 -0.11688,-0.42217 -0.12746,-0.52788 -0.13076,-1.3089 -0.002,-0.56236 0.0171,-0.93504 0.0575,-1.10224 0.28087,-1.15938 0.75404,-2.02977 1.52327,-2.80206 0.75902,-0.76201 1.69002,-1.25901 2.80151,-1.4955 0.47793,-0.10166 1.47583,-0.11391 1.97484,-0.0242 0.72778,0.13081 1.54409,0.46245 2.1647,0.87944 0.64497,0.43338 1.47942,1.39382 1.79404,2.06495 0.058,0.12398 0.11908,0.22636 0.13549,0.22739 0.0164,7.8e-4 0.16357,-0.0794 0.32714,-0.17877 0.54704,-0.33234 1.28903,-0.58954 2.00118,-0.69366 0.25269,-0.0369 0.37454,-0.0746 0.37454,-0.1156 0,-0.0335 0.0975,-0.25326 0.21686,-0.48843 0.18355,-0.36189 0.29115,-0.50219 0.70038,-0.91313 0.82984,-0.83332 1.73934,-1.32126 3.06695,-1.64537 0.7972,-0.19463 1.31984,-0.25412 2.21586,-0.25227 3.06777,0.006 5.64207,1.44746 6.18524,3.46245 0.10992,0.40748 0.10218,1.11623 -0.0162,1.51685 l -0.0888,0.2998 0.57655,-0.19442 c 1.50623,-0.50793 3.18519,-0.60197 4.80497,-0.26916 2.11263,0.4341 3.69175,1.59023 4.0129,2.93805 0.0658,0.27604 0.0676,0.86313 0.004,1.08196 -0.0738,0.25209 -0.0659,0.26189 0.24002,0.29584 0.80321,0.0891 1.88465,0.40606 2.69674,0.79029 1.46916,0.6951 2.60431,1.76639 3.19346,3.01384 0.90763,1.92178 0.45431,4.03711 -1.21013,5.64686 -0.9426,0.91162 -2.14016,1.56286 -3.53549,1.92265 -0.29464,0.076 -0.54723,0.15266 -0.56131,0.17044 -1.06529,1.34417 -2.01342,2.11227 -3.50228,2.83722 -2.10125,1.02313 -4.76637,1.35177 -7.18928,0.88653 -0.91419,-0.17554 -2.07376,-0.56471 -2.84984,-0.95648 l -0.29346,-0.14814 -0.49109,0.2332 c -1.19751,0.56865 -2.41092,0.92927 -3.88155,1.15363 -0.49484,0.0755 -0.90751,0.10139 -1.79114,0.11236 -0.63148,0.008 -1.24115,0.006 -1.35482,-0.004 z"
 
       style="fill:#ffffff;fill-opacity:1;stroke:#b3b3b3;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none" />
 
    <path
 
       inkscape:export-ydpi="187.72"
 
       inkscape:export-xdpi="187.72"
 
       inkscape:export-filename="/Users/chrisjrn/Desktop/nbp-logo-2"
 
       style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#b3b3b3;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
 
       d="m -571.53972,-115.58187 c -2.16601,0 -3.9524,1.73997 -4.08731,3.9812 l -0.025,0.41778 -0.28002,-0.0214 c -0.36007,-0.0274 -0.85585,0.0782 -1.25272,0.26646 -0.38517,0.18276 -0.98249,0.76343 -1.17978,1.14693 l -0.13262,0.25801 -0.34604,-0.17694 c -0.73937,-0.37773 -1.46336,-0.54949 -2.31553,-0.54919 -0.60509,1.6e-4 -1.06088,0.0724 -1.59786,0.25259 -1.46159,0.49065 -2.59387,1.65205 -3.0058,3.08358 l -0.10882,0.37798 -0.32885,0 c -1.56942,0 -3.1023,0.90718 -3.53178,2.09037 -0.32521,0.89594 -0.10096,1.73263 0.66855,2.49549 0.33738,0.33448 0.47117,0.43082 0.87624,0.63089 0.70403,0.34773 1.23234,0.47149 2.04819,0.47956 l 0.65408,0.006 0.33066,0.32373 c 0.4583,0.44877 1.12116,0.752654 1.64156,0.752654 0.15832,0 0.17868,0.017 0.3171,0.26345 0.2319,0.41281 0.73886,0.88179 1.19424,1.10502 0.52858,0.25911 0.88249,0.34303 1.4607,0.34604 0.58321,0.003 0.9995,-0.0931 1.48994,-0.34392 l 0.34694,-0.17755 0.14317,0.1706 c 0.89249,1.06392 2.19008,1.7625 3.58544,1.93002 1.34959,0.16203 2.87257,-0.26376 3.95349,-1.10501 l 0.28876,-0.22487 0.44309,0.1899 c 0.87853,0.37683 1.70696,0.53033 2.63867,0.48861 1.50957,-0.0676 2.7902,-0.61448 3.86244,-1.6497 0.32663,-0.31534 0.73145,-0.77895 0.81838,-0.93712 0.004,-0.007 0.12823,0.059 0.2764,0.14679 0.31643,0.18754 0.97041,0.41403 1.39168,0.48197 1.19512,0.19278 2.52992,-0.22123 3.3883,-1.050764 0.16946,-0.16375 0.34815,-0.35187 0.39728,-0.41808 l 0.0895,-0.12026 0.40994,0.14107 c 0.36935,0.12721 0.46463,0.1412 0.95974,0.14106 0.48216,-1.4e-4 0.59466,-0.0156 0.91572,-0.1272 0.88619,-0.30783 1.52031,-0.92621 1.81397,-1.76936 0.15249,-0.43769 0.15165,-1.13316 -0.002,-1.60086 -0.21923,-0.66946 -0.7543,-1.2915 -1.38564,-1.6102 -0.36502,-0.18426 -0.89605,-0.31621 -1.27293,-0.31621 l -0.30534,0 -0.11936,-0.48227 c -0.57575,-2.32692 -2.99062,-3.96325 -5.85151,-3.96494 -0.75758,-4.4e-4 -1.15259,0.0463 -1.82301,0.21582 -0.25954,0.0656 -0.47669,0.11197 -0.48258,0.10279 -0.006,-0.009 -0.092,-0.18156 -0.1914,-0.38311 -0.1374,-0.27861 -0.26903,-0.45437 -0.5483,-0.73337 -0.54882,-0.54829 -1.1282,-0.80118 -1.83657,-0.80118 l -0.32826,0 -0.0305,-0.22938 c -0.0816,-0.61537 -0.4365,-1.40829 -0.87593,-1.95685 -0.79638,-0.99412 -1.91271,-1.53726 -3.15923,-1.53726 z"
 
       id="path4287"
 
       inkscape:connector-curvature="0"
 
       sodipodi:nodetypes="scccsccccsccsssscccsssscccscccsscsssccccsccssccsscsssccss" />
 
    <path
 
       style="fill:#ffffff;fill-opacity:1;stroke:#b3b3b3;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none"
 
       d="m -604.47656,-81.943596 c -0.53474,-0.0479 -1.92474,-0.25962 -2.41549,-0.36807 -2.09175,-0.46231 -4.26211,-1.41335 -5.83986,-2.55903 l -0.38371,-0.27862 -0.39591,0.19939 c -0.96746,0.4872 -1.79105,0.67279 -2.98563,0.67279 -0.96603,0 -1.35792,-0.0599 -2.16573,-0.33108 -0.6091,-0.20448 -1.36147,-0.59723 -1.84636,-0.96387 -0.23158,-0.1751 -0.4594,-0.30661 -0.50631,-0.29224 -0.0469,0.0144 -0.37526,0.13044 -0.72968,0.25827 -0.35444,0.12772 -0.96825,0.3003 -1.36403,0.38362 -0.64228,0.13522 -0.84792,0.15183 -1.91315,0.15566 -1.25132,0.005 -1.57995,-0.0321 -2.61392,-0.28961 -1.50536,-0.37495 -2.80254,-1.08622 -3.81386,-2.09117 -0.7895,-0.78452 -1.30187,-1.6408 -1.56566,-2.61657 -0.17453,-0.64554 -0.17454,-1.79809 -8e-5,-2.4439 0.59954,-2.21928 2.76198,-4.08466 5.4695,-4.71814 l 0.43142,-0.1009 -0.0267,-0.55422 c -0.0471,-0.97845 0.25515,-1.64561 1.10615,-2.441534 0.53231,-0.49782 1.14423,-0.87539 1.92915,-1.19029 0.5778,-0.23181 1.85234,-0.57159 2.14405,-0.57159 0.18886,0 0.19262,0.0594 -0.0521,-0.82411 -0.14464,-0.52244 -0.15773,-0.65326 -0.16182,-1.6198 -0.003,-0.69593 0.0212,-1.15714 0.0712,-1.36405 0.34758,-1.43476 0.93314,-2.5119 1.88509,-3.46763 0.9393,-0.943 2.09144,-1.55805 3.46694,-1.85072 0.59146,-0.12581 1.82638,-0.14097 2.44392,-0.03 0.90065,0.16189 1.91085,0.5723 2.67888,1.08834 0.79817,0.53631 1.83082,1.72489 2.22017,2.55543 0.0718,0.15343 0.14736,0.28013 0.16767,0.2814 0.0203,9.6e-4 0.20243,-0.0982 0.40485,-0.22124 0.67697,-0.41127 1.59521,-0.72957 2.47651,-0.85842 0.31271,-0.0457 0.46351,-0.0923 0.46351,-0.14305 0,-0.0415 0.1207,-0.31342 0.26837,-0.60445 0.22714,-0.44785 0.3603,-0.62147 0.86674,-1.13002 1.02694,-1.03126 2.15247,-1.6351 3.79543,-2.03619 0.98655,-0.24086 1.63334,-0.31449 2.74219,-0.31219 3.79645,0.008 6.98221,1.79127 7.6544,4.28487 0.13603,0.50427 0.12645,1.38136 -0.0201,1.87715 l -0.10984,0.37101 0.71349,-0.24061 c 1.86401,-0.62857 3.94177,-0.74495 5.94629,-0.33309 2.61443,0.53721 4.56864,1.96796 4.96607,3.63592 0.0814,0.3416 0.0837,1.06815 0.005,1.33895 -0.0913,0.31197 -0.0816,0.3241 0.29703,0.36611 0.994,0.11032 2.3323,0.50251 3.33729,0.97801 1.81813,0.860214 3.2229,2.185964 3.95199,3.729714 1.12322,2.37825 0.56223,4.99603 -1.49756,6.98814 -1.1665,1.12815 -2.64851,1.93408 -4.37527,2.37933 -0.36463,0.094 -0.67721,0.18893 -0.69464,0.21093 -1.31832,1.66345 -2.49166,2.61399 -4.33416,3.51113 -2.60036,1.26615 -5.89852,1.67286 -8.89694,1.09711 -1.13133,-0.21723 -2.56633,-0.69885 -3.52675,-1.18367 l -0.36316,-0.18333 -0.60774,0.28859 c -1.48195,0.70372 -2.98358,1.15 -4.80353,1.42765 -0.61237,0.0934 -1.12306,0.12548 -2.21658,0.13905 -0.78147,0.01 -1.53596,0.008 -1.67663,-0.005 z"
static/scss/variables.scss
Show inline comments
 
/* COLORS */
 
// Used by links, buttons, and other background bits.
 
$brand-primary: darken(rgb(0, 202, 10), 20%);
 
$background-filter: hsla(207, 60%, 85%, 1.0);
 
$background-filter-transparent: change-color($background-filter, $alpha: 0.5);
 

	
 
/* TEXT */
 
$font-family-sans-serif:  'Montserrat', Arial, sans-serif;
 
$font-family-serif:       Georgia, "Times New Roman", Times, serif;
 
$font-family-monospace:   Menlo, Monaco, Consolas, "Courier New", monospace;
 
$font-size-base:          16px;
 
$headings-line-height: 1.0;
 
$text-color: #000;
 

	
 

	
 
// Navbar
 
$navbar-default-bg: $brand-primary;
 
$navbar-default-color: white;
 
$navbar-default-link-color: darken($navbar-default-color, 6.5%);
 
$navbar-default-link-hover-color: darken($navbar-default-link-color, 6.5%);
 
$navbar-default-link-active-color: $navbar-default-link-hover-color;
 
$navbar-default-link-disabled-color: lighten($navbar-default-bg, 6.5%);
 

	
 
$box-shadow: 0px 1px 1em rgba(0, 1, 1, 1); //, inset 0px -5px 1em rgba(0, 0, 0, 0.8);
0 comments (0 inline, 0 general)