Renamed to 'AKIndices'

This commit is contained in:
Matthew Dillon (diogenes) 2013-09-16 20:12:49 -08:00
parent 70b64f67a1
commit b2f6707d36
30 changed files with 54 additions and 16620 deletions

View file

@ -1,17 +1,17 @@
SNAPIndices --- Alaska climate data AKIndices --- Alaska climate data
=================================== =================================
Air temperature data from over 400 communities, reduced to relevant engineering parameters. Air temperature data from over 400 communities, reduced to relevant engineering parameters.
What is it? What is it?
----------- -----------
[SNAPIndices](http://snapindices.akdillon.net) is a Flask-driven web-app that builds on the SNAPExtract project to provide an easy-to-use interface for working with SNAP datasets. [AKIndices](http://akindices.akdillon.net) is a Flask-driven web-app that builds on the AKExtract project to provide an easy-to-use interface for working with SNAP datasets.
Prerequisites Prerequisites
------------- -------------
- [SNAPExtract](http://github.com/thermokarst/snapextract) - [AKExtract](http://github.com/thermokarst/akextract)
- Flask (0.10.1) - Flask (0.10.1)
- SQLAlchemy (0.8.2) - SQLAlchemy (0.8.2)
- psycopg2 (2.5.1) - psycopg2 (2.5.1)
@ -25,7 +25,7 @@ Installation
1) Clone the repo: 1) Clone the repo:
git clone https://github.com/thermokarst/snapindices git clone https://github.com/thermokarst/akindices
2) Get the data from http://snap.uaf.edu 2) Get the data from http://snap.uaf.edu
@ -34,8 +34,8 @@ Installation
4) Launch a python interpreter and populate the database with data: 4) Launch a python interpreter and populate the database with data:
$ python $ python
>>> import snapindices >>> import akindices
>>> snapindices.database.init_db() >>> akindices.database.init_db()
5) Launch the application with: 5) Launch the application with:
@ -46,4 +46,4 @@ Contact
------- -------
Do you have an idea for a feature? Find a bug? Do you have an idea for a feature? Find a bug?
Reach me at [matthewrdillon@gmail.com](mailto:matthewrdillon@gmail.com) Reach me at [mrdillon@alaska.edu](mailto:mrdillon@alaska.edu)

View file

@ -17,4 +17,4 @@ if not application.debug:
file_handler.setFormatter(logging.Formatter(format)) file_handler.setFormatter(logging.Formatter(format))
application.logger.addHandler(file_handler) application.logger.addHandler(file_handler)
from snapindices import views from akindices import views

View file

@ -3,7 +3,7 @@
from sqlalchemy import create_engine from sqlalchemy import create_engine
from sqlalchemy.orm import scoped_session, sessionmaker from sqlalchemy.orm import scoped_session, sessionmaker
from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.ext.declarative import declarative_base
from snapindices import application from akindices import application
import os import os
engine = create_engine(application.config['ENGINE'], engine = create_engine(application.config['ENGINE'],
@ -18,7 +18,7 @@ Base.query = db_session.query_property()
def init_db(): def init_db():
tempsnap = application.config['SNAPDATA'] tempsnap = application.config['SNAPDATA']
import snapextract import akextract
import numpy import numpy
import models import models
import datetime import datetime
@ -52,7 +52,7 @@ def init_db():
Base.metadata.create_all(bind=engine) Base.metadata.create_all(bind=engine)
for filename in datafiles: for filename in datafiles:
dataset = snapextract.GeoRefData(os.path.join(tempsnap, filename)) dataset = akextract.GeoRefData(os.path.join(tempsnap, filename))
tokens = filename.split('_') tokens = filename.split('_')
startyr = int(tokens[-2]) startyr = int(tokens[-2])
endyr = int(tokens[-1].split('.')[0]) endyr = int(tokens[-1].split('.')[0])
@ -91,7 +91,7 @@ def init_db():
time_years = max_year - min_year + 1 time_years = max_year - min_year + 1
i = 0 i = 0
for community in communities: for community in communities:
longitude, latitude, elev = snapextract.ne_to_wgs(northings[i], eastings[i]) longitude, latitude, elev = akextract.ne_to_wgs(northings[i], eastings[i])
location = models.Community.as_unique(db_session, name=community, location = models.Community.as_unique(db_session, name=community,
northing=northings[i], northing=northings[i],
easting=eastings[i], easting=eastings[i],

View file

@ -3,10 +3,10 @@
from flask_wtf import Form from flask_wtf import Form
from wtforms import validators, ValidationError, IntegerField from wtforms import validators, ValidationError, IntegerField
from wtforms.ext.sqlalchemy.fields import QuerySelectField from wtforms.ext.sqlalchemy.fields import QuerySelectField
from snapindices.models import Community, Dataset, Temperature from akindices.models import Community, Dataset, Temperature
from sqlalchemy import func from sqlalchemy import func
class SNAPYearField(IntegerField): class AKIYearField(IntegerField):
def pre_validate(self, form): def pre_validate(self, form):
if form.model.data is not None: if form.model.data is not None:
ymin,ymax = Temperature.query \ ymin,ymax = Temperature.query \
@ -31,16 +31,16 @@ def dataset_names(ds):
.capitalize(), .capitalize(),
resolution=ds.resolution) resolution=ds.resolution)
class SNAPForm(Form): class AKIForm(Form):
community = QuerySelectField(query_factory=communities, community = QuerySelectField(query_factory=communities,
get_label='name', get_label='name',
allow_blank=True, allow_blank=True,
blank_text=u'---Select a community---', blank_text=u'---Select a community---',
validators=[validators.Required(message='Please select a community')]) validators=[validators.Required(message='Please select a community')])
minyear = SNAPYearField(u'minyear') minyear = AKIYearField(u'minyear')
maxyear = SNAPYearField(u'maxyear') maxyear = AKIYearField(u'maxyear')
model = QuerySelectField(query_factory=datasets, model = QuerySelectField(query_factory=datasets,
get_label=dataset_names, get_label=dataset_names,

View file

@ -3,7 +3,7 @@
from sqlalchemy import Column, ForeignKey, Integer, Float, String, DateTime, create_engine from sqlalchemy import Column, ForeignKey, Integer, Float, String, DateTime, create_engine
from sqlalchemy.orm import relationship, backref from sqlalchemy.orm import relationship, backref
from sqlalchemy.schema import Index from sqlalchemy.schema import Index
from snapindices.database import Base from akindices.database import Base
class UniqueMixin(object): class UniqueMixin(object):

View file

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

View file

@ -3,7 +3,7 @@
<head> <head>
<title>{{title}}</title> <title>{{title}}</title>
<link href="/static/css/bootstrap-readable.min.css" rel="stylesheet"> <link href="/static/css/bootstrap-readable.min.css" rel="stylesheet">
<link href="/static/css/snapindices.css" rel="stylesheet"> <link href="/static/css/akindices.css" rel="stylesheet">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="/static/js/bootstrap.min.js"></script> <script src="/static/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -21,8 +21,7 @@
<div id="footer"> <div id="footer">
<div class="container"> <div class="container">
<p class="text-muted credit">SNAPIndices is powered by the <a href="http://www.snap.uaf.edu">SNAP project.</a> <p class="text-muted credit">
<br>
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/80x15.png" /></a> This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>. <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/80x15.png" /></a> This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.
<br> <br>
<small>Created by <a href="mailto:mrdillon@alaska.edu">Matthew Dillon</a>, 2013.</small> <small>Created by <a href="mailto:mrdillon@alaska.edu">Matthew Dillon</a>, 2013.</small>

View file

@ -159,7 +159,7 @@
</tbody> </tbody>
</table> </table>
<strong> <strong>
NOTE: The parameters calculated by SNAPIndices are based on average monthly temperatures, NOTE: The parameters calculated by AKIndices are based on average monthly temperatures,
not average daily temperatures. As well, derived data is provided without any rounding or not average daily temperatures. As well, derived data is provided without any rounding or
consideration for significant digits, allowing the user to decide what is appropriate for consideration for significant digits, allowing the user to decide what is appropriate for
their analysis. their analysis.
@ -171,26 +171,26 @@
<h3>Info</h3> <h3>Info</h3>
<dl class="dl-horizontal"> <dl class="dl-horizontal">
<dt>What</dt> <dt>What</dt>
<dd>SNAPIndices provides basic engineering climate parameters that are commonly used for engineering and <dd>AKIndices provides basic engineering climate parameters that are commonly used for engineering and
site-development purposes. These parameters include: site-development purposes. These parameters include:
<ul> <ul>
<li><strong>T<sub>avg</sub>:</strong> The average (arithmetic mean) air temperature, based on all of <li><strong>T<sub>avg</sub>:</strong> The average (arithmetic mean) air temperature, based on all of
the monthly air temperatures for the specified range of years. the monthly air temperatures for the specified range of years.
</li> </li>
<li><strong>ATI:</strong> The average (arithmetic mean) annual thawing index. The thawing index is the <li><strong>ATI:</strong> The average (arithmetic mean) annual thawing index. The thawing index is the
total number of degree-days above the freezing point. The number displayed by SNAPIndices is the total number of degree-days above the freezing point. The number displayed by AKIndices is the
average of the annual indices for the specified range of years. average of the annual indices for the specified range of years.
</li> </li>
<li><strong>AFI:</strong> The average (arithmetic mean) annual freezing index. The freezing index is the <li><strong>AFI:</strong> The average (arithmetic mean) annual freezing index. The freezing index is the
total number of degree-days below the freezing point. The number displayed by SNAPIndices is the total number of degree-days below the freezing point. The number displayed by AKIndices is the
average of the annual indices for the specified range of years. average of the annual indices for the specified range of years.
</li> </li>
<li><strong>DTI:</strong> The design thawing index. The number displayed by SNAPIndices is the <li><strong>DTI:</strong> The design thawing index. The number displayed by AKIndices is the
arithmetic mean of the three warmest thawing indices for the specified range of years. If less arithmetic mean of the three warmest thawing indices for the specified range of years. If less
than three years are displayed, the DTI is listed as 'None.' Typically, the DTI is calculated than three years are displayed, the DTI is listed as 'None.' Typically, the DTI is calculated
over a 30-year or 10-year time span. over a 30-year or 10-year time span.
</li> </li>
<li><strong>DFI:</strong> The design freezing index. The number displayed by SNAPIndices is the <li><strong>DFI:</strong> The design freezing index. The number displayed by AKIndices is the
arithmetic mean of the three coolest freezing indices for the specified range of years. If less arithmetic mean of the three coolest freezing indices for the specified range of years. If less
than three years are displayed, the DFI is listed as 'None.' Typically, the DFI is calculated than three years are displayed, the DFI is listed as 'None.' Typically, the DFI is calculated
over a 30-year or 10-year time span. over a 30-year or 10-year time span.
@ -198,28 +198,33 @@
</ul> </ul>
</dd> </dd>
<dt>Why</dt> <dt>Why</dt>
<dd>SNAPIndices provides quick and simple access to the massive amounts of data released by the SNAP <dd>AKIndices provides quick and simple access to the massive amounts of data released by the SNAP
group. It does not aim to replace, modify, or build on SNAP's work, but rather provide an alternative group. It does not aim to replace, modify, or build on SNAP's work, but rather provide an alternative
means for users to explore and understand the data.</dd> means for users to explore and understand the data.</dd>
<dt>How</dt> <dt>How</dt>
<dd>SNAPIndices is built with <a href="http://www.python.org">python</a>. Check out <dd>AKIndices is built with <a href="http://www.python.org">python</a>. Check out
<a href="http://github.com/thermokarst/snapextract">SNAPExtract</a> and <a href="http://github.com/thermokarst/AKExtract">AKExtract</a> and
<a href="http://github.com/thermokarst/snapindices">SNAPIndices</a> on GitHub for more info <a href="http://github.com/thermokarst/AKIndices">AKIndices</a> on GitHub for more info
on how to install on your own machine, fork the project, or submit on how to install on your own machine, fork the project, or submit
<a href="http://github.com/thermokarst/SNAPIndices/issues">bug reports.</a> <a href="http://github.com/thermokarst/AKIndices/issues">bug reports.</a>
In a nutshell, SNAPExtract takes a list of communities and their coordinates, as well as SNAP datasets, In a nutshell, AKExtract takes a list of communities and their coordinates, as well as SNAP datasets,
and extracts the air temperature data from the data point closest to a community's location. SNAPIndices and extracts the air temperature data from the data point closest to a community's location. AKIndices
is the front-end for interacting with that extracted data. is the front-end for interacting with that extracted data.
</dd> </dd>
<dt>Who</dt> <dt>Who</dt>
<dd>This project would not exist without <a href="http://www.snap.uaf.edu">SNAP</a> &ndash; take a look at their <dd>This project is the work of <a href="mailto:mrdillon@alaska.edu">Mattew Dillon.</a>
page to learn about the science and the methods behind their products. On that note, SNAPIndices is not endorsed or supported by SNAP in any way. Similarly, this product is provided as-is, with While this project would not exist without <a href="http://www.snap.uaf.edu">SNAP</a>,
no warranty express or implied. Use at your own risk. AKIndices is <em>not endorsed or supported by SNAP in any way.</em> Before utilizing the derived data
from AKIndices make sure to take a look at SNAP's page to learn about the science
and the methods behind their products.<br>
</dd> </dd>
</dl> </dl>
<br> <h4>This product is provided as-is, with no warranty express or implied. Use at your own risk.</h4>
<h4>Commercial use disclaimer: It is the sole responsibility of the user to execute any agreements
with SNAP <a href="http://www.snap.uaf.edu/people.php?topic=data#contact">regarding commercial
use</a> of the SNAP data (potentially including the derived products found on this page).</h4>
<h4>Question? Comment? Find a problem? <a href="mailto:mrdillon@alaska.edu">Email me</a> <h4>Question? Comment? Find a problem? <a href="mailto:mrdillon@alaska.edu">Email me</a>
or <a href="http://github.com/thermokarst/SNAPIndices/issues">submit a bug report!</a></h4> or <a href="http://github.com/thermokarst/AKIndices/issues">submit a bug report!</a></h4>
</div> </div>
{% endblock %} {% endblock %}

View file

@ -1,16 +1,16 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from flask import render_template, jsonify, request, flash, redirect, url_for, session, current_app from flask import render_template, jsonify, request, flash, redirect, url_for, session, current_app
from snapindices import application from akindices import application
from snapindices.database import db_session from akindices.database import db_session
from snapindices.models import Community, Temperature, Dataset from akindices.models import Community, Temperature, Dataset
from forms import SNAPForm from forms import AKIForm
from numpy import zeros, arange, hstack from numpy import zeros, arange, hstack
from processing import ann_air_indices, avg_air_indices, des_air_indices, avg_air_temp, c_to_f from processing import ann_air_indices, avg_air_indices, des_air_indices, avg_air_temp, c_to_f
@application.route('/', methods = ['GET', 'POST']) @application.route('/', methods = ['GET', 'POST'])
def index(): def index():
form = SNAPForm() form = AKIForm()
# Deal with form posting here # Deal with form posting here
if request.method == 'POST': if request.method == 'POST':

View file

@ -5,14 +5,13 @@ import datetime
PERMANENT_SESSION_LIFETIME = datetime.timedelta(minutes=30) PERMANENT_SESSION_LIFETIME = datetime.timedelta(minutes=30)
CSRF_ENABLED = True CSRF_ENABLED = True
SECRET_KEY = 'A super secret key' SECRET_KEY = 'A super secret key'
DEBUG = True DEBUG = False
# Custom # Custom
ENGINE = 'postgres://user:pass@localhost/snapindices' ENGINE = 'postgres://user:pass@localhost/akindices'
SNAPDATA = '/path/to/raw/data' SNAPDATA = '/path/to/raw/data'
COMMUNITIES = '/path/to/list/of/communities' COMMUNITIES = '/path/to/list/of/communities'
LOG = 'snapindices.log' LOG = 'akindices.log'
MAXLOG = 1000000 MAXLOG = 1000000
BACKUPCOUNT = 10 BACKUPCOUNT = 10
TITLE = 'SNAPIndices' TITLE = 'AKIndices'

2
run.py
View file

@ -1,5 +1,5 @@
#!/usr/bin/env python #!/usr/bin/env python
from snapindices import application from akindices import application
application.run() application.run()

File diff suppressed because it is too large Load diff

View file

@ -1,384 +0,0 @@
.btn-default,
.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger {
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-default:active,
.btn-primary:active,
.btn-success:active,
.btn-info:active,
.btn-warning:active,
.btn-danger:active,
.btn-default.active,
.btn-primary.active,
.btn-success.active,
.btn-info.active,
.btn-warning.active,
.btn-danger.active {
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:active,
.btn.active {
background-image: none;
}
.btn-default {
text-shadow: 0 1px 0 #fff;
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#e6e6e6));
background-image: -webkit-linear-gradient(top, #ffffff, 0%, #e6e6e6, 100%);
background-image: -moz-linear-gradient(top, #ffffff 0%, #e6e6e6 100%);
background-image: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%);
background-repeat: repeat-x;
border-color: #e0e0e0;
border-color: #ccc;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
}
.btn-default:active,
.btn-default.active {
background-color: #e6e6e6;
border-color: #e0e0e0;
}
.btn-primary {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3071a9));
background-image: -webkit-linear-gradient(top, #428bca, 0%, #3071a9, 100%);
background-image: -moz-linear-gradient(top, #428bca 0%, #3071a9 100%);
background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
background-repeat: repeat-x;
border-color: #2d6ca2;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
}
.btn-primary:active,
.btn-primary.active {
background-color: #3071a9;
border-color: #2d6ca2;
}
.btn-success {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#449d44));
background-image: -webkit-linear-gradient(top, #5cb85c, 0%, #449d44, 100%);
background-image: -moz-linear-gradient(top, #5cb85c 0%, #449d44 100%);
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
background-repeat: repeat-x;
border-color: #419641;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
}
.btn-success:active,
.btn-success.active {
background-color: #449d44;
border-color: #419641;
}
.btn-warning {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0ad4e), to(#ec971f));
background-image: -webkit-linear-gradient(top, #f0ad4e, 0%, #ec971f, 100%);
background-image: -moz-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
background-repeat: repeat-x;
border-color: #eb9316;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
}
.btn-warning:active,
.btn-warning.active {
background-color: #ec971f;
border-color: #eb9316;
}
.btn-danger {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c9302c));
background-image: -webkit-linear-gradient(top, #d9534f, 0%, #c9302c, 100%);
background-image: -moz-linear-gradient(top, #d9534f 0%, #c9302c 100%);
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
background-repeat: repeat-x;
border-color: #c12e2a;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
}
.btn-danger:active,
.btn-danger.active {
background-color: #c9302c;
border-color: #c12e2a;
}
.btn-info {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5bc0de), to(#31b0d5));
background-image: -webkit-linear-gradient(top, #5bc0de, 0%, #31b0d5, 100%);
background-image: -moz-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
background-repeat: repeat-x;
border-color: #2aabd2;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
}
.btn-info:active,
.btn-info.active {
background-color: #31b0d5;
border-color: #2aabd2;
}
.thumbnail,
.img-thumbnail {
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
background-color: #357ebd;
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%);
background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
}
.navbar {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#f8f8f8));
background-image: -webkit-linear-gradient(top, #ffffff, 0%, #f8f8f8, 100%);
background-image: -moz-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
background-repeat: repeat-x;
border-radius: 4px;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
}
.navbar .navbar-nav > .active > a {
background-color: #f8f8f8;
}
.navbar-brand,
.navbar-nav > li > a {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.navbar-inverse {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#3c3c3c), to(#222222));
background-image: -webkit-linear-gradient(top, #3c3c3c, 0%, #222222, 100%);
background-image: -moz-linear-gradient(top, #3c3c3c 0%, #222222 100%);
background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
}
.navbar-inverse .navbar-nav > .active > a {
background-color: #222222;
}
.navbar-inverse .navbar-brand,
.navbar-inverse .navbar-nav > li > a {
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.navbar-static-top,
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
.alert {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.alert-success {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#c8e5bc));
background-image: -webkit-linear-gradient(top, #dff0d8, 0%, #c8e5bc, 100%);
background-image: -moz-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
background-repeat: repeat-x;
border-color: #b2dba1;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
}
.alert-info {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#b9def0));
background-image: -webkit-linear-gradient(top, #d9edf7, 0%, #b9def0, 100%);
background-image: -moz-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
background-repeat: repeat-x;
border-color: #9acfea;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
}
.alert-warning {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#f8efc0));
background-image: -webkit-linear-gradient(top, #fcf8e3, 0%, #f8efc0, 100%);
background-image: -moz-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
background-repeat: repeat-x;
border-color: #f5e79e;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
}
.alert-danger {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#e7c3c3));
background-image: -webkit-linear-gradient(top, #f2dede, 0%, #e7c3c3, 100%);
background-image: -moz-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
background-repeat: repeat-x;
border-color: #dca7a7;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
}
.progress {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ebebeb), to(#f5f5f5));
background-image: -webkit-linear-gradient(top, #ebebeb, 0%, #f5f5f5, 100%);
background-image: -moz-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
}
.progress-bar {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3071a9));
background-image: -webkit-linear-gradient(top, #428bca, 0%, #3071a9, 100%);
background-image: -moz-linear-gradient(top, #428bca 0%, #3071a9 100%);
background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
}
.progress-bar-success {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#449d44));
background-image: -webkit-linear-gradient(top, #5cb85c, 0%, #449d44, 100%);
background-image: -moz-linear-gradient(top, #5cb85c 0%, #449d44 100%);
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
}
.progress-bar-info {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5bc0de), to(#31b0d5));
background-image: -webkit-linear-gradient(top, #5bc0de, 0%, #31b0d5, 100%);
background-image: -moz-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
}
.progress-bar-warning {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0ad4e), to(#ec971f));
background-image: -webkit-linear-gradient(top, #f0ad4e, 0%, #ec971f, 100%);
background-image: -moz-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
}
.progress-bar-danger {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c9302c));
background-image: -webkit-linear-gradient(top, #d9534f, 0%, #c9302c, 100%);
background-image: -moz-linear-gradient(top, #d9534f 0%, #c9302c 100%);
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
}
.list-group {
border-radius: 4px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
text-shadow: 0 -1px 0 #3071a9;
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3278b3));
background-image: -webkit-linear-gradient(top, #428bca, 0%, #3278b3, 100%);
background-image: -moz-linear-gradient(top, #428bca 0%, #3278b3 100%);
background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%);
background-repeat: repeat-x;
border-color: #3278b3;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);
}
.panel {
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.panel-default > .panel-heading {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f5f5f5), to(#e8e8e8));
background-image: -webkit-linear-gradient(top, #f5f5f5, 0%, #e8e8e8, 100%);
background-image: -moz-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
}
.panel-primary > .panel-heading {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%);
background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
}
.panel-success > .panel-heading {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#d0e9c6));
background-image: -webkit-linear-gradient(top, #dff0d8, 0%, #d0e9c6, 100%);
background-image: -moz-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
}
.panel-info > .panel-heading {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#c4e3f3));
background-image: -webkit-linear-gradient(top, #d9edf7, 0%, #c4e3f3, 100%);
background-image: -moz-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
}
.panel-warning > .panel-heading {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#faf2cc));
background-image: -webkit-linear-gradient(top, #fcf8e3, 0%, #faf2cc, 100%);
background-image: -moz-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
}
.panel-danger > .panel-heading {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#ebcccc));
background-image: -webkit-linear-gradient(top, #f2dede, 0%, #ebcccc, 100%);
background-image: -moz-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
}
.well {
background-image: -webkit-gradient(linear, left 0%, left 100%, from(#e8e8e8), to(#f5f5f5));
background-image: -webkit-linear-gradient(top, #e8e8e8, 0%, #f5f5f5, 100%);
background-image: -moz-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
background-repeat: repeat-x;
border-color: #dcdcdc;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
}

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load diff