Commit
·
3ef8448
1
Parent(s):
f0c1d20
Upload 76 files
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- Twitter_sentiment/BACKEND/app.py +34 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/.gitignore +1 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/README.md +21 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/main.py +41 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/requirements.txt +11 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/sentiment_analysis_Twitter.ipynb +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap-theme.css +587 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap-theme.css.map +1 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap-theme.min.css +6 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap-theme.min.css.map +1 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap.css +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap.css.map +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap.min.css +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap.min.css.map +1 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/fonts/glyphicons-halflings-regular.svg +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/js/bootstrap.js +2363 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/js/bootstrap.min.js +7 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/js/npm.js +13 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/css/form-elements.css +55 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/css/style.css +183 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/HELP-US-OUT.txt +7 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/css/font-awesome.css +2199 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/css/font-awesome.min.css +4 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/fonts/FontAwesome.otf +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/fonts/fontawesome-webfont.eot +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/fonts/fontawesome-webfont.svg +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/fonts/fontawesome-webfont.woff +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/fonts/fontawesome-webfont.woff2 +0 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/animated.less +34 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/bordered-pulled.less +25 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/core.less +12 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/fixed-width.less +6 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/font-awesome.less +18 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/icons.less +733 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/larger.less +13 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/list.less +19 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/mixins.less +60 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/path.less +15 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/rotated-flipped.less +20 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/screen-reader.less +5 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/stacked.less +20 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/variables.less +744 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/scss/_animated.scss +34 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/scss/_bordered-pulled.scss +25 -0
- Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/scss/_core.scss +12 -0
Twitter_sentiment/BACKEND/app.py
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from flask import Flask, render_template, request, jsonify
|
2 |
+
from transformers import BertForSequenceClassification, BertTokenizer
|
3 |
+
import torch
|
4 |
+
|
5 |
+
app = Flask(__name__)
|
6 |
+
|
7 |
+
# Load the model's state_dict
|
8 |
+
model_state_dict = torch.load("bert_classifier_three_labeled.pth")
|
9 |
+
|
10 |
+
# Initialize the model with the same architecture
|
11 |
+
model = BertForSequenceClassification.from_pretrained('bert-base-uncased')
|
12 |
+
|
13 |
+
# Load the model's state_dict
|
14 |
+
model.load_state_dict(model_state_dict)
|
15 |
+
|
16 |
+
# Load the tokenizer
|
17 |
+
tokenizer = BertTokenizer.from_pretrained('bert-base-uncased')
|
18 |
+
|
19 |
+
def predict(prompt):
|
20 |
+
inputs = tokenizer(prompt, return_tensors="pt")
|
21 |
+
outputs = model(**inputs)
|
22 |
+
probs = torch.nn.functional.softmax(outputs.logits, dim=-1)
|
23 |
+
return probs[0].tolist()
|
24 |
+
|
25 |
+
@app.route('/', methods=['GET', 'POST'])
|
26 |
+
def index():
|
27 |
+
result = None
|
28 |
+
if request.method == 'POST':
|
29 |
+
prompt = request.form['prompt']
|
30 |
+
result = predict(prompt)
|
31 |
+
return render_template('index.html', result=result)
|
32 |
+
|
33 |
+
if __name__ == '__main__':
|
34 |
+
app.run(debug=True)
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
.env
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/README.md
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Twitter-Sentiment-Analysis-Web
|
2 |
+
Twitter Sentiment Analysis using Textblob and Tweepy, wrapped with Flask as a web app.
|
3 |
+
|
4 |
+

|
5 |
+
|
6 |
+
## Installation
|
7 |
+
1. Clone/Download this repository.
|
8 |
+
2. Obtain your Twitter API credentials.
|
9 |
+
3. Replace appropriate credentials in ```main.py``` file.
|
10 |
+
4. Install all the required dependencies listed in ```requirements.txt```.
|
11 |
+
5. Run the flask server using ```python main.py``` to see the result on port 5000(by default).
|
12 |
+
|
13 |
+
## A brief on the libraries used :
|
14 |
+
Mainly I have used TextBlob and Tweepy for the main functionality. TextBlob is a great choice for NLP tasks, built on top of the famous Python library for NLP, i.e., NLTK.
|
15 |
+
Tweepy is used for Interacting easily with the Twitter API and handling complex tasks such as Authentication(OAuth) with a breeze.
|
16 |
+
|
17 |
+
TextBlob allows us to perform sentiment analysis with very few lines of code.
|
18 |
+
Applying ```.sentiment``` on a TextBlob gives us two things - **Polarity** and **Subjectivity**. <br><br>
|
19 |
+
* Polarity is a float value within the range [-1.0 to 1.0] where 0 indicates neutral, +1 indicates a very positive sentiment and -1 represents a very negative sentiment.
|
20 |
+
|
21 |
+
* Subjectivity is a float value within the range [0.0 to 1.0] where 0.0 is very objective and 1.0 is very subjective. Subjective sentence expresses some personal feelings, views, beliefs, opinions, allegations, desires, beliefs, suspicions, and speculations where as Objective sentences are factual.
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/main.py
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from flask import Flask,render_template,request,jsonify
|
2 |
+
import tweepy
|
3 |
+
from textblob import TextBlob
|
4 |
+
|
5 |
+
|
6 |
+
#---------------------------------------------------------------------------
|
7 |
+
|
8 |
+
consumer_key = ''
|
9 |
+
consumer_secret = ''
|
10 |
+
|
11 |
+
access_token = ''
|
12 |
+
access_token_secret = ''
|
13 |
+
|
14 |
+
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
|
15 |
+
auth.set_access_token(access_token, access_token_secret)
|
16 |
+
|
17 |
+
api = tweepy.API(auth)
|
18 |
+
|
19 |
+
#-------------------------------------------------------------------------
|
20 |
+
|
21 |
+
app = Flask(__name__)
|
22 |
+
|
23 |
+
@app.route("/")
|
24 |
+
def index():
|
25 |
+
return render_template('index.html')
|
26 |
+
|
27 |
+
@app.route("/search",methods=["POST"])
|
28 |
+
def search():
|
29 |
+
search_tweet = request.form.get("search_query")
|
30 |
+
|
31 |
+
t = []
|
32 |
+
tweets = api.search(search_tweet, tweet_mode='extended')
|
33 |
+
for tweet in tweets:
|
34 |
+
polarity = TextBlob(tweet.full_text).sentiment.polarity
|
35 |
+
subjectivity = TextBlob(tweet.full_text).sentiment.subjectivity
|
36 |
+
t.append([tweet.full_text,polarity,subjectivity])
|
37 |
+
# t.append(tweet.full_text)
|
38 |
+
|
39 |
+
return jsonify({"success":True,"tweets":t})
|
40 |
+
|
41 |
+
app.run()
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/requirements.txt
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Requirements automatically generated by pigar.
|
2 |
+
# https://github.com/damnever/pigar
|
3 |
+
|
4 |
+
# main.py: 1
|
5 |
+
Flask == 1.0.2
|
6 |
+
|
7 |
+
# main.py: 3
|
8 |
+
textblob == 0.15.2
|
9 |
+
|
10 |
+
# main.py: 2
|
11 |
+
tweepy == 3.7.0
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/sentiment_analysis_Twitter.ipynb
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap-theme.css
ADDED
@@ -0,0 +1,587 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.6 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2015 Twitter, Inc.
|
4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/
|
6 |
+
.btn-default,
|
7 |
+
.btn-primary,
|
8 |
+
.btn-success,
|
9 |
+
.btn-info,
|
10 |
+
.btn-warning,
|
11 |
+
.btn-danger {
|
12 |
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
|
13 |
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
|
14 |
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
|
15 |
+
}
|
16 |
+
.btn-default:active,
|
17 |
+
.btn-primary:active,
|
18 |
+
.btn-success:active,
|
19 |
+
.btn-info:active,
|
20 |
+
.btn-warning:active,
|
21 |
+
.btn-danger:active,
|
22 |
+
.btn-default.active,
|
23 |
+
.btn-primary.active,
|
24 |
+
.btn-success.active,
|
25 |
+
.btn-info.active,
|
26 |
+
.btn-warning.active,
|
27 |
+
.btn-danger.active {
|
28 |
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
29 |
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
30 |
+
}
|
31 |
+
.btn-default.disabled,
|
32 |
+
.btn-primary.disabled,
|
33 |
+
.btn-success.disabled,
|
34 |
+
.btn-info.disabled,
|
35 |
+
.btn-warning.disabled,
|
36 |
+
.btn-danger.disabled,
|
37 |
+
.btn-default[disabled],
|
38 |
+
.btn-primary[disabled],
|
39 |
+
.btn-success[disabled],
|
40 |
+
.btn-info[disabled],
|
41 |
+
.btn-warning[disabled],
|
42 |
+
.btn-danger[disabled],
|
43 |
+
fieldset[disabled] .btn-default,
|
44 |
+
fieldset[disabled] .btn-primary,
|
45 |
+
fieldset[disabled] .btn-success,
|
46 |
+
fieldset[disabled] .btn-info,
|
47 |
+
fieldset[disabled] .btn-warning,
|
48 |
+
fieldset[disabled] .btn-danger {
|
49 |
+
-webkit-box-shadow: none;
|
50 |
+
box-shadow: none;
|
51 |
+
}
|
52 |
+
.btn-default .badge,
|
53 |
+
.btn-primary .badge,
|
54 |
+
.btn-success .badge,
|
55 |
+
.btn-info .badge,
|
56 |
+
.btn-warning .badge,
|
57 |
+
.btn-danger .badge {
|
58 |
+
text-shadow: none;
|
59 |
+
}
|
60 |
+
.btn:active,
|
61 |
+
.btn.active {
|
62 |
+
background-image: none;
|
63 |
+
}
|
64 |
+
.btn-default {
|
65 |
+
text-shadow: 0 1px 0 #fff;
|
66 |
+
background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
|
67 |
+
background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);
|
68 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));
|
69 |
+
background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
|
70 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
|
71 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
72 |
+
background-repeat: repeat-x;
|
73 |
+
border-color: #dbdbdb;
|
74 |
+
border-color: #ccc;
|
75 |
+
}
|
76 |
+
.btn-default:hover,
|
77 |
+
.btn-default:focus {
|
78 |
+
background-color: #e0e0e0;
|
79 |
+
background-position: 0 -15px;
|
80 |
+
}
|
81 |
+
.btn-default:active,
|
82 |
+
.btn-default.active {
|
83 |
+
background-color: #e0e0e0;
|
84 |
+
border-color: #dbdbdb;
|
85 |
+
}
|
86 |
+
.btn-default.disabled,
|
87 |
+
.btn-default[disabled],
|
88 |
+
fieldset[disabled] .btn-default,
|
89 |
+
.btn-default.disabled:hover,
|
90 |
+
.btn-default[disabled]:hover,
|
91 |
+
fieldset[disabled] .btn-default:hover,
|
92 |
+
.btn-default.disabled:focus,
|
93 |
+
.btn-default[disabled]:focus,
|
94 |
+
fieldset[disabled] .btn-default:focus,
|
95 |
+
.btn-default.disabled.focus,
|
96 |
+
.btn-default[disabled].focus,
|
97 |
+
fieldset[disabled] .btn-default.focus,
|
98 |
+
.btn-default.disabled:active,
|
99 |
+
.btn-default[disabled]:active,
|
100 |
+
fieldset[disabled] .btn-default:active,
|
101 |
+
.btn-default.disabled.active,
|
102 |
+
.btn-default[disabled].active,
|
103 |
+
fieldset[disabled] .btn-default.active {
|
104 |
+
background-color: #e0e0e0;
|
105 |
+
background-image: none;
|
106 |
+
}
|
107 |
+
.btn-primary {
|
108 |
+
background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
|
109 |
+
background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
|
110 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
|
111 |
+
background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
|
112 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
|
113 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
114 |
+
background-repeat: repeat-x;
|
115 |
+
border-color: #245580;
|
116 |
+
}
|
117 |
+
.btn-primary:hover,
|
118 |
+
.btn-primary:focus {
|
119 |
+
background-color: #265a88;
|
120 |
+
background-position: 0 -15px;
|
121 |
+
}
|
122 |
+
.btn-primary:active,
|
123 |
+
.btn-primary.active {
|
124 |
+
background-color: #265a88;
|
125 |
+
border-color: #245580;
|
126 |
+
}
|
127 |
+
.btn-primary.disabled,
|
128 |
+
.btn-primary[disabled],
|
129 |
+
fieldset[disabled] .btn-primary,
|
130 |
+
.btn-primary.disabled:hover,
|
131 |
+
.btn-primary[disabled]:hover,
|
132 |
+
fieldset[disabled] .btn-primary:hover,
|
133 |
+
.btn-primary.disabled:focus,
|
134 |
+
.btn-primary[disabled]:focus,
|
135 |
+
fieldset[disabled] .btn-primary:focus,
|
136 |
+
.btn-primary.disabled.focus,
|
137 |
+
.btn-primary[disabled].focus,
|
138 |
+
fieldset[disabled] .btn-primary.focus,
|
139 |
+
.btn-primary.disabled:active,
|
140 |
+
.btn-primary[disabled]:active,
|
141 |
+
fieldset[disabled] .btn-primary:active,
|
142 |
+
.btn-primary.disabled.active,
|
143 |
+
.btn-primary[disabled].active,
|
144 |
+
fieldset[disabled] .btn-primary.active {
|
145 |
+
background-color: #265a88;
|
146 |
+
background-image: none;
|
147 |
+
}
|
148 |
+
.btn-success {
|
149 |
+
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
|
150 |
+
background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
|
151 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
|
152 |
+
background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
|
153 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
|
154 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
155 |
+
background-repeat: repeat-x;
|
156 |
+
border-color: #3e8f3e;
|
157 |
+
}
|
158 |
+
.btn-success:hover,
|
159 |
+
.btn-success:focus {
|
160 |
+
background-color: #419641;
|
161 |
+
background-position: 0 -15px;
|
162 |
+
}
|
163 |
+
.btn-success:active,
|
164 |
+
.btn-success.active {
|
165 |
+
background-color: #419641;
|
166 |
+
border-color: #3e8f3e;
|
167 |
+
}
|
168 |
+
.btn-success.disabled,
|
169 |
+
.btn-success[disabled],
|
170 |
+
fieldset[disabled] .btn-success,
|
171 |
+
.btn-success.disabled:hover,
|
172 |
+
.btn-success[disabled]:hover,
|
173 |
+
fieldset[disabled] .btn-success:hover,
|
174 |
+
.btn-success.disabled:focus,
|
175 |
+
.btn-success[disabled]:focus,
|
176 |
+
fieldset[disabled] .btn-success:focus,
|
177 |
+
.btn-success.disabled.focus,
|
178 |
+
.btn-success[disabled].focus,
|
179 |
+
fieldset[disabled] .btn-success.focus,
|
180 |
+
.btn-success.disabled:active,
|
181 |
+
.btn-success[disabled]:active,
|
182 |
+
fieldset[disabled] .btn-success:active,
|
183 |
+
.btn-success.disabled.active,
|
184 |
+
.btn-success[disabled].active,
|
185 |
+
fieldset[disabled] .btn-success.active {
|
186 |
+
background-color: #419641;
|
187 |
+
background-image: none;
|
188 |
+
}
|
189 |
+
.btn-info {
|
190 |
+
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
|
191 |
+
background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
|
192 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
|
193 |
+
background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
|
194 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
|
195 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
196 |
+
background-repeat: repeat-x;
|
197 |
+
border-color: #28a4c9;
|
198 |
+
}
|
199 |
+
.btn-info:hover,
|
200 |
+
.btn-info:focus {
|
201 |
+
background-color: #2aabd2;
|
202 |
+
background-position: 0 -15px;
|
203 |
+
}
|
204 |
+
.btn-info:active,
|
205 |
+
.btn-info.active {
|
206 |
+
background-color: #2aabd2;
|
207 |
+
border-color: #28a4c9;
|
208 |
+
}
|
209 |
+
.btn-info.disabled,
|
210 |
+
.btn-info[disabled],
|
211 |
+
fieldset[disabled] .btn-info,
|
212 |
+
.btn-info.disabled:hover,
|
213 |
+
.btn-info[disabled]:hover,
|
214 |
+
fieldset[disabled] .btn-info:hover,
|
215 |
+
.btn-info.disabled:focus,
|
216 |
+
.btn-info[disabled]:focus,
|
217 |
+
fieldset[disabled] .btn-info:focus,
|
218 |
+
.btn-info.disabled.focus,
|
219 |
+
.btn-info[disabled].focus,
|
220 |
+
fieldset[disabled] .btn-info.focus,
|
221 |
+
.btn-info.disabled:active,
|
222 |
+
.btn-info[disabled]:active,
|
223 |
+
fieldset[disabled] .btn-info:active,
|
224 |
+
.btn-info.disabled.active,
|
225 |
+
.btn-info[disabled].active,
|
226 |
+
fieldset[disabled] .btn-info.active {
|
227 |
+
background-color: #2aabd2;
|
228 |
+
background-image: none;
|
229 |
+
}
|
230 |
+
.btn-warning {
|
231 |
+
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
|
232 |
+
background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
|
233 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
|
234 |
+
background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
|
235 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
|
236 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
237 |
+
background-repeat: repeat-x;
|
238 |
+
border-color: #e38d13;
|
239 |
+
}
|
240 |
+
.btn-warning:hover,
|
241 |
+
.btn-warning:focus {
|
242 |
+
background-color: #eb9316;
|
243 |
+
background-position: 0 -15px;
|
244 |
+
}
|
245 |
+
.btn-warning:active,
|
246 |
+
.btn-warning.active {
|
247 |
+
background-color: #eb9316;
|
248 |
+
border-color: #e38d13;
|
249 |
+
}
|
250 |
+
.btn-warning.disabled,
|
251 |
+
.btn-warning[disabled],
|
252 |
+
fieldset[disabled] .btn-warning,
|
253 |
+
.btn-warning.disabled:hover,
|
254 |
+
.btn-warning[disabled]:hover,
|
255 |
+
fieldset[disabled] .btn-warning:hover,
|
256 |
+
.btn-warning.disabled:focus,
|
257 |
+
.btn-warning[disabled]:focus,
|
258 |
+
fieldset[disabled] .btn-warning:focus,
|
259 |
+
.btn-warning.disabled.focus,
|
260 |
+
.btn-warning[disabled].focus,
|
261 |
+
fieldset[disabled] .btn-warning.focus,
|
262 |
+
.btn-warning.disabled:active,
|
263 |
+
.btn-warning[disabled]:active,
|
264 |
+
fieldset[disabled] .btn-warning:active,
|
265 |
+
.btn-warning.disabled.active,
|
266 |
+
.btn-warning[disabled].active,
|
267 |
+
fieldset[disabled] .btn-warning.active {
|
268 |
+
background-color: #eb9316;
|
269 |
+
background-image: none;
|
270 |
+
}
|
271 |
+
.btn-danger {
|
272 |
+
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
|
273 |
+
background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
|
274 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
|
275 |
+
background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
|
276 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
|
277 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
278 |
+
background-repeat: repeat-x;
|
279 |
+
border-color: #b92c28;
|
280 |
+
}
|
281 |
+
.btn-danger:hover,
|
282 |
+
.btn-danger:focus {
|
283 |
+
background-color: #c12e2a;
|
284 |
+
background-position: 0 -15px;
|
285 |
+
}
|
286 |
+
.btn-danger:active,
|
287 |
+
.btn-danger.active {
|
288 |
+
background-color: #c12e2a;
|
289 |
+
border-color: #b92c28;
|
290 |
+
}
|
291 |
+
.btn-danger.disabled,
|
292 |
+
.btn-danger[disabled],
|
293 |
+
fieldset[disabled] .btn-danger,
|
294 |
+
.btn-danger.disabled:hover,
|
295 |
+
.btn-danger[disabled]:hover,
|
296 |
+
fieldset[disabled] .btn-danger:hover,
|
297 |
+
.btn-danger.disabled:focus,
|
298 |
+
.btn-danger[disabled]:focus,
|
299 |
+
fieldset[disabled] .btn-danger:focus,
|
300 |
+
.btn-danger.disabled.focus,
|
301 |
+
.btn-danger[disabled].focus,
|
302 |
+
fieldset[disabled] .btn-danger.focus,
|
303 |
+
.btn-danger.disabled:active,
|
304 |
+
.btn-danger[disabled]:active,
|
305 |
+
fieldset[disabled] .btn-danger:active,
|
306 |
+
.btn-danger.disabled.active,
|
307 |
+
.btn-danger[disabled].active,
|
308 |
+
fieldset[disabled] .btn-danger.active {
|
309 |
+
background-color: #c12e2a;
|
310 |
+
background-image: none;
|
311 |
+
}
|
312 |
+
.thumbnail,
|
313 |
+
.img-thumbnail {
|
314 |
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
|
315 |
+
box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
|
316 |
+
}
|
317 |
+
.dropdown-menu > li > a:hover,
|
318 |
+
.dropdown-menu > li > a:focus {
|
319 |
+
background-color: #e8e8e8;
|
320 |
+
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
321 |
+
background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
322 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
|
323 |
+
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
|
324 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
|
325 |
+
background-repeat: repeat-x;
|
326 |
+
}
|
327 |
+
.dropdown-menu > .active > a,
|
328 |
+
.dropdown-menu > .active > a:hover,
|
329 |
+
.dropdown-menu > .active > a:focus {
|
330 |
+
background-color: #2e6da4;
|
331 |
+
background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
|
332 |
+
background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
|
333 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
|
334 |
+
background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
|
335 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
|
336 |
+
background-repeat: repeat-x;
|
337 |
+
}
|
338 |
+
.navbar-default {
|
339 |
+
background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);
|
340 |
+
background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%);
|
341 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));
|
342 |
+
background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
|
343 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
|
344 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
345 |
+
background-repeat: repeat-x;
|
346 |
+
border-radius: 4px;
|
347 |
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
|
348 |
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
|
349 |
+
}
|
350 |
+
.navbar-default .navbar-nav > .open > a,
|
351 |
+
.navbar-default .navbar-nav > .active > a {
|
352 |
+
background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
|
353 |
+
background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
|
354 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));
|
355 |
+
background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
|
356 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
|
357 |
+
background-repeat: repeat-x;
|
358 |
+
-webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
|
359 |
+
box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
|
360 |
+
}
|
361 |
+
.navbar-brand,
|
362 |
+
.navbar-nav > li > a {
|
363 |
+
text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
|
364 |
+
}
|
365 |
+
.navbar-inverse {
|
366 |
+
background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);
|
367 |
+
background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);
|
368 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));
|
369 |
+
background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);
|
370 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
|
371 |
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
372 |
+
background-repeat: repeat-x;
|
373 |
+
border-radius: 4px;
|
374 |
+
}
|
375 |
+
.navbar-inverse .navbar-nav > .open > a,
|
376 |
+
.navbar-inverse .navbar-nav > .active > a {
|
377 |
+
background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);
|
378 |
+
background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);
|
379 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));
|
380 |
+
background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);
|
381 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);
|
382 |
+
background-repeat: repeat-x;
|
383 |
+
-webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
|
384 |
+
box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
|
385 |
+
}
|
386 |
+
.navbar-inverse .navbar-brand,
|
387 |
+
.navbar-inverse .navbar-nav > li > a {
|
388 |
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
|
389 |
+
}
|
390 |
+
.navbar-static-top,
|
391 |
+
.navbar-fixed-top,
|
392 |
+
.navbar-fixed-bottom {
|
393 |
+
border-radius: 0;
|
394 |
+
}
|
395 |
+
@media (max-width: 767px) {
|
396 |
+
.navbar .navbar-nav .open .dropdown-menu > .active > a,
|
397 |
+
.navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
|
398 |
+
.navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
|
399 |
+
color: #fff;
|
400 |
+
background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
|
401 |
+
background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
|
402 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
|
403 |
+
background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
|
404 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
|
405 |
+
background-repeat: repeat-x;
|
406 |
+
}
|
407 |
+
}
|
408 |
+
.alert {
|
409 |
+
text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
|
410 |
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
|
411 |
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
|
412 |
+
}
|
413 |
+
.alert-success {
|
414 |
+
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
|
415 |
+
background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
|
416 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
|
417 |
+
background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
|
418 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
|
419 |
+
background-repeat: repeat-x;
|
420 |
+
border-color: #b2dba1;
|
421 |
+
}
|
422 |
+
.alert-info {
|
423 |
+
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
|
424 |
+
background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
|
425 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
|
426 |
+
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
|
427 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
|
428 |
+
background-repeat: repeat-x;
|
429 |
+
border-color: #9acfea;
|
430 |
+
}
|
431 |
+
.alert-warning {
|
432 |
+
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
|
433 |
+
background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
|
434 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
|
435 |
+
background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
|
436 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
|
437 |
+
background-repeat: repeat-x;
|
438 |
+
border-color: #f5e79e;
|
439 |
+
}
|
440 |
+
.alert-danger {
|
441 |
+
background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
|
442 |
+
background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
|
443 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
|
444 |
+
background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
|
445 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
|
446 |
+
background-repeat: repeat-x;
|
447 |
+
border-color: #dca7a7;
|
448 |
+
}
|
449 |
+
.progress {
|
450 |
+
background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
|
451 |
+
background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
|
452 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
|
453 |
+
background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
|
454 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
|
455 |
+
background-repeat: repeat-x;
|
456 |
+
}
|
457 |
+
.progress-bar {
|
458 |
+
background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);
|
459 |
+
background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);
|
460 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));
|
461 |
+
background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);
|
462 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);
|
463 |
+
background-repeat: repeat-x;
|
464 |
+
}
|
465 |
+
.progress-bar-success {
|
466 |
+
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
|
467 |
+
background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
|
468 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
|
469 |
+
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
|
470 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
|
471 |
+
background-repeat: repeat-x;
|
472 |
+
}
|
473 |
+
.progress-bar-info {
|
474 |
+
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
|
475 |
+
background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
|
476 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
|
477 |
+
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
|
478 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
|
479 |
+
background-repeat: repeat-x;
|
480 |
+
}
|
481 |
+
.progress-bar-warning {
|
482 |
+
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
|
483 |
+
background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
|
484 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
|
485 |
+
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
|
486 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
|
487 |
+
background-repeat: repeat-x;
|
488 |
+
}
|
489 |
+
.progress-bar-danger {
|
490 |
+
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
|
491 |
+
background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
|
492 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
|
493 |
+
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
|
494 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
|
495 |
+
background-repeat: repeat-x;
|
496 |
+
}
|
497 |
+
.progress-bar-striped {
|
498 |
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
499 |
+
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
500 |
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
|
501 |
+
}
|
502 |
+
.list-group {
|
503 |
+
border-radius: 4px;
|
504 |
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
|
505 |
+
box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
|
506 |
+
}
|
507 |
+
.list-group-item.active,
|
508 |
+
.list-group-item.active:hover,
|
509 |
+
.list-group-item.active:focus {
|
510 |
+
text-shadow: 0 -1px 0 #286090;
|
511 |
+
background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);
|
512 |
+
background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);
|
513 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));
|
514 |
+
background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);
|
515 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);
|
516 |
+
background-repeat: repeat-x;
|
517 |
+
border-color: #2b669a;
|
518 |
+
}
|
519 |
+
.list-group-item.active .badge,
|
520 |
+
.list-group-item.active:hover .badge,
|
521 |
+
.list-group-item.active:focus .badge {
|
522 |
+
text-shadow: none;
|
523 |
+
}
|
524 |
+
.panel {
|
525 |
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
|
526 |
+
box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
|
527 |
+
}
|
528 |
+
.panel-default > .panel-heading {
|
529 |
+
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
530 |
+
background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
|
531 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
|
532 |
+
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
|
533 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
|
534 |
+
background-repeat: repeat-x;
|
535 |
+
}
|
536 |
+
.panel-primary > .panel-heading {
|
537 |
+
background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
|
538 |
+
background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
|
539 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
|
540 |
+
background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
|
541 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
|
542 |
+
background-repeat: repeat-x;
|
543 |
+
}
|
544 |
+
.panel-success > .panel-heading {
|
545 |
+
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
|
546 |
+
background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
|
547 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));
|
548 |
+
background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
|
549 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
|
550 |
+
background-repeat: repeat-x;
|
551 |
+
}
|
552 |
+
.panel-info > .panel-heading {
|
553 |
+
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
|
554 |
+
background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
|
555 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));
|
556 |
+
background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
|
557 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
|
558 |
+
background-repeat: repeat-x;
|
559 |
+
}
|
560 |
+
.panel-warning > .panel-heading {
|
561 |
+
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
|
562 |
+
background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
|
563 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));
|
564 |
+
background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
|
565 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
|
566 |
+
background-repeat: repeat-x;
|
567 |
+
}
|
568 |
+
.panel-danger > .panel-heading {
|
569 |
+
background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
|
570 |
+
background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
|
571 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
|
572 |
+
background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
|
573 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
|
574 |
+
background-repeat: repeat-x;
|
575 |
+
}
|
576 |
+
.well {
|
577 |
+
background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
|
578 |
+
background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
|
579 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));
|
580 |
+
background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
|
581 |
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
|
582 |
+
background-repeat: repeat-x;
|
583 |
+
border-color: #dcdcdc;
|
584 |
+
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
|
585 |
+
box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
|
586 |
+
}
|
587 |
+
/*# sourceMappingURL=bootstrap-theme.css.map */
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap-theme.css.map
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"version":3,"sources":["bootstrap-theme.css","less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"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","file":"bootstrap-theme.css","sourcesContent":["/*!\n * Bootstrap v3.3.6 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-default.disabled,\n.btn-primary.disabled,\n.btn-success.disabled,\n.btn-info.disabled,\n.btn-warning.disabled,\n.btn-danger.disabled,\n.btn-default[disabled],\n.btn-primary[disabled],\n.btn-success[disabled],\n.btn-info[disabled],\n.btn-warning[disabled],\n.btn-danger[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-danger {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n text-shadow: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n}\n.btn-default {\n background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #dbdbdb;\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n background-color: #e0e0e0;\n background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n background-color: #e0e0e0;\n border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #e0e0e0;\n background-image: none;\n}\n.btn-primary {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n background-color: #265a88;\n background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n background-color: #265a88;\n border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #265a88;\n background-image: none;\n}\n.btn-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n background-color: #419641;\n background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n background-color: #419641;\n border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #419641;\n background-image: none;\n}\n.btn-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n background-color: #2aabd2;\n background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n background-color: #2aabd2;\n border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #2aabd2;\n background-image: none;\n}\n.btn-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n background-color: #eb9316;\n background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n background-color: #eb9316;\n border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #eb9316;\n background-image: none;\n}\n.btn-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n background-color: #c12e2a;\n background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n background-color: #c12e2a;\n border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #c12e2a;\n background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-color: #e8e8e8;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-color: #2e6da4;\n}\n.navbar-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);\n}\n.navbar-inverse {\n background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n@media (max-width: 767px) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n }\n}\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.alert-success {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n border-color: #b2dba1;\n}\n.alert-info {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n border-color: #9acfea;\n}\n.alert-warning {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n border-color: #f5e79e;\n}\n.alert-danger {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n border-color: #dca7a7;\n}\n.progress {\n background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n}\n.progress-bar {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n}\n.progress-bar-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n}\n.progress-bar-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n}\n.progress-bar-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n}\n.progress-bar-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n}\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.list-group {\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 #286090;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n text-shadow: none;\n}\n.panel {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.panel-default > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n}\n.panel-primary > .panel-heading {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n}\n.panel-success > .panel-heading {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n}\n.panel-info > .panel-heading {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n}\n.panel-warning > .panel-heading {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n}\n.panel-danger > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n}\n.well {\n background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n border-color: #dcdcdc;\n -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */","/*!\n * Bootstrap v3.3.6 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0,0,0,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n // Reset the shadow\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n .box-shadow(none);\n }\n\n .badge {\n text-shadow: none;\n }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620\n background-repeat: repeat-x;\n border-color: darken(@btn-color, 14%);\n\n &:hover,\n &:focus {\n background-color: darken(@btn-color, 12%);\n background-position: 0 -15px;\n }\n\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n border-color: darken(@btn-color, 14%);\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n background-image: none;\n }\n }\n}\n\n// Common styles\n.btn {\n // Remove the gradient for the pressed/active state\n &:active,\n &.active {\n background-image: none;\n }\n}\n\n// Apply the mixin to the buttons\n.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger { .btn-styles(@btn-danger-bg); }\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n border-radius: @navbar-border-radius;\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));\n }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255,255,255,.25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257\n border-radius: @navbar-border-radius;\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));\n }\n\n .navbar-brand,\n .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0,0,0,.25);\n }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n\n// Fix active state of dropdown items in collapsed mode\n@media (max-width: @grid-float-breakpoint-max) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: #fff;\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n }\n }\n}\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n text-shadow: 0 1px 0 rgba(255,255,255,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);\n .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success { .alert-styles(@alert-success-bg); }\n.alert-info { .alert-styles(@alert-info-bg); }\n.alert-warning { .alert-styles(@alert-warning-bg); }\n.alert-danger { .alert-styles(@alert-danger-bg); }\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }\n\n// Reset the striped class because our mixins don't do multiple gradients and\n// the above custom styles override the new `.progress-bar-striped` in v3.2.0.\n.progress-bar-striped {\n #gradient > .striped();\n}\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n border-radius: @border-radius-base;\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n border-color: darken(@list-group-active-border, 7.5%);\n\n .badge {\n text-shadow: none;\n }\n}\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n .box-shadow(0 1px 2px rgba(0,0,0,.05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n border-color: darken(@well-bg, 10%);\n @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// Gradients\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n"]}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap-theme.min.css
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.6 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2015 Twitter, Inc.
|
4 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
+
*/.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}
|
6 |
+
/*# sourceMappingURL=bootstrap-theme.min.css.map */
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap-theme.min.css.map
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"version":3,"sources":["less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"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"}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap.css
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap.css.map
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap.min.css
ADDED
The diff for this file is too large to render.
See raw diff
|
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/css/bootstrap.min.css.map
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"version":3,"sources":["less/normalize.less","less/print.less","bootstrap.css","dist/css/bootstrap.css","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/mixins/reset-text.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"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DG,edkkDH,MAAA,aclkDG,edqkDH,MAAA,acrkDG,edwkDH,MAAA,IcxkDG,ed2kDH,MAAA,ac3kDG,ed8kDH,MAAA,ac9kDG,edilDH,MAAA,IcjlDG,edolDH,MAAA,ac/kDG,edklDH,MAAA,YcjmDG,edomDH,MAAA,KcpmDG,gBdumDH,KAAA,KcvmDG,gBd0mDH,KAAA,ac1mDG,gBd6mDH,KAAA,ac7mDG,edgnDH,KAAA,IchnDG,edmnDH,KAAA,acnnDG,edsnDH,KAAA,actnDG,edynDH,KAAA,IcznDG,ed4nDH,KAAA,ac5nDG,ed+nDH,KAAA,ac/nDG,edkoDH,KAAA,IcloDG,edqoDH,KAAA,achoDG,edmoDH,KAAA,YcpnDG,edunDH,KAAA,KcvnDG,kBd0nDH,YAAA,Kc1nDG,kBd6nDH,YAAA,ac7nDG,kBdgoDH,YAAA,achoDG,iBdmoDH,YAAA,IcnoDG,iBdsoDH,YAAA,actoDG,iBdyoDH,YAAA,aczoDG,iBd4oDH,YAAA,Ic5oDG,iBd+oDH,YAAA,ac/oDG,iBdkpDH,YAAA,aclpDG,iBdqpDH,YAAA,IcrpDG,iBdwpDH,YAAA,acxpDG,iBd2pDH,YAAA,Yc7rDG,iBACE,YAAA,EAOJ,yBACE,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,Ud2rDD,MAAA,Kc3rDC,Wd8rDD,MAAA,Kc9rDC,WdisDD,MAAA,acjsDC,WdosDD,MAAA,acpsDC,UdusDD,MAAA,IcvsDC,Ud0sDD,MAAA,ac1sDC,Ud6sDD,MAAA,ac7sDC,UdgtDD,MAAA,IchtDC,UdmtDD,MAAA,acntDC,UdstDD,MAAA,acttDC,UdytDD,MAAA,IcztDC,Ud4tDD,MAAA,ac7sDC,UdgtDD,MAAA,YchtDC,gBdmtDD,MAAA,KcntDC,gBdstDD,MAAA,acttDC,gBdytDD,MAAA,acztDC,ed4tDD,MAAA,Ic5tDC,ed+tDD,MAAA,ac/tDC,edkuDD,MAAA,acluDC,edquDD,MAAA,IcruDC,edwuDD,MAAA,acxuDC,ed2uDD,MAAA,ac3uDC,ed8uDD,MAAA,Ic9uDC,edivDD,MAAA,ac5uDC,ed+uDD,MAAA,Yc9vDC,ediwDD,MAAA,KcjwDC,gBdowDD,KAAA,KcpwDC,gBduwDD,KAAA,acvwDC,gBd0wDD,KAAA,ac1wDC,ed6wDD,KAAA,Ic7wDC,edgxDD,KAAA,achxDC,edmxDD,KAAA,acnxDC,edsxDD,KAAA,IctxDC,edyxDD,KAAA,aczxDC,ed4xDD,KAAA,ac5xDC,ed+xDD,KAAA,Ic/xDC,edkyDD,KAAA,ac7xDC,edgyDD,KAAA,YcjxDC,edoxDD,KAAA,KcpxDC,kBduxDD,YAAA,KcvxDC,kBd0xDD,YAAA,ac1xDC,kBd6xDD,YAAA,ac7xDC,iBdgyDD,YAAA,IchyDC,iBdmyDD,YAAA,acnyDC,iBdsyDD,YAAA,actyDC,iBdyyDD,YAAA,IczyDC,iBd4yDD,YAAA,ac5yDC,iBd+yDD,YAAA,ac/yDC,iBdkzDD,YAAA,IclzDC,iBdqzDD,YAAA,acrzDC,iBdwzDD,YAAA,YY/yDD,iBE3CE,YAAA,GAQF,yBACE,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,Udy1DD,MAAA,Kcz1DC,Wd41DD,MAAA,Kc51DC,Wd+1DD,MAAA,ac/1DC,Wdk2DD,MAAA,acl2DC,Udq2DD,MAAA,Icr2DC,Udw2DD,MAAA,acx2DC,Ud22DD,MAAA,ac32DC,Ud82DD,MAAA,Ic92DC,Udi3DD,MAAA,acj3DC,Udo3DD,MAAA,acp3DC,Udu3DD,MAAA,Icv3DC,Ud03DD,MAAA,ac32DC,Ud82DD,MAAA,Yc92DC,gBdi3DD,MAAA,Kcj3DC,gBdo3DD,MAAA,acp3DC,gBdu3DD,MAAA,acv3DC,ed03DD,MAAA,Ic13DC,ed63DD,MAAA,ac73DC,edg4DD,MAAA,ach4DC,edm4DD,MAAA,Icn4DC,eds4DD,MAAA,act4DC,edy4DD,MAAA,acz4DC,ed44DD,MAAA,Ic54DC,ed+4DD,MAAA,ac14DC,ed64DD,MAAA,Yc55DC,ed+5DD,MAAA,Kc/5DC,gBdk6DD,KAAA,Kcl6DC,gBdq6DD,KAAA,acr6DC,gBdw6DD,KAAA,acx6DC,ed26DD,KAAA,Ic36DC,ed86DD,KAAA,ac96DC,edi7DD,KAAA,acj7DC,edo7DD,KAAA,Icp7DC,edu7DD,KAAA,acv7DC,ed07DD,KAAA,ac17DC,ed67DD,KAAA,Ic77DC,edg8DD,KAAA,ac37DC,ed87DD,KAAA,Yc/6DC,edk7DD,KAAA,Kcl7DC,kBdq7DD,YAAA,Kcr7DC,kBdw7DD,YAAA,acx7DC,kBd27DD,YAAA,ac37DC,iBd87DD,YAAA,Ic97DC,iBdi8DD,YAAA,acj8DC,iBdo8DD,YAAA,acp8DC,iBdu8DD,YAAA,Icv8DC,iBd08DD,YAAA,ac18DC,iBd68DD,YAAA,ac78DC,iBdg9DD,YAAA,Ich9DC,iBdm9DD,YAAA,acn9DC,iBds9DD,YAAA,YY18DD,iBE9CE,YAAA,GAQF,0BACE,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,Udu/DD,MAAA,Kcv/DC,Wd0/DD,MAAA,Kc1/DC,Wd6/DD,MAAA,ac7/DC,WdggED,MAAA,achgEC,UdmgED,MAAA,IcngEC,UdsgED,MAAA,actgEC,UdygED,MAAA,aczgEC,Ud4gED,MAAA,Ic5gEC,Ud+gED,MAAA,ac/gEC,UdkhED,MAAA,aclhEC,UdqhED,MAAA,IcrhEC,UdwhED,MAAA,aczgEC,Ud4gED,MAAA,Yc5gEC,gBd+gED,MAAA,Kc/gEC,gBdkhED,MAAA,aclhEC,gBdqhED,MAAA,acrhEC,edwhED,MAAA,IcxhEC,ed2hED,MAAA,ac3hEC,ed8hED,MAAA,ac9hEC,ediiED,MAAA,IcjiEC,edoiED,MAAA,acpiEC,eduiED,MAAA,acviEC,ed0iED,MAAA,Ic1iEC,ed6iED,MAAA,acxiEC,ed2iED,MAAA,Yc1jEC,ed6jED,MAAA,Kc7jEC,gBdgkED,KAAA,KchkEC,gBdmkED,KAAA,acnkEC,gBdskED,KAAA,actkEC,edykED,KAAA,IczkEC,ed4kED,KAAA,ac5kEC,ed+kED,KAAA,ac/kEC,edklED,KAAA,IcllEC,edqlED,KAAA,acrlEC,edwlED,KAAA,acxlEC,ed2lED,KAAA,Ic3lEC,ed8lED,KAAA,aczlEC,ed4lED,KAAA,Yc7kEC,e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pC,cAGA,ejB8DA,wBACQ,OAAA,YJ65FT,OAAA,kBmB56FG,mBAAA,KlBw7FM,WAAY,KkBt7FhB,QAAA,IASN,eC3DE,yBACA,eAAA,KpBo+FD,aoBj+FC,MAAA,KnB6+FA,iBAAkB,KmB3+FhB,aAAA,KpBq+FH,mBoBn+FO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpBo+FH,mBoBj+FC,MAAA,KnB6+FA,iBAAkB,QAClB,aAAc,QmBz+FR,oBADJ,oBpBo+FH,mCoBj+FG,MAAA,KnB6+FF,iBAAkB,QAClB,aAAc,QmBz+FN,0BnB++FV,0BAHA,0BmB7+FM,0BnB++FN,0BAHA,0BDFC,yCoB3+FK,yCnB++FN,yCmB1+FE,MAAA,KnBk/FA,iBAAkB,QAClB,aAAc,QmB3+FZ,oBpBm+FH,oBoBn+FG,mCnBg/FF,iBAAkB,KmB5+FV,4BnBi/FV,4BAHA,4BDHC,6BCOD,6BAHA,6BkB99FA,sCClBM,sCnBi/FN,sCmB3+FI,iBAAA,KACA,aAAA,KDcJ,oBC9DE,MAAA,KACA,iBAAA,KpB6hGD,aoB1hGC,MAAA,KnBsiGA,iBAAkB,QmBpiGhB,aAAA,QpB8hGH,mBoB5hGO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpB6hGH,mBoB1hGC,MAAA,KnBsiGA,iBAAkB,QAClB,aAAc,QmBliGR,oBADJ,oBpB6hGH,mCoB1hGG,MAAA,KnBsiGF,iBAAkB,QAClB,aAAc,QmBliGN,0BnBwiGV,0BAHA,0BmBtiGM,0BnBwiGN,0BAHA,0BDFC,yCoBpiGK,yCnBwiGN,yCmBniGE,MAAA,KnB2iGA,iBAAkB,QAClB,aAAc,QmBpiGZ,oBpB4hGH,oBoB5hGG,mCnByiGF,iBAAkB,KmBriGV,4BnB0iGV,4BAHA,4BDHC,6BCOD,6BAHA,6BkBphGA,sCCrBM,sCnB0iGN,sCmBpiGI,iBAAA,QACA,aAAA,QDkBJ,oBClEE,MAAA,QACA,iBAAA,KpBslGD,aoBnlGC,MAAA,KnB+lGA,iBAAkB,QmB7lGhB,aAAA,QpBulGH,mBoBrlGO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpBslGH,mBoBnlGC,MAAA,KnB+lGA,iBAAkB,QAClB,aAAc,QmB3lGR,oBADJ,oBpBslGH,mCoBnlGG,MAAA,KnB+lGF,iBAAkB,QAClB,aAAc,QmB3lGN,0BnBimGV,0BAHA,0BmB/lGM,0BnBimGN,0BAHA,0BDFC,yCoB7lGK,yCnBimGN,yCmB5lGE,MAAA,KnBomGA,iBAAkB,QAClB,aAAc,QmB7lGZ,oBpBqlGH,oBoBrlGG,mCnBkmGF,iBAAkB,KmB9lGV,4BnBmmGV,4BAHA,4BDHC,6BCOD,6BAHA,6BkBzkGA,sCCzBM,sCnBmmGN,sCmB7lGI,iBAAA,QACA,aAAA,QDsBJ,oBCtEE,MAAA,QACA,iBAAA,KpB+oGD,UoB5oGC,MAAA,KnBwpGA,iBAAkB,QmBtpGhB,aAAA,QpBgpGH,gBoB9oGO,gBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpB+oGH,gBoB5oGC,MAAA,KnBwpGA,iBAAkB,QAClB,aAAc,QmBppGR,iBADJ,iBpB+oGH,gCoB5oGG,MAAA,KnBwpGF,iBAAkB,QAClB,aAAc,QmBppGN,uBnB0pGV,uBAHA,uBmBxpGM,uBnB0pGN,uBAHA,uBDFC,sCoBtpGK,sCnB0pGN,sCmBrpGE,MAAA,KnB6pGA,iBAAkB,QAClB,aAAc,QmBtpGZ,iBpB8oGH,iBoB9oGG,gCnB2pGF,iBAAkB,KmBvpGV,yBnB4pGV,yBAHA,yBDHC,0BCOD,0BAHA,0BkB9nGA,mCC7BM,mCnB4pGN,mCmBtpGI,iBAAA,QACA,aAAA,QD0BJ,iBC1EE,MAAA,QACA,iBAAA,KpBwsGD,aoBrsGC,MAAA,KnBitGA,iBAAkB,QmB/sGhB,aAAA,QpBysGH,mBoBvsGO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpBwsGH,mBoBrsGC,MAAA,KnBitGA,iBAAkB,QAClB,aAAc,QmB7sGR,oBADJ,oBpBwsGH,mCoBrsGG,MAAA,KnBitGF,iBAAkB,QAClB,aAAc,QmB7sGN,0BnBmtGV,0BAHA,0BmBjtGM,0BnBmtGN,0BAHA,0BDFC,yCoB/sGK,yCnBmtGN,yCmB9sGE,MAAA,KnBstGA,iBAAkB,QAClB,aAAc,QmB/sGZ,oBpBusGH,oBoBvsGG,mCnBotGF,iBAAkB,KmBh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mBAKJ,qBAEE,MAAA,QvBvCA,cACC,QAAA,KAAA,K3By0KF,iBAAA,QkDxxKC,WAAY,IAAI,MAAM,KjDozKtB,2BAA4B,IiDjzK1B,0BAAA,IAHJ,mBAAA,mCAMM,cAAA,ElD2xKL,oCkDtxKG,oDjDkzKF,aAAc,IAAI,EiDhzKZ,cAAA,EvBtEL,4D3Bg2KF,4EkDpxKG,WAAA,EjDgzKF,uBAAwB,IiD9yKlB,wBAAA,IvBtEL,0D3B81KF,0EkD7yKC,cAAe,EvB1Df,2BAAA,IACC,0BAAA,IuB0FH,+EAEI,uBAAA,ElDixKH,wBAAA,EkD7wKC,wDlDgxKD,iBAAA,EC4BD,0BACE,iBAAkB,EiDryKpB,8BlD6wKC,ckD7wKD,gCjD0yKE,cAAe,EiD1yKjB,sCAQM,sBlD2wKL,wCC4BC,cAAe,K0Bx5Kf,aAAA,KuByGF,wDlDwxKC,0BC4BC,uBAAwB,IACxB,wBAAyB,IiDrzK3B,yFAoBQ,yFlD2wKP,2DkD5wKO,2DjDwyKN,uBAAwB,IACxB,wBAAyB,IAK3B,wGiDj0KA,wGjD+zKA,wGDtBC,wGCuBD,0EiDh0KA,0EjD8zKA,0EiDtyKU,0EjD8yKR,uBAAwB,IAK1B,uGiD30KA,uGjDy0KA,uGDtBC,uGCuBD,yEiD10KA,yEjDw0KA,yEiD5yKU,yEvB7HR,wBAAA,IuBiGF,sDlDwzKC,yBC4BC,2BAA4B,IAC5B,0BAA2B,IiD3yKrB,qFA1CR,qFAyCQ,wDlDsxKP,wDC4BC,2BAA4B,IAC5B,0BAA2B,IAG7B,oGDtBC,oGCwBD,oGiDj2KA,oGjD81KA,uEiDhzKU,uEjDkzKV,uEiDh2KA,uEjDs2KE,0BAA2B,IAG7B,mGDtBC,mGCwBD,mGiD32KA,mGjDw2KA,sEiDtzKU,sEjDwzKV,sEiD12KA,sEjDg3KE,2BAA4B,IiDrzK1B,0BlD8xKH,qCkDz1KD,0BAAA,qCA+DI,WAAA,IAAA,MAAA,KA/DJ,kDAAA,kDAmEI,WAAA,EAnEJ,uBAAA,yCjD83KE,OAAQ,EiDpzKA,+CjDwzKV,+CiDl4KA,+CjDo4KA,+CAEA,+CANA,+CDjBC,iECoBD,iEiDn4KA,iEjDq4KA,iEAEA,iEANA,iEAWE,YAAa,EiD9zKL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1MG,QAAS,oB/Dm2MV,c+Dr2MC,c/Ds2MH,QAAA,sB+Dj2MG,yB/Dq2MD,kBACF,QAAA,iB+Dj2MG,yB/Dq2MD,mBACF,QAAA,kBgEn6MC,yBhEu6MC,yBgEt6MD,QAAA,wBACA,+CAAU,YhE26MT,QAAA,gBC4BD,iB+Dr8MU,QAAA,gBhE86MX,c+Dx2MG,QAAS,oB/D42MV,c+D92MC,c/D+2MH,QAAA,sB+D12MG,+C/D82MD,kBACF,QAAA,iB+D12MG,+C/D82MD,mBACF,QAAA,kBgEj8MC,+ChEq8MC,yBgEp8MD,QAAA,wBACA,gDAAU,YhEy8MT,QAAA,gBC4BD,iB+Dn+MU,QAAA,gBhE48MX,c+Dj3MG,QAAS,oB/Dq3MV,c+Dv3MC,c/Dw3MH,QAAA,sB+Dn3MG,gD/Du3MD,kBACF,QAAA,iB+Dn3MG,gD/Du3MD,mBACF,QAAA,kBgE/9MC,gDhEm+MC,yBgEl+MD,QAAA,wBACA,0BAAU,YhEu+MT,QAAA,gBC4BD,iB+DjgNU,QAAA,gBhE0+MX,c+D13MG,QAAS,oB/D83MV,c+Dh4MC,c/Di4MH,QAAA,sB+D53MG,0B/Dg4MD,kBACF,QAAA,iB+D53MG,0B/Dg4MD,mBACF,QAAA,kBgEr/MC,0BhEy/MC,yBACF,QAAA,wBgE1/MC,yBhE8/MC,WACF,QAAA,gBgE//MC,+ChEmgNC,WACF,QAAA,gBgEpgNC,gDhEwgNC,WACF,QAAA,gBAGA,0B+Dn3MC,WA4BE,QAAS,gBC5LX,eAAU,QAAA,eACV,aAAU,ehE4hNT,QAAA,gBC4BD,oB+DtjNU,QAAA,gBhE+hNX,iB+Dj4MG,QAAS,oBAMX,iB/D83MD,iB+Dz2MG,QAAS,sB/D82MZ,qB+Dl4MC,QAAS,e/Dq4MV,a+D/3MC,qBAcE,QAAS,iB/Ds3MZ,sB+Dn4MC,QAAS,e/Ds4MV,a+Dh4MC,sBAOE,QAAS,kB/D83MZ,4B+D/3MC,QAAS,eCpLT,ahEujNC,4BACF,QAAA,wBC6BD,aACE,cACE,QAAS"}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/fonts/glyphicons-halflings-regular.eot
ADDED
Binary file (20.1 kB). View file
|
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/fonts/glyphicons-halflings-regular.svg
ADDED
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/fonts/glyphicons-halflings-regular.ttf
ADDED
Binary file (45.4 kB). View file
|
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/fonts/glyphicons-halflings-regular.woff
ADDED
Binary file (23.4 kB). View file
|
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/fonts/glyphicons-halflings-regular.woff2
ADDED
Binary file (18 kB). View file
|
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/js/bootstrap.js
ADDED
@@ -0,0 +1,2363 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.6 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2015 Twitter, Inc.
|
4 |
+
* Licensed under the MIT license
|
5 |
+
*/
|
6 |
+
|
7 |
+
if (typeof jQuery === 'undefined') {
|
8 |
+
throw new Error('Bootstrap\'s JavaScript requires jQuery')
|
9 |
+
}
|
10 |
+
|
11 |
+
+function ($) {
|
12 |
+
'use strict';
|
13 |
+
var version = $.fn.jquery.split(' ')[0].split('.')
|
14 |
+
if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] > 2)) {
|
15 |
+
throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3')
|
16 |
+
}
|
17 |
+
}(jQuery);
|
18 |
+
|
19 |
+
/* ========================================================================
|
20 |
+
* Bootstrap: transition.js v3.3.6
|
21 |
+
* http://getbootstrap.com/javascript/#transitions
|
22 |
+
* ========================================================================
|
23 |
+
* Copyright 2011-2015 Twitter, Inc.
|
24 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
25 |
+
* ======================================================================== */
|
26 |
+
|
27 |
+
|
28 |
+
+function ($) {
|
29 |
+
'use strict';
|
30 |
+
|
31 |
+
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
|
32 |
+
// ============================================================
|
33 |
+
|
34 |
+
function transitionEnd() {
|
35 |
+
var el = document.createElement('bootstrap')
|
36 |
+
|
37 |
+
var transEndEventNames = {
|
38 |
+
WebkitTransition : 'webkitTransitionEnd',
|
39 |
+
MozTransition : 'transitionend',
|
40 |
+
OTransition : 'oTransitionEnd otransitionend',
|
41 |
+
transition : 'transitionend'
|
42 |
+
}
|
43 |
+
|
44 |
+
for (var name in transEndEventNames) {
|
45 |
+
if (el.style[name] !== undefined) {
|
46 |
+
return { end: transEndEventNames[name] }
|
47 |
+
}
|
48 |
+
}
|
49 |
+
|
50 |
+
return false // explicit for ie8 ( ._.)
|
51 |
+
}
|
52 |
+
|
53 |
+
// http://blog.alexmaccaw.com/css-transitions
|
54 |
+
$.fn.emulateTransitionEnd = function (duration) {
|
55 |
+
var called = false
|
56 |
+
var $el = this
|
57 |
+
$(this).one('bsTransitionEnd', function () { called = true })
|
58 |
+
var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
|
59 |
+
setTimeout(callback, duration)
|
60 |
+
return this
|
61 |
+
}
|
62 |
+
|
63 |
+
$(function () {
|
64 |
+
$.support.transition = transitionEnd()
|
65 |
+
|
66 |
+
if (!$.support.transition) return
|
67 |
+
|
68 |
+
$.event.special.bsTransitionEnd = {
|
69 |
+
bindType: $.support.transition.end,
|
70 |
+
delegateType: $.support.transition.end,
|
71 |
+
handle: function (e) {
|
72 |
+
if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
|
73 |
+
}
|
74 |
+
}
|
75 |
+
})
|
76 |
+
|
77 |
+
}(jQuery);
|
78 |
+
|
79 |
+
/* ========================================================================
|
80 |
+
* Bootstrap: alert.js v3.3.6
|
81 |
+
* http://getbootstrap.com/javascript/#alerts
|
82 |
+
* ========================================================================
|
83 |
+
* Copyright 2011-2015 Twitter, Inc.
|
84 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
85 |
+
* ======================================================================== */
|
86 |
+
|
87 |
+
|
88 |
+
+function ($) {
|
89 |
+
'use strict';
|
90 |
+
|
91 |
+
// ALERT CLASS DEFINITION
|
92 |
+
// ======================
|
93 |
+
|
94 |
+
var dismiss = '[data-dismiss="alert"]'
|
95 |
+
var Alert = function (el) {
|
96 |
+
$(el).on('click', dismiss, this.close)
|
97 |
+
}
|
98 |
+
|
99 |
+
Alert.VERSION = '3.3.6'
|
100 |
+
|
101 |
+
Alert.TRANSITION_DURATION = 150
|
102 |
+
|
103 |
+
Alert.prototype.close = function (e) {
|
104 |
+
var $this = $(this)
|
105 |
+
var selector = $this.attr('data-target')
|
106 |
+
|
107 |
+
if (!selector) {
|
108 |
+
selector = $this.attr('href')
|
109 |
+
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
110 |
+
}
|
111 |
+
|
112 |
+
var $parent = $(selector)
|
113 |
+
|
114 |
+
if (e) e.preventDefault()
|
115 |
+
|
116 |
+
if (!$parent.length) {
|
117 |
+
$parent = $this.closest('.alert')
|
118 |
+
}
|
119 |
+
|
120 |
+
$parent.trigger(e = $.Event('close.bs.alert'))
|
121 |
+
|
122 |
+
if (e.isDefaultPrevented()) return
|
123 |
+
|
124 |
+
$parent.removeClass('in')
|
125 |
+
|
126 |
+
function removeElement() {
|
127 |
+
// detach from parent, fire event then clean up data
|
128 |
+
$parent.detach().trigger('closed.bs.alert').remove()
|
129 |
+
}
|
130 |
+
|
131 |
+
$.support.transition && $parent.hasClass('fade') ?
|
132 |
+
$parent
|
133 |
+
.one('bsTransitionEnd', removeElement)
|
134 |
+
.emulateTransitionEnd(Alert.TRANSITION_DURATION) :
|
135 |
+
removeElement()
|
136 |
+
}
|
137 |
+
|
138 |
+
|
139 |
+
// ALERT PLUGIN DEFINITION
|
140 |
+
// =======================
|
141 |
+
|
142 |
+
function Plugin(option) {
|
143 |
+
return this.each(function () {
|
144 |
+
var $this = $(this)
|
145 |
+
var data = $this.data('bs.alert')
|
146 |
+
|
147 |
+
if (!data) $this.data('bs.alert', (data = new Alert(this)))
|
148 |
+
if (typeof option == 'string') data[option].call($this)
|
149 |
+
})
|
150 |
+
}
|
151 |
+
|
152 |
+
var old = $.fn.alert
|
153 |
+
|
154 |
+
$.fn.alert = Plugin
|
155 |
+
$.fn.alert.Constructor = Alert
|
156 |
+
|
157 |
+
|
158 |
+
// ALERT NO CONFLICT
|
159 |
+
// =================
|
160 |
+
|
161 |
+
$.fn.alert.noConflict = function () {
|
162 |
+
$.fn.alert = old
|
163 |
+
return this
|
164 |
+
}
|
165 |
+
|
166 |
+
|
167 |
+
// ALERT DATA-API
|
168 |
+
// ==============
|
169 |
+
|
170 |
+
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
|
171 |
+
|
172 |
+
}(jQuery);
|
173 |
+
|
174 |
+
/* ========================================================================
|
175 |
+
* Bootstrap: button.js v3.3.6
|
176 |
+
* http://getbootstrap.com/javascript/#buttons
|
177 |
+
* ========================================================================
|
178 |
+
* Copyright 2011-2015 Twitter, Inc.
|
179 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
180 |
+
* ======================================================================== */
|
181 |
+
|
182 |
+
|
183 |
+
+function ($) {
|
184 |
+
'use strict';
|
185 |
+
|
186 |
+
// BUTTON PUBLIC CLASS DEFINITION
|
187 |
+
// ==============================
|
188 |
+
|
189 |
+
var Button = function (element, options) {
|
190 |
+
this.$element = $(element)
|
191 |
+
this.options = $.extend({}, Button.DEFAULTS, options)
|
192 |
+
this.isLoading = false
|
193 |
+
}
|
194 |
+
|
195 |
+
Button.VERSION = '3.3.6'
|
196 |
+
|
197 |
+
Button.DEFAULTS = {
|
198 |
+
loadingText: 'loading...'
|
199 |
+
}
|
200 |
+
|
201 |
+
Button.prototype.setState = function (state) {
|
202 |
+
var d = 'disabled'
|
203 |
+
var $el = this.$element
|
204 |
+
var val = $el.is('input') ? 'val' : 'html'
|
205 |
+
var data = $el.data()
|
206 |
+
|
207 |
+
state += 'Text'
|
208 |
+
|
209 |
+
if (data.resetText == null) $el.data('resetText', $el[val]())
|
210 |
+
|
211 |
+
// push to event loop to allow forms to submit
|
212 |
+
setTimeout($.proxy(function () {
|
213 |
+
$el[val](data[state] == null ? this.options[state] : data[state])
|
214 |
+
|
215 |
+
if (state == 'loadingText') {
|
216 |
+
this.isLoading = true
|
217 |
+
$el.addClass(d).attr(d, d)
|
218 |
+
} else if (this.isLoading) {
|
219 |
+
this.isLoading = false
|
220 |
+
$el.removeClass(d).removeAttr(d)
|
221 |
+
}
|
222 |
+
}, this), 0)
|
223 |
+
}
|
224 |
+
|
225 |
+
Button.prototype.toggle = function () {
|
226 |
+
var changed = true
|
227 |
+
var $parent = this.$element.closest('[data-toggle="buttons"]')
|
228 |
+
|
229 |
+
if ($parent.length) {
|
230 |
+
var $input = this.$element.find('input')
|
231 |
+
if ($input.prop('type') == 'radio') {
|
232 |
+
if ($input.prop('checked')) changed = false
|
233 |
+
$parent.find('.active').removeClass('active')
|
234 |
+
this.$element.addClass('active')
|
235 |
+
} else if ($input.prop('type') == 'checkbox') {
|
236 |
+
if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false
|
237 |
+
this.$element.toggleClass('active')
|
238 |
+
}
|
239 |
+
$input.prop('checked', this.$element.hasClass('active'))
|
240 |
+
if (changed) $input.trigger('change')
|
241 |
+
} else {
|
242 |
+
this.$element.attr('aria-pressed', !this.$element.hasClass('active'))
|
243 |
+
this.$element.toggleClass('active')
|
244 |
+
}
|
245 |
+
}
|
246 |
+
|
247 |
+
|
248 |
+
// BUTTON PLUGIN DEFINITION
|
249 |
+
// ========================
|
250 |
+
|
251 |
+
function Plugin(option) {
|
252 |
+
return this.each(function () {
|
253 |
+
var $this = $(this)
|
254 |
+
var data = $this.data('bs.button')
|
255 |
+
var options = typeof option == 'object' && option
|
256 |
+
|
257 |
+
if (!data) $this.data('bs.button', (data = new Button(this, options)))
|
258 |
+
|
259 |
+
if (option == 'toggle') data.toggle()
|
260 |
+
else if (option) data.setState(option)
|
261 |
+
})
|
262 |
+
}
|
263 |
+
|
264 |
+
var old = $.fn.button
|
265 |
+
|
266 |
+
$.fn.button = Plugin
|
267 |
+
$.fn.button.Constructor = Button
|
268 |
+
|
269 |
+
|
270 |
+
// BUTTON NO CONFLICT
|
271 |
+
// ==================
|
272 |
+
|
273 |
+
$.fn.button.noConflict = function () {
|
274 |
+
$.fn.button = old
|
275 |
+
return this
|
276 |
+
}
|
277 |
+
|
278 |
+
|
279 |
+
// BUTTON DATA-API
|
280 |
+
// ===============
|
281 |
+
|
282 |
+
$(document)
|
283 |
+
.on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) {
|
284 |
+
var $btn = $(e.target)
|
285 |
+
if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
|
286 |
+
Plugin.call($btn, 'toggle')
|
287 |
+
if (!($(e.target).is('input[type="radio"]') || $(e.target).is('input[type="checkbox"]'))) e.preventDefault()
|
288 |
+
})
|
289 |
+
.on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) {
|
290 |
+
$(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type))
|
291 |
+
})
|
292 |
+
|
293 |
+
}(jQuery);
|
294 |
+
|
295 |
+
/* ========================================================================
|
296 |
+
* Bootstrap: carousel.js v3.3.6
|
297 |
+
* http://getbootstrap.com/javascript/#carousel
|
298 |
+
* ========================================================================
|
299 |
+
* Copyright 2011-2015 Twitter, Inc.
|
300 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
301 |
+
* ======================================================================== */
|
302 |
+
|
303 |
+
|
304 |
+
+function ($) {
|
305 |
+
'use strict';
|
306 |
+
|
307 |
+
// CAROUSEL CLASS DEFINITION
|
308 |
+
// =========================
|
309 |
+
|
310 |
+
var Carousel = function (element, options) {
|
311 |
+
this.$element = $(element)
|
312 |
+
this.$indicators = this.$element.find('.carousel-indicators')
|
313 |
+
this.options = options
|
314 |
+
this.paused = null
|
315 |
+
this.sliding = null
|
316 |
+
this.interval = null
|
317 |
+
this.$active = null
|
318 |
+
this.$items = null
|
319 |
+
|
320 |
+
this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this))
|
321 |
+
|
322 |
+
this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element
|
323 |
+
.on('mouseenter.bs.carousel', $.proxy(this.pause, this))
|
324 |
+
.on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
|
325 |
+
}
|
326 |
+
|
327 |
+
Carousel.VERSION = '3.3.6'
|
328 |
+
|
329 |
+
Carousel.TRANSITION_DURATION = 600
|
330 |
+
|
331 |
+
Carousel.DEFAULTS = {
|
332 |
+
interval: 5000,
|
333 |
+
pause: 'hover',
|
334 |
+
wrap: true,
|
335 |
+
keyboard: true
|
336 |
+
}
|
337 |
+
|
338 |
+
Carousel.prototype.keydown = function (e) {
|
339 |
+
if (/input|textarea/i.test(e.target.tagName)) return
|
340 |
+
switch (e.which) {
|
341 |
+
case 37: this.prev(); break
|
342 |
+
case 39: this.next(); break
|
343 |
+
default: return
|
344 |
+
}
|
345 |
+
|
346 |
+
e.preventDefault()
|
347 |
+
}
|
348 |
+
|
349 |
+
Carousel.prototype.cycle = function (e) {
|
350 |
+
e || (this.paused = false)
|
351 |
+
|
352 |
+
this.interval && clearInterval(this.interval)
|
353 |
+
|
354 |
+
this.options.interval
|
355 |
+
&& !this.paused
|
356 |
+
&& (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
|
357 |
+
|
358 |
+
return this
|
359 |
+
}
|
360 |
+
|
361 |
+
Carousel.prototype.getItemIndex = function (item) {
|
362 |
+
this.$items = item.parent().children('.item')
|
363 |
+
return this.$items.index(item || this.$active)
|
364 |
+
}
|
365 |
+
|
366 |
+
Carousel.prototype.getItemForDirection = function (direction, active) {
|
367 |
+
var activeIndex = this.getItemIndex(active)
|
368 |
+
var willWrap = (direction == 'prev' && activeIndex === 0)
|
369 |
+
|| (direction == 'next' && activeIndex == (this.$items.length - 1))
|
370 |
+
if (willWrap && !this.options.wrap) return active
|
371 |
+
var delta = direction == 'prev' ? -1 : 1
|
372 |
+
var itemIndex = (activeIndex + delta) % this.$items.length
|
373 |
+
return this.$items.eq(itemIndex)
|
374 |
+
}
|
375 |
+
|
376 |
+
Carousel.prototype.to = function (pos) {
|
377 |
+
var that = this
|
378 |
+
var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))
|
379 |
+
|
380 |
+
if (pos > (this.$items.length - 1) || pos < 0) return
|
381 |
+
|
382 |
+
if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid"
|
383 |
+
if (activeIndex == pos) return this.pause().cycle()
|
384 |
+
|
385 |
+
return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos))
|
386 |
+
}
|
387 |
+
|
388 |
+
Carousel.prototype.pause = function (e) {
|
389 |
+
e || (this.paused = true)
|
390 |
+
|
391 |
+
if (this.$element.find('.next, .prev').length && $.support.transition) {
|
392 |
+
this.$element.trigger($.support.transition.end)
|
393 |
+
this.cycle(true)
|
394 |
+
}
|
395 |
+
|
396 |
+
this.interval = clearInterval(this.interval)
|
397 |
+
|
398 |
+
return this
|
399 |
+
}
|
400 |
+
|
401 |
+
Carousel.prototype.next = function () {
|
402 |
+
if (this.sliding) return
|
403 |
+
return this.slide('next')
|
404 |
+
}
|
405 |
+
|
406 |
+
Carousel.prototype.prev = function () {
|
407 |
+
if (this.sliding) return
|
408 |
+
return this.slide('prev')
|
409 |
+
}
|
410 |
+
|
411 |
+
Carousel.prototype.slide = function (type, next) {
|
412 |
+
var $active = this.$element.find('.item.active')
|
413 |
+
var $next = next || this.getItemForDirection(type, $active)
|
414 |
+
var isCycling = this.interval
|
415 |
+
var direction = type == 'next' ? 'left' : 'right'
|
416 |
+
var that = this
|
417 |
+
|
418 |
+
if ($next.hasClass('active')) return (this.sliding = false)
|
419 |
+
|
420 |
+
var relatedTarget = $next[0]
|
421 |
+
var slideEvent = $.Event('slide.bs.carousel', {
|
422 |
+
relatedTarget: relatedTarget,
|
423 |
+
direction: direction
|
424 |
+
})
|
425 |
+
this.$element.trigger(slideEvent)
|
426 |
+
if (slideEvent.isDefaultPrevented()) return
|
427 |
+
|
428 |
+
this.sliding = true
|
429 |
+
|
430 |
+
isCycling && this.pause()
|
431 |
+
|
432 |
+
if (this.$indicators.length) {
|
433 |
+
this.$indicators.find('.active').removeClass('active')
|
434 |
+
var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])
|
435 |
+
$nextIndicator && $nextIndicator.addClass('active')
|
436 |
+
}
|
437 |
+
|
438 |
+
var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid"
|
439 |
+
if ($.support.transition && this.$element.hasClass('slide')) {
|
440 |
+
$next.addClass(type)
|
441 |
+
$next[0].offsetWidth // force reflow
|
442 |
+
$active.addClass(direction)
|
443 |
+
$next.addClass(direction)
|
444 |
+
$active
|
445 |
+
.one('bsTransitionEnd', function () {
|
446 |
+
$next.removeClass([type, direction].join(' ')).addClass('active')
|
447 |
+
$active.removeClass(['active', direction].join(' '))
|
448 |
+
that.sliding = false
|
449 |
+
setTimeout(function () {
|
450 |
+
that.$element.trigger(slidEvent)
|
451 |
+
}, 0)
|
452 |
+
})
|
453 |
+
.emulateTransitionEnd(Carousel.TRANSITION_DURATION)
|
454 |
+
} else {
|
455 |
+
$active.removeClass('active')
|
456 |
+
$next.addClass('active')
|
457 |
+
this.sliding = false
|
458 |
+
this.$element.trigger(slidEvent)
|
459 |
+
}
|
460 |
+
|
461 |
+
isCycling && this.cycle()
|
462 |
+
|
463 |
+
return this
|
464 |
+
}
|
465 |
+
|
466 |
+
|
467 |
+
// CAROUSEL PLUGIN DEFINITION
|
468 |
+
// ==========================
|
469 |
+
|
470 |
+
function Plugin(option) {
|
471 |
+
return this.each(function () {
|
472 |
+
var $this = $(this)
|
473 |
+
var data = $this.data('bs.carousel')
|
474 |
+
var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
475 |
+
var action = typeof option == 'string' ? option : options.slide
|
476 |
+
|
477 |
+
if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
|
478 |
+
if (typeof option == 'number') data.to(option)
|
479 |
+
else if (action) data[action]()
|
480 |
+
else if (options.interval) data.pause().cycle()
|
481 |
+
})
|
482 |
+
}
|
483 |
+
|
484 |
+
var old = $.fn.carousel
|
485 |
+
|
486 |
+
$.fn.carousel = Plugin
|
487 |
+
$.fn.carousel.Constructor = Carousel
|
488 |
+
|
489 |
+
|
490 |
+
// CAROUSEL NO CONFLICT
|
491 |
+
// ====================
|
492 |
+
|
493 |
+
$.fn.carousel.noConflict = function () {
|
494 |
+
$.fn.carousel = old
|
495 |
+
return this
|
496 |
+
}
|
497 |
+
|
498 |
+
|
499 |
+
// CAROUSEL DATA-API
|
500 |
+
// =================
|
501 |
+
|
502 |
+
var clickHandler = function (e) {
|
503 |
+
var href
|
504 |
+
var $this = $(this)
|
505 |
+
var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
|
506 |
+
if (!$target.hasClass('carousel')) return
|
507 |
+
var options = $.extend({}, $target.data(), $this.data())
|
508 |
+
var slideIndex = $this.attr('data-slide-to')
|
509 |
+
if (slideIndex) options.interval = false
|
510 |
+
|
511 |
+
Plugin.call($target, options)
|
512 |
+
|
513 |
+
if (slideIndex) {
|
514 |
+
$target.data('bs.carousel').to(slideIndex)
|
515 |
+
}
|
516 |
+
|
517 |
+
e.preventDefault()
|
518 |
+
}
|
519 |
+
|
520 |
+
$(document)
|
521 |
+
.on('click.bs.carousel.data-api', '[data-slide]', clickHandler)
|
522 |
+
.on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)
|
523 |
+
|
524 |
+
$(window).on('load', function () {
|
525 |
+
$('[data-ride="carousel"]').each(function () {
|
526 |
+
var $carousel = $(this)
|
527 |
+
Plugin.call($carousel, $carousel.data())
|
528 |
+
})
|
529 |
+
})
|
530 |
+
|
531 |
+
}(jQuery);
|
532 |
+
|
533 |
+
/* ========================================================================
|
534 |
+
* Bootstrap: collapse.js v3.3.6
|
535 |
+
* http://getbootstrap.com/javascript/#collapse
|
536 |
+
* ========================================================================
|
537 |
+
* Copyright 2011-2015 Twitter, Inc.
|
538 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
539 |
+
* ======================================================================== */
|
540 |
+
|
541 |
+
|
542 |
+
+function ($) {
|
543 |
+
'use strict';
|
544 |
+
|
545 |
+
// COLLAPSE PUBLIC CLASS DEFINITION
|
546 |
+
// ================================
|
547 |
+
|
548 |
+
var Collapse = function (element, options) {
|
549 |
+
this.$element = $(element)
|
550 |
+
this.options = $.extend({}, Collapse.DEFAULTS, options)
|
551 |
+
this.$trigger = $('[data-toggle="collapse"][href="#' + element.id + '"],' +
|
552 |
+
'[data-toggle="collapse"][data-target="#' + element.id + '"]')
|
553 |
+
this.transitioning = null
|
554 |
+
|
555 |
+
if (this.options.parent) {
|
556 |
+
this.$parent = this.getParent()
|
557 |
+
} else {
|
558 |
+
this.addAriaAndCollapsedClass(this.$element, this.$trigger)
|
559 |
+
}
|
560 |
+
|
561 |
+
if (this.options.toggle) this.toggle()
|
562 |
+
}
|
563 |
+
|
564 |
+
Collapse.VERSION = '3.3.6'
|
565 |
+
|
566 |
+
Collapse.TRANSITION_DURATION = 350
|
567 |
+
|
568 |
+
Collapse.DEFAULTS = {
|
569 |
+
toggle: true
|
570 |
+
}
|
571 |
+
|
572 |
+
Collapse.prototype.dimension = function () {
|
573 |
+
var hasWidth = this.$element.hasClass('width')
|
574 |
+
return hasWidth ? 'width' : 'height'
|
575 |
+
}
|
576 |
+
|
577 |
+
Collapse.prototype.show = function () {
|
578 |
+
if (this.transitioning || this.$element.hasClass('in')) return
|
579 |
+
|
580 |
+
var activesData
|
581 |
+
var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing')
|
582 |
+
|
583 |
+
if (actives && actives.length) {
|
584 |
+
activesData = actives.data('bs.collapse')
|
585 |
+
if (activesData && activesData.transitioning) return
|
586 |
+
}
|
587 |
+
|
588 |
+
var startEvent = $.Event('show.bs.collapse')
|
589 |
+
this.$element.trigger(startEvent)
|
590 |
+
if (startEvent.isDefaultPrevented()) return
|
591 |
+
|
592 |
+
if (actives && actives.length) {
|
593 |
+
Plugin.call(actives, 'hide')
|
594 |
+
activesData || actives.data('bs.collapse', null)
|
595 |
+
}
|
596 |
+
|
597 |
+
var dimension = this.dimension()
|
598 |
+
|
599 |
+
this.$element
|
600 |
+
.removeClass('collapse')
|
601 |
+
.addClass('collapsing')[dimension](0)
|
602 |
+
.attr('aria-expanded', true)
|
603 |
+
|
604 |
+
this.$trigger
|
605 |
+
.removeClass('collapsed')
|
606 |
+
.attr('aria-expanded', true)
|
607 |
+
|
608 |
+
this.transitioning = 1
|
609 |
+
|
610 |
+
var complete = function () {
|
611 |
+
this.$element
|
612 |
+
.removeClass('collapsing')
|
613 |
+
.addClass('collapse in')[dimension]('')
|
614 |
+
this.transitioning = 0
|
615 |
+
this.$element
|
616 |
+
.trigger('shown.bs.collapse')
|
617 |
+
}
|
618 |
+
|
619 |
+
if (!$.support.transition) return complete.call(this)
|
620 |
+
|
621 |
+
var scrollSize = $.camelCase(['scroll', dimension].join('-'))
|
622 |
+
|
623 |
+
this.$element
|
624 |
+
.one('bsTransitionEnd', $.proxy(complete, this))
|
625 |
+
.emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize])
|
626 |
+
}
|
627 |
+
|
628 |
+
Collapse.prototype.hide = function () {
|
629 |
+
if (this.transitioning || !this.$element.hasClass('in')) return
|
630 |
+
|
631 |
+
var startEvent = $.Event('hide.bs.collapse')
|
632 |
+
this.$element.trigger(startEvent)
|
633 |
+
if (startEvent.isDefaultPrevented()) return
|
634 |
+
|
635 |
+
var dimension = this.dimension()
|
636 |
+
|
637 |
+
this.$element[dimension](this.$element[dimension]())[0].offsetHeight
|
638 |
+
|
639 |
+
this.$element
|
640 |
+
.addClass('collapsing')
|
641 |
+
.removeClass('collapse in')
|
642 |
+
.attr('aria-expanded', false)
|
643 |
+
|
644 |
+
this.$trigger
|
645 |
+
.addClass('collapsed')
|
646 |
+
.attr('aria-expanded', false)
|
647 |
+
|
648 |
+
this.transitioning = 1
|
649 |
+
|
650 |
+
var complete = function () {
|
651 |
+
this.transitioning = 0
|
652 |
+
this.$element
|
653 |
+
.removeClass('collapsing')
|
654 |
+
.addClass('collapse')
|
655 |
+
.trigger('hidden.bs.collapse')
|
656 |
+
}
|
657 |
+
|
658 |
+
if (!$.support.transition) return complete.call(this)
|
659 |
+
|
660 |
+
this.$element
|
661 |
+
[dimension](0)
|
662 |
+
.one('bsTransitionEnd', $.proxy(complete, this))
|
663 |
+
.emulateTransitionEnd(Collapse.TRANSITION_DURATION)
|
664 |
+
}
|
665 |
+
|
666 |
+
Collapse.prototype.toggle = function () {
|
667 |
+
this[this.$element.hasClass('in') ? 'hide' : 'show']()
|
668 |
+
}
|
669 |
+
|
670 |
+
Collapse.prototype.getParent = function () {
|
671 |
+
return $(this.options.parent)
|
672 |
+
.find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]')
|
673 |
+
.each($.proxy(function (i, element) {
|
674 |
+
var $element = $(element)
|
675 |
+
this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element)
|
676 |
+
}, this))
|
677 |
+
.end()
|
678 |
+
}
|
679 |
+
|
680 |
+
Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) {
|
681 |
+
var isOpen = $element.hasClass('in')
|
682 |
+
|
683 |
+
$element.attr('aria-expanded', isOpen)
|
684 |
+
$trigger
|
685 |
+
.toggleClass('collapsed', !isOpen)
|
686 |
+
.attr('aria-expanded', isOpen)
|
687 |
+
}
|
688 |
+
|
689 |
+
function getTargetFromTrigger($trigger) {
|
690 |
+
var href
|
691 |
+
var target = $trigger.attr('data-target')
|
692 |
+
|| (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7
|
693 |
+
|
694 |
+
return $(target)
|
695 |
+
}
|
696 |
+
|
697 |
+
|
698 |
+
// COLLAPSE PLUGIN DEFINITION
|
699 |
+
// ==========================
|
700 |
+
|
701 |
+
function Plugin(option) {
|
702 |
+
return this.each(function () {
|
703 |
+
var $this = $(this)
|
704 |
+
var data = $this.data('bs.collapse')
|
705 |
+
var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
706 |
+
|
707 |
+
if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false
|
708 |
+
if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
|
709 |
+
if (typeof option == 'string') data[option]()
|
710 |
+
})
|
711 |
+
}
|
712 |
+
|
713 |
+
var old = $.fn.collapse
|
714 |
+
|
715 |
+
$.fn.collapse = Plugin
|
716 |
+
$.fn.collapse.Constructor = Collapse
|
717 |
+
|
718 |
+
|
719 |
+
// COLLAPSE NO CONFLICT
|
720 |
+
// ====================
|
721 |
+
|
722 |
+
$.fn.collapse.noConflict = function () {
|
723 |
+
$.fn.collapse = old
|
724 |
+
return this
|
725 |
+
}
|
726 |
+
|
727 |
+
|
728 |
+
// COLLAPSE DATA-API
|
729 |
+
// =================
|
730 |
+
|
731 |
+
$(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) {
|
732 |
+
var $this = $(this)
|
733 |
+
|
734 |
+
if (!$this.attr('data-target')) e.preventDefault()
|
735 |
+
|
736 |
+
var $target = getTargetFromTrigger($this)
|
737 |
+
var data = $target.data('bs.collapse')
|
738 |
+
var option = data ? 'toggle' : $this.data()
|
739 |
+
|
740 |
+
Plugin.call($target, option)
|
741 |
+
})
|
742 |
+
|
743 |
+
}(jQuery);
|
744 |
+
|
745 |
+
/* ========================================================================
|
746 |
+
* Bootstrap: dropdown.js v3.3.6
|
747 |
+
* http://getbootstrap.com/javascript/#dropdowns
|
748 |
+
* ========================================================================
|
749 |
+
* Copyright 2011-2015 Twitter, Inc.
|
750 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
751 |
+
* ======================================================================== */
|
752 |
+
|
753 |
+
|
754 |
+
+function ($) {
|
755 |
+
'use strict';
|
756 |
+
|
757 |
+
// DROPDOWN CLASS DEFINITION
|
758 |
+
// =========================
|
759 |
+
|
760 |
+
var backdrop = '.dropdown-backdrop'
|
761 |
+
var toggle = '[data-toggle="dropdown"]'
|
762 |
+
var Dropdown = function (element) {
|
763 |
+
$(element).on('click.bs.dropdown', this.toggle)
|
764 |
+
}
|
765 |
+
|
766 |
+
Dropdown.VERSION = '3.3.6'
|
767 |
+
|
768 |
+
function getParent($this) {
|
769 |
+
var selector = $this.attr('data-target')
|
770 |
+
|
771 |
+
if (!selector) {
|
772 |
+
selector = $this.attr('href')
|
773 |
+
selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
774 |
+
}
|
775 |
+
|
776 |
+
var $parent = selector && $(selector)
|
777 |
+
|
778 |
+
return $parent && $parent.length ? $parent : $this.parent()
|
779 |
+
}
|
780 |
+
|
781 |
+
function clearMenus(e) {
|
782 |
+
if (e && e.which === 3) return
|
783 |
+
$(backdrop).remove()
|
784 |
+
$(toggle).each(function () {
|
785 |
+
var $this = $(this)
|
786 |
+
var $parent = getParent($this)
|
787 |
+
var relatedTarget = { relatedTarget: this }
|
788 |
+
|
789 |
+
if (!$parent.hasClass('open')) return
|
790 |
+
|
791 |
+
if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return
|
792 |
+
|
793 |
+
$parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
|
794 |
+
|
795 |
+
if (e.isDefaultPrevented()) return
|
796 |
+
|
797 |
+
$this.attr('aria-expanded', 'false')
|
798 |
+
$parent.removeClass('open').trigger($.Event('hidden.bs.dropdown', relatedTarget))
|
799 |
+
})
|
800 |
+
}
|
801 |
+
|
802 |
+
Dropdown.prototype.toggle = function (e) {
|
803 |
+
var $this = $(this)
|
804 |
+
|
805 |
+
if ($this.is('.disabled, :disabled')) return
|
806 |
+
|
807 |
+
var $parent = getParent($this)
|
808 |
+
var isActive = $parent.hasClass('open')
|
809 |
+
|
810 |
+
clearMenus()
|
811 |
+
|
812 |
+
if (!isActive) {
|
813 |
+
if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
|
814 |
+
// if mobile we use a backdrop because click events don't delegate
|
815 |
+
$(document.createElement('div'))
|
816 |
+
.addClass('dropdown-backdrop')
|
817 |
+
.insertAfter($(this))
|
818 |
+
.on('click', clearMenus)
|
819 |
+
}
|
820 |
+
|
821 |
+
var relatedTarget = { relatedTarget: this }
|
822 |
+
$parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
|
823 |
+
|
824 |
+
if (e.isDefaultPrevented()) return
|
825 |
+
|
826 |
+
$this
|
827 |
+
.trigger('focus')
|
828 |
+
.attr('aria-expanded', 'true')
|
829 |
+
|
830 |
+
$parent
|
831 |
+
.toggleClass('open')
|
832 |
+
.trigger($.Event('shown.bs.dropdown', relatedTarget))
|
833 |
+
}
|
834 |
+
|
835 |
+
return false
|
836 |
+
}
|
837 |
+
|
838 |
+
Dropdown.prototype.keydown = function (e) {
|
839 |
+
if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return
|
840 |
+
|
841 |
+
var $this = $(this)
|
842 |
+
|
843 |
+
e.preventDefault()
|
844 |
+
e.stopPropagation()
|
845 |
+
|
846 |
+
if ($this.is('.disabled, :disabled')) return
|
847 |
+
|
848 |
+
var $parent = getParent($this)
|
849 |
+
var isActive = $parent.hasClass('open')
|
850 |
+
|
851 |
+
if (!isActive && e.which != 27 || isActive && e.which == 27) {
|
852 |
+
if (e.which == 27) $parent.find(toggle).trigger('focus')
|
853 |
+
return $this.trigger('click')
|
854 |
+
}
|
855 |
+
|
856 |
+
var desc = ' li:not(.disabled):visible a'
|
857 |
+
var $items = $parent.find('.dropdown-menu' + desc)
|
858 |
+
|
859 |
+
if (!$items.length) return
|
860 |
+
|
861 |
+
var index = $items.index(e.target)
|
862 |
+
|
863 |
+
if (e.which == 38 && index > 0) index-- // up
|
864 |
+
if (e.which == 40 && index < $items.length - 1) index++ // down
|
865 |
+
if (!~index) index = 0
|
866 |
+
|
867 |
+
$items.eq(index).trigger('focus')
|
868 |
+
}
|
869 |
+
|
870 |
+
|
871 |
+
// DROPDOWN PLUGIN DEFINITION
|
872 |
+
// ==========================
|
873 |
+
|
874 |
+
function Plugin(option) {
|
875 |
+
return this.each(function () {
|
876 |
+
var $this = $(this)
|
877 |
+
var data = $this.data('bs.dropdown')
|
878 |
+
|
879 |
+
if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
|
880 |
+
if (typeof option == 'string') data[option].call($this)
|
881 |
+
})
|
882 |
+
}
|
883 |
+
|
884 |
+
var old = $.fn.dropdown
|
885 |
+
|
886 |
+
$.fn.dropdown = Plugin
|
887 |
+
$.fn.dropdown.Constructor = Dropdown
|
888 |
+
|
889 |
+
|
890 |
+
// DROPDOWN NO CONFLICT
|
891 |
+
// ====================
|
892 |
+
|
893 |
+
$.fn.dropdown.noConflict = function () {
|
894 |
+
$.fn.dropdown = old
|
895 |
+
return this
|
896 |
+
}
|
897 |
+
|
898 |
+
|
899 |
+
// APPLY TO STANDARD DROPDOWN ELEMENTS
|
900 |
+
// ===================================
|
901 |
+
|
902 |
+
$(document)
|
903 |
+
.on('click.bs.dropdown.data-api', clearMenus)
|
904 |
+
.on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
|
905 |
+
.on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
|
906 |
+
.on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)
|
907 |
+
.on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown)
|
908 |
+
|
909 |
+
}(jQuery);
|
910 |
+
|
911 |
+
/* ========================================================================
|
912 |
+
* Bootstrap: modal.js v3.3.6
|
913 |
+
* http://getbootstrap.com/javascript/#modals
|
914 |
+
* ========================================================================
|
915 |
+
* Copyright 2011-2015 Twitter, Inc.
|
916 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
917 |
+
* ======================================================================== */
|
918 |
+
|
919 |
+
|
920 |
+
+function ($) {
|
921 |
+
'use strict';
|
922 |
+
|
923 |
+
// MODAL CLASS DEFINITION
|
924 |
+
// ======================
|
925 |
+
|
926 |
+
var Modal = function (element, options) {
|
927 |
+
this.options = options
|
928 |
+
this.$body = $(document.body)
|
929 |
+
this.$element = $(element)
|
930 |
+
this.$dialog = this.$element.find('.modal-dialog')
|
931 |
+
this.$backdrop = null
|
932 |
+
this.isShown = null
|
933 |
+
this.originalBodyPad = null
|
934 |
+
this.scrollbarWidth = 0
|
935 |
+
this.ignoreBackdropClick = false
|
936 |
+
|
937 |
+
if (this.options.remote) {
|
938 |
+
this.$element
|
939 |
+
.find('.modal-content')
|
940 |
+
.load(this.options.remote, $.proxy(function () {
|
941 |
+
this.$element.trigger('loaded.bs.modal')
|
942 |
+
}, this))
|
943 |
+
}
|
944 |
+
}
|
945 |
+
|
946 |
+
Modal.VERSION = '3.3.6'
|
947 |
+
|
948 |
+
Modal.TRANSITION_DURATION = 300
|
949 |
+
Modal.BACKDROP_TRANSITION_DURATION = 150
|
950 |
+
|
951 |
+
Modal.DEFAULTS = {
|
952 |
+
backdrop: true,
|
953 |
+
keyboard: true,
|
954 |
+
show: true
|
955 |
+
}
|
956 |
+
|
957 |
+
Modal.prototype.toggle = function (_relatedTarget) {
|
958 |
+
return this.isShown ? this.hide() : this.show(_relatedTarget)
|
959 |
+
}
|
960 |
+
|
961 |
+
Modal.prototype.show = function (_relatedTarget) {
|
962 |
+
var that = this
|
963 |
+
var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
|
964 |
+
|
965 |
+
this.$element.trigger(e)
|
966 |
+
|
967 |
+
if (this.isShown || e.isDefaultPrevented()) return
|
968 |
+
|
969 |
+
this.isShown = true
|
970 |
+
|
971 |
+
this.checkScrollbar()
|
972 |
+
this.setScrollbar()
|
973 |
+
this.$body.addClass('modal-open')
|
974 |
+
|
975 |
+
this.escape()
|
976 |
+
this.resize()
|
977 |
+
|
978 |
+
this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
|
979 |
+
|
980 |
+
this.$dialog.on('mousedown.dismiss.bs.modal', function () {
|
981 |
+
that.$element.one('mouseup.dismiss.bs.modal', function (e) {
|
982 |
+
if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true
|
983 |
+
})
|
984 |
+
})
|
985 |
+
|
986 |
+
this.backdrop(function () {
|
987 |
+
var transition = $.support.transition && that.$element.hasClass('fade')
|
988 |
+
|
989 |
+
if (!that.$element.parent().length) {
|
990 |
+
that.$element.appendTo(that.$body) // don't move modals dom position
|
991 |
+
}
|
992 |
+
|
993 |
+
that.$element
|
994 |
+
.show()
|
995 |
+
.scrollTop(0)
|
996 |
+
|
997 |
+
that.adjustDialog()
|
998 |
+
|
999 |
+
if (transition) {
|
1000 |
+
that.$element[0].offsetWidth // force reflow
|
1001 |
+
}
|
1002 |
+
|
1003 |
+
that.$element.addClass('in')
|
1004 |
+
|
1005 |
+
that.enforceFocus()
|
1006 |
+
|
1007 |
+
var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
|
1008 |
+
|
1009 |
+
transition ?
|
1010 |
+
that.$dialog // wait for modal to slide in
|
1011 |
+
.one('bsTransitionEnd', function () {
|
1012 |
+
that.$element.trigger('focus').trigger(e)
|
1013 |
+
})
|
1014 |
+
.emulateTransitionEnd(Modal.TRANSITION_DURATION) :
|
1015 |
+
that.$element.trigger('focus').trigger(e)
|
1016 |
+
})
|
1017 |
+
}
|
1018 |
+
|
1019 |
+
Modal.prototype.hide = function (e) {
|
1020 |
+
if (e) e.preventDefault()
|
1021 |
+
|
1022 |
+
e = $.Event('hide.bs.modal')
|
1023 |
+
|
1024 |
+
this.$element.trigger(e)
|
1025 |
+
|
1026 |
+
if (!this.isShown || e.isDefaultPrevented()) return
|
1027 |
+
|
1028 |
+
this.isShown = false
|
1029 |
+
|
1030 |
+
this.escape()
|
1031 |
+
this.resize()
|
1032 |
+
|
1033 |
+
$(document).off('focusin.bs.modal')
|
1034 |
+
|
1035 |
+
this.$element
|
1036 |
+
.removeClass('in')
|
1037 |
+
.off('click.dismiss.bs.modal')
|
1038 |
+
.off('mouseup.dismiss.bs.modal')
|
1039 |
+
|
1040 |
+
this.$dialog.off('mousedown.dismiss.bs.modal')
|
1041 |
+
|
1042 |
+
$.support.transition && this.$element.hasClass('fade') ?
|
1043 |
+
this.$element
|
1044 |
+
.one('bsTransitionEnd', $.proxy(this.hideModal, this))
|
1045 |
+
.emulateTransitionEnd(Modal.TRANSITION_DURATION) :
|
1046 |
+
this.hideModal()
|
1047 |
+
}
|
1048 |
+
|
1049 |
+
Modal.prototype.enforceFocus = function () {
|
1050 |
+
$(document)
|
1051 |
+
.off('focusin.bs.modal') // guard against infinite focus loop
|
1052 |
+
.on('focusin.bs.modal', $.proxy(function (e) {
|
1053 |
+
if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
|
1054 |
+
this.$element.trigger('focus')
|
1055 |
+
}
|
1056 |
+
}, this))
|
1057 |
+
}
|
1058 |
+
|
1059 |
+
Modal.prototype.escape = function () {
|
1060 |
+
if (this.isShown && this.options.keyboard) {
|
1061 |
+
this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) {
|
1062 |
+
e.which == 27 && this.hide()
|
1063 |
+
}, this))
|
1064 |
+
} else if (!this.isShown) {
|
1065 |
+
this.$element.off('keydown.dismiss.bs.modal')
|
1066 |
+
}
|
1067 |
+
}
|
1068 |
+
|
1069 |
+
Modal.prototype.resize = function () {
|
1070 |
+
if (this.isShown) {
|
1071 |
+
$(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this))
|
1072 |
+
} else {
|
1073 |
+
$(window).off('resize.bs.modal')
|
1074 |
+
}
|
1075 |
+
}
|
1076 |
+
|
1077 |
+
Modal.prototype.hideModal = function () {
|
1078 |
+
var that = this
|
1079 |
+
this.$element.hide()
|
1080 |
+
this.backdrop(function () {
|
1081 |
+
that.$body.removeClass('modal-open')
|
1082 |
+
that.resetAdjustments()
|
1083 |
+
that.resetScrollbar()
|
1084 |
+
that.$element.trigger('hidden.bs.modal')
|
1085 |
+
})
|
1086 |
+
}
|
1087 |
+
|
1088 |
+
Modal.prototype.removeBackdrop = function () {
|
1089 |
+
this.$backdrop && this.$backdrop.remove()
|
1090 |
+
this.$backdrop = null
|
1091 |
+
}
|
1092 |
+
|
1093 |
+
Modal.prototype.backdrop = function (callback) {
|
1094 |
+
var that = this
|
1095 |
+
var animate = this.$element.hasClass('fade') ? 'fade' : ''
|
1096 |
+
|
1097 |
+
if (this.isShown && this.options.backdrop) {
|
1098 |
+
var doAnimate = $.support.transition && animate
|
1099 |
+
|
1100 |
+
this.$backdrop = $(document.createElement('div'))
|
1101 |
+
.addClass('modal-backdrop ' + animate)
|
1102 |
+
.appendTo(this.$body)
|
1103 |
+
|
1104 |
+
this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
|
1105 |
+
if (this.ignoreBackdropClick) {
|
1106 |
+
this.ignoreBackdropClick = false
|
1107 |
+
return
|
1108 |
+
}
|
1109 |
+
if (e.target !== e.currentTarget) return
|
1110 |
+
this.options.backdrop == 'static'
|
1111 |
+
? this.$element[0].focus()
|
1112 |
+
: this.hide()
|
1113 |
+
}, this))
|
1114 |
+
|
1115 |
+
if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
|
1116 |
+
|
1117 |
+
this.$backdrop.addClass('in')
|
1118 |
+
|
1119 |
+
if (!callback) return
|
1120 |
+
|
1121 |
+
doAnimate ?
|
1122 |
+
this.$backdrop
|
1123 |
+
.one('bsTransitionEnd', callback)
|
1124 |
+
.emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
|
1125 |
+
callback()
|
1126 |
+
|
1127 |
+
} else if (!this.isShown && this.$backdrop) {
|
1128 |
+
this.$backdrop.removeClass('in')
|
1129 |
+
|
1130 |
+
var callbackRemove = function () {
|
1131 |
+
that.removeBackdrop()
|
1132 |
+
callback && callback()
|
1133 |
+
}
|
1134 |
+
$.support.transition && this.$element.hasClass('fade') ?
|
1135 |
+
this.$backdrop
|
1136 |
+
.one('bsTransitionEnd', callbackRemove)
|
1137 |
+
.emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
|
1138 |
+
callbackRemove()
|
1139 |
+
|
1140 |
+
} else if (callback) {
|
1141 |
+
callback()
|
1142 |
+
}
|
1143 |
+
}
|
1144 |
+
|
1145 |
+
// these following methods are used to handle overflowing modals
|
1146 |
+
|
1147 |
+
Modal.prototype.handleUpdate = function () {
|
1148 |
+
this.adjustDialog()
|
1149 |
+
}
|
1150 |
+
|
1151 |
+
Modal.prototype.adjustDialog = function () {
|
1152 |
+
var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight
|
1153 |
+
|
1154 |
+
this.$element.css({
|
1155 |
+
paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',
|
1156 |
+
paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''
|
1157 |
+
})
|
1158 |
+
}
|
1159 |
+
|
1160 |
+
Modal.prototype.resetAdjustments = function () {
|
1161 |
+
this.$element.css({
|
1162 |
+
paddingLeft: '',
|
1163 |
+
paddingRight: ''
|
1164 |
+
})
|
1165 |
+
}
|
1166 |
+
|
1167 |
+
Modal.prototype.checkScrollbar = function () {
|
1168 |
+
var fullWindowWidth = window.innerWidth
|
1169 |
+
if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8
|
1170 |
+
var documentElementRect = document.documentElement.getBoundingClientRect()
|
1171 |
+
fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left)
|
1172 |
+
}
|
1173 |
+
this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth
|
1174 |
+
this.scrollbarWidth = this.measureScrollbar()
|
1175 |
+
}
|
1176 |
+
|
1177 |
+
Modal.prototype.setScrollbar = function () {
|
1178 |
+
var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
|
1179 |
+
this.originalBodyPad = document.body.style.paddingRight || ''
|
1180 |
+
if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
|
1181 |
+
}
|
1182 |
+
|
1183 |
+
Modal.prototype.resetScrollbar = function () {
|
1184 |
+
this.$body.css('padding-right', this.originalBodyPad)
|
1185 |
+
}
|
1186 |
+
|
1187 |
+
Modal.prototype.measureScrollbar = function () { // thx walsh
|
1188 |
+
var scrollDiv = document.createElement('div')
|
1189 |
+
scrollDiv.className = 'modal-scrollbar-measure'
|
1190 |
+
this.$body.append(scrollDiv)
|
1191 |
+
var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth
|
1192 |
+
this.$body[0].removeChild(scrollDiv)
|
1193 |
+
return scrollbarWidth
|
1194 |
+
}
|
1195 |
+
|
1196 |
+
|
1197 |
+
// MODAL PLUGIN DEFINITION
|
1198 |
+
// =======================
|
1199 |
+
|
1200 |
+
function Plugin(option, _relatedTarget) {
|
1201 |
+
return this.each(function () {
|
1202 |
+
var $this = $(this)
|
1203 |
+
var data = $this.data('bs.modal')
|
1204 |
+
var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
1205 |
+
|
1206 |
+
if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
|
1207 |
+
if (typeof option == 'string') data[option](_relatedTarget)
|
1208 |
+
else if (options.show) data.show(_relatedTarget)
|
1209 |
+
})
|
1210 |
+
}
|
1211 |
+
|
1212 |
+
var old = $.fn.modal
|
1213 |
+
|
1214 |
+
$.fn.modal = Plugin
|
1215 |
+
$.fn.modal.Constructor = Modal
|
1216 |
+
|
1217 |
+
|
1218 |
+
// MODAL NO CONFLICT
|
1219 |
+
// =================
|
1220 |
+
|
1221 |
+
$.fn.modal.noConflict = function () {
|
1222 |
+
$.fn.modal = old
|
1223 |
+
return this
|
1224 |
+
}
|
1225 |
+
|
1226 |
+
|
1227 |
+
// MODAL DATA-API
|
1228 |
+
// ==============
|
1229 |
+
|
1230 |
+
$(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
|
1231 |
+
var $this = $(this)
|
1232 |
+
var href = $this.attr('href')
|
1233 |
+
var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7
|
1234 |
+
var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
|
1235 |
+
|
1236 |
+
if ($this.is('a')) e.preventDefault()
|
1237 |
+
|
1238 |
+
$target.one('show.bs.modal', function (showEvent) {
|
1239 |
+
if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown
|
1240 |
+
$target.one('hidden.bs.modal', function () {
|
1241 |
+
$this.is(':visible') && $this.trigger('focus')
|
1242 |
+
})
|
1243 |
+
})
|
1244 |
+
Plugin.call($target, option, this)
|
1245 |
+
})
|
1246 |
+
|
1247 |
+
}(jQuery);
|
1248 |
+
|
1249 |
+
/* ========================================================================
|
1250 |
+
* Bootstrap: tooltip.js v3.3.6
|
1251 |
+
* http://getbootstrap.com/javascript/#tooltip
|
1252 |
+
* Inspired by the original jQuery.tipsy by Jason Frame
|
1253 |
+
* ========================================================================
|
1254 |
+
* Copyright 2011-2015 Twitter, Inc.
|
1255 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
1256 |
+
* ======================================================================== */
|
1257 |
+
|
1258 |
+
|
1259 |
+
+function ($) {
|
1260 |
+
'use strict';
|
1261 |
+
|
1262 |
+
// TOOLTIP PUBLIC CLASS DEFINITION
|
1263 |
+
// ===============================
|
1264 |
+
|
1265 |
+
var Tooltip = function (element, options) {
|
1266 |
+
this.type = null
|
1267 |
+
this.options = null
|
1268 |
+
this.enabled = null
|
1269 |
+
this.timeout = null
|
1270 |
+
this.hoverState = null
|
1271 |
+
this.$element = null
|
1272 |
+
this.inState = null
|
1273 |
+
|
1274 |
+
this.init('tooltip', element, options)
|
1275 |
+
}
|
1276 |
+
|
1277 |
+
Tooltip.VERSION = '3.3.6'
|
1278 |
+
|
1279 |
+
Tooltip.TRANSITION_DURATION = 150
|
1280 |
+
|
1281 |
+
Tooltip.DEFAULTS = {
|
1282 |
+
animation: true,
|
1283 |
+
placement: 'top',
|
1284 |
+
selector: false,
|
1285 |
+
template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
|
1286 |
+
trigger: 'hover focus',
|
1287 |
+
title: '',
|
1288 |
+
delay: 0,
|
1289 |
+
html: false,
|
1290 |
+
container: false,
|
1291 |
+
viewport: {
|
1292 |
+
selector: 'body',
|
1293 |
+
padding: 0
|
1294 |
+
}
|
1295 |
+
}
|
1296 |
+
|
1297 |
+
Tooltip.prototype.init = function (type, element, options) {
|
1298 |
+
this.enabled = true
|
1299 |
+
this.type = type
|
1300 |
+
this.$element = $(element)
|
1301 |
+
this.options = this.getOptions(options)
|
1302 |
+
this.$viewport = this.options.viewport && $($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport))
|
1303 |
+
this.inState = { click: false, hover: false, focus: false }
|
1304 |
+
|
1305 |
+
if (this.$element[0] instanceof document.constructor && !this.options.selector) {
|
1306 |
+
throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!')
|
1307 |
+
}
|
1308 |
+
|
1309 |
+
var triggers = this.options.trigger.split(' ')
|
1310 |
+
|
1311 |
+
for (var i = triggers.length; i--;) {
|
1312 |
+
var trigger = triggers[i]
|
1313 |
+
|
1314 |
+
if (trigger == 'click') {
|
1315 |
+
this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
|
1316 |
+
} else if (trigger != 'manual') {
|
1317 |
+
var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin'
|
1318 |
+
var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'
|
1319 |
+
|
1320 |
+
this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
|
1321 |
+
this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
|
1322 |
+
}
|
1323 |
+
}
|
1324 |
+
|
1325 |
+
this.options.selector ?
|
1326 |
+
(this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
|
1327 |
+
this.fixTitle()
|
1328 |
+
}
|
1329 |
+
|
1330 |
+
Tooltip.prototype.getDefaults = function () {
|
1331 |
+
return Tooltip.DEFAULTS
|
1332 |
+
}
|
1333 |
+
|
1334 |
+
Tooltip.prototype.getOptions = function (options) {
|
1335 |
+
options = $.extend({}, this.getDefaults(), this.$element.data(), options)
|
1336 |
+
|
1337 |
+
if (options.delay && typeof options.delay == 'number') {
|
1338 |
+
options.delay = {
|
1339 |
+
show: options.delay,
|
1340 |
+
hide: options.delay
|
1341 |
+
}
|
1342 |
+
}
|
1343 |
+
|
1344 |
+
return options
|
1345 |
+
}
|
1346 |
+
|
1347 |
+
Tooltip.prototype.getDelegateOptions = function () {
|
1348 |
+
var options = {}
|
1349 |
+
var defaults = this.getDefaults()
|
1350 |
+
|
1351 |
+
this._options && $.each(this._options, function (key, value) {
|
1352 |
+
if (defaults[key] != value) options[key] = value
|
1353 |
+
})
|
1354 |
+
|
1355 |
+
return options
|
1356 |
+
}
|
1357 |
+
|
1358 |
+
Tooltip.prototype.enter = function (obj) {
|
1359 |
+
var self = obj instanceof this.constructor ?
|
1360 |
+
obj : $(obj.currentTarget).data('bs.' + this.type)
|
1361 |
+
|
1362 |
+
if (!self) {
|
1363 |
+
self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
|
1364 |
+
$(obj.currentTarget).data('bs.' + this.type, self)
|
1365 |
+
}
|
1366 |
+
|
1367 |
+
if (obj instanceof $.Event) {
|
1368 |
+
self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true
|
1369 |
+
}
|
1370 |
+
|
1371 |
+
if (self.tip().hasClass('in') || self.hoverState == 'in') {
|
1372 |
+
self.hoverState = 'in'
|
1373 |
+
return
|
1374 |
+
}
|
1375 |
+
|
1376 |
+
clearTimeout(self.timeout)
|
1377 |
+
|
1378 |
+
self.hoverState = 'in'
|
1379 |
+
|
1380 |
+
if (!self.options.delay || !self.options.delay.show) return self.show()
|
1381 |
+
|
1382 |
+
self.timeout = setTimeout(function () {
|
1383 |
+
if (self.hoverState == 'in') self.show()
|
1384 |
+
}, self.options.delay.show)
|
1385 |
+
}
|
1386 |
+
|
1387 |
+
Tooltip.prototype.isInStateTrue = function () {
|
1388 |
+
for (var key in this.inState) {
|
1389 |
+
if (this.inState[key]) return true
|
1390 |
+
}
|
1391 |
+
|
1392 |
+
return false
|
1393 |
+
}
|
1394 |
+
|
1395 |
+
Tooltip.prototype.leave = function (obj) {
|
1396 |
+
var self = obj instanceof this.constructor ?
|
1397 |
+
obj : $(obj.currentTarget).data('bs.' + this.type)
|
1398 |
+
|
1399 |
+
if (!self) {
|
1400 |
+
self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
|
1401 |
+
$(obj.currentTarget).data('bs.' + this.type, self)
|
1402 |
+
}
|
1403 |
+
|
1404 |
+
if (obj instanceof $.Event) {
|
1405 |
+
self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false
|
1406 |
+
}
|
1407 |
+
|
1408 |
+
if (self.isInStateTrue()) return
|
1409 |
+
|
1410 |
+
clearTimeout(self.timeout)
|
1411 |
+
|
1412 |
+
self.hoverState = 'out'
|
1413 |
+
|
1414 |
+
if (!self.options.delay || !self.options.delay.hide) return self.hide()
|
1415 |
+
|
1416 |
+
self.timeout = setTimeout(function () {
|
1417 |
+
if (self.hoverState == 'out') self.hide()
|
1418 |
+
}, self.options.delay.hide)
|
1419 |
+
}
|
1420 |
+
|
1421 |
+
Tooltip.prototype.show = function () {
|
1422 |
+
var e = $.Event('show.bs.' + this.type)
|
1423 |
+
|
1424 |
+
if (this.hasContent() && this.enabled) {
|
1425 |
+
this.$element.trigger(e)
|
1426 |
+
|
1427 |
+
var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0])
|
1428 |
+
if (e.isDefaultPrevented() || !inDom) return
|
1429 |
+
var that = this
|
1430 |
+
|
1431 |
+
var $tip = this.tip()
|
1432 |
+
|
1433 |
+
var tipId = this.getUID(this.type)
|
1434 |
+
|
1435 |
+
this.setContent()
|
1436 |
+
$tip.attr('id', tipId)
|
1437 |
+
this.$element.attr('aria-describedby', tipId)
|
1438 |
+
|
1439 |
+
if (this.options.animation) $tip.addClass('fade')
|
1440 |
+
|
1441 |
+
var placement = typeof this.options.placement == 'function' ?
|
1442 |
+
this.options.placement.call(this, $tip[0], this.$element[0]) :
|
1443 |
+
this.options.placement
|
1444 |
+
|
1445 |
+
var autoToken = /\s?auto?\s?/i
|
1446 |
+
var autoPlace = autoToken.test(placement)
|
1447 |
+
if (autoPlace) placement = placement.replace(autoToken, '') || 'top'
|
1448 |
+
|
1449 |
+
$tip
|
1450 |
+
.detach()
|
1451 |
+
.css({ top: 0, left: 0, display: 'block' })
|
1452 |
+
.addClass(placement)
|
1453 |
+
.data('bs.' + this.type, this)
|
1454 |
+
|
1455 |
+
this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
|
1456 |
+
this.$element.trigger('inserted.bs.' + this.type)
|
1457 |
+
|
1458 |
+
var pos = this.getPosition()
|
1459 |
+
var actualWidth = $tip[0].offsetWidth
|
1460 |
+
var actualHeight = $tip[0].offsetHeight
|
1461 |
+
|
1462 |
+
if (autoPlace) {
|
1463 |
+
var orgPlacement = placement
|
1464 |
+
var viewportDim = this.getPosition(this.$viewport)
|
1465 |
+
|
1466 |
+
placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top' :
|
1467 |
+
placement == 'top' && pos.top - actualHeight < viewportDim.top ? 'bottom' :
|
1468 |
+
placement == 'right' && pos.right + actualWidth > viewportDim.width ? 'left' :
|
1469 |
+
placement == 'left' && pos.left - actualWidth < viewportDim.left ? 'right' :
|
1470 |
+
placement
|
1471 |
+
|
1472 |
+
$tip
|
1473 |
+
.removeClass(orgPlacement)
|
1474 |
+
.addClass(placement)
|
1475 |
+
}
|
1476 |
+
|
1477 |
+
var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
|
1478 |
+
|
1479 |
+
this.applyPlacement(calculatedOffset, placement)
|
1480 |
+
|
1481 |
+
var complete = function () {
|
1482 |
+
var prevHoverState = that.hoverState
|
1483 |
+
that.$element.trigger('shown.bs.' + that.type)
|
1484 |
+
that.hoverState = null
|
1485 |
+
|
1486 |
+
if (prevHoverState == 'out') that.leave(that)
|
1487 |
+
}
|
1488 |
+
|
1489 |
+
$.support.transition && this.$tip.hasClass('fade') ?
|
1490 |
+
$tip
|
1491 |
+
.one('bsTransitionEnd', complete)
|
1492 |
+
.emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :
|
1493 |
+
complete()
|
1494 |
+
}
|
1495 |
+
}
|
1496 |
+
|
1497 |
+
Tooltip.prototype.applyPlacement = function (offset, placement) {
|
1498 |
+
var $tip = this.tip()
|
1499 |
+
var width = $tip[0].offsetWidth
|
1500 |
+
var height = $tip[0].offsetHeight
|
1501 |
+
|
1502 |
+
// manually read margins because getBoundingClientRect includes difference
|
1503 |
+
var marginTop = parseInt($tip.css('margin-top'), 10)
|
1504 |
+
var marginLeft = parseInt($tip.css('margin-left'), 10)
|
1505 |
+
|
1506 |
+
// we must check for NaN for ie 8/9
|
1507 |
+
if (isNaN(marginTop)) marginTop = 0
|
1508 |
+
if (isNaN(marginLeft)) marginLeft = 0
|
1509 |
+
|
1510 |
+
offset.top += marginTop
|
1511 |
+
offset.left += marginLeft
|
1512 |
+
|
1513 |
+
// $.fn.offset doesn't round pixel values
|
1514 |
+
// so we use setOffset directly with our own function B-0
|
1515 |
+
$.offset.setOffset($tip[0], $.extend({
|
1516 |
+
using: function (props) {
|
1517 |
+
$tip.css({
|
1518 |
+
top: Math.round(props.top),
|
1519 |
+
left: Math.round(props.left)
|
1520 |
+
})
|
1521 |
+
}
|
1522 |
+
}, offset), 0)
|
1523 |
+
|
1524 |
+
$tip.addClass('in')
|
1525 |
+
|
1526 |
+
// check to see if placing tip in new offset caused the tip to resize itself
|
1527 |
+
var actualWidth = $tip[0].offsetWidth
|
1528 |
+
var actualHeight = $tip[0].offsetHeight
|
1529 |
+
|
1530 |
+
if (placement == 'top' && actualHeight != height) {
|
1531 |
+
offset.top = offset.top + height - actualHeight
|
1532 |
+
}
|
1533 |
+
|
1534 |
+
var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight)
|
1535 |
+
|
1536 |
+
if (delta.left) offset.left += delta.left
|
1537 |
+
else offset.top += delta.top
|
1538 |
+
|
1539 |
+
var isVertical = /top|bottom/.test(placement)
|
1540 |
+
var arrowDelta = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight
|
1541 |
+
var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight'
|
1542 |
+
|
1543 |
+
$tip.offset(offset)
|
1544 |
+
this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical)
|
1545 |
+
}
|
1546 |
+
|
1547 |
+
Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) {
|
1548 |
+
this.arrow()
|
1549 |
+
.css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%')
|
1550 |
+
.css(isVertical ? 'top' : 'left', '')
|
1551 |
+
}
|
1552 |
+
|
1553 |
+
Tooltip.prototype.setContent = function () {
|
1554 |
+
var $tip = this.tip()
|
1555 |
+
var title = this.getTitle()
|
1556 |
+
|
1557 |
+
$tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
|
1558 |
+
$tip.removeClass('fade in top bottom left right')
|
1559 |
+
}
|
1560 |
+
|
1561 |
+
Tooltip.prototype.hide = function (callback) {
|
1562 |
+
var that = this
|
1563 |
+
var $tip = $(this.$tip)
|
1564 |
+
var e = $.Event('hide.bs.' + this.type)
|
1565 |
+
|
1566 |
+
function complete() {
|
1567 |
+
if (that.hoverState != 'in') $tip.detach()
|
1568 |
+
that.$element
|
1569 |
+
.removeAttr('aria-describedby')
|
1570 |
+
.trigger('hidden.bs.' + that.type)
|
1571 |
+
callback && callback()
|
1572 |
+
}
|
1573 |
+
|
1574 |
+
this.$element.trigger(e)
|
1575 |
+
|
1576 |
+
if (e.isDefaultPrevented()) return
|
1577 |
+
|
1578 |
+
$tip.removeClass('in')
|
1579 |
+
|
1580 |
+
$.support.transition && $tip.hasClass('fade') ?
|
1581 |
+
$tip
|
1582 |
+
.one('bsTransitionEnd', complete)
|
1583 |
+
.emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :
|
1584 |
+
complete()
|
1585 |
+
|
1586 |
+
this.hoverState = null
|
1587 |
+
|
1588 |
+
return this
|
1589 |
+
}
|
1590 |
+
|
1591 |
+
Tooltip.prototype.fixTitle = function () {
|
1592 |
+
var $e = this.$element
|
1593 |
+
if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') {
|
1594 |
+
$e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
|
1595 |
+
}
|
1596 |
+
}
|
1597 |
+
|
1598 |
+
Tooltip.prototype.hasContent = function () {
|
1599 |
+
return this.getTitle()
|
1600 |
+
}
|
1601 |
+
|
1602 |
+
Tooltip.prototype.getPosition = function ($element) {
|
1603 |
+
$element = $element || this.$element
|
1604 |
+
|
1605 |
+
var el = $element[0]
|
1606 |
+
var isBody = el.tagName == 'BODY'
|
1607 |
+
|
1608 |
+
var elRect = el.getBoundingClientRect()
|
1609 |
+
if (elRect.width == null) {
|
1610 |
+
// width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093
|
1611 |
+
elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top })
|
1612 |
+
}
|
1613 |
+
var elOffset = isBody ? { top: 0, left: 0 } : $element.offset()
|
1614 |
+
var scroll = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() }
|
1615 |
+
var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null
|
1616 |
+
|
1617 |
+
return $.extend({}, elRect, scroll, outerDims, elOffset)
|
1618 |
+
}
|
1619 |
+
|
1620 |
+
Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
|
1621 |
+
return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } :
|
1622 |
+
placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
|
1623 |
+
placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
|
1624 |
+
/* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }
|
1625 |
+
|
1626 |
+
}
|
1627 |
+
|
1628 |
+
Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) {
|
1629 |
+
var delta = { top: 0, left: 0 }
|
1630 |
+
if (!this.$viewport) return delta
|
1631 |
+
|
1632 |
+
var viewportPadding = this.options.viewport && this.options.viewport.padding || 0
|
1633 |
+
var viewportDimensions = this.getPosition(this.$viewport)
|
1634 |
+
|
1635 |
+
if (/right|left/.test(placement)) {
|
1636 |
+
var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll
|
1637 |
+
var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight
|
1638 |
+
if (topEdgeOffset < viewportDimensions.top) { // top overflow
|
1639 |
+
delta.top = viewportDimensions.top - topEdgeOffset
|
1640 |
+
} else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow
|
1641 |
+
delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset
|
1642 |
+
}
|
1643 |
+
} else {
|
1644 |
+
var leftEdgeOffset = pos.left - viewportPadding
|
1645 |
+
var rightEdgeOffset = pos.left + viewportPadding + actualWidth
|
1646 |
+
if (leftEdgeOffset < viewportDimensions.left) { // left overflow
|
1647 |
+
delta.left = viewportDimensions.left - leftEdgeOffset
|
1648 |
+
} else if (rightEdgeOffset > viewportDimensions.right) { // right overflow
|
1649 |
+
delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset
|
1650 |
+
}
|
1651 |
+
}
|
1652 |
+
|
1653 |
+
return delta
|
1654 |
+
}
|
1655 |
+
|
1656 |
+
Tooltip.prototype.getTitle = function () {
|
1657 |
+
var title
|
1658 |
+
var $e = this.$element
|
1659 |
+
var o = this.options
|
1660 |
+
|
1661 |
+
title = $e.attr('data-original-title')
|
1662 |
+
|| (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
|
1663 |
+
|
1664 |
+
return title
|
1665 |
+
}
|
1666 |
+
|
1667 |
+
Tooltip.prototype.getUID = function (prefix) {
|
1668 |
+
do prefix += ~~(Math.random() * 1000000)
|
1669 |
+
while (document.getElementById(prefix))
|
1670 |
+
return prefix
|
1671 |
+
}
|
1672 |
+
|
1673 |
+
Tooltip.prototype.tip = function () {
|
1674 |
+
if (!this.$tip) {
|
1675 |
+
this.$tip = $(this.options.template)
|
1676 |
+
if (this.$tip.length != 1) {
|
1677 |
+
throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!')
|
1678 |
+
}
|
1679 |
+
}
|
1680 |
+
return this.$tip
|
1681 |
+
}
|
1682 |
+
|
1683 |
+
Tooltip.prototype.arrow = function () {
|
1684 |
+
return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow'))
|
1685 |
+
}
|
1686 |
+
|
1687 |
+
Tooltip.prototype.enable = function () {
|
1688 |
+
this.enabled = true
|
1689 |
+
}
|
1690 |
+
|
1691 |
+
Tooltip.prototype.disable = function () {
|
1692 |
+
this.enabled = false
|
1693 |
+
}
|
1694 |
+
|
1695 |
+
Tooltip.prototype.toggleEnabled = function () {
|
1696 |
+
this.enabled = !this.enabled
|
1697 |
+
}
|
1698 |
+
|
1699 |
+
Tooltip.prototype.toggle = function (e) {
|
1700 |
+
var self = this
|
1701 |
+
if (e) {
|
1702 |
+
self = $(e.currentTarget).data('bs.' + this.type)
|
1703 |
+
if (!self) {
|
1704 |
+
self = new this.constructor(e.currentTarget, this.getDelegateOptions())
|
1705 |
+
$(e.currentTarget).data('bs.' + this.type, self)
|
1706 |
+
}
|
1707 |
+
}
|
1708 |
+
|
1709 |
+
if (e) {
|
1710 |
+
self.inState.click = !self.inState.click
|
1711 |
+
if (self.isInStateTrue()) self.enter(self)
|
1712 |
+
else self.leave(self)
|
1713 |
+
} else {
|
1714 |
+
self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
|
1715 |
+
}
|
1716 |
+
}
|
1717 |
+
|
1718 |
+
Tooltip.prototype.destroy = function () {
|
1719 |
+
var that = this
|
1720 |
+
clearTimeout(this.timeout)
|
1721 |
+
this.hide(function () {
|
1722 |
+
that.$element.off('.' + that.type).removeData('bs.' + that.type)
|
1723 |
+
if (that.$tip) {
|
1724 |
+
that.$tip.detach()
|
1725 |
+
}
|
1726 |
+
that.$tip = null
|
1727 |
+
that.$arrow = null
|
1728 |
+
that.$viewport = null
|
1729 |
+
})
|
1730 |
+
}
|
1731 |
+
|
1732 |
+
|
1733 |
+
// TOOLTIP PLUGIN DEFINITION
|
1734 |
+
// =========================
|
1735 |
+
|
1736 |
+
function Plugin(option) {
|
1737 |
+
return this.each(function () {
|
1738 |
+
var $this = $(this)
|
1739 |
+
var data = $this.data('bs.tooltip')
|
1740 |
+
var options = typeof option == 'object' && option
|
1741 |
+
|
1742 |
+
if (!data && /destroy|hide/.test(option)) return
|
1743 |
+
if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
|
1744 |
+
if (typeof option == 'string') data[option]()
|
1745 |
+
})
|
1746 |
+
}
|
1747 |
+
|
1748 |
+
var old = $.fn.tooltip
|
1749 |
+
|
1750 |
+
$.fn.tooltip = Plugin
|
1751 |
+
$.fn.tooltip.Constructor = Tooltip
|
1752 |
+
|
1753 |
+
|
1754 |
+
// TOOLTIP NO CONFLICT
|
1755 |
+
// ===================
|
1756 |
+
|
1757 |
+
$.fn.tooltip.noConflict = function () {
|
1758 |
+
$.fn.tooltip = old
|
1759 |
+
return this
|
1760 |
+
}
|
1761 |
+
|
1762 |
+
}(jQuery);
|
1763 |
+
|
1764 |
+
/* ========================================================================
|
1765 |
+
* Bootstrap: popover.js v3.3.6
|
1766 |
+
* http://getbootstrap.com/javascript/#popovers
|
1767 |
+
* ========================================================================
|
1768 |
+
* Copyright 2011-2015 Twitter, Inc.
|
1769 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
1770 |
+
* ======================================================================== */
|
1771 |
+
|
1772 |
+
|
1773 |
+
+function ($) {
|
1774 |
+
'use strict';
|
1775 |
+
|
1776 |
+
// POPOVER PUBLIC CLASS DEFINITION
|
1777 |
+
// ===============================
|
1778 |
+
|
1779 |
+
var Popover = function (element, options) {
|
1780 |
+
this.init('popover', element, options)
|
1781 |
+
}
|
1782 |
+
|
1783 |
+
if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
|
1784 |
+
|
1785 |
+
Popover.VERSION = '3.3.6'
|
1786 |
+
|
1787 |
+
Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
|
1788 |
+
placement: 'right',
|
1789 |
+
trigger: 'click',
|
1790 |
+
content: '',
|
1791 |
+
template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
|
1792 |
+
})
|
1793 |
+
|
1794 |
+
|
1795 |
+
// NOTE: POPOVER EXTENDS tooltip.js
|
1796 |
+
// ================================
|
1797 |
+
|
1798 |
+
Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
|
1799 |
+
|
1800 |
+
Popover.prototype.constructor = Popover
|
1801 |
+
|
1802 |
+
Popover.prototype.getDefaults = function () {
|
1803 |
+
return Popover.DEFAULTS
|
1804 |
+
}
|
1805 |
+
|
1806 |
+
Popover.prototype.setContent = function () {
|
1807 |
+
var $tip = this.tip()
|
1808 |
+
var title = this.getTitle()
|
1809 |
+
var content = this.getContent()
|
1810 |
+
|
1811 |
+
$tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
|
1812 |
+
$tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events
|
1813 |
+
this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
|
1814 |
+
](content)
|
1815 |
+
|
1816 |
+
$tip.removeClass('fade top bottom left right in')
|
1817 |
+
|
1818 |
+
// IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
|
1819 |
+
// this manually by checking the contents.
|
1820 |
+
if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
|
1821 |
+
}
|
1822 |
+
|
1823 |
+
Popover.prototype.hasContent = function () {
|
1824 |
+
return this.getTitle() || this.getContent()
|
1825 |
+
}
|
1826 |
+
|
1827 |
+
Popover.prototype.getContent = function () {
|
1828 |
+
var $e = this.$element
|
1829 |
+
var o = this.options
|
1830 |
+
|
1831 |
+
return $e.attr('data-content')
|
1832 |
+
|| (typeof o.content == 'function' ?
|
1833 |
+
o.content.call($e[0]) :
|
1834 |
+
o.content)
|
1835 |
+
}
|
1836 |
+
|
1837 |
+
Popover.prototype.arrow = function () {
|
1838 |
+
return (this.$arrow = this.$arrow || this.tip().find('.arrow'))
|
1839 |
+
}
|
1840 |
+
|
1841 |
+
|
1842 |
+
// POPOVER PLUGIN DEFINITION
|
1843 |
+
// =========================
|
1844 |
+
|
1845 |
+
function Plugin(option) {
|
1846 |
+
return this.each(function () {
|
1847 |
+
var $this = $(this)
|
1848 |
+
var data = $this.data('bs.popover')
|
1849 |
+
var options = typeof option == 'object' && option
|
1850 |
+
|
1851 |
+
if (!data && /destroy|hide/.test(option)) return
|
1852 |
+
if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
|
1853 |
+
if (typeof option == 'string') data[option]()
|
1854 |
+
})
|
1855 |
+
}
|
1856 |
+
|
1857 |
+
var old = $.fn.popover
|
1858 |
+
|
1859 |
+
$.fn.popover = Plugin
|
1860 |
+
$.fn.popover.Constructor = Popover
|
1861 |
+
|
1862 |
+
|
1863 |
+
// POPOVER NO CONFLICT
|
1864 |
+
// ===================
|
1865 |
+
|
1866 |
+
$.fn.popover.noConflict = function () {
|
1867 |
+
$.fn.popover = old
|
1868 |
+
return this
|
1869 |
+
}
|
1870 |
+
|
1871 |
+
}(jQuery);
|
1872 |
+
|
1873 |
+
/* ========================================================================
|
1874 |
+
* Bootstrap: scrollspy.js v3.3.6
|
1875 |
+
* http://getbootstrap.com/javascript/#scrollspy
|
1876 |
+
* ========================================================================
|
1877 |
+
* Copyright 2011-2015 Twitter, Inc.
|
1878 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
1879 |
+
* ======================================================================== */
|
1880 |
+
|
1881 |
+
|
1882 |
+
+function ($) {
|
1883 |
+
'use strict';
|
1884 |
+
|
1885 |
+
// SCROLLSPY CLASS DEFINITION
|
1886 |
+
// ==========================
|
1887 |
+
|
1888 |
+
function ScrollSpy(element, options) {
|
1889 |
+
this.$body = $(document.body)
|
1890 |
+
this.$scrollElement = $(element).is(document.body) ? $(window) : $(element)
|
1891 |
+
this.options = $.extend({}, ScrollSpy.DEFAULTS, options)
|
1892 |
+
this.selector = (this.options.target || '') + ' .nav li > a'
|
1893 |
+
this.offsets = []
|
1894 |
+
this.targets = []
|
1895 |
+
this.activeTarget = null
|
1896 |
+
this.scrollHeight = 0
|
1897 |
+
|
1898 |
+
this.$scrollElement.on('scroll.bs.scrollspy', $.proxy(this.process, this))
|
1899 |
+
this.refresh()
|
1900 |
+
this.process()
|
1901 |
+
}
|
1902 |
+
|
1903 |
+
ScrollSpy.VERSION = '3.3.6'
|
1904 |
+
|
1905 |
+
ScrollSpy.DEFAULTS = {
|
1906 |
+
offset: 10
|
1907 |
+
}
|
1908 |
+
|
1909 |
+
ScrollSpy.prototype.getScrollHeight = function () {
|
1910 |
+
return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight)
|
1911 |
+
}
|
1912 |
+
|
1913 |
+
ScrollSpy.prototype.refresh = function () {
|
1914 |
+
var that = this
|
1915 |
+
var offsetMethod = 'offset'
|
1916 |
+
var offsetBase = 0
|
1917 |
+
|
1918 |
+
this.offsets = []
|
1919 |
+
this.targets = []
|
1920 |
+
this.scrollHeight = this.getScrollHeight()
|
1921 |
+
|
1922 |
+
if (!$.isWindow(this.$scrollElement[0])) {
|
1923 |
+
offsetMethod = 'position'
|
1924 |
+
offsetBase = this.$scrollElement.scrollTop()
|
1925 |
+
}
|
1926 |
+
|
1927 |
+
this.$body
|
1928 |
+
.find(this.selector)
|
1929 |
+
.map(function () {
|
1930 |
+
var $el = $(this)
|
1931 |
+
var href = $el.data('target') || $el.attr('href')
|
1932 |
+
var $href = /^#./.test(href) && $(href)
|
1933 |
+
|
1934 |
+
return ($href
|
1935 |
+
&& $href.length
|
1936 |
+
&& $href.is(':visible')
|
1937 |
+
&& [[$href[offsetMethod]().top + offsetBase, href]]) || null
|
1938 |
+
})
|
1939 |
+
.sort(function (a, b) { return a[0] - b[0] })
|
1940 |
+
.each(function () {
|
1941 |
+
that.offsets.push(this[0])
|
1942 |
+
that.targets.push(this[1])
|
1943 |
+
})
|
1944 |
+
}
|
1945 |
+
|
1946 |
+
ScrollSpy.prototype.process = function () {
|
1947 |
+
var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
|
1948 |
+
var scrollHeight = this.getScrollHeight()
|
1949 |
+
var maxScroll = this.options.offset + scrollHeight - this.$scrollElement.height()
|
1950 |
+
var offsets = this.offsets
|
1951 |
+
var targets = this.targets
|
1952 |
+
var activeTarget = this.activeTarget
|
1953 |
+
var i
|
1954 |
+
|
1955 |
+
if (this.scrollHeight != scrollHeight) {
|
1956 |
+
this.refresh()
|
1957 |
+
}
|
1958 |
+
|
1959 |
+
if (scrollTop >= maxScroll) {
|
1960 |
+
return activeTarget != (i = targets[targets.length - 1]) && this.activate(i)
|
1961 |
+
}
|
1962 |
+
|
1963 |
+
if (activeTarget && scrollTop < offsets[0]) {
|
1964 |
+
this.activeTarget = null
|
1965 |
+
return this.clear()
|
1966 |
+
}
|
1967 |
+
|
1968 |
+
for (i = offsets.length; i--;) {
|
1969 |
+
activeTarget != targets[i]
|
1970 |
+
&& scrollTop >= offsets[i]
|
1971 |
+
&& (offsets[i + 1] === undefined || scrollTop < offsets[i + 1])
|
1972 |
+
&& this.activate(targets[i])
|
1973 |
+
}
|
1974 |
+
}
|
1975 |
+
|
1976 |
+
ScrollSpy.prototype.activate = function (target) {
|
1977 |
+
this.activeTarget = target
|
1978 |
+
|
1979 |
+
this.clear()
|
1980 |
+
|
1981 |
+
var selector = this.selector +
|
1982 |
+
'[data-target="' + target + '"],' +
|
1983 |
+
this.selector + '[href="' + target + '"]'
|
1984 |
+
|
1985 |
+
var active = $(selector)
|
1986 |
+
.parents('li')
|
1987 |
+
.addClass('active')
|
1988 |
+
|
1989 |
+
if (active.parent('.dropdown-menu').length) {
|
1990 |
+
active = active
|
1991 |
+
.closest('li.dropdown')
|
1992 |
+
.addClass('active')
|
1993 |
+
}
|
1994 |
+
|
1995 |
+
active.trigger('activate.bs.scrollspy')
|
1996 |
+
}
|
1997 |
+
|
1998 |
+
ScrollSpy.prototype.clear = function () {
|
1999 |
+
$(this.selector)
|
2000 |
+
.parentsUntil(this.options.target, '.active')
|
2001 |
+
.removeClass('active')
|
2002 |
+
}
|
2003 |
+
|
2004 |
+
|
2005 |
+
// SCROLLSPY PLUGIN DEFINITION
|
2006 |
+
// ===========================
|
2007 |
+
|
2008 |
+
function Plugin(option) {
|
2009 |
+
return this.each(function () {
|
2010 |
+
var $this = $(this)
|
2011 |
+
var data = $this.data('bs.scrollspy')
|
2012 |
+
var options = typeof option == 'object' && option
|
2013 |
+
|
2014 |
+
if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
|
2015 |
+
if (typeof option == 'string') data[option]()
|
2016 |
+
})
|
2017 |
+
}
|
2018 |
+
|
2019 |
+
var old = $.fn.scrollspy
|
2020 |
+
|
2021 |
+
$.fn.scrollspy = Plugin
|
2022 |
+
$.fn.scrollspy.Constructor = ScrollSpy
|
2023 |
+
|
2024 |
+
|
2025 |
+
// SCROLLSPY NO CONFLICT
|
2026 |
+
// =====================
|
2027 |
+
|
2028 |
+
$.fn.scrollspy.noConflict = function () {
|
2029 |
+
$.fn.scrollspy = old
|
2030 |
+
return this
|
2031 |
+
}
|
2032 |
+
|
2033 |
+
|
2034 |
+
// SCROLLSPY DATA-API
|
2035 |
+
// ==================
|
2036 |
+
|
2037 |
+
$(window).on('load.bs.scrollspy.data-api', function () {
|
2038 |
+
$('[data-spy="scroll"]').each(function () {
|
2039 |
+
var $spy = $(this)
|
2040 |
+
Plugin.call($spy, $spy.data())
|
2041 |
+
})
|
2042 |
+
})
|
2043 |
+
|
2044 |
+
}(jQuery);
|
2045 |
+
|
2046 |
+
/* ========================================================================
|
2047 |
+
* Bootstrap: tab.js v3.3.6
|
2048 |
+
* http://getbootstrap.com/javascript/#tabs
|
2049 |
+
* ========================================================================
|
2050 |
+
* Copyright 2011-2015 Twitter, Inc.
|
2051 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
2052 |
+
* ======================================================================== */
|
2053 |
+
|
2054 |
+
|
2055 |
+
+function ($) {
|
2056 |
+
'use strict';
|
2057 |
+
|
2058 |
+
// TAB CLASS DEFINITION
|
2059 |
+
// ====================
|
2060 |
+
|
2061 |
+
var Tab = function (element) {
|
2062 |
+
// jscs:disable requireDollarBeforejQueryAssignment
|
2063 |
+
this.element = $(element)
|
2064 |
+
// jscs:enable requireDollarBeforejQueryAssignment
|
2065 |
+
}
|
2066 |
+
|
2067 |
+
Tab.VERSION = '3.3.6'
|
2068 |
+
|
2069 |
+
Tab.TRANSITION_DURATION = 150
|
2070 |
+
|
2071 |
+
Tab.prototype.show = function () {
|
2072 |
+
var $this = this.element
|
2073 |
+
var $ul = $this.closest('ul:not(.dropdown-menu)')
|
2074 |
+
var selector = $this.data('target')
|
2075 |
+
|
2076 |
+
if (!selector) {
|
2077 |
+
selector = $this.attr('href')
|
2078 |
+
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
2079 |
+
}
|
2080 |
+
|
2081 |
+
if ($this.parent('li').hasClass('active')) return
|
2082 |
+
|
2083 |
+
var $previous = $ul.find('.active:last a')
|
2084 |
+
var hideEvent = $.Event('hide.bs.tab', {
|
2085 |
+
relatedTarget: $this[0]
|
2086 |
+
})
|
2087 |
+
var showEvent = $.Event('show.bs.tab', {
|
2088 |
+
relatedTarget: $previous[0]
|
2089 |
+
})
|
2090 |
+
|
2091 |
+
$previous.trigger(hideEvent)
|
2092 |
+
$this.trigger(showEvent)
|
2093 |
+
|
2094 |
+
if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return
|
2095 |
+
|
2096 |
+
var $target = $(selector)
|
2097 |
+
|
2098 |
+
this.activate($this.closest('li'), $ul)
|
2099 |
+
this.activate($target, $target.parent(), function () {
|
2100 |
+
$previous.trigger({
|
2101 |
+
type: 'hidden.bs.tab',
|
2102 |
+
relatedTarget: $this[0]
|
2103 |
+
})
|
2104 |
+
$this.trigger({
|
2105 |
+
type: 'shown.bs.tab',
|
2106 |
+
relatedTarget: $previous[0]
|
2107 |
+
})
|
2108 |
+
})
|
2109 |
+
}
|
2110 |
+
|
2111 |
+
Tab.prototype.activate = function (element, container, callback) {
|
2112 |
+
var $active = container.find('> .active')
|
2113 |
+
var transition = callback
|
2114 |
+
&& $.support.transition
|
2115 |
+
&& ($active.length && $active.hasClass('fade') || !!container.find('> .fade').length)
|
2116 |
+
|
2117 |
+
function next() {
|
2118 |
+
$active
|
2119 |
+
.removeClass('active')
|
2120 |
+
.find('> .dropdown-menu > .active')
|
2121 |
+
.removeClass('active')
|
2122 |
+
.end()
|
2123 |
+
.find('[data-toggle="tab"]')
|
2124 |
+
.attr('aria-expanded', false)
|
2125 |
+
|
2126 |
+
element
|
2127 |
+
.addClass('active')
|
2128 |
+
.find('[data-toggle="tab"]')
|
2129 |
+
.attr('aria-expanded', true)
|
2130 |
+
|
2131 |
+
if (transition) {
|
2132 |
+
element[0].offsetWidth // reflow for transition
|
2133 |
+
element.addClass('in')
|
2134 |
+
} else {
|
2135 |
+
element.removeClass('fade')
|
2136 |
+
}
|
2137 |
+
|
2138 |
+
if (element.parent('.dropdown-menu').length) {
|
2139 |
+
element
|
2140 |
+
.closest('li.dropdown')
|
2141 |
+
.addClass('active')
|
2142 |
+
.end()
|
2143 |
+
.find('[data-toggle="tab"]')
|
2144 |
+
.attr('aria-expanded', true)
|
2145 |
+
}
|
2146 |
+
|
2147 |
+
callback && callback()
|
2148 |
+
}
|
2149 |
+
|
2150 |
+
$active.length && transition ?
|
2151 |
+
$active
|
2152 |
+
.one('bsTransitionEnd', next)
|
2153 |
+
.emulateTransitionEnd(Tab.TRANSITION_DURATION) :
|
2154 |
+
next()
|
2155 |
+
|
2156 |
+
$active.removeClass('in')
|
2157 |
+
}
|
2158 |
+
|
2159 |
+
|
2160 |
+
// TAB PLUGIN DEFINITION
|
2161 |
+
// =====================
|
2162 |
+
|
2163 |
+
function Plugin(option) {
|
2164 |
+
return this.each(function () {
|
2165 |
+
var $this = $(this)
|
2166 |
+
var data = $this.data('bs.tab')
|
2167 |
+
|
2168 |
+
if (!data) $this.data('bs.tab', (data = new Tab(this)))
|
2169 |
+
if (typeof option == 'string') data[option]()
|
2170 |
+
})
|
2171 |
+
}
|
2172 |
+
|
2173 |
+
var old = $.fn.tab
|
2174 |
+
|
2175 |
+
$.fn.tab = Plugin
|
2176 |
+
$.fn.tab.Constructor = Tab
|
2177 |
+
|
2178 |
+
|
2179 |
+
// TAB NO CONFLICT
|
2180 |
+
// ===============
|
2181 |
+
|
2182 |
+
$.fn.tab.noConflict = function () {
|
2183 |
+
$.fn.tab = old
|
2184 |
+
return this
|
2185 |
+
}
|
2186 |
+
|
2187 |
+
|
2188 |
+
// TAB DATA-API
|
2189 |
+
// ============
|
2190 |
+
|
2191 |
+
var clickHandler = function (e) {
|
2192 |
+
e.preventDefault()
|
2193 |
+
Plugin.call($(this), 'show')
|
2194 |
+
}
|
2195 |
+
|
2196 |
+
$(document)
|
2197 |
+
.on('click.bs.tab.data-api', '[data-toggle="tab"]', clickHandler)
|
2198 |
+
.on('click.bs.tab.data-api', '[data-toggle="pill"]', clickHandler)
|
2199 |
+
|
2200 |
+
}(jQuery);
|
2201 |
+
|
2202 |
+
/* ========================================================================
|
2203 |
+
* Bootstrap: affix.js v3.3.6
|
2204 |
+
* http://getbootstrap.com/javascript/#affix
|
2205 |
+
* ========================================================================
|
2206 |
+
* Copyright 2011-2015 Twitter, Inc.
|
2207 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
2208 |
+
* ======================================================================== */
|
2209 |
+
|
2210 |
+
|
2211 |
+
+function ($) {
|
2212 |
+
'use strict';
|
2213 |
+
|
2214 |
+
// AFFIX CLASS DEFINITION
|
2215 |
+
// ======================
|
2216 |
+
|
2217 |
+
var Affix = function (element, options) {
|
2218 |
+
this.options = $.extend({}, Affix.DEFAULTS, options)
|
2219 |
+
|
2220 |
+
this.$target = $(this.options.target)
|
2221 |
+
.on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
|
2222 |
+
.on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this))
|
2223 |
+
|
2224 |
+
this.$element = $(element)
|
2225 |
+
this.affixed = null
|
2226 |
+
this.unpin = null
|
2227 |
+
this.pinnedOffset = null
|
2228 |
+
|
2229 |
+
this.checkPosition()
|
2230 |
+
}
|
2231 |
+
|
2232 |
+
Affix.VERSION = '3.3.6'
|
2233 |
+
|
2234 |
+
Affix.RESET = 'affix affix-top affix-bottom'
|
2235 |
+
|
2236 |
+
Affix.DEFAULTS = {
|
2237 |
+
offset: 0,
|
2238 |
+
target: window
|
2239 |
+
}
|
2240 |
+
|
2241 |
+
Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) {
|
2242 |
+
var scrollTop = this.$target.scrollTop()
|
2243 |
+
var position = this.$element.offset()
|
2244 |
+
var targetHeight = this.$target.height()
|
2245 |
+
|
2246 |
+
if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false
|
2247 |
+
|
2248 |
+
if (this.affixed == 'bottom') {
|
2249 |
+
if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom'
|
2250 |
+
return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom'
|
2251 |
+
}
|
2252 |
+
|
2253 |
+
var initializing = this.affixed == null
|
2254 |
+
var colliderTop = initializing ? scrollTop : position.top
|
2255 |
+
var colliderHeight = initializing ? targetHeight : height
|
2256 |
+
|
2257 |
+
if (offsetTop != null && scrollTop <= offsetTop) return 'top'
|
2258 |
+
if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom'
|
2259 |
+
|
2260 |
+
return false
|
2261 |
+
}
|
2262 |
+
|
2263 |
+
Affix.prototype.getPinnedOffset = function () {
|
2264 |
+
if (this.pinnedOffset) return this.pinnedOffset
|
2265 |
+
this.$element.removeClass(Affix.RESET).addClass('affix')
|
2266 |
+
var scrollTop = this.$target.scrollTop()
|
2267 |
+
var position = this.$element.offset()
|
2268 |
+
return (this.pinnedOffset = position.top - scrollTop)
|
2269 |
+
}
|
2270 |
+
|
2271 |
+
Affix.prototype.checkPositionWithEventLoop = function () {
|
2272 |
+
setTimeout($.proxy(this.checkPosition, this), 1)
|
2273 |
+
}
|
2274 |
+
|
2275 |
+
Affix.prototype.checkPosition = function () {
|
2276 |
+
if (!this.$element.is(':visible')) return
|
2277 |
+
|
2278 |
+
var height = this.$element.height()
|
2279 |
+
var offset = this.options.offset
|
2280 |
+
var offsetTop = offset.top
|
2281 |
+
var offsetBottom = offset.bottom
|
2282 |
+
var scrollHeight = Math.max($(document).height(), $(document.body).height())
|
2283 |
+
|
2284 |
+
if (typeof offset != 'object') offsetBottom = offsetTop = offset
|
2285 |
+
if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element)
|
2286 |
+
if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)
|
2287 |
+
|
2288 |
+
var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom)
|
2289 |
+
|
2290 |
+
if (this.affixed != affix) {
|
2291 |
+
if (this.unpin != null) this.$element.css('top', '')
|
2292 |
+
|
2293 |
+
var affixType = 'affix' + (affix ? '-' + affix : '')
|
2294 |
+
var e = $.Event(affixType + '.bs.affix')
|
2295 |
+
|
2296 |
+
this.$element.trigger(e)
|
2297 |
+
|
2298 |
+
if (e.isDefaultPrevented()) return
|
2299 |
+
|
2300 |
+
this.affixed = affix
|
2301 |
+
this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null
|
2302 |
+
|
2303 |
+
this.$element
|
2304 |
+
.removeClass(Affix.RESET)
|
2305 |
+
.addClass(affixType)
|
2306 |
+
.trigger(affixType.replace('affix', 'affixed') + '.bs.affix')
|
2307 |
+
}
|
2308 |
+
|
2309 |
+
if (affix == 'bottom') {
|
2310 |
+
this.$element.offset({
|
2311 |
+
top: scrollHeight - height - offsetBottom
|
2312 |
+
})
|
2313 |
+
}
|
2314 |
+
}
|
2315 |
+
|
2316 |
+
|
2317 |
+
// AFFIX PLUGIN DEFINITION
|
2318 |
+
// =======================
|
2319 |
+
|
2320 |
+
function Plugin(option) {
|
2321 |
+
return this.each(function () {
|
2322 |
+
var $this = $(this)
|
2323 |
+
var data = $this.data('bs.affix')
|
2324 |
+
var options = typeof option == 'object' && option
|
2325 |
+
|
2326 |
+
if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
|
2327 |
+
if (typeof option == 'string') data[option]()
|
2328 |
+
})
|
2329 |
+
}
|
2330 |
+
|
2331 |
+
var old = $.fn.affix
|
2332 |
+
|
2333 |
+
$.fn.affix = Plugin
|
2334 |
+
$.fn.affix.Constructor = Affix
|
2335 |
+
|
2336 |
+
|
2337 |
+
// AFFIX NO CONFLICT
|
2338 |
+
// =================
|
2339 |
+
|
2340 |
+
$.fn.affix.noConflict = function () {
|
2341 |
+
$.fn.affix = old
|
2342 |
+
return this
|
2343 |
+
}
|
2344 |
+
|
2345 |
+
|
2346 |
+
// AFFIX DATA-API
|
2347 |
+
// ==============
|
2348 |
+
|
2349 |
+
$(window).on('load', function () {
|
2350 |
+
$('[data-spy="affix"]').each(function () {
|
2351 |
+
var $spy = $(this)
|
2352 |
+
var data = $spy.data()
|
2353 |
+
|
2354 |
+
data.offset = data.offset || {}
|
2355 |
+
|
2356 |
+
if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom
|
2357 |
+
if (data.offsetTop != null) data.offset.top = data.offsetTop
|
2358 |
+
|
2359 |
+
Plugin.call($spy, data)
|
2360 |
+
})
|
2361 |
+
})
|
2362 |
+
|
2363 |
+
}(jQuery);
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/js/bootstrap.min.js
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Bootstrap v3.3.6 (http://getbootstrap.com)
|
3 |
+
* Copyright 2011-2015 Twitter, Inc.
|
4 |
+
* Licensed under the MIT license
|
5 |
+
*/
|
6 |
+
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>2)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.6",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.6",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.6",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.6",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",c).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in"),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a(document.createElement("div")).addClass("modal-backdrop "+e).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",a,b)};c.VERSION="3.3.6",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-m<o.top?"bottom":"right"==h&&k.right+l>o.width?"left":"left"==h&&k.left-l<o.left?"right":h,f.removeClass(n).addClass(h)}var p=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(p,h);var q=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",q).emulateTransitionEnd(c.TRANSITION_DURATION):q()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top+=g,b.left+=h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.6",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.6",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");
|
7 |
+
d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.6",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.6",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/bootstrap/js/npm.js
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.
|
2 |
+
require('../../js/transition.js')
|
3 |
+
require('../../js/alert.js')
|
4 |
+
require('../../js/button.js')
|
5 |
+
require('../../js/carousel.js')
|
6 |
+
require('../../js/collapse.js')
|
7 |
+
require('../../js/dropdown.js')
|
8 |
+
require('../../js/modal.js')
|
9 |
+
require('../../js/tooltip.js')
|
10 |
+
require('../../js/popover.js')
|
11 |
+
require('../../js/scrollspy.js')
|
12 |
+
require('../../js/tab.js')
|
13 |
+
require('../../js/affix.js')
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/css/form-elements.css
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
input[type="text"],
|
3 |
+
input[type="password"] {
|
4 |
+
height: 50px;
|
5 |
+
margin: 0;
|
6 |
+
padding: 0 20px;
|
7 |
+
vertical-align: middle;
|
8 |
+
background: #fff;
|
9 |
+
border: 3px solid #fff;
|
10 |
+
font-family: 'Roboto', sans-serif;
|
11 |
+
font-size: 16px;
|
12 |
+
font-weight: 300;
|
13 |
+
line-height: 50px;
|
14 |
+
color: #888;
|
15 |
+
-moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
|
16 |
+
-moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
|
17 |
+
-o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
|
18 |
+
}
|
19 |
+
|
20 |
+
input[type="text"]:focus,
|
21 |
+
input[type="password"]:focus {
|
22 |
+
outline: 0;
|
23 |
+
background: #fff;
|
24 |
+
border: 3px solid #fff;
|
25 |
+
-moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
|
26 |
+
}
|
27 |
+
|
28 |
+
input[type="text"]::-moz-placeholder, input[type="password"]::-moz-placeholder { color: #888; }
|
29 |
+
input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder { color: #888; }
|
30 |
+
input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder { color: #888; }
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
button.btn {
|
35 |
+
height: 50px;
|
36 |
+
margin: 0;
|
37 |
+
padding: 0 20px;
|
38 |
+
vertical-align: middle;
|
39 |
+
background: #007bff;
|
40 |
+
border: 0;
|
41 |
+
font-family: 'Roboto', sans-serif;
|
42 |
+
font-size: 16px;
|
43 |
+
font-weight: 300;
|
44 |
+
line-height: 50px;
|
45 |
+
color: #fff;
|
46 |
+
-moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
|
47 |
+
text-shadow: none;
|
48 |
+
-moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
|
49 |
+
-o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
|
50 |
+
}
|
51 |
+
|
52 |
+
button.btn:hover { opacity: 0.6; color: #fff; }
|
53 |
+
button.btn:active { outline: 0; opacity: 0.6; color: #fff; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
|
54 |
+
button.btn:focus { outline: 0; opacity: 0.6; background: #007bff; color: #fff; }
|
55 |
+
button.btn:active:focus, button.btn.active:focus { outline: 0; opacity: 0.6; background: #007bff; color: #fff; }
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/css/style.css
ADDED
@@ -0,0 +1,183 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
body {
|
3 |
+
font-family: 'Roboto', sans-serif;
|
4 |
+
font-size: 16px;
|
5 |
+
font-weight: 300;
|
6 |
+
color: #888;
|
7 |
+
line-height: 30px;
|
8 |
+
text-align: center;
|
9 |
+
}
|
10 |
+
|
11 |
+
strong { font-weight: 500; }
|
12 |
+
|
13 |
+
a, a:hover, a:focus {
|
14 |
+
color: #e89a3e;
|
15 |
+
text-decoration: none;
|
16 |
+
-o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
|
17 |
+
}
|
18 |
+
|
19 |
+
h1, h2 {
|
20 |
+
margin-top: 10px;
|
21 |
+
font-size: 38px;
|
22 |
+
font-weight: 100;
|
23 |
+
color: #555;
|
24 |
+
line-height: 50px;
|
25 |
+
}
|
26 |
+
|
27 |
+
h3 {
|
28 |
+
font-size: 22px;
|
29 |
+
font-weight: 300;
|
30 |
+
color: #555;
|
31 |
+
line-height: 30px;
|
32 |
+
}
|
33 |
+
|
34 |
+
img { max-width: 100%; }
|
35 |
+
|
36 |
+
::-moz-selection { background: #e89a3e; color: #fff; text-shadow: none; }
|
37 |
+
::selection { background: #e89a3e; color: #fff; text-shadow: none; }
|
38 |
+
|
39 |
+
|
40 |
+
.btn-link-1 {
|
41 |
+
display: inline-block;
|
42 |
+
height: 50px;
|
43 |
+
margin: 5px;
|
44 |
+
padding: 14px 20px 0 20px;
|
45 |
+
background: #e89a3e;
|
46 |
+
font-size: 16px;
|
47 |
+
font-weight: 300;
|
48 |
+
line-height: 16px;
|
49 |
+
color: #fff;
|
50 |
+
-moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
|
51 |
+
}
|
52 |
+
.btn-link-1:hover, .btn-link-1:focus, .btn-link-1:active { outline: 0; opacity: 0.6; color: #fff; }
|
53 |
+
|
54 |
+
.btn-link-1.btn-link-1-facebook { background: #4862a3; }
|
55 |
+
.btn-link-1.btn-link-1-twitter { background: #55acee; }
|
56 |
+
.btn-link-1.btn-link-1-google-plus { background: #dd4b39; }
|
57 |
+
|
58 |
+
.btn-link-1 i {
|
59 |
+
padding-right: 5px;
|
60 |
+
vertical-align: middle;
|
61 |
+
font-size: 20px;
|
62 |
+
line-height: 20px;
|
63 |
+
}
|
64 |
+
|
65 |
+
|
66 |
+
/***** Top content *****/
|
67 |
+
|
68 |
+
.inner-bg {
|
69 |
+
padding: 30px 0 170px 0;
|
70 |
+
}
|
71 |
+
|
72 |
+
.top-content .text {
|
73 |
+
color: #fff;
|
74 |
+
}
|
75 |
+
|
76 |
+
.top-content .text h1 { color: #fff; }
|
77 |
+
|
78 |
+
.top-content .description {
|
79 |
+
margin: 5px 0 5px 0;
|
80 |
+
}
|
81 |
+
|
82 |
+
.top-content .description p { opacity: 0.8; }
|
83 |
+
|
84 |
+
.top-content .description a {
|
85 |
+
color: #fff;
|
86 |
+
}
|
87 |
+
.top-content .description a:hover,
|
88 |
+
.top-content .description a:focus { border-bottom: 1px dotted #fff; }
|
89 |
+
|
90 |
+
.form-box {
|
91 |
+
margin-top: 5px;
|
92 |
+
}
|
93 |
+
|
94 |
+
.form-top {
|
95 |
+
overflow: hidden;
|
96 |
+
padding: 0 25px 15px 25px;
|
97 |
+
background: #444;
|
98 |
+
background: rgba(0, 0, 0, 0.35);
|
99 |
+
-moz-border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0;
|
100 |
+
text-align: left;
|
101 |
+
}
|
102 |
+
|
103 |
+
|
104 |
+
.search_tweets .reset_filter{
|
105 |
+
|
106 |
+
}
|
107 |
+
|
108 |
+
.form-top-left {
|
109 |
+
float: left;
|
110 |
+
width: 75%;
|
111 |
+
padding-top: 25px;
|
112 |
+
}
|
113 |
+
|
114 |
+
.form-top-left h3 { margin-top: 0; color: #fff; }
|
115 |
+
.form-top-left p { opacity: 0.8; color: #fff; }
|
116 |
+
|
117 |
+
.form-top-right {
|
118 |
+
float: left;
|
119 |
+
width: 25%;
|
120 |
+
padding-top: 5px;
|
121 |
+
font-size: 66px;
|
122 |
+
color: #fff;
|
123 |
+
line-height: 100px;
|
124 |
+
text-align: right;
|
125 |
+
opacity: 0.3;
|
126 |
+
}
|
127 |
+
|
128 |
+
.form-bottom {
|
129 |
+
padding: 25px 25px 30px 25px;
|
130 |
+
background: #444;
|
131 |
+
background: rgba(0, 0, 0, 0.3);
|
132 |
+
-moz-border-radius: 0 0 4px 4px; -webkit-border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px;
|
133 |
+
text-align: left;
|
134 |
+
}
|
135 |
+
|
136 |
+
.form-bottom form textarea {
|
137 |
+
height: 100px;
|
138 |
+
}
|
139 |
+
|
140 |
+
.form-bottom form button.btn {
|
141 |
+
width: 100%;
|
142 |
+
margin: 5px;
|
143 |
+
}
|
144 |
+
|
145 |
+
.form-bottom form .input-error {
|
146 |
+
border-color: #e89a3e;
|
147 |
+
}
|
148 |
+
|
149 |
+
.social-login {
|
150 |
+
margin-top: 35px;
|
151 |
+
}
|
152 |
+
|
153 |
+
.social-login h3 {
|
154 |
+
color: #fff;
|
155 |
+
}
|
156 |
+
|
157 |
+
.social-login-buttons {
|
158 |
+
margin-top: 25px;
|
159 |
+
}
|
160 |
+
|
161 |
+
|
162 |
+
/***** Media queries *****/
|
163 |
+
|
164 |
+
@media (min-width: 992px) and (max-width: 1199px) {}
|
165 |
+
|
166 |
+
@media (min-width: 768px) and (max-width: 991px) {}
|
167 |
+
|
168 |
+
@media (max-width: 767px) {
|
169 |
+
|
170 |
+
.inner-bg { padding: 60px 0 110px 0; }
|
171 |
+
|
172 |
+
}
|
173 |
+
|
174 |
+
@media (max-width: 415px) {
|
175 |
+
|
176 |
+
h1, h2 { font-size: 32px; }
|
177 |
+
|
178 |
+
}
|
179 |
+
|
180 |
+
#search_result{
|
181 |
+
text-align: left;
|
182 |
+
background-color: white;
|
183 |
+
}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/HELP-US-OUT.txt
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project,
|
2 |
+
Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome,
|
3 |
+
comprehensive icon sets or copy and paste your own.
|
4 |
+
|
5 |
+
Please. Check it out.
|
6 |
+
|
7 |
+
-Dave Gandy
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/css/font-awesome.css
ADDED
@@ -0,0 +1,2199 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
|
3 |
+
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4 |
+
*/
|
5 |
+
/* FONT PATH
|
6 |
+
* -------------------------- */
|
7 |
+
@font-face {
|
8 |
+
font-family: 'FontAwesome';
|
9 |
+
src: url('../fonts/fontawesome-webfont.eot?v=4.6.3');
|
10 |
+
src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');
|
11 |
+
font-weight: normal;
|
12 |
+
font-style: normal;
|
13 |
+
}
|
14 |
+
.fa {
|
15 |
+
display: inline-block;
|
16 |
+
font: normal normal normal 14px/1 FontAwesome;
|
17 |
+
font-size: inherit;
|
18 |
+
text-rendering: auto;
|
19 |
+
-webkit-font-smoothing: antialiased;
|
20 |
+
-moz-osx-font-smoothing: grayscale;
|
21 |
+
}
|
22 |
+
/* makes the font 33% larger relative to the icon container */
|
23 |
+
.fa-lg {
|
24 |
+
font-size: 1.33333333em;
|
25 |
+
line-height: 0.75em;
|
26 |
+
vertical-align: -15%;
|
27 |
+
}
|
28 |
+
.fa-2x {
|
29 |
+
font-size: 2em;
|
30 |
+
}
|
31 |
+
.fa-3x {
|
32 |
+
font-size: 3em;
|
33 |
+
}
|
34 |
+
.fa-4x {
|
35 |
+
font-size: 4em;
|
36 |
+
}
|
37 |
+
.fa-5x {
|
38 |
+
font-size: 5em;
|
39 |
+
}
|
40 |
+
.fa-fw {
|
41 |
+
width: 1.28571429em;
|
42 |
+
text-align: center;
|
43 |
+
}
|
44 |
+
.fa-ul {
|
45 |
+
padding-left: 0;
|
46 |
+
margin-left: 2.14285714em;
|
47 |
+
list-style-type: none;
|
48 |
+
}
|
49 |
+
.fa-ul > li {
|
50 |
+
position: relative;
|
51 |
+
}
|
52 |
+
.fa-li {
|
53 |
+
position: absolute;
|
54 |
+
left: -2.14285714em;
|
55 |
+
width: 2.14285714em;
|
56 |
+
top: 0.14285714em;
|
57 |
+
text-align: center;
|
58 |
+
}
|
59 |
+
.fa-li.fa-lg {
|
60 |
+
left: -1.85714286em;
|
61 |
+
}
|
62 |
+
.fa-border {
|
63 |
+
padding: .2em .25em .15em;
|
64 |
+
border: solid 0.08em #eeeeee;
|
65 |
+
border-radius: .1em;
|
66 |
+
}
|
67 |
+
.fa-pull-left {
|
68 |
+
float: left;
|
69 |
+
}
|
70 |
+
.fa-pull-right {
|
71 |
+
float: right;
|
72 |
+
}
|
73 |
+
.fa.fa-pull-left {
|
74 |
+
margin-right: .3em;
|
75 |
+
}
|
76 |
+
.fa.fa-pull-right {
|
77 |
+
margin-left: .3em;
|
78 |
+
}
|
79 |
+
/* Deprecated as of 4.4.0 */
|
80 |
+
.pull-right {
|
81 |
+
float: right;
|
82 |
+
}
|
83 |
+
.pull-left {
|
84 |
+
float: left;
|
85 |
+
}
|
86 |
+
.fa.pull-left {
|
87 |
+
margin-right: .3em;
|
88 |
+
}
|
89 |
+
.fa.pull-right {
|
90 |
+
margin-left: .3em;
|
91 |
+
}
|
92 |
+
.fa-spin {
|
93 |
+
-webkit-animation: fa-spin 2s infinite linear;
|
94 |
+
animation: fa-spin 2s infinite linear;
|
95 |
+
}
|
96 |
+
.fa-pulse {
|
97 |
+
-webkit-animation: fa-spin 1s infinite steps(8);
|
98 |
+
animation: fa-spin 1s infinite steps(8);
|
99 |
+
}
|
100 |
+
@-webkit-keyframes fa-spin {
|
101 |
+
0% {
|
102 |
+
-webkit-transform: rotate(0deg);
|
103 |
+
transform: rotate(0deg);
|
104 |
+
}
|
105 |
+
100% {
|
106 |
+
-webkit-transform: rotate(359deg);
|
107 |
+
transform: rotate(359deg);
|
108 |
+
}
|
109 |
+
}
|
110 |
+
@keyframes fa-spin {
|
111 |
+
0% {
|
112 |
+
-webkit-transform: rotate(0deg);
|
113 |
+
transform: rotate(0deg);
|
114 |
+
}
|
115 |
+
100% {
|
116 |
+
-webkit-transform: rotate(359deg);
|
117 |
+
transform: rotate(359deg);
|
118 |
+
}
|
119 |
+
}
|
120 |
+
.fa-rotate-90 {
|
121 |
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
|
122 |
+
-webkit-transform: rotate(90deg);
|
123 |
+
-ms-transform: rotate(90deg);
|
124 |
+
transform: rotate(90deg);
|
125 |
+
}
|
126 |
+
.fa-rotate-180 {
|
127 |
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
|
128 |
+
-webkit-transform: rotate(180deg);
|
129 |
+
-ms-transform: rotate(180deg);
|
130 |
+
transform: rotate(180deg);
|
131 |
+
}
|
132 |
+
.fa-rotate-270 {
|
133 |
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
|
134 |
+
-webkit-transform: rotate(270deg);
|
135 |
+
-ms-transform: rotate(270deg);
|
136 |
+
transform: rotate(270deg);
|
137 |
+
}
|
138 |
+
.fa-flip-horizontal {
|
139 |
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
|
140 |
+
-webkit-transform: scale(-1, 1);
|
141 |
+
-ms-transform: scale(-1, 1);
|
142 |
+
transform: scale(-1, 1);
|
143 |
+
}
|
144 |
+
.fa-flip-vertical {
|
145 |
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
146 |
+
-webkit-transform: scale(1, -1);
|
147 |
+
-ms-transform: scale(1, -1);
|
148 |
+
transform: scale(1, -1);
|
149 |
+
}
|
150 |
+
:root .fa-rotate-90,
|
151 |
+
:root .fa-rotate-180,
|
152 |
+
:root .fa-rotate-270,
|
153 |
+
:root .fa-flip-horizontal,
|
154 |
+
:root .fa-flip-vertical {
|
155 |
+
filter: none;
|
156 |
+
}
|
157 |
+
.fa-stack {
|
158 |
+
position: relative;
|
159 |
+
display: inline-block;
|
160 |
+
width: 2em;
|
161 |
+
height: 2em;
|
162 |
+
line-height: 2em;
|
163 |
+
vertical-align: middle;
|
164 |
+
}
|
165 |
+
.fa-stack-1x,
|
166 |
+
.fa-stack-2x {
|
167 |
+
position: absolute;
|
168 |
+
left: 0;
|
169 |
+
width: 100%;
|
170 |
+
text-align: center;
|
171 |
+
}
|
172 |
+
.fa-stack-1x {
|
173 |
+
line-height: inherit;
|
174 |
+
}
|
175 |
+
.fa-stack-2x {
|
176 |
+
font-size: 2em;
|
177 |
+
}
|
178 |
+
.fa-inverse {
|
179 |
+
color: #ffffff;
|
180 |
+
}
|
181 |
+
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
182 |
+
readers do not read off random characters that represent icons */
|
183 |
+
.fa-glass:before {
|
184 |
+
content: "\f000";
|
185 |
+
}
|
186 |
+
.fa-music:before {
|
187 |
+
content: "\f001";
|
188 |
+
}
|
189 |
+
.fa-search:before {
|
190 |
+
content: "\f002";
|
191 |
+
}
|
192 |
+
.fa-envelope-o:before {
|
193 |
+
content: "\f003";
|
194 |
+
}
|
195 |
+
.fa-heart:before {
|
196 |
+
content: "\f004";
|
197 |
+
}
|
198 |
+
.fa-star:before {
|
199 |
+
content: "\f005";
|
200 |
+
}
|
201 |
+
.fa-star-o:before {
|
202 |
+
content: "\f006";
|
203 |
+
}
|
204 |
+
.fa-user:before {
|
205 |
+
content: "\f007";
|
206 |
+
}
|
207 |
+
.fa-film:before {
|
208 |
+
content: "\f008";
|
209 |
+
}
|
210 |
+
.fa-th-large:before {
|
211 |
+
content: "\f009";
|
212 |
+
}
|
213 |
+
.fa-th:before {
|
214 |
+
content: "\f00a";
|
215 |
+
}
|
216 |
+
.fa-th-list:before {
|
217 |
+
content: "\f00b";
|
218 |
+
}
|
219 |
+
.fa-check:before {
|
220 |
+
content: "\f00c";
|
221 |
+
}
|
222 |
+
.fa-remove:before,
|
223 |
+
.fa-close:before,
|
224 |
+
.fa-times:before {
|
225 |
+
content: "\f00d";
|
226 |
+
}
|
227 |
+
.fa-search-plus:before {
|
228 |
+
content: "\f00e";
|
229 |
+
}
|
230 |
+
.fa-search-minus:before {
|
231 |
+
content: "\f010";
|
232 |
+
}
|
233 |
+
.fa-power-off:before {
|
234 |
+
content: "\f011";
|
235 |
+
}
|
236 |
+
.fa-signal:before {
|
237 |
+
content: "\f012";
|
238 |
+
}
|
239 |
+
.fa-gear:before,
|
240 |
+
.fa-cog:before {
|
241 |
+
content: "\f013";
|
242 |
+
}
|
243 |
+
.fa-trash-o:before {
|
244 |
+
content: "\f014";
|
245 |
+
}
|
246 |
+
.fa-home:before {
|
247 |
+
content: "\f015";
|
248 |
+
}
|
249 |
+
.fa-file-o:before {
|
250 |
+
content: "\f016";
|
251 |
+
}
|
252 |
+
.fa-clock-o:before {
|
253 |
+
content: "\f017";
|
254 |
+
}
|
255 |
+
.fa-road:before {
|
256 |
+
content: "\f018";
|
257 |
+
}
|
258 |
+
.fa-download:before {
|
259 |
+
content: "\f019";
|
260 |
+
}
|
261 |
+
.fa-arrow-circle-o-down:before {
|
262 |
+
content: "\f01a";
|
263 |
+
}
|
264 |
+
.fa-arrow-circle-o-up:before {
|
265 |
+
content: "\f01b";
|
266 |
+
}
|
267 |
+
.fa-inbox:before {
|
268 |
+
content: "\f01c";
|
269 |
+
}
|
270 |
+
.fa-play-circle-o:before {
|
271 |
+
content: "\f01d";
|
272 |
+
}
|
273 |
+
.fa-rotate-right:before,
|
274 |
+
.fa-repeat:before {
|
275 |
+
content: "\f01e";
|
276 |
+
}
|
277 |
+
.fa-refresh:before {
|
278 |
+
content: "\f021";
|
279 |
+
}
|
280 |
+
.fa-list-alt:before {
|
281 |
+
content: "\f022";
|
282 |
+
}
|
283 |
+
.fa-lock:before {
|
284 |
+
content: "\f023";
|
285 |
+
}
|
286 |
+
.fa-flag:before {
|
287 |
+
content: "\f024";
|
288 |
+
}
|
289 |
+
.fa-headphones:before {
|
290 |
+
content: "\f025";
|
291 |
+
}
|
292 |
+
.fa-volume-off:before {
|
293 |
+
content: "\f026";
|
294 |
+
}
|
295 |
+
.fa-volume-down:before {
|
296 |
+
content: "\f027";
|
297 |
+
}
|
298 |
+
.fa-volume-up:before {
|
299 |
+
content: "\f028";
|
300 |
+
}
|
301 |
+
.fa-qrcode:before {
|
302 |
+
content: "\f029";
|
303 |
+
}
|
304 |
+
.fa-barcode:before {
|
305 |
+
content: "\f02a";
|
306 |
+
}
|
307 |
+
.fa-tag:before {
|
308 |
+
content: "\f02b";
|
309 |
+
}
|
310 |
+
.fa-tags:before {
|
311 |
+
content: "\f02c";
|
312 |
+
}
|
313 |
+
.fa-book:before {
|
314 |
+
content: "\f02d";
|
315 |
+
}
|
316 |
+
.fa-bookmark:before {
|
317 |
+
content: "\f02e";
|
318 |
+
}
|
319 |
+
.fa-print:before {
|
320 |
+
content: "\f02f";
|
321 |
+
}
|
322 |
+
.fa-camera:before {
|
323 |
+
content: "\f030";
|
324 |
+
}
|
325 |
+
.fa-font:before {
|
326 |
+
content: "\f031";
|
327 |
+
}
|
328 |
+
.fa-bold:before {
|
329 |
+
content: "\f032";
|
330 |
+
}
|
331 |
+
.fa-italic:before {
|
332 |
+
content: "\f033";
|
333 |
+
}
|
334 |
+
.fa-text-height:before {
|
335 |
+
content: "\f034";
|
336 |
+
}
|
337 |
+
.fa-text-width:before {
|
338 |
+
content: "\f035";
|
339 |
+
}
|
340 |
+
.fa-align-left:before {
|
341 |
+
content: "\f036";
|
342 |
+
}
|
343 |
+
.fa-align-center:before {
|
344 |
+
content: "\f037";
|
345 |
+
}
|
346 |
+
.fa-align-right:before {
|
347 |
+
content: "\f038";
|
348 |
+
}
|
349 |
+
.fa-align-justify:before {
|
350 |
+
content: "\f039";
|
351 |
+
}
|
352 |
+
.fa-list:before {
|
353 |
+
content: "\f03a";
|
354 |
+
}
|
355 |
+
.fa-dedent:before,
|
356 |
+
.fa-outdent:before {
|
357 |
+
content: "\f03b";
|
358 |
+
}
|
359 |
+
.fa-indent:before {
|
360 |
+
content: "\f03c";
|
361 |
+
}
|
362 |
+
.fa-video-camera:before {
|
363 |
+
content: "\f03d";
|
364 |
+
}
|
365 |
+
.fa-photo:before,
|
366 |
+
.fa-image:before,
|
367 |
+
.fa-picture-o:before {
|
368 |
+
content: "\f03e";
|
369 |
+
}
|
370 |
+
.fa-pencil:before {
|
371 |
+
content: "\f040";
|
372 |
+
}
|
373 |
+
.fa-map-marker:before {
|
374 |
+
content: "\f041";
|
375 |
+
}
|
376 |
+
.fa-adjust:before {
|
377 |
+
content: "\f042";
|
378 |
+
}
|
379 |
+
.fa-tint:before {
|
380 |
+
content: "\f043";
|
381 |
+
}
|
382 |
+
.fa-edit:before,
|
383 |
+
.fa-pencil-square-o:before {
|
384 |
+
content: "\f044";
|
385 |
+
}
|
386 |
+
.fa-share-square-o:before {
|
387 |
+
content: "\f045";
|
388 |
+
}
|
389 |
+
.fa-check-square-o:before {
|
390 |
+
content: "\f046";
|
391 |
+
}
|
392 |
+
.fa-arrows:before {
|
393 |
+
content: "\f047";
|
394 |
+
}
|
395 |
+
.fa-step-backward:before {
|
396 |
+
content: "\f048";
|
397 |
+
}
|
398 |
+
.fa-fast-backward:before {
|
399 |
+
content: "\f049";
|
400 |
+
}
|
401 |
+
.fa-backward:before {
|
402 |
+
content: "\f04a";
|
403 |
+
}
|
404 |
+
.fa-play:before {
|
405 |
+
content: "\f04b";
|
406 |
+
}
|
407 |
+
.fa-pause:before {
|
408 |
+
content: "\f04c";
|
409 |
+
}
|
410 |
+
.fa-stop:before {
|
411 |
+
content: "\f04d";
|
412 |
+
}
|
413 |
+
.fa-forward:before {
|
414 |
+
content: "\f04e";
|
415 |
+
}
|
416 |
+
.fa-fast-forward:before {
|
417 |
+
content: "\f050";
|
418 |
+
}
|
419 |
+
.fa-step-forward:before {
|
420 |
+
content: "\f051";
|
421 |
+
}
|
422 |
+
.fa-eject:before {
|
423 |
+
content: "\f052";
|
424 |
+
}
|
425 |
+
.fa-chevron-left:before {
|
426 |
+
content: "\f053";
|
427 |
+
}
|
428 |
+
.fa-chevron-right:before {
|
429 |
+
content: "\f054";
|
430 |
+
}
|
431 |
+
.fa-plus-circle:before {
|
432 |
+
content: "\f055";
|
433 |
+
}
|
434 |
+
.fa-minus-circle:before {
|
435 |
+
content: "\f056";
|
436 |
+
}
|
437 |
+
.fa-times-circle:before {
|
438 |
+
content: "\f057";
|
439 |
+
}
|
440 |
+
.fa-check-circle:before {
|
441 |
+
content: "\f058";
|
442 |
+
}
|
443 |
+
.fa-question-circle:before {
|
444 |
+
content: "\f059";
|
445 |
+
}
|
446 |
+
.fa-info-circle:before {
|
447 |
+
content: "\f05a";
|
448 |
+
}
|
449 |
+
.fa-crosshairs:before {
|
450 |
+
content: "\f05b";
|
451 |
+
}
|
452 |
+
.fa-times-circle-o:before {
|
453 |
+
content: "\f05c";
|
454 |
+
}
|
455 |
+
.fa-check-circle-o:before {
|
456 |
+
content: "\f05d";
|
457 |
+
}
|
458 |
+
.fa-ban:before {
|
459 |
+
content: "\f05e";
|
460 |
+
}
|
461 |
+
.fa-arrow-left:before {
|
462 |
+
content: "\f060";
|
463 |
+
}
|
464 |
+
.fa-arrow-right:before {
|
465 |
+
content: "\f061";
|
466 |
+
}
|
467 |
+
.fa-arrow-up:before {
|
468 |
+
content: "\f062";
|
469 |
+
}
|
470 |
+
.fa-arrow-down:before {
|
471 |
+
content: "\f063";
|
472 |
+
}
|
473 |
+
.fa-mail-forward:before,
|
474 |
+
.fa-share:before {
|
475 |
+
content: "\f064";
|
476 |
+
}
|
477 |
+
.fa-expand:before {
|
478 |
+
content: "\f065";
|
479 |
+
}
|
480 |
+
.fa-compress:before {
|
481 |
+
content: "\f066";
|
482 |
+
}
|
483 |
+
.fa-plus:before {
|
484 |
+
content: "\f067";
|
485 |
+
}
|
486 |
+
.fa-minus:before {
|
487 |
+
content: "\f068";
|
488 |
+
}
|
489 |
+
.fa-asterisk:before {
|
490 |
+
content: "\f069";
|
491 |
+
}
|
492 |
+
.fa-exclamation-circle:before {
|
493 |
+
content: "\f06a";
|
494 |
+
}
|
495 |
+
.fa-gift:before {
|
496 |
+
content: "\f06b";
|
497 |
+
}
|
498 |
+
.fa-leaf:before {
|
499 |
+
content: "\f06c";
|
500 |
+
}
|
501 |
+
.fa-fire:before {
|
502 |
+
content: "\f06d";
|
503 |
+
}
|
504 |
+
.fa-eye:before {
|
505 |
+
content: "\f06e";
|
506 |
+
}
|
507 |
+
.fa-eye-slash:before {
|
508 |
+
content: "\f070";
|
509 |
+
}
|
510 |
+
.fa-warning:before,
|
511 |
+
.fa-exclamation-triangle:before {
|
512 |
+
content: "\f071";
|
513 |
+
}
|
514 |
+
.fa-plane:before {
|
515 |
+
content: "\f072";
|
516 |
+
}
|
517 |
+
.fa-calendar:before {
|
518 |
+
content: "\f073";
|
519 |
+
}
|
520 |
+
.fa-random:before {
|
521 |
+
content: "\f074";
|
522 |
+
}
|
523 |
+
.fa-comment:before {
|
524 |
+
content: "\f075";
|
525 |
+
}
|
526 |
+
.fa-magnet:before {
|
527 |
+
content: "\f076";
|
528 |
+
}
|
529 |
+
.fa-chevron-up:before {
|
530 |
+
content: "\f077";
|
531 |
+
}
|
532 |
+
.fa-chevron-down:before {
|
533 |
+
content: "\f078";
|
534 |
+
}
|
535 |
+
.fa-retweet:before {
|
536 |
+
content: "\f079";
|
537 |
+
}
|
538 |
+
.fa-shopping-cart:before {
|
539 |
+
content: "\f07a";
|
540 |
+
}
|
541 |
+
.fa-folder:before {
|
542 |
+
content: "\f07b";
|
543 |
+
}
|
544 |
+
.fa-folder-open:before {
|
545 |
+
content: "\f07c";
|
546 |
+
}
|
547 |
+
.fa-arrows-v:before {
|
548 |
+
content: "\f07d";
|
549 |
+
}
|
550 |
+
.fa-arrows-h:before {
|
551 |
+
content: "\f07e";
|
552 |
+
}
|
553 |
+
.fa-bar-chart-o:before,
|
554 |
+
.fa-bar-chart:before {
|
555 |
+
content: "\f080";
|
556 |
+
}
|
557 |
+
.fa-twitter-square:before {
|
558 |
+
content: "\f081";
|
559 |
+
}
|
560 |
+
.fa-facebook-square:before {
|
561 |
+
content: "\f082";
|
562 |
+
}
|
563 |
+
.fa-camera-retro:before {
|
564 |
+
content: "\f083";
|
565 |
+
}
|
566 |
+
.fa-key:before {
|
567 |
+
content: "\f084";
|
568 |
+
}
|
569 |
+
.fa-gears:before,
|
570 |
+
.fa-cogs:before {
|
571 |
+
content: "\f085";
|
572 |
+
}
|
573 |
+
.fa-comments:before {
|
574 |
+
content: "\f086";
|
575 |
+
}
|
576 |
+
.fa-thumbs-o-up:before {
|
577 |
+
content: "\f087";
|
578 |
+
}
|
579 |
+
.fa-thumbs-o-down:before {
|
580 |
+
content: "\f088";
|
581 |
+
}
|
582 |
+
.fa-star-half:before {
|
583 |
+
content: "\f089";
|
584 |
+
}
|
585 |
+
.fa-heart-o:before {
|
586 |
+
content: "\f08a";
|
587 |
+
}
|
588 |
+
.fa-sign-out:before {
|
589 |
+
content: "\f08b";
|
590 |
+
}
|
591 |
+
.fa-linkedin-square:before {
|
592 |
+
content: "\f08c";
|
593 |
+
}
|
594 |
+
.fa-thumb-tack:before {
|
595 |
+
content: "\f08d";
|
596 |
+
}
|
597 |
+
.fa-external-link:before {
|
598 |
+
content: "\f08e";
|
599 |
+
}
|
600 |
+
.fa-sign-in:before {
|
601 |
+
content: "\f090";
|
602 |
+
}
|
603 |
+
.fa-trophy:before {
|
604 |
+
content: "\f091";
|
605 |
+
}
|
606 |
+
.fa-github-square:before {
|
607 |
+
content: "\f092";
|
608 |
+
}
|
609 |
+
.fa-upload:before {
|
610 |
+
content: "\f093";
|
611 |
+
}
|
612 |
+
.fa-lemon-o:before {
|
613 |
+
content: "\f094";
|
614 |
+
}
|
615 |
+
.fa-phone:before {
|
616 |
+
content: "\f095";
|
617 |
+
}
|
618 |
+
.fa-square-o:before {
|
619 |
+
content: "\f096";
|
620 |
+
}
|
621 |
+
.fa-bookmark-o:before {
|
622 |
+
content: "\f097";
|
623 |
+
}
|
624 |
+
.fa-phone-square:before {
|
625 |
+
content: "\f098";
|
626 |
+
}
|
627 |
+
.fa-twitter:before {
|
628 |
+
content: "\f099";
|
629 |
+
}
|
630 |
+
.fa-facebook-f:before,
|
631 |
+
.fa-facebook:before {
|
632 |
+
content: "\f09a";
|
633 |
+
}
|
634 |
+
.fa-github:before {
|
635 |
+
content: "\f09b";
|
636 |
+
}
|
637 |
+
.fa-unlock:before {
|
638 |
+
content: "\f09c";
|
639 |
+
}
|
640 |
+
.fa-credit-card:before {
|
641 |
+
content: "\f09d";
|
642 |
+
}
|
643 |
+
.fa-feed:before,
|
644 |
+
.fa-rss:before {
|
645 |
+
content: "\f09e";
|
646 |
+
}
|
647 |
+
.fa-hdd-o:before {
|
648 |
+
content: "\f0a0";
|
649 |
+
}
|
650 |
+
.fa-bullhorn:before {
|
651 |
+
content: "\f0a1";
|
652 |
+
}
|
653 |
+
.fa-bell:before {
|
654 |
+
content: "\f0f3";
|
655 |
+
}
|
656 |
+
.fa-certificate:before {
|
657 |
+
content: "\f0a3";
|
658 |
+
}
|
659 |
+
.fa-hand-o-right:before {
|
660 |
+
content: "\f0a4";
|
661 |
+
}
|
662 |
+
.fa-hand-o-left:before {
|
663 |
+
content: "\f0a5";
|
664 |
+
}
|
665 |
+
.fa-hand-o-up:before {
|
666 |
+
content: "\f0a6";
|
667 |
+
}
|
668 |
+
.fa-hand-o-down:before {
|
669 |
+
content: "\f0a7";
|
670 |
+
}
|
671 |
+
.fa-arrow-circle-left:before {
|
672 |
+
content: "\f0a8";
|
673 |
+
}
|
674 |
+
.fa-arrow-circle-right:before {
|
675 |
+
content: "\f0a9";
|
676 |
+
}
|
677 |
+
.fa-arrow-circle-up:before {
|
678 |
+
content: "\f0aa";
|
679 |
+
}
|
680 |
+
.fa-arrow-circle-down:before {
|
681 |
+
content: "\f0ab";
|
682 |
+
}
|
683 |
+
.fa-globe:before {
|
684 |
+
content: "\f0ac";
|
685 |
+
}
|
686 |
+
.fa-wrench:before {
|
687 |
+
content: "\f0ad";
|
688 |
+
}
|
689 |
+
.fa-tasks:before {
|
690 |
+
content: "\f0ae";
|
691 |
+
}
|
692 |
+
.fa-filter:before {
|
693 |
+
content: "\f0b0";
|
694 |
+
}
|
695 |
+
.fa-briefcase:before {
|
696 |
+
content: "\f0b1";
|
697 |
+
}
|
698 |
+
.fa-arrows-alt:before {
|
699 |
+
content: "\f0b2";
|
700 |
+
}
|
701 |
+
.fa-group:before,
|
702 |
+
.fa-users:before {
|
703 |
+
content: "\f0c0";
|
704 |
+
}
|
705 |
+
.fa-chain:before,
|
706 |
+
.fa-link:before {
|
707 |
+
content: "\f0c1";
|
708 |
+
}
|
709 |
+
.fa-cloud:before {
|
710 |
+
content: "\f0c2";
|
711 |
+
}
|
712 |
+
.fa-flask:before {
|
713 |
+
content: "\f0c3";
|
714 |
+
}
|
715 |
+
.fa-cut:before,
|
716 |
+
.fa-scissors:before {
|
717 |
+
content: "\f0c4";
|
718 |
+
}
|
719 |
+
.fa-copy:before,
|
720 |
+
.fa-files-o:before {
|
721 |
+
content: "\f0c5";
|
722 |
+
}
|
723 |
+
.fa-paperclip:before {
|
724 |
+
content: "\f0c6";
|
725 |
+
}
|
726 |
+
.fa-save:before,
|
727 |
+
.fa-floppy-o:before {
|
728 |
+
content: "\f0c7";
|
729 |
+
}
|
730 |
+
.fa-square:before {
|
731 |
+
content: "\f0c8";
|
732 |
+
}
|
733 |
+
.fa-navicon:before,
|
734 |
+
.fa-reorder:before,
|
735 |
+
.fa-bars:before {
|
736 |
+
content: "\f0c9";
|
737 |
+
}
|
738 |
+
.fa-list-ul:before {
|
739 |
+
content: "\f0ca";
|
740 |
+
}
|
741 |
+
.fa-list-ol:before {
|
742 |
+
content: "\f0cb";
|
743 |
+
}
|
744 |
+
.fa-strikethrough:before {
|
745 |
+
content: "\f0cc";
|
746 |
+
}
|
747 |
+
.fa-underline:before {
|
748 |
+
content: "\f0cd";
|
749 |
+
}
|
750 |
+
.fa-table:before {
|
751 |
+
content: "\f0ce";
|
752 |
+
}
|
753 |
+
.fa-magic:before {
|
754 |
+
content: "\f0d0";
|
755 |
+
}
|
756 |
+
.fa-truck:before {
|
757 |
+
content: "\f0d1";
|
758 |
+
}
|
759 |
+
.fa-pinterest:before {
|
760 |
+
content: "\f0d2";
|
761 |
+
}
|
762 |
+
.fa-pinterest-square:before {
|
763 |
+
content: "\f0d3";
|
764 |
+
}
|
765 |
+
.fa-google-plus-square:before {
|
766 |
+
content: "\f0d4";
|
767 |
+
}
|
768 |
+
.fa-google-plus:before {
|
769 |
+
content: "\f0d5";
|
770 |
+
}
|
771 |
+
.fa-money:before {
|
772 |
+
content: "\f0d6";
|
773 |
+
}
|
774 |
+
.fa-caret-down:before {
|
775 |
+
content: "\f0d7";
|
776 |
+
}
|
777 |
+
.fa-caret-up:before {
|
778 |
+
content: "\f0d8";
|
779 |
+
}
|
780 |
+
.fa-caret-left:before {
|
781 |
+
content: "\f0d9";
|
782 |
+
}
|
783 |
+
.fa-caret-right:before {
|
784 |
+
content: "\f0da";
|
785 |
+
}
|
786 |
+
.fa-columns:before {
|
787 |
+
content: "\f0db";
|
788 |
+
}
|
789 |
+
.fa-unsorted:before,
|
790 |
+
.fa-sort:before {
|
791 |
+
content: "\f0dc";
|
792 |
+
}
|
793 |
+
.fa-sort-down:before,
|
794 |
+
.fa-sort-desc:before {
|
795 |
+
content: "\f0dd";
|
796 |
+
}
|
797 |
+
.fa-sort-up:before,
|
798 |
+
.fa-sort-asc:before {
|
799 |
+
content: "\f0de";
|
800 |
+
}
|
801 |
+
.fa-envelope:before {
|
802 |
+
content: "\f0e0";
|
803 |
+
}
|
804 |
+
.fa-linkedin:before {
|
805 |
+
content: "\f0e1";
|
806 |
+
}
|
807 |
+
.fa-rotate-left:before,
|
808 |
+
.fa-undo:before {
|
809 |
+
content: "\f0e2";
|
810 |
+
}
|
811 |
+
.fa-legal:before,
|
812 |
+
.fa-gavel:before {
|
813 |
+
content: "\f0e3";
|
814 |
+
}
|
815 |
+
.fa-dashboard:before,
|
816 |
+
.fa-tachometer:before {
|
817 |
+
content: "\f0e4";
|
818 |
+
}
|
819 |
+
.fa-comment-o:before {
|
820 |
+
content: "\f0e5";
|
821 |
+
}
|
822 |
+
.fa-comments-o:before {
|
823 |
+
content: "\f0e6";
|
824 |
+
}
|
825 |
+
.fa-flash:before,
|
826 |
+
.fa-bolt:before {
|
827 |
+
content: "\f0e7";
|
828 |
+
}
|
829 |
+
.fa-sitemap:before {
|
830 |
+
content: "\f0e8";
|
831 |
+
}
|
832 |
+
.fa-umbrella:before {
|
833 |
+
content: "\f0e9";
|
834 |
+
}
|
835 |
+
.fa-paste:before,
|
836 |
+
.fa-clipboard:before {
|
837 |
+
content: "\f0ea";
|
838 |
+
}
|
839 |
+
.fa-lightbulb-o:before {
|
840 |
+
content: "\f0eb";
|
841 |
+
}
|
842 |
+
.fa-exchange:before {
|
843 |
+
content: "\f0ec";
|
844 |
+
}
|
845 |
+
.fa-cloud-download:before {
|
846 |
+
content: "\f0ed";
|
847 |
+
}
|
848 |
+
.fa-cloud-upload:before {
|
849 |
+
content: "\f0ee";
|
850 |
+
}
|
851 |
+
.fa-user-md:before {
|
852 |
+
content: "\f0f0";
|
853 |
+
}
|
854 |
+
.fa-stethoscope:before {
|
855 |
+
content: "\f0f1";
|
856 |
+
}
|
857 |
+
.fa-suitcase:before {
|
858 |
+
content: "\f0f2";
|
859 |
+
}
|
860 |
+
.fa-bell-o:before {
|
861 |
+
content: "\f0a2";
|
862 |
+
}
|
863 |
+
.fa-coffee:before {
|
864 |
+
content: "\f0f4";
|
865 |
+
}
|
866 |
+
.fa-cutlery:before {
|
867 |
+
content: "\f0f5";
|
868 |
+
}
|
869 |
+
.fa-file-text-o:before {
|
870 |
+
content: "\f0f6";
|
871 |
+
}
|
872 |
+
.fa-building-o:before {
|
873 |
+
content: "\f0f7";
|
874 |
+
}
|
875 |
+
.fa-hospital-o:before {
|
876 |
+
content: "\f0f8";
|
877 |
+
}
|
878 |
+
.fa-ambulance:before {
|
879 |
+
content: "\f0f9";
|
880 |
+
}
|
881 |
+
.fa-medkit:before {
|
882 |
+
content: "\f0fa";
|
883 |
+
}
|
884 |
+
.fa-fighter-jet:before {
|
885 |
+
content: "\f0fb";
|
886 |
+
}
|
887 |
+
.fa-beer:before {
|
888 |
+
content: "\f0fc";
|
889 |
+
}
|
890 |
+
.fa-h-square:before {
|
891 |
+
content: "\f0fd";
|
892 |
+
}
|
893 |
+
.fa-plus-square:before {
|
894 |
+
content: "\f0fe";
|
895 |
+
}
|
896 |
+
.fa-angle-double-left:before {
|
897 |
+
content: "\f100";
|
898 |
+
}
|
899 |
+
.fa-angle-double-right:before {
|
900 |
+
content: "\f101";
|
901 |
+
}
|
902 |
+
.fa-angle-double-up:before {
|
903 |
+
content: "\f102";
|
904 |
+
}
|
905 |
+
.fa-angle-double-down:before {
|
906 |
+
content: "\f103";
|
907 |
+
}
|
908 |
+
.fa-angle-left:before {
|
909 |
+
content: "\f104";
|
910 |
+
}
|
911 |
+
.fa-angle-right:before {
|
912 |
+
content: "\f105";
|
913 |
+
}
|
914 |
+
.fa-angle-up:before {
|
915 |
+
content: "\f106";
|
916 |
+
}
|
917 |
+
.fa-angle-down:before {
|
918 |
+
content: "\f107";
|
919 |
+
}
|
920 |
+
.fa-desktop:before {
|
921 |
+
content: "\f108";
|
922 |
+
}
|
923 |
+
.fa-laptop:before {
|
924 |
+
content: "\f109";
|
925 |
+
}
|
926 |
+
.fa-tablet:before {
|
927 |
+
content: "\f10a";
|
928 |
+
}
|
929 |
+
.fa-mobile-phone:before,
|
930 |
+
.fa-mobile:before {
|
931 |
+
content: "\f10b";
|
932 |
+
}
|
933 |
+
.fa-circle-o:before {
|
934 |
+
content: "\f10c";
|
935 |
+
}
|
936 |
+
.fa-quote-left:before {
|
937 |
+
content: "\f10d";
|
938 |
+
}
|
939 |
+
.fa-quote-right:before {
|
940 |
+
content: "\f10e";
|
941 |
+
}
|
942 |
+
.fa-spinner:before {
|
943 |
+
content: "\f110";
|
944 |
+
}
|
945 |
+
.fa-circle:before {
|
946 |
+
content: "\f111";
|
947 |
+
}
|
948 |
+
.fa-mail-reply:before,
|
949 |
+
.fa-reply:before {
|
950 |
+
content: "\f112";
|
951 |
+
}
|
952 |
+
.fa-github-alt:before {
|
953 |
+
content: "\f113";
|
954 |
+
}
|
955 |
+
.fa-folder-o:before {
|
956 |
+
content: "\f114";
|
957 |
+
}
|
958 |
+
.fa-folder-open-o:before {
|
959 |
+
content: "\f115";
|
960 |
+
}
|
961 |
+
.fa-smile-o:before {
|
962 |
+
content: "\f118";
|
963 |
+
}
|
964 |
+
.fa-frown-o:before {
|
965 |
+
content: "\f119";
|
966 |
+
}
|
967 |
+
.fa-meh-o:before {
|
968 |
+
content: "\f11a";
|
969 |
+
}
|
970 |
+
.fa-gamepad:before {
|
971 |
+
content: "\f11b";
|
972 |
+
}
|
973 |
+
.fa-keyboard-o:before {
|
974 |
+
content: "\f11c";
|
975 |
+
}
|
976 |
+
.fa-flag-o:before {
|
977 |
+
content: "\f11d";
|
978 |
+
}
|
979 |
+
.fa-flag-checkered:before {
|
980 |
+
content: "\f11e";
|
981 |
+
}
|
982 |
+
.fa-terminal:before {
|
983 |
+
content: "\f120";
|
984 |
+
}
|
985 |
+
.fa-code:before {
|
986 |
+
content: "\f121";
|
987 |
+
}
|
988 |
+
.fa-mail-reply-all:before,
|
989 |
+
.fa-reply-all:before {
|
990 |
+
content: "\f122";
|
991 |
+
}
|
992 |
+
.fa-star-half-empty:before,
|
993 |
+
.fa-star-half-full:before,
|
994 |
+
.fa-star-half-o:before {
|
995 |
+
content: "\f123";
|
996 |
+
}
|
997 |
+
.fa-location-arrow:before {
|
998 |
+
content: "\f124";
|
999 |
+
}
|
1000 |
+
.fa-crop:before {
|
1001 |
+
content: "\f125";
|
1002 |
+
}
|
1003 |
+
.fa-code-fork:before {
|
1004 |
+
content: "\f126";
|
1005 |
+
}
|
1006 |
+
.fa-unlink:before,
|
1007 |
+
.fa-chain-broken:before {
|
1008 |
+
content: "\f127";
|
1009 |
+
}
|
1010 |
+
.fa-question:before {
|
1011 |
+
content: "\f128";
|
1012 |
+
}
|
1013 |
+
.fa-info:before {
|
1014 |
+
content: "\f129";
|
1015 |
+
}
|
1016 |
+
.fa-exclamation:before {
|
1017 |
+
content: "\f12a";
|
1018 |
+
}
|
1019 |
+
.fa-superscript:before {
|
1020 |
+
content: "\f12b";
|
1021 |
+
}
|
1022 |
+
.fa-subscript:before {
|
1023 |
+
content: "\f12c";
|
1024 |
+
}
|
1025 |
+
.fa-eraser:before {
|
1026 |
+
content: "\f12d";
|
1027 |
+
}
|
1028 |
+
.fa-puzzle-piece:before {
|
1029 |
+
content: "\f12e";
|
1030 |
+
}
|
1031 |
+
.fa-microphone:before {
|
1032 |
+
content: "\f130";
|
1033 |
+
}
|
1034 |
+
.fa-microphone-slash:before {
|
1035 |
+
content: "\f131";
|
1036 |
+
}
|
1037 |
+
.fa-shield:before {
|
1038 |
+
content: "\f132";
|
1039 |
+
}
|
1040 |
+
.fa-calendar-o:before {
|
1041 |
+
content: "\f133";
|
1042 |
+
}
|
1043 |
+
.fa-fire-extinguisher:before {
|
1044 |
+
content: "\f134";
|
1045 |
+
}
|
1046 |
+
.fa-rocket:before {
|
1047 |
+
content: "\f135";
|
1048 |
+
}
|
1049 |
+
.fa-maxcdn:before {
|
1050 |
+
content: "\f136";
|
1051 |
+
}
|
1052 |
+
.fa-chevron-circle-left:before {
|
1053 |
+
content: "\f137";
|
1054 |
+
}
|
1055 |
+
.fa-chevron-circle-right:before {
|
1056 |
+
content: "\f138";
|
1057 |
+
}
|
1058 |
+
.fa-chevron-circle-up:before {
|
1059 |
+
content: "\f139";
|
1060 |
+
}
|
1061 |
+
.fa-chevron-circle-down:before {
|
1062 |
+
content: "\f13a";
|
1063 |
+
}
|
1064 |
+
.fa-html5:before {
|
1065 |
+
content: "\f13b";
|
1066 |
+
}
|
1067 |
+
.fa-css3:before {
|
1068 |
+
content: "\f13c";
|
1069 |
+
}
|
1070 |
+
.fa-anchor:before {
|
1071 |
+
content: "\f13d";
|
1072 |
+
}
|
1073 |
+
.fa-unlock-alt:before {
|
1074 |
+
content: "\f13e";
|
1075 |
+
}
|
1076 |
+
.fa-bullseye:before {
|
1077 |
+
content: "\f140";
|
1078 |
+
}
|
1079 |
+
.fa-ellipsis-h:before {
|
1080 |
+
content: "\f141";
|
1081 |
+
}
|
1082 |
+
.fa-ellipsis-v:before {
|
1083 |
+
content: "\f142";
|
1084 |
+
}
|
1085 |
+
.fa-rss-square:before {
|
1086 |
+
content: "\f143";
|
1087 |
+
}
|
1088 |
+
.fa-play-circle:before {
|
1089 |
+
content: "\f144";
|
1090 |
+
}
|
1091 |
+
.fa-ticket:before {
|
1092 |
+
content: "\f145";
|
1093 |
+
}
|
1094 |
+
.fa-minus-square:before {
|
1095 |
+
content: "\f146";
|
1096 |
+
}
|
1097 |
+
.fa-minus-square-o:before {
|
1098 |
+
content: "\f147";
|
1099 |
+
}
|
1100 |
+
.fa-level-up:before {
|
1101 |
+
content: "\f148";
|
1102 |
+
}
|
1103 |
+
.fa-level-down:before {
|
1104 |
+
content: "\f149";
|
1105 |
+
}
|
1106 |
+
.fa-check-square:before {
|
1107 |
+
content: "\f14a";
|
1108 |
+
}
|
1109 |
+
.fa-pencil-square:before {
|
1110 |
+
content: "\f14b";
|
1111 |
+
}
|
1112 |
+
.fa-external-link-square:before {
|
1113 |
+
content: "\f14c";
|
1114 |
+
}
|
1115 |
+
.fa-share-square:before {
|
1116 |
+
content: "\f14d";
|
1117 |
+
}
|
1118 |
+
.fa-compass:before {
|
1119 |
+
content: "\f14e";
|
1120 |
+
}
|
1121 |
+
.fa-toggle-down:before,
|
1122 |
+
.fa-caret-square-o-down:before {
|
1123 |
+
content: "\f150";
|
1124 |
+
}
|
1125 |
+
.fa-toggle-up:before,
|
1126 |
+
.fa-caret-square-o-up:before {
|
1127 |
+
content: "\f151";
|
1128 |
+
}
|
1129 |
+
.fa-toggle-right:before,
|
1130 |
+
.fa-caret-square-o-right:before {
|
1131 |
+
content: "\f152";
|
1132 |
+
}
|
1133 |
+
.fa-euro:before,
|
1134 |
+
.fa-eur:before {
|
1135 |
+
content: "\f153";
|
1136 |
+
}
|
1137 |
+
.fa-gbp:before {
|
1138 |
+
content: "\f154";
|
1139 |
+
}
|
1140 |
+
.fa-dollar:before,
|
1141 |
+
.fa-usd:before {
|
1142 |
+
content: "\f155";
|
1143 |
+
}
|
1144 |
+
.fa-rupee:before,
|
1145 |
+
.fa-inr:before {
|
1146 |
+
content: "\f156";
|
1147 |
+
}
|
1148 |
+
.fa-cny:before,
|
1149 |
+
.fa-rmb:before,
|
1150 |
+
.fa-yen:before,
|
1151 |
+
.fa-jpy:before {
|
1152 |
+
content: "\f157";
|
1153 |
+
}
|
1154 |
+
.fa-ruble:before,
|
1155 |
+
.fa-rouble:before,
|
1156 |
+
.fa-rub:before {
|
1157 |
+
content: "\f158";
|
1158 |
+
}
|
1159 |
+
.fa-won:before,
|
1160 |
+
.fa-krw:before {
|
1161 |
+
content: "\f159";
|
1162 |
+
}
|
1163 |
+
.fa-bitcoin:before,
|
1164 |
+
.fa-btc:before {
|
1165 |
+
content: "\f15a";
|
1166 |
+
}
|
1167 |
+
.fa-file:before {
|
1168 |
+
content: "\f15b";
|
1169 |
+
}
|
1170 |
+
.fa-file-text:before {
|
1171 |
+
content: "\f15c";
|
1172 |
+
}
|
1173 |
+
.fa-sort-alpha-asc:before {
|
1174 |
+
content: "\f15d";
|
1175 |
+
}
|
1176 |
+
.fa-sort-alpha-desc:before {
|
1177 |
+
content: "\f15e";
|
1178 |
+
}
|
1179 |
+
.fa-sort-amount-asc:before {
|
1180 |
+
content: "\f160";
|
1181 |
+
}
|
1182 |
+
.fa-sort-amount-desc:before {
|
1183 |
+
content: "\f161";
|
1184 |
+
}
|
1185 |
+
.fa-sort-numeric-asc:before {
|
1186 |
+
content: "\f162";
|
1187 |
+
}
|
1188 |
+
.fa-sort-numeric-desc:before {
|
1189 |
+
content: "\f163";
|
1190 |
+
}
|
1191 |
+
.fa-thumbs-up:before {
|
1192 |
+
content: "\f164";
|
1193 |
+
}
|
1194 |
+
.fa-thumbs-down:before {
|
1195 |
+
content: "\f165";
|
1196 |
+
}
|
1197 |
+
.fa-youtube-square:before {
|
1198 |
+
content: "\f166";
|
1199 |
+
}
|
1200 |
+
.fa-youtube:before {
|
1201 |
+
content: "\f167";
|
1202 |
+
}
|
1203 |
+
.fa-xing:before {
|
1204 |
+
content: "\f168";
|
1205 |
+
}
|
1206 |
+
.fa-xing-square:before {
|
1207 |
+
content: "\f169";
|
1208 |
+
}
|
1209 |
+
.fa-youtube-play:before {
|
1210 |
+
content: "\f16a";
|
1211 |
+
}
|
1212 |
+
.fa-dropbox:before {
|
1213 |
+
content: "\f16b";
|
1214 |
+
}
|
1215 |
+
.fa-stack-overflow:before {
|
1216 |
+
content: "\f16c";
|
1217 |
+
}
|
1218 |
+
.fa-instagram:before {
|
1219 |
+
content: "\f16d";
|
1220 |
+
}
|
1221 |
+
.fa-flickr:before {
|
1222 |
+
content: "\f16e";
|
1223 |
+
}
|
1224 |
+
.fa-adn:before {
|
1225 |
+
content: "\f170";
|
1226 |
+
}
|
1227 |
+
.fa-bitbucket:before {
|
1228 |
+
content: "\f171";
|
1229 |
+
}
|
1230 |
+
.fa-bitbucket-square:before {
|
1231 |
+
content: "\f172";
|
1232 |
+
}
|
1233 |
+
.fa-tumblr:before {
|
1234 |
+
content: "\f173";
|
1235 |
+
}
|
1236 |
+
.fa-tumblr-square:before {
|
1237 |
+
content: "\f174";
|
1238 |
+
}
|
1239 |
+
.fa-long-arrow-down:before {
|
1240 |
+
content: "\f175";
|
1241 |
+
}
|
1242 |
+
.fa-long-arrow-up:before {
|
1243 |
+
content: "\f176";
|
1244 |
+
}
|
1245 |
+
.fa-long-arrow-left:before {
|
1246 |
+
content: "\f177";
|
1247 |
+
}
|
1248 |
+
.fa-long-arrow-right:before {
|
1249 |
+
content: "\f178";
|
1250 |
+
}
|
1251 |
+
.fa-apple:before {
|
1252 |
+
content: "\f179";
|
1253 |
+
}
|
1254 |
+
.fa-windows:before {
|
1255 |
+
content: "\f17a";
|
1256 |
+
}
|
1257 |
+
.fa-android:before {
|
1258 |
+
content: "\f17b";
|
1259 |
+
}
|
1260 |
+
.fa-linux:before {
|
1261 |
+
content: "\f17c";
|
1262 |
+
}
|
1263 |
+
.fa-dribbble:before {
|
1264 |
+
content: "\f17d";
|
1265 |
+
}
|
1266 |
+
.fa-skype:before {
|
1267 |
+
content: "\f17e";
|
1268 |
+
}
|
1269 |
+
.fa-foursquare:before {
|
1270 |
+
content: "\f180";
|
1271 |
+
}
|
1272 |
+
.fa-trello:before {
|
1273 |
+
content: "\f181";
|
1274 |
+
}
|
1275 |
+
.fa-female:before {
|
1276 |
+
content: "\f182";
|
1277 |
+
}
|
1278 |
+
.fa-male:before {
|
1279 |
+
content: "\f183";
|
1280 |
+
}
|
1281 |
+
.fa-gittip:before,
|
1282 |
+
.fa-gratipay:before {
|
1283 |
+
content: "\f184";
|
1284 |
+
}
|
1285 |
+
.fa-sun-o:before {
|
1286 |
+
content: "\f185";
|
1287 |
+
}
|
1288 |
+
.fa-moon-o:before {
|
1289 |
+
content: "\f186";
|
1290 |
+
}
|
1291 |
+
.fa-archive:before {
|
1292 |
+
content: "\f187";
|
1293 |
+
}
|
1294 |
+
.fa-bug:before {
|
1295 |
+
content: "\f188";
|
1296 |
+
}
|
1297 |
+
.fa-vk:before {
|
1298 |
+
content: "\f189";
|
1299 |
+
}
|
1300 |
+
.fa-weibo:before {
|
1301 |
+
content: "\f18a";
|
1302 |
+
}
|
1303 |
+
.fa-renren:before {
|
1304 |
+
content: "\f18b";
|
1305 |
+
}
|
1306 |
+
.fa-pagelines:before {
|
1307 |
+
content: "\f18c";
|
1308 |
+
}
|
1309 |
+
.fa-stack-exchange:before {
|
1310 |
+
content: "\f18d";
|
1311 |
+
}
|
1312 |
+
.fa-arrow-circle-o-right:before {
|
1313 |
+
content: "\f18e";
|
1314 |
+
}
|
1315 |
+
.fa-arrow-circle-o-left:before {
|
1316 |
+
content: "\f190";
|
1317 |
+
}
|
1318 |
+
.fa-toggle-left:before,
|
1319 |
+
.fa-caret-square-o-left:before {
|
1320 |
+
content: "\f191";
|
1321 |
+
}
|
1322 |
+
.fa-dot-circle-o:before {
|
1323 |
+
content: "\f192";
|
1324 |
+
}
|
1325 |
+
.fa-wheelchair:before {
|
1326 |
+
content: "\f193";
|
1327 |
+
}
|
1328 |
+
.fa-vimeo-square:before {
|
1329 |
+
content: "\f194";
|
1330 |
+
}
|
1331 |
+
.fa-turkish-lira:before,
|
1332 |
+
.fa-try:before {
|
1333 |
+
content: "\f195";
|
1334 |
+
}
|
1335 |
+
.fa-plus-square-o:before {
|
1336 |
+
content: "\f196";
|
1337 |
+
}
|
1338 |
+
.fa-space-shuttle:before {
|
1339 |
+
content: "\f197";
|
1340 |
+
}
|
1341 |
+
.fa-slack:before {
|
1342 |
+
content: "\f198";
|
1343 |
+
}
|
1344 |
+
.fa-envelope-square:before {
|
1345 |
+
content: "\f199";
|
1346 |
+
}
|
1347 |
+
.fa-wordpress:before {
|
1348 |
+
content: "\f19a";
|
1349 |
+
}
|
1350 |
+
.fa-openid:before {
|
1351 |
+
content: "\f19b";
|
1352 |
+
}
|
1353 |
+
.fa-institution:before,
|
1354 |
+
.fa-bank:before,
|
1355 |
+
.fa-university:before {
|
1356 |
+
content: "\f19c";
|
1357 |
+
}
|
1358 |
+
.fa-mortar-board:before,
|
1359 |
+
.fa-graduation-cap:before {
|
1360 |
+
content: "\f19d";
|
1361 |
+
}
|
1362 |
+
.fa-yahoo:before {
|
1363 |
+
content: "\f19e";
|
1364 |
+
}
|
1365 |
+
.fa-google:before {
|
1366 |
+
content: "\f1a0";
|
1367 |
+
}
|
1368 |
+
.fa-reddit:before {
|
1369 |
+
content: "\f1a1";
|
1370 |
+
}
|
1371 |
+
.fa-reddit-square:before {
|
1372 |
+
content: "\f1a2";
|
1373 |
+
}
|
1374 |
+
.fa-stumbleupon-circle:before {
|
1375 |
+
content: "\f1a3";
|
1376 |
+
}
|
1377 |
+
.fa-stumbleupon:before {
|
1378 |
+
content: "\f1a4";
|
1379 |
+
}
|
1380 |
+
.fa-delicious:before {
|
1381 |
+
content: "\f1a5";
|
1382 |
+
}
|
1383 |
+
.fa-digg:before {
|
1384 |
+
content: "\f1a6";
|
1385 |
+
}
|
1386 |
+
.fa-pied-piper-pp:before {
|
1387 |
+
content: "\f1a7";
|
1388 |
+
}
|
1389 |
+
.fa-pied-piper-alt:before {
|
1390 |
+
content: "\f1a8";
|
1391 |
+
}
|
1392 |
+
.fa-drupal:before {
|
1393 |
+
content: "\f1a9";
|
1394 |
+
}
|
1395 |
+
.fa-joomla:before {
|
1396 |
+
content: "\f1aa";
|
1397 |
+
}
|
1398 |
+
.fa-language:before {
|
1399 |
+
content: "\f1ab";
|
1400 |
+
}
|
1401 |
+
.fa-fax:before {
|
1402 |
+
content: "\f1ac";
|
1403 |
+
}
|
1404 |
+
.fa-building:before {
|
1405 |
+
content: "\f1ad";
|
1406 |
+
}
|
1407 |
+
.fa-child:before {
|
1408 |
+
content: "\f1ae";
|
1409 |
+
}
|
1410 |
+
.fa-paw:before {
|
1411 |
+
content: "\f1b0";
|
1412 |
+
}
|
1413 |
+
.fa-spoon:before {
|
1414 |
+
content: "\f1b1";
|
1415 |
+
}
|
1416 |
+
.fa-cube:before {
|
1417 |
+
content: "\f1b2";
|
1418 |
+
}
|
1419 |
+
.fa-cubes:before {
|
1420 |
+
content: "\f1b3";
|
1421 |
+
}
|
1422 |
+
.fa-behance:before {
|
1423 |
+
content: "\f1b4";
|
1424 |
+
}
|
1425 |
+
.fa-behance-square:before {
|
1426 |
+
content: "\f1b5";
|
1427 |
+
}
|
1428 |
+
.fa-steam:before {
|
1429 |
+
content: "\f1b6";
|
1430 |
+
}
|
1431 |
+
.fa-steam-square:before {
|
1432 |
+
content: "\f1b7";
|
1433 |
+
}
|
1434 |
+
.fa-recycle:before {
|
1435 |
+
content: "\f1b8";
|
1436 |
+
}
|
1437 |
+
.fa-automobile:before,
|
1438 |
+
.fa-car:before {
|
1439 |
+
content: "\f1b9";
|
1440 |
+
}
|
1441 |
+
.fa-cab:before,
|
1442 |
+
.fa-taxi:before {
|
1443 |
+
content: "\f1ba";
|
1444 |
+
}
|
1445 |
+
.fa-tree:before {
|
1446 |
+
content: "\f1bb";
|
1447 |
+
}
|
1448 |
+
.fa-spotify:before {
|
1449 |
+
content: "\f1bc";
|
1450 |
+
}
|
1451 |
+
.fa-deviantart:before {
|
1452 |
+
content: "\f1bd";
|
1453 |
+
}
|
1454 |
+
.fa-soundcloud:before {
|
1455 |
+
content: "\f1be";
|
1456 |
+
}
|
1457 |
+
.fa-database:before {
|
1458 |
+
content: "\f1c0";
|
1459 |
+
}
|
1460 |
+
.fa-file-pdf-o:before {
|
1461 |
+
content: "\f1c1";
|
1462 |
+
}
|
1463 |
+
.fa-file-word-o:before {
|
1464 |
+
content: "\f1c2";
|
1465 |
+
}
|
1466 |
+
.fa-file-excel-o:before {
|
1467 |
+
content: "\f1c3";
|
1468 |
+
}
|
1469 |
+
.fa-file-powerpoint-o:before {
|
1470 |
+
content: "\f1c4";
|
1471 |
+
}
|
1472 |
+
.fa-file-photo-o:before,
|
1473 |
+
.fa-file-picture-o:before,
|
1474 |
+
.fa-file-image-o:before {
|
1475 |
+
content: "\f1c5";
|
1476 |
+
}
|
1477 |
+
.fa-file-zip-o:before,
|
1478 |
+
.fa-file-archive-o:before {
|
1479 |
+
content: "\f1c6";
|
1480 |
+
}
|
1481 |
+
.fa-file-sound-o:before,
|
1482 |
+
.fa-file-audio-o:before {
|
1483 |
+
content: "\f1c7";
|
1484 |
+
}
|
1485 |
+
.fa-file-movie-o:before,
|
1486 |
+
.fa-file-video-o:before {
|
1487 |
+
content: "\f1c8";
|
1488 |
+
}
|
1489 |
+
.fa-file-code-o:before {
|
1490 |
+
content: "\f1c9";
|
1491 |
+
}
|
1492 |
+
.fa-vine:before {
|
1493 |
+
content: "\f1ca";
|
1494 |
+
}
|
1495 |
+
.fa-codepen:before {
|
1496 |
+
content: "\f1cb";
|
1497 |
+
}
|
1498 |
+
.fa-jsfiddle:before {
|
1499 |
+
content: "\f1cc";
|
1500 |
+
}
|
1501 |
+
.fa-life-bouy:before,
|
1502 |
+
.fa-life-buoy:before,
|
1503 |
+
.fa-life-saver:before,
|
1504 |
+
.fa-support:before,
|
1505 |
+
.fa-life-ring:before {
|
1506 |
+
content: "\f1cd";
|
1507 |
+
}
|
1508 |
+
.fa-circle-o-notch:before {
|
1509 |
+
content: "\f1ce";
|
1510 |
+
}
|
1511 |
+
.fa-ra:before,
|
1512 |
+
.fa-resistance:before,
|
1513 |
+
.fa-rebel:before {
|
1514 |
+
content: "\f1d0";
|
1515 |
+
}
|
1516 |
+
.fa-ge:before,
|
1517 |
+
.fa-empire:before {
|
1518 |
+
content: "\f1d1";
|
1519 |
+
}
|
1520 |
+
.fa-git-square:before {
|
1521 |
+
content: "\f1d2";
|
1522 |
+
}
|
1523 |
+
.fa-git:before {
|
1524 |
+
content: "\f1d3";
|
1525 |
+
}
|
1526 |
+
.fa-y-combinator-square:before,
|
1527 |
+
.fa-yc-square:before,
|
1528 |
+
.fa-hacker-news:before {
|
1529 |
+
content: "\f1d4";
|
1530 |
+
}
|
1531 |
+
.fa-tencent-weibo:before {
|
1532 |
+
content: "\f1d5";
|
1533 |
+
}
|
1534 |
+
.fa-qq:before {
|
1535 |
+
content: "\f1d6";
|
1536 |
+
}
|
1537 |
+
.fa-wechat:before,
|
1538 |
+
.fa-weixin:before {
|
1539 |
+
content: "\f1d7";
|
1540 |
+
}
|
1541 |
+
.fa-send:before,
|
1542 |
+
.fa-paper-plane:before {
|
1543 |
+
content: "\f1d8";
|
1544 |
+
}
|
1545 |
+
.fa-send-o:before,
|
1546 |
+
.fa-paper-plane-o:before {
|
1547 |
+
content: "\f1d9";
|
1548 |
+
}
|
1549 |
+
.fa-history:before {
|
1550 |
+
content: "\f1da";
|
1551 |
+
}
|
1552 |
+
.fa-circle-thin:before {
|
1553 |
+
content: "\f1db";
|
1554 |
+
}
|
1555 |
+
.fa-header:before {
|
1556 |
+
content: "\f1dc";
|
1557 |
+
}
|
1558 |
+
.fa-paragraph:before {
|
1559 |
+
content: "\f1dd";
|
1560 |
+
}
|
1561 |
+
.fa-sliders:before {
|
1562 |
+
content: "\f1de";
|
1563 |
+
}
|
1564 |
+
.fa-share-alt:before {
|
1565 |
+
content: "\f1e0";
|
1566 |
+
}
|
1567 |
+
.fa-share-alt-square:before {
|
1568 |
+
content: "\f1e1";
|
1569 |
+
}
|
1570 |
+
.fa-bomb:before {
|
1571 |
+
content: "\f1e2";
|
1572 |
+
}
|
1573 |
+
.fa-soccer-ball-o:before,
|
1574 |
+
.fa-futbol-o:before {
|
1575 |
+
content: "\f1e3";
|
1576 |
+
}
|
1577 |
+
.fa-tty:before {
|
1578 |
+
content: "\f1e4";
|
1579 |
+
}
|
1580 |
+
.fa-binoculars:before {
|
1581 |
+
content: "\f1e5";
|
1582 |
+
}
|
1583 |
+
.fa-plug:before {
|
1584 |
+
content: "\f1e6";
|
1585 |
+
}
|
1586 |
+
.fa-slideshare:before {
|
1587 |
+
content: "\f1e7";
|
1588 |
+
}
|
1589 |
+
.fa-twitch:before {
|
1590 |
+
content: "\f1e8";
|
1591 |
+
}
|
1592 |
+
.fa-yelp:before {
|
1593 |
+
content: "\f1e9";
|
1594 |
+
}
|
1595 |
+
.fa-newspaper-o:before {
|
1596 |
+
content: "\f1ea";
|
1597 |
+
}
|
1598 |
+
.fa-wifi:before {
|
1599 |
+
content: "\f1eb";
|
1600 |
+
}
|
1601 |
+
.fa-calculator:before {
|
1602 |
+
content: "\f1ec";
|
1603 |
+
}
|
1604 |
+
.fa-paypal:before {
|
1605 |
+
content: "\f1ed";
|
1606 |
+
}
|
1607 |
+
.fa-google-wallet:before {
|
1608 |
+
content: "\f1ee";
|
1609 |
+
}
|
1610 |
+
.fa-cc-visa:before {
|
1611 |
+
content: "\f1f0";
|
1612 |
+
}
|
1613 |
+
.fa-cc-mastercard:before {
|
1614 |
+
content: "\f1f1";
|
1615 |
+
}
|
1616 |
+
.fa-cc-discover:before {
|
1617 |
+
content: "\f1f2";
|
1618 |
+
}
|
1619 |
+
.fa-cc-amex:before {
|
1620 |
+
content: "\f1f3";
|
1621 |
+
}
|
1622 |
+
.fa-cc-paypal:before {
|
1623 |
+
content: "\f1f4";
|
1624 |
+
}
|
1625 |
+
.fa-cc-stripe:before {
|
1626 |
+
content: "\f1f5";
|
1627 |
+
}
|
1628 |
+
.fa-bell-slash:before {
|
1629 |
+
content: "\f1f6";
|
1630 |
+
}
|
1631 |
+
.fa-bell-slash-o:before {
|
1632 |
+
content: "\f1f7";
|
1633 |
+
}
|
1634 |
+
.fa-trash:before {
|
1635 |
+
content: "\f1f8";
|
1636 |
+
}
|
1637 |
+
.fa-copyright:before {
|
1638 |
+
content: "\f1f9";
|
1639 |
+
}
|
1640 |
+
.fa-at:before {
|
1641 |
+
content: "\f1fa";
|
1642 |
+
}
|
1643 |
+
.fa-eyedropper:before {
|
1644 |
+
content: "\f1fb";
|
1645 |
+
}
|
1646 |
+
.fa-paint-brush:before {
|
1647 |
+
content: "\f1fc";
|
1648 |
+
}
|
1649 |
+
.fa-birthday-cake:before {
|
1650 |
+
content: "\f1fd";
|
1651 |
+
}
|
1652 |
+
.fa-area-chart:before {
|
1653 |
+
content: "\f1fe";
|
1654 |
+
}
|
1655 |
+
.fa-pie-chart:before {
|
1656 |
+
content: "\f200";
|
1657 |
+
}
|
1658 |
+
.fa-line-chart:before {
|
1659 |
+
content: "\f201";
|
1660 |
+
}
|
1661 |
+
.fa-lastfm:before {
|
1662 |
+
content: "\f202";
|
1663 |
+
}
|
1664 |
+
.fa-lastfm-square:before {
|
1665 |
+
content: "\f203";
|
1666 |
+
}
|
1667 |
+
.fa-toggle-off:before {
|
1668 |
+
content: "\f204";
|
1669 |
+
}
|
1670 |
+
.fa-toggle-on:before {
|
1671 |
+
content: "\f205";
|
1672 |
+
}
|
1673 |
+
.fa-bicycle:before {
|
1674 |
+
content: "\f206";
|
1675 |
+
}
|
1676 |
+
.fa-bus:before {
|
1677 |
+
content: "\f207";
|
1678 |
+
}
|
1679 |
+
.fa-ioxhost:before {
|
1680 |
+
content: "\f208";
|
1681 |
+
}
|
1682 |
+
.fa-angellist:before {
|
1683 |
+
content: "\f209";
|
1684 |
+
}
|
1685 |
+
.fa-cc:before {
|
1686 |
+
content: "\f20a";
|
1687 |
+
}
|
1688 |
+
.fa-shekel:before,
|
1689 |
+
.fa-sheqel:before,
|
1690 |
+
.fa-ils:before {
|
1691 |
+
content: "\f20b";
|
1692 |
+
}
|
1693 |
+
.fa-meanpath:before {
|
1694 |
+
content: "\f20c";
|
1695 |
+
}
|
1696 |
+
.fa-buysellads:before {
|
1697 |
+
content: "\f20d";
|
1698 |
+
}
|
1699 |
+
.fa-connectdevelop:before {
|
1700 |
+
content: "\f20e";
|
1701 |
+
}
|
1702 |
+
.fa-dashcube:before {
|
1703 |
+
content: "\f210";
|
1704 |
+
}
|
1705 |
+
.fa-forumbee:before {
|
1706 |
+
content: "\f211";
|
1707 |
+
}
|
1708 |
+
.fa-leanpub:before {
|
1709 |
+
content: "\f212";
|
1710 |
+
}
|
1711 |
+
.fa-sellsy:before {
|
1712 |
+
content: "\f213";
|
1713 |
+
}
|
1714 |
+
.fa-shirtsinbulk:before {
|
1715 |
+
content: "\f214";
|
1716 |
+
}
|
1717 |
+
.fa-simplybuilt:before {
|
1718 |
+
content: "\f215";
|
1719 |
+
}
|
1720 |
+
.fa-skyatlas:before {
|
1721 |
+
content: "\f216";
|
1722 |
+
}
|
1723 |
+
.fa-cart-plus:before {
|
1724 |
+
content: "\f217";
|
1725 |
+
}
|
1726 |
+
.fa-cart-arrow-down:before {
|
1727 |
+
content: "\f218";
|
1728 |
+
}
|
1729 |
+
.fa-diamond:before {
|
1730 |
+
content: "\f219";
|
1731 |
+
}
|
1732 |
+
.fa-ship:before {
|
1733 |
+
content: "\f21a";
|
1734 |
+
}
|
1735 |
+
.fa-user-secret:before {
|
1736 |
+
content: "\f21b";
|
1737 |
+
}
|
1738 |
+
.fa-motorcycle:before {
|
1739 |
+
content: "\f21c";
|
1740 |
+
}
|
1741 |
+
.fa-street-view:before {
|
1742 |
+
content: "\f21d";
|
1743 |
+
}
|
1744 |
+
.fa-heartbeat:before {
|
1745 |
+
content: "\f21e";
|
1746 |
+
}
|
1747 |
+
.fa-venus:before {
|
1748 |
+
content: "\f221";
|
1749 |
+
}
|
1750 |
+
.fa-mars:before {
|
1751 |
+
content: "\f222";
|
1752 |
+
}
|
1753 |
+
.fa-mercury:before {
|
1754 |
+
content: "\f223";
|
1755 |
+
}
|
1756 |
+
.fa-intersex:before,
|
1757 |
+
.fa-transgender:before {
|
1758 |
+
content: "\f224";
|
1759 |
+
}
|
1760 |
+
.fa-transgender-alt:before {
|
1761 |
+
content: "\f225";
|
1762 |
+
}
|
1763 |
+
.fa-venus-double:before {
|
1764 |
+
content: "\f226";
|
1765 |
+
}
|
1766 |
+
.fa-mars-double:before {
|
1767 |
+
content: "\f227";
|
1768 |
+
}
|
1769 |
+
.fa-venus-mars:before {
|
1770 |
+
content: "\f228";
|
1771 |
+
}
|
1772 |
+
.fa-mars-stroke:before {
|
1773 |
+
content: "\f229";
|
1774 |
+
}
|
1775 |
+
.fa-mars-stroke-v:before {
|
1776 |
+
content: "\f22a";
|
1777 |
+
}
|
1778 |
+
.fa-mars-stroke-h:before {
|
1779 |
+
content: "\f22b";
|
1780 |
+
}
|
1781 |
+
.fa-neuter:before {
|
1782 |
+
content: "\f22c";
|
1783 |
+
}
|
1784 |
+
.fa-genderless:before {
|
1785 |
+
content: "\f22d";
|
1786 |
+
}
|
1787 |
+
.fa-facebook-official:before {
|
1788 |
+
content: "\f230";
|
1789 |
+
}
|
1790 |
+
.fa-pinterest-p:before {
|
1791 |
+
content: "\f231";
|
1792 |
+
}
|
1793 |
+
.fa-whatsapp:before {
|
1794 |
+
content: "\f232";
|
1795 |
+
}
|
1796 |
+
.fa-server:before {
|
1797 |
+
content: "\f233";
|
1798 |
+
}
|
1799 |
+
.fa-user-plus:before {
|
1800 |
+
content: "\f234";
|
1801 |
+
}
|
1802 |
+
.fa-user-times:before {
|
1803 |
+
content: "\f235";
|
1804 |
+
}
|
1805 |
+
.fa-hotel:before,
|
1806 |
+
.fa-bed:before {
|
1807 |
+
content: "\f236";
|
1808 |
+
}
|
1809 |
+
.fa-viacoin:before {
|
1810 |
+
content: "\f237";
|
1811 |
+
}
|
1812 |
+
.fa-train:before {
|
1813 |
+
content: "\f238";
|
1814 |
+
}
|
1815 |
+
.fa-subway:before {
|
1816 |
+
content: "\f239";
|
1817 |
+
}
|
1818 |
+
.fa-medium:before {
|
1819 |
+
content: "\f23a";
|
1820 |
+
}
|
1821 |
+
.fa-yc:before,
|
1822 |
+
.fa-y-combinator:before {
|
1823 |
+
content: "\f23b";
|
1824 |
+
}
|
1825 |
+
.fa-optin-monster:before {
|
1826 |
+
content: "\f23c";
|
1827 |
+
}
|
1828 |
+
.fa-opencart:before {
|
1829 |
+
content: "\f23d";
|
1830 |
+
}
|
1831 |
+
.fa-expeditedssl:before {
|
1832 |
+
content: "\f23e";
|
1833 |
+
}
|
1834 |
+
.fa-battery-4:before,
|
1835 |
+
.fa-battery-full:before {
|
1836 |
+
content: "\f240";
|
1837 |
+
}
|
1838 |
+
.fa-battery-3:before,
|
1839 |
+
.fa-battery-three-quarters:before {
|
1840 |
+
content: "\f241";
|
1841 |
+
}
|
1842 |
+
.fa-battery-2:before,
|
1843 |
+
.fa-battery-half:before {
|
1844 |
+
content: "\f242";
|
1845 |
+
}
|
1846 |
+
.fa-battery-1:before,
|
1847 |
+
.fa-battery-quarter:before {
|
1848 |
+
content: "\f243";
|
1849 |
+
}
|
1850 |
+
.fa-battery-0:before,
|
1851 |
+
.fa-battery-empty:before {
|
1852 |
+
content: "\f244";
|
1853 |
+
}
|
1854 |
+
.fa-mouse-pointer:before {
|
1855 |
+
content: "\f245";
|
1856 |
+
}
|
1857 |
+
.fa-i-cursor:before {
|
1858 |
+
content: "\f246";
|
1859 |
+
}
|
1860 |
+
.fa-object-group:before {
|
1861 |
+
content: "\f247";
|
1862 |
+
}
|
1863 |
+
.fa-object-ungroup:before {
|
1864 |
+
content: "\f248";
|
1865 |
+
}
|
1866 |
+
.fa-sticky-note:before {
|
1867 |
+
content: "\f249";
|
1868 |
+
}
|
1869 |
+
.fa-sticky-note-o:before {
|
1870 |
+
content: "\f24a";
|
1871 |
+
}
|
1872 |
+
.fa-cc-jcb:before {
|
1873 |
+
content: "\f24b";
|
1874 |
+
}
|
1875 |
+
.fa-cc-diners-club:before {
|
1876 |
+
content: "\f24c";
|
1877 |
+
}
|
1878 |
+
.fa-clone:before {
|
1879 |
+
content: "\f24d";
|
1880 |
+
}
|
1881 |
+
.fa-balance-scale:before {
|
1882 |
+
content: "\f24e";
|
1883 |
+
}
|
1884 |
+
.fa-hourglass-o:before {
|
1885 |
+
content: "\f250";
|
1886 |
+
}
|
1887 |
+
.fa-hourglass-1:before,
|
1888 |
+
.fa-hourglass-start:before {
|
1889 |
+
content: "\f251";
|
1890 |
+
}
|
1891 |
+
.fa-hourglass-2:before,
|
1892 |
+
.fa-hourglass-half:before {
|
1893 |
+
content: "\f252";
|
1894 |
+
}
|
1895 |
+
.fa-hourglass-3:before,
|
1896 |
+
.fa-hourglass-end:before {
|
1897 |
+
content: "\f253";
|
1898 |
+
}
|
1899 |
+
.fa-hourglass:before {
|
1900 |
+
content: "\f254";
|
1901 |
+
}
|
1902 |
+
.fa-hand-grab-o:before,
|
1903 |
+
.fa-hand-rock-o:before {
|
1904 |
+
content: "\f255";
|
1905 |
+
}
|
1906 |
+
.fa-hand-stop-o:before,
|
1907 |
+
.fa-hand-paper-o:before {
|
1908 |
+
content: "\f256";
|
1909 |
+
}
|
1910 |
+
.fa-hand-scissors-o:before {
|
1911 |
+
content: "\f257";
|
1912 |
+
}
|
1913 |
+
.fa-hand-lizard-o:before {
|
1914 |
+
content: "\f258";
|
1915 |
+
}
|
1916 |
+
.fa-hand-spock-o:before {
|
1917 |
+
content: "\f259";
|
1918 |
+
}
|
1919 |
+
.fa-hand-pointer-o:before {
|
1920 |
+
content: "\f25a";
|
1921 |
+
}
|
1922 |
+
.fa-hand-peace-o:before {
|
1923 |
+
content: "\f25b";
|
1924 |
+
}
|
1925 |
+
.fa-trademark:before {
|
1926 |
+
content: "\f25c";
|
1927 |
+
}
|
1928 |
+
.fa-registered:before {
|
1929 |
+
content: "\f25d";
|
1930 |
+
}
|
1931 |
+
.fa-creative-commons:before {
|
1932 |
+
content: "\f25e";
|
1933 |
+
}
|
1934 |
+
.fa-gg:before {
|
1935 |
+
content: "\f260";
|
1936 |
+
}
|
1937 |
+
.fa-gg-circle:before {
|
1938 |
+
content: "\f261";
|
1939 |
+
}
|
1940 |
+
.fa-tripadvisor:before {
|
1941 |
+
content: "\f262";
|
1942 |
+
}
|
1943 |
+
.fa-odnoklassniki:before {
|
1944 |
+
content: "\f263";
|
1945 |
+
}
|
1946 |
+
.fa-odnoklassniki-square:before {
|
1947 |
+
content: "\f264";
|
1948 |
+
}
|
1949 |
+
.fa-get-pocket:before {
|
1950 |
+
content: "\f265";
|
1951 |
+
}
|
1952 |
+
.fa-wikipedia-w:before {
|
1953 |
+
content: "\f266";
|
1954 |
+
}
|
1955 |
+
.fa-safari:before {
|
1956 |
+
content: "\f267";
|
1957 |
+
}
|
1958 |
+
.fa-chrome:before {
|
1959 |
+
content: "\f268";
|
1960 |
+
}
|
1961 |
+
.fa-firefox:before {
|
1962 |
+
content: "\f269";
|
1963 |
+
}
|
1964 |
+
.fa-opera:before {
|
1965 |
+
content: "\f26a";
|
1966 |
+
}
|
1967 |
+
.fa-internet-explorer:before {
|
1968 |
+
content: "\f26b";
|
1969 |
+
}
|
1970 |
+
.fa-tv:before,
|
1971 |
+
.fa-television:before {
|
1972 |
+
content: "\f26c";
|
1973 |
+
}
|
1974 |
+
.fa-contao:before {
|
1975 |
+
content: "\f26d";
|
1976 |
+
}
|
1977 |
+
.fa-500px:before {
|
1978 |
+
content: "\f26e";
|
1979 |
+
}
|
1980 |
+
.fa-amazon:before {
|
1981 |
+
content: "\f270";
|
1982 |
+
}
|
1983 |
+
.fa-calendar-plus-o:before {
|
1984 |
+
content: "\f271";
|
1985 |
+
}
|
1986 |
+
.fa-calendar-minus-o:before {
|
1987 |
+
content: "\f272";
|
1988 |
+
}
|
1989 |
+
.fa-calendar-times-o:before {
|
1990 |
+
content: "\f273";
|
1991 |
+
}
|
1992 |
+
.fa-calendar-check-o:before {
|
1993 |
+
content: "\f274";
|
1994 |
+
}
|
1995 |
+
.fa-industry:before {
|
1996 |
+
content: "\f275";
|
1997 |
+
}
|
1998 |
+
.fa-map-pin:before {
|
1999 |
+
content: "\f276";
|
2000 |
+
}
|
2001 |
+
.fa-map-signs:before {
|
2002 |
+
content: "\f277";
|
2003 |
+
}
|
2004 |
+
.fa-map-o:before {
|
2005 |
+
content: "\f278";
|
2006 |
+
}
|
2007 |
+
.fa-map:before {
|
2008 |
+
content: "\f279";
|
2009 |
+
}
|
2010 |
+
.fa-commenting:before {
|
2011 |
+
content: "\f27a";
|
2012 |
+
}
|
2013 |
+
.fa-commenting-o:before {
|
2014 |
+
content: "\f27b";
|
2015 |
+
}
|
2016 |
+
.fa-houzz:before {
|
2017 |
+
content: "\f27c";
|
2018 |
+
}
|
2019 |
+
.fa-vimeo:before {
|
2020 |
+
content: "\f27d";
|
2021 |
+
}
|
2022 |
+
.fa-black-tie:before {
|
2023 |
+
content: "\f27e";
|
2024 |
+
}
|
2025 |
+
.fa-fonticons:before {
|
2026 |
+
content: "\f280";
|
2027 |
+
}
|
2028 |
+
.fa-reddit-alien:before {
|
2029 |
+
content: "\f281";
|
2030 |
+
}
|
2031 |
+
.fa-edge:before {
|
2032 |
+
content: "\f282";
|
2033 |
+
}
|
2034 |
+
.fa-credit-card-alt:before {
|
2035 |
+
content: "\f283";
|
2036 |
+
}
|
2037 |
+
.fa-codiepie:before {
|
2038 |
+
content: "\f284";
|
2039 |
+
}
|
2040 |
+
.fa-modx:before {
|
2041 |
+
content: "\f285";
|
2042 |
+
}
|
2043 |
+
.fa-fort-awesome:before {
|
2044 |
+
content: "\f286";
|
2045 |
+
}
|
2046 |
+
.fa-usb:before {
|
2047 |
+
content: "\f287";
|
2048 |
+
}
|
2049 |
+
.fa-product-hunt:before {
|
2050 |
+
content: "\f288";
|
2051 |
+
}
|
2052 |
+
.fa-mixcloud:before {
|
2053 |
+
content: "\f289";
|
2054 |
+
}
|
2055 |
+
.fa-scribd:before {
|
2056 |
+
content: "\f28a";
|
2057 |
+
}
|
2058 |
+
.fa-pause-circle:before {
|
2059 |
+
content: "\f28b";
|
2060 |
+
}
|
2061 |
+
.fa-pause-circle-o:before {
|
2062 |
+
content: "\f28c";
|
2063 |
+
}
|
2064 |
+
.fa-stop-circle:before {
|
2065 |
+
content: "\f28d";
|
2066 |
+
}
|
2067 |
+
.fa-stop-circle-o:before {
|
2068 |
+
content: "\f28e";
|
2069 |
+
}
|
2070 |
+
.fa-shopping-bag:before {
|
2071 |
+
content: "\f290";
|
2072 |
+
}
|
2073 |
+
.fa-shopping-basket:before {
|
2074 |
+
content: "\f291";
|
2075 |
+
}
|
2076 |
+
.fa-hashtag:before {
|
2077 |
+
content: "\f292";
|
2078 |
+
}
|
2079 |
+
.fa-bluetooth:before {
|
2080 |
+
content: "\f293";
|
2081 |
+
}
|
2082 |
+
.fa-bluetooth-b:before {
|
2083 |
+
content: "\f294";
|
2084 |
+
}
|
2085 |
+
.fa-percent:before {
|
2086 |
+
content: "\f295";
|
2087 |
+
}
|
2088 |
+
.fa-gitlab:before {
|
2089 |
+
content: "\f296";
|
2090 |
+
}
|
2091 |
+
.fa-wpbeginner:before {
|
2092 |
+
content: "\f297";
|
2093 |
+
}
|
2094 |
+
.fa-wpforms:before {
|
2095 |
+
content: "\f298";
|
2096 |
+
}
|
2097 |
+
.fa-envira:before {
|
2098 |
+
content: "\f299";
|
2099 |
+
}
|
2100 |
+
.fa-universal-access:before {
|
2101 |
+
content: "\f29a";
|
2102 |
+
}
|
2103 |
+
.fa-wheelchair-alt:before {
|
2104 |
+
content: "\f29b";
|
2105 |
+
}
|
2106 |
+
.fa-question-circle-o:before {
|
2107 |
+
content: "\f29c";
|
2108 |
+
}
|
2109 |
+
.fa-blind:before {
|
2110 |
+
content: "\f29d";
|
2111 |
+
}
|
2112 |
+
.fa-audio-description:before {
|
2113 |
+
content: "\f29e";
|
2114 |
+
}
|
2115 |
+
.fa-volume-control-phone:before {
|
2116 |
+
content: "\f2a0";
|
2117 |
+
}
|
2118 |
+
.fa-braille:before {
|
2119 |
+
content: "\f2a1";
|
2120 |
+
}
|
2121 |
+
.fa-assistive-listening-systems:before {
|
2122 |
+
content: "\f2a2";
|
2123 |
+
}
|
2124 |
+
.fa-asl-interpreting:before,
|
2125 |
+
.fa-american-sign-language-interpreting:before {
|
2126 |
+
content: "\f2a3";
|
2127 |
+
}
|
2128 |
+
.fa-deafness:before,
|
2129 |
+
.fa-hard-of-hearing:before,
|
2130 |
+
.fa-deaf:before {
|
2131 |
+
content: "\f2a4";
|
2132 |
+
}
|
2133 |
+
.fa-glide:before {
|
2134 |
+
content: "\f2a5";
|
2135 |
+
}
|
2136 |
+
.fa-glide-g:before {
|
2137 |
+
content: "\f2a6";
|
2138 |
+
}
|
2139 |
+
.fa-signing:before,
|
2140 |
+
.fa-sign-language:before {
|
2141 |
+
content: "\f2a7";
|
2142 |
+
}
|
2143 |
+
.fa-low-vision:before {
|
2144 |
+
content: "\f2a8";
|
2145 |
+
}
|
2146 |
+
.fa-viadeo:before {
|
2147 |
+
content: "\f2a9";
|
2148 |
+
}
|
2149 |
+
.fa-viadeo-square:before {
|
2150 |
+
content: "\f2aa";
|
2151 |
+
}
|
2152 |
+
.fa-snapchat:before {
|
2153 |
+
content: "\f2ab";
|
2154 |
+
}
|
2155 |
+
.fa-snapchat-ghost:before {
|
2156 |
+
content: "\f2ac";
|
2157 |
+
}
|
2158 |
+
.fa-snapchat-square:before {
|
2159 |
+
content: "\f2ad";
|
2160 |
+
}
|
2161 |
+
.fa-pied-piper:before {
|
2162 |
+
content: "\f2ae";
|
2163 |
+
}
|
2164 |
+
.fa-first-order:before {
|
2165 |
+
content: "\f2b0";
|
2166 |
+
}
|
2167 |
+
.fa-yoast:before {
|
2168 |
+
content: "\f2b1";
|
2169 |
+
}
|
2170 |
+
.fa-themeisle:before {
|
2171 |
+
content: "\f2b2";
|
2172 |
+
}
|
2173 |
+
.fa-google-plus-circle:before,
|
2174 |
+
.fa-google-plus-official:before {
|
2175 |
+
content: "\f2b3";
|
2176 |
+
}
|
2177 |
+
.fa-fa:before,
|
2178 |
+
.fa-font-awesome:before {
|
2179 |
+
content: "\f2b4";
|
2180 |
+
}
|
2181 |
+
.sr-only {
|
2182 |
+
position: absolute;
|
2183 |
+
width: 1px;
|
2184 |
+
height: 1px;
|
2185 |
+
padding: 0;
|
2186 |
+
margin: -1px;
|
2187 |
+
overflow: hidden;
|
2188 |
+
clip: rect(0, 0, 0, 0);
|
2189 |
+
border: 0;
|
2190 |
+
}
|
2191 |
+
.sr-only-focusable:active,
|
2192 |
+
.sr-only-focusable:focus {
|
2193 |
+
position: static;
|
2194 |
+
width: auto;
|
2195 |
+
height: auto;
|
2196 |
+
margin: 0;
|
2197 |
+
overflow: visible;
|
2198 |
+
clip: auto;
|
2199 |
+
}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/css/font-awesome.min.css
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
|
3 |
+
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4 |
+
*/@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.6.3');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/fonts/FontAwesome.otf
ADDED
Binary file (125 kB). View file
|
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/fonts/fontawesome-webfont.eot
ADDED
Binary file (76.5 kB). View file
|
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/fonts/fontawesome-webfont.svg
ADDED
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/fonts/fontawesome-webfont.ttf
ADDED
Binary file (153 kB). View file
|
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/fonts/fontawesome-webfont.woff
ADDED
Binary file (90.4 kB). View file
|
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/fonts/fontawesome-webfont.woff2
ADDED
Binary file (71.9 kB). View file
|
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/animated.less
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Animated Icons
|
2 |
+
// --------------------------
|
3 |
+
|
4 |
+
.@{fa-css-prefix}-spin {
|
5 |
+
-webkit-animation: fa-spin 2s infinite linear;
|
6 |
+
animation: fa-spin 2s infinite linear;
|
7 |
+
}
|
8 |
+
|
9 |
+
.@{fa-css-prefix}-pulse {
|
10 |
+
-webkit-animation: fa-spin 1s infinite steps(8);
|
11 |
+
animation: fa-spin 1s infinite steps(8);
|
12 |
+
}
|
13 |
+
|
14 |
+
@-webkit-keyframes fa-spin {
|
15 |
+
0% {
|
16 |
+
-webkit-transform: rotate(0deg);
|
17 |
+
transform: rotate(0deg);
|
18 |
+
}
|
19 |
+
100% {
|
20 |
+
-webkit-transform: rotate(359deg);
|
21 |
+
transform: rotate(359deg);
|
22 |
+
}
|
23 |
+
}
|
24 |
+
|
25 |
+
@keyframes fa-spin {
|
26 |
+
0% {
|
27 |
+
-webkit-transform: rotate(0deg);
|
28 |
+
transform: rotate(0deg);
|
29 |
+
}
|
30 |
+
100% {
|
31 |
+
-webkit-transform: rotate(359deg);
|
32 |
+
transform: rotate(359deg);
|
33 |
+
}
|
34 |
+
}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/bordered-pulled.less
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Bordered & Pulled
|
2 |
+
// -------------------------
|
3 |
+
|
4 |
+
.@{fa-css-prefix}-border {
|
5 |
+
padding: .2em .25em .15em;
|
6 |
+
border: solid .08em @fa-border-color;
|
7 |
+
border-radius: .1em;
|
8 |
+
}
|
9 |
+
|
10 |
+
.@{fa-css-prefix}-pull-left { float: left; }
|
11 |
+
.@{fa-css-prefix}-pull-right { float: right; }
|
12 |
+
|
13 |
+
.@{fa-css-prefix} {
|
14 |
+
&.@{fa-css-prefix}-pull-left { margin-right: .3em; }
|
15 |
+
&.@{fa-css-prefix}-pull-right { margin-left: .3em; }
|
16 |
+
}
|
17 |
+
|
18 |
+
/* Deprecated as of 4.4.0 */
|
19 |
+
.pull-right { float: right; }
|
20 |
+
.pull-left { float: left; }
|
21 |
+
|
22 |
+
.@{fa-css-prefix} {
|
23 |
+
&.pull-left { margin-right: .3em; }
|
24 |
+
&.pull-right { margin-left: .3em; }
|
25 |
+
}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/core.less
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Base Class Definition
|
2 |
+
// -------------------------
|
3 |
+
|
4 |
+
.@{fa-css-prefix} {
|
5 |
+
display: inline-block;
|
6 |
+
font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
|
7 |
+
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
8 |
+
text-rendering: auto; // optimizelegibility throws things off #1094
|
9 |
+
-webkit-font-smoothing: antialiased;
|
10 |
+
-moz-osx-font-smoothing: grayscale;
|
11 |
+
|
12 |
+
}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/fixed-width.less
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Fixed Width Icons
|
2 |
+
// -------------------------
|
3 |
+
.@{fa-css-prefix}-fw {
|
4 |
+
width: (18em / 14);
|
5 |
+
text-align: center;
|
6 |
+
}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/font-awesome.less
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
|
3 |
+
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4 |
+
*/
|
5 |
+
|
6 |
+
@import "variables.less";
|
7 |
+
@import "mixins.less";
|
8 |
+
@import "path.less";
|
9 |
+
@import "core.less";
|
10 |
+
@import "larger.less";
|
11 |
+
@import "fixed-width.less";
|
12 |
+
@import "list.less";
|
13 |
+
@import "bordered-pulled.less";
|
14 |
+
@import "animated.less";
|
15 |
+
@import "rotated-flipped.less";
|
16 |
+
@import "stacked.less";
|
17 |
+
@import "icons.less";
|
18 |
+
@import "screen-reader.less";
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/icons.less
ADDED
@@ -0,0 +1,733 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
2 |
+
readers do not read off random characters that represent icons */
|
3 |
+
|
4 |
+
.@{fa-css-prefix}-glass:before { content: @fa-var-glass; }
|
5 |
+
.@{fa-css-prefix}-music:before { content: @fa-var-music; }
|
6 |
+
.@{fa-css-prefix}-search:before { content: @fa-var-search; }
|
7 |
+
.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; }
|
8 |
+
.@{fa-css-prefix}-heart:before { content: @fa-var-heart; }
|
9 |
+
.@{fa-css-prefix}-star:before { content: @fa-var-star; }
|
10 |
+
.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; }
|
11 |
+
.@{fa-css-prefix}-user:before { content: @fa-var-user; }
|
12 |
+
.@{fa-css-prefix}-film:before { content: @fa-var-film; }
|
13 |
+
.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; }
|
14 |
+
.@{fa-css-prefix}-th:before { content: @fa-var-th; }
|
15 |
+
.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; }
|
16 |
+
.@{fa-css-prefix}-check:before { content: @fa-var-check; }
|
17 |
+
.@{fa-css-prefix}-remove:before,
|
18 |
+
.@{fa-css-prefix}-close:before,
|
19 |
+
.@{fa-css-prefix}-times:before { content: @fa-var-times; }
|
20 |
+
.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; }
|
21 |
+
.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; }
|
22 |
+
.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; }
|
23 |
+
.@{fa-css-prefix}-signal:before { content: @fa-var-signal; }
|
24 |
+
.@{fa-css-prefix}-gear:before,
|
25 |
+
.@{fa-css-prefix}-cog:before { content: @fa-var-cog; }
|
26 |
+
.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; }
|
27 |
+
.@{fa-css-prefix}-home:before { content: @fa-var-home; }
|
28 |
+
.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; }
|
29 |
+
.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; }
|
30 |
+
.@{fa-css-prefix}-road:before { content: @fa-var-road; }
|
31 |
+
.@{fa-css-prefix}-download:before { content: @fa-var-download; }
|
32 |
+
.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; }
|
33 |
+
.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; }
|
34 |
+
.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; }
|
35 |
+
.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; }
|
36 |
+
.@{fa-css-prefix}-rotate-right:before,
|
37 |
+
.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; }
|
38 |
+
.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; }
|
39 |
+
.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; }
|
40 |
+
.@{fa-css-prefix}-lock:before { content: @fa-var-lock; }
|
41 |
+
.@{fa-css-prefix}-flag:before { content: @fa-var-flag; }
|
42 |
+
.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; }
|
43 |
+
.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; }
|
44 |
+
.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; }
|
45 |
+
.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; }
|
46 |
+
.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; }
|
47 |
+
.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; }
|
48 |
+
.@{fa-css-prefix}-tag:before { content: @fa-var-tag; }
|
49 |
+
.@{fa-css-prefix}-tags:before { content: @fa-var-tags; }
|
50 |
+
.@{fa-css-prefix}-book:before { content: @fa-var-book; }
|
51 |
+
.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; }
|
52 |
+
.@{fa-css-prefix}-print:before { content: @fa-var-print; }
|
53 |
+
.@{fa-css-prefix}-camera:before { content: @fa-var-camera; }
|
54 |
+
.@{fa-css-prefix}-font:before { content: @fa-var-font; }
|
55 |
+
.@{fa-css-prefix}-bold:before { content: @fa-var-bold; }
|
56 |
+
.@{fa-css-prefix}-italic:before { content: @fa-var-italic; }
|
57 |
+
.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; }
|
58 |
+
.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; }
|
59 |
+
.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; }
|
60 |
+
.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; }
|
61 |
+
.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; }
|
62 |
+
.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; }
|
63 |
+
.@{fa-css-prefix}-list:before { content: @fa-var-list; }
|
64 |
+
.@{fa-css-prefix}-dedent:before,
|
65 |
+
.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; }
|
66 |
+
.@{fa-css-prefix}-indent:before { content: @fa-var-indent; }
|
67 |
+
.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; }
|
68 |
+
.@{fa-css-prefix}-photo:before,
|
69 |
+
.@{fa-css-prefix}-image:before,
|
70 |
+
.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; }
|
71 |
+
.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; }
|
72 |
+
.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; }
|
73 |
+
.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; }
|
74 |
+
.@{fa-css-prefix}-tint:before { content: @fa-var-tint; }
|
75 |
+
.@{fa-css-prefix}-edit:before,
|
76 |
+
.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; }
|
77 |
+
.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; }
|
78 |
+
.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; }
|
79 |
+
.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; }
|
80 |
+
.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; }
|
81 |
+
.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; }
|
82 |
+
.@{fa-css-prefix}-backward:before { content: @fa-var-backward; }
|
83 |
+
.@{fa-css-prefix}-play:before { content: @fa-var-play; }
|
84 |
+
.@{fa-css-prefix}-pause:before { content: @fa-var-pause; }
|
85 |
+
.@{fa-css-prefix}-stop:before { content: @fa-var-stop; }
|
86 |
+
.@{fa-css-prefix}-forward:before { content: @fa-var-forward; }
|
87 |
+
.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; }
|
88 |
+
.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; }
|
89 |
+
.@{fa-css-prefix}-eject:before { content: @fa-var-eject; }
|
90 |
+
.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; }
|
91 |
+
.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; }
|
92 |
+
.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; }
|
93 |
+
.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; }
|
94 |
+
.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; }
|
95 |
+
.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; }
|
96 |
+
.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; }
|
97 |
+
.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; }
|
98 |
+
.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; }
|
99 |
+
.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; }
|
100 |
+
.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; }
|
101 |
+
.@{fa-css-prefix}-ban:before { content: @fa-var-ban; }
|
102 |
+
.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; }
|
103 |
+
.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; }
|
104 |
+
.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; }
|
105 |
+
.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; }
|
106 |
+
.@{fa-css-prefix}-mail-forward:before,
|
107 |
+
.@{fa-css-prefix}-share:before { content: @fa-var-share; }
|
108 |
+
.@{fa-css-prefix}-expand:before { content: @fa-var-expand; }
|
109 |
+
.@{fa-css-prefix}-compress:before { content: @fa-var-compress; }
|
110 |
+
.@{fa-css-prefix}-plus:before { content: @fa-var-plus; }
|
111 |
+
.@{fa-css-prefix}-minus:before { content: @fa-var-minus; }
|
112 |
+
.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; }
|
113 |
+
.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; }
|
114 |
+
.@{fa-css-prefix}-gift:before { content: @fa-var-gift; }
|
115 |
+
.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; }
|
116 |
+
.@{fa-css-prefix}-fire:before { content: @fa-var-fire; }
|
117 |
+
.@{fa-css-prefix}-eye:before { content: @fa-var-eye; }
|
118 |
+
.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; }
|
119 |
+
.@{fa-css-prefix}-warning:before,
|
120 |
+
.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; }
|
121 |
+
.@{fa-css-prefix}-plane:before { content: @fa-var-plane; }
|
122 |
+
.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; }
|
123 |
+
.@{fa-css-prefix}-random:before { content: @fa-var-random; }
|
124 |
+
.@{fa-css-prefix}-comment:before { content: @fa-var-comment; }
|
125 |
+
.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; }
|
126 |
+
.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; }
|
127 |
+
.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; }
|
128 |
+
.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; }
|
129 |
+
.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; }
|
130 |
+
.@{fa-css-prefix}-folder:before { content: @fa-var-folder; }
|
131 |
+
.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; }
|
132 |
+
.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; }
|
133 |
+
.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; }
|
134 |
+
.@{fa-css-prefix}-bar-chart-o:before,
|
135 |
+
.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; }
|
136 |
+
.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; }
|
137 |
+
.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; }
|
138 |
+
.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; }
|
139 |
+
.@{fa-css-prefix}-key:before { content: @fa-var-key; }
|
140 |
+
.@{fa-css-prefix}-gears:before,
|
141 |
+
.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; }
|
142 |
+
.@{fa-css-prefix}-comments:before { content: @fa-var-comments; }
|
143 |
+
.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; }
|
144 |
+
.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; }
|
145 |
+
.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; }
|
146 |
+
.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; }
|
147 |
+
.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; }
|
148 |
+
.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; }
|
149 |
+
.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; }
|
150 |
+
.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; }
|
151 |
+
.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; }
|
152 |
+
.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; }
|
153 |
+
.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; }
|
154 |
+
.@{fa-css-prefix}-upload:before { content: @fa-var-upload; }
|
155 |
+
.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; }
|
156 |
+
.@{fa-css-prefix}-phone:before { content: @fa-var-phone; }
|
157 |
+
.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; }
|
158 |
+
.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; }
|
159 |
+
.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; }
|
160 |
+
.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; }
|
161 |
+
.@{fa-css-prefix}-facebook-f:before,
|
162 |
+
.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; }
|
163 |
+
.@{fa-css-prefix}-github:before { content: @fa-var-github; }
|
164 |
+
.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; }
|
165 |
+
.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; }
|
166 |
+
.@{fa-css-prefix}-feed:before,
|
167 |
+
.@{fa-css-prefix}-rss:before { content: @fa-var-rss; }
|
168 |
+
.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; }
|
169 |
+
.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; }
|
170 |
+
.@{fa-css-prefix}-bell:before { content: @fa-var-bell; }
|
171 |
+
.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; }
|
172 |
+
.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; }
|
173 |
+
.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; }
|
174 |
+
.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; }
|
175 |
+
.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; }
|
176 |
+
.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; }
|
177 |
+
.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; }
|
178 |
+
.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; }
|
179 |
+
.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; }
|
180 |
+
.@{fa-css-prefix}-globe:before { content: @fa-var-globe; }
|
181 |
+
.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; }
|
182 |
+
.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; }
|
183 |
+
.@{fa-css-prefix}-filter:before { content: @fa-var-filter; }
|
184 |
+
.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; }
|
185 |
+
.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; }
|
186 |
+
.@{fa-css-prefix}-group:before,
|
187 |
+
.@{fa-css-prefix}-users:before { content: @fa-var-users; }
|
188 |
+
.@{fa-css-prefix}-chain:before,
|
189 |
+
.@{fa-css-prefix}-link:before { content: @fa-var-link; }
|
190 |
+
.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; }
|
191 |
+
.@{fa-css-prefix}-flask:before { content: @fa-var-flask; }
|
192 |
+
.@{fa-css-prefix}-cut:before,
|
193 |
+
.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; }
|
194 |
+
.@{fa-css-prefix}-copy:before,
|
195 |
+
.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; }
|
196 |
+
.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; }
|
197 |
+
.@{fa-css-prefix}-save:before,
|
198 |
+
.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; }
|
199 |
+
.@{fa-css-prefix}-square:before { content: @fa-var-square; }
|
200 |
+
.@{fa-css-prefix}-navicon:before,
|
201 |
+
.@{fa-css-prefix}-reorder:before,
|
202 |
+
.@{fa-css-prefix}-bars:before { content: @fa-var-bars; }
|
203 |
+
.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; }
|
204 |
+
.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; }
|
205 |
+
.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; }
|
206 |
+
.@{fa-css-prefix}-underline:before { content: @fa-var-underline; }
|
207 |
+
.@{fa-css-prefix}-table:before { content: @fa-var-table; }
|
208 |
+
.@{fa-css-prefix}-magic:before { content: @fa-var-magic; }
|
209 |
+
.@{fa-css-prefix}-truck:before { content: @fa-var-truck; }
|
210 |
+
.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; }
|
211 |
+
.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; }
|
212 |
+
.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; }
|
213 |
+
.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; }
|
214 |
+
.@{fa-css-prefix}-money:before { content: @fa-var-money; }
|
215 |
+
.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; }
|
216 |
+
.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; }
|
217 |
+
.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; }
|
218 |
+
.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; }
|
219 |
+
.@{fa-css-prefix}-columns:before { content: @fa-var-columns; }
|
220 |
+
.@{fa-css-prefix}-unsorted:before,
|
221 |
+
.@{fa-css-prefix}-sort:before { content: @fa-var-sort; }
|
222 |
+
.@{fa-css-prefix}-sort-down:before,
|
223 |
+
.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; }
|
224 |
+
.@{fa-css-prefix}-sort-up:before,
|
225 |
+
.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; }
|
226 |
+
.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; }
|
227 |
+
.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; }
|
228 |
+
.@{fa-css-prefix}-rotate-left:before,
|
229 |
+
.@{fa-css-prefix}-undo:before { content: @fa-var-undo; }
|
230 |
+
.@{fa-css-prefix}-legal:before,
|
231 |
+
.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; }
|
232 |
+
.@{fa-css-prefix}-dashboard:before,
|
233 |
+
.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; }
|
234 |
+
.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; }
|
235 |
+
.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; }
|
236 |
+
.@{fa-css-prefix}-flash:before,
|
237 |
+
.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; }
|
238 |
+
.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; }
|
239 |
+
.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; }
|
240 |
+
.@{fa-css-prefix}-paste:before,
|
241 |
+
.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; }
|
242 |
+
.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; }
|
243 |
+
.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; }
|
244 |
+
.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; }
|
245 |
+
.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; }
|
246 |
+
.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; }
|
247 |
+
.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; }
|
248 |
+
.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; }
|
249 |
+
.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; }
|
250 |
+
.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; }
|
251 |
+
.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; }
|
252 |
+
.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; }
|
253 |
+
.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; }
|
254 |
+
.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; }
|
255 |
+
.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; }
|
256 |
+
.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; }
|
257 |
+
.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; }
|
258 |
+
.@{fa-css-prefix}-beer:before { content: @fa-var-beer; }
|
259 |
+
.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; }
|
260 |
+
.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; }
|
261 |
+
.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; }
|
262 |
+
.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; }
|
263 |
+
.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; }
|
264 |
+
.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; }
|
265 |
+
.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; }
|
266 |
+
.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; }
|
267 |
+
.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; }
|
268 |
+
.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; }
|
269 |
+
.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; }
|
270 |
+
.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; }
|
271 |
+
.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; }
|
272 |
+
.@{fa-css-prefix}-mobile-phone:before,
|
273 |
+
.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; }
|
274 |
+
.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; }
|
275 |
+
.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; }
|
276 |
+
.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; }
|
277 |
+
.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; }
|
278 |
+
.@{fa-css-prefix}-circle:before { content: @fa-var-circle; }
|
279 |
+
.@{fa-css-prefix}-mail-reply:before,
|
280 |
+
.@{fa-css-prefix}-reply:before { content: @fa-var-reply; }
|
281 |
+
.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; }
|
282 |
+
.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; }
|
283 |
+
.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; }
|
284 |
+
.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; }
|
285 |
+
.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; }
|
286 |
+
.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; }
|
287 |
+
.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; }
|
288 |
+
.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; }
|
289 |
+
.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; }
|
290 |
+
.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; }
|
291 |
+
.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; }
|
292 |
+
.@{fa-css-prefix}-code:before { content: @fa-var-code; }
|
293 |
+
.@{fa-css-prefix}-mail-reply-all:before,
|
294 |
+
.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; }
|
295 |
+
.@{fa-css-prefix}-star-half-empty:before,
|
296 |
+
.@{fa-css-prefix}-star-half-full:before,
|
297 |
+
.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; }
|
298 |
+
.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; }
|
299 |
+
.@{fa-css-prefix}-crop:before { content: @fa-var-crop; }
|
300 |
+
.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; }
|
301 |
+
.@{fa-css-prefix}-unlink:before,
|
302 |
+
.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; }
|
303 |
+
.@{fa-css-prefix}-question:before { content: @fa-var-question; }
|
304 |
+
.@{fa-css-prefix}-info:before { content: @fa-var-info; }
|
305 |
+
.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; }
|
306 |
+
.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; }
|
307 |
+
.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; }
|
308 |
+
.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; }
|
309 |
+
.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; }
|
310 |
+
.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; }
|
311 |
+
.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; }
|
312 |
+
.@{fa-css-prefix}-shield:before { content: @fa-var-shield; }
|
313 |
+
.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; }
|
314 |
+
.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; }
|
315 |
+
.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; }
|
316 |
+
.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; }
|
317 |
+
.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; }
|
318 |
+
.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; }
|
319 |
+
.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; }
|
320 |
+
.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; }
|
321 |
+
.@{fa-css-prefix}-html5:before { content: @fa-var-html5; }
|
322 |
+
.@{fa-css-prefix}-css3:before { content: @fa-var-css3; }
|
323 |
+
.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; }
|
324 |
+
.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; }
|
325 |
+
.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; }
|
326 |
+
.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; }
|
327 |
+
.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; }
|
328 |
+
.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; }
|
329 |
+
.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; }
|
330 |
+
.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; }
|
331 |
+
.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; }
|
332 |
+
.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; }
|
333 |
+
.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; }
|
334 |
+
.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; }
|
335 |
+
.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; }
|
336 |
+
.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; }
|
337 |
+
.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; }
|
338 |
+
.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; }
|
339 |
+
.@{fa-css-prefix}-compass:before { content: @fa-var-compass; }
|
340 |
+
.@{fa-css-prefix}-toggle-down:before,
|
341 |
+
.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; }
|
342 |
+
.@{fa-css-prefix}-toggle-up:before,
|
343 |
+
.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; }
|
344 |
+
.@{fa-css-prefix}-toggle-right:before,
|
345 |
+
.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; }
|
346 |
+
.@{fa-css-prefix}-euro:before,
|
347 |
+
.@{fa-css-prefix}-eur:before { content: @fa-var-eur; }
|
348 |
+
.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; }
|
349 |
+
.@{fa-css-prefix}-dollar:before,
|
350 |
+
.@{fa-css-prefix}-usd:before { content: @fa-var-usd; }
|
351 |
+
.@{fa-css-prefix}-rupee:before,
|
352 |
+
.@{fa-css-prefix}-inr:before { content: @fa-var-inr; }
|
353 |
+
.@{fa-css-prefix}-cny:before,
|
354 |
+
.@{fa-css-prefix}-rmb:before,
|
355 |
+
.@{fa-css-prefix}-yen:before,
|
356 |
+
.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; }
|
357 |
+
.@{fa-css-prefix}-ruble:before,
|
358 |
+
.@{fa-css-prefix}-rouble:before,
|
359 |
+
.@{fa-css-prefix}-rub:before { content: @fa-var-rub; }
|
360 |
+
.@{fa-css-prefix}-won:before,
|
361 |
+
.@{fa-css-prefix}-krw:before { content: @fa-var-krw; }
|
362 |
+
.@{fa-css-prefix}-bitcoin:before,
|
363 |
+
.@{fa-css-prefix}-btc:before { content: @fa-var-btc; }
|
364 |
+
.@{fa-css-prefix}-file:before { content: @fa-var-file; }
|
365 |
+
.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; }
|
366 |
+
.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; }
|
367 |
+
.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; }
|
368 |
+
.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; }
|
369 |
+
.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; }
|
370 |
+
.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; }
|
371 |
+
.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; }
|
372 |
+
.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; }
|
373 |
+
.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; }
|
374 |
+
.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; }
|
375 |
+
.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; }
|
376 |
+
.@{fa-css-prefix}-xing:before { content: @fa-var-xing; }
|
377 |
+
.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; }
|
378 |
+
.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; }
|
379 |
+
.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; }
|
380 |
+
.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; }
|
381 |
+
.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; }
|
382 |
+
.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; }
|
383 |
+
.@{fa-css-prefix}-adn:before { content: @fa-var-adn; }
|
384 |
+
.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; }
|
385 |
+
.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; }
|
386 |
+
.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; }
|
387 |
+
.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; }
|
388 |
+
.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; }
|
389 |
+
.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; }
|
390 |
+
.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; }
|
391 |
+
.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; }
|
392 |
+
.@{fa-css-prefix}-apple:before { content: @fa-var-apple; }
|
393 |
+
.@{fa-css-prefix}-windows:before { content: @fa-var-windows; }
|
394 |
+
.@{fa-css-prefix}-android:before { content: @fa-var-android; }
|
395 |
+
.@{fa-css-prefix}-linux:before { content: @fa-var-linux; }
|
396 |
+
.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; }
|
397 |
+
.@{fa-css-prefix}-skype:before { content: @fa-var-skype; }
|
398 |
+
.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; }
|
399 |
+
.@{fa-css-prefix}-trello:before { content: @fa-var-trello; }
|
400 |
+
.@{fa-css-prefix}-female:before { content: @fa-var-female; }
|
401 |
+
.@{fa-css-prefix}-male:before { content: @fa-var-male; }
|
402 |
+
.@{fa-css-prefix}-gittip:before,
|
403 |
+
.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; }
|
404 |
+
.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; }
|
405 |
+
.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; }
|
406 |
+
.@{fa-css-prefix}-archive:before { content: @fa-var-archive; }
|
407 |
+
.@{fa-css-prefix}-bug:before { content: @fa-var-bug; }
|
408 |
+
.@{fa-css-prefix}-vk:before { content: @fa-var-vk; }
|
409 |
+
.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; }
|
410 |
+
.@{fa-css-prefix}-renren:before { content: @fa-var-renren; }
|
411 |
+
.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; }
|
412 |
+
.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; }
|
413 |
+
.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; }
|
414 |
+
.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; }
|
415 |
+
.@{fa-css-prefix}-toggle-left:before,
|
416 |
+
.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; }
|
417 |
+
.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; }
|
418 |
+
.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; }
|
419 |
+
.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; }
|
420 |
+
.@{fa-css-prefix}-turkish-lira:before,
|
421 |
+
.@{fa-css-prefix}-try:before { content: @fa-var-try; }
|
422 |
+
.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }
|
423 |
+
.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }
|
424 |
+
.@{fa-css-prefix}-slack:before { content: @fa-var-slack; }
|
425 |
+
.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; }
|
426 |
+
.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; }
|
427 |
+
.@{fa-css-prefix}-openid:before { content: @fa-var-openid; }
|
428 |
+
.@{fa-css-prefix}-institution:before,
|
429 |
+
.@{fa-css-prefix}-bank:before,
|
430 |
+
.@{fa-css-prefix}-university:before { content: @fa-var-university; }
|
431 |
+
.@{fa-css-prefix}-mortar-board:before,
|
432 |
+
.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; }
|
433 |
+
.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; }
|
434 |
+
.@{fa-css-prefix}-google:before { content: @fa-var-google; }
|
435 |
+
.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; }
|
436 |
+
.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; }
|
437 |
+
.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; }
|
438 |
+
.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; }
|
439 |
+
.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; }
|
440 |
+
.@{fa-css-prefix}-digg:before { content: @fa-var-digg; }
|
441 |
+
.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; }
|
442 |
+
.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; }
|
443 |
+
.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; }
|
444 |
+
.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; }
|
445 |
+
.@{fa-css-prefix}-language:before { content: @fa-var-language; }
|
446 |
+
.@{fa-css-prefix}-fax:before { content: @fa-var-fax; }
|
447 |
+
.@{fa-css-prefix}-building:before { content: @fa-var-building; }
|
448 |
+
.@{fa-css-prefix}-child:before { content: @fa-var-child; }
|
449 |
+
.@{fa-css-prefix}-paw:before { content: @fa-var-paw; }
|
450 |
+
.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; }
|
451 |
+
.@{fa-css-prefix}-cube:before { content: @fa-var-cube; }
|
452 |
+
.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; }
|
453 |
+
.@{fa-css-prefix}-behance:before { content: @fa-var-behance; }
|
454 |
+
.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; }
|
455 |
+
.@{fa-css-prefix}-steam:before { content: @fa-var-steam; }
|
456 |
+
.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; }
|
457 |
+
.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; }
|
458 |
+
.@{fa-css-prefix}-automobile:before,
|
459 |
+
.@{fa-css-prefix}-car:before { content: @fa-var-car; }
|
460 |
+
.@{fa-css-prefix}-cab:before,
|
461 |
+
.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; }
|
462 |
+
.@{fa-css-prefix}-tree:before { content: @fa-var-tree; }
|
463 |
+
.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; }
|
464 |
+
.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; }
|
465 |
+
.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; }
|
466 |
+
.@{fa-css-prefix}-database:before { content: @fa-var-database; }
|
467 |
+
.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; }
|
468 |
+
.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; }
|
469 |
+
.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; }
|
470 |
+
.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; }
|
471 |
+
.@{fa-css-prefix}-file-photo-o:before,
|
472 |
+
.@{fa-css-prefix}-file-picture-o:before,
|
473 |
+
.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; }
|
474 |
+
.@{fa-css-prefix}-file-zip-o:before,
|
475 |
+
.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; }
|
476 |
+
.@{fa-css-prefix}-file-sound-o:before,
|
477 |
+
.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; }
|
478 |
+
.@{fa-css-prefix}-file-movie-o:before,
|
479 |
+
.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; }
|
480 |
+
.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; }
|
481 |
+
.@{fa-css-prefix}-vine:before { content: @fa-var-vine; }
|
482 |
+
.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; }
|
483 |
+
.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; }
|
484 |
+
.@{fa-css-prefix}-life-bouy:before,
|
485 |
+
.@{fa-css-prefix}-life-buoy:before,
|
486 |
+
.@{fa-css-prefix}-life-saver:before,
|
487 |
+
.@{fa-css-prefix}-support:before,
|
488 |
+
.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; }
|
489 |
+
.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; }
|
490 |
+
.@{fa-css-prefix}-ra:before,
|
491 |
+
.@{fa-css-prefix}-resistance:before,
|
492 |
+
.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; }
|
493 |
+
.@{fa-css-prefix}-ge:before,
|
494 |
+
.@{fa-css-prefix}-empire:before { content: @fa-var-empire; }
|
495 |
+
.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; }
|
496 |
+
.@{fa-css-prefix}-git:before { content: @fa-var-git; }
|
497 |
+
.@{fa-css-prefix}-y-combinator-square:before,
|
498 |
+
.@{fa-css-prefix}-yc-square:before,
|
499 |
+
.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; }
|
500 |
+
.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; }
|
501 |
+
.@{fa-css-prefix}-qq:before { content: @fa-var-qq; }
|
502 |
+
.@{fa-css-prefix}-wechat:before,
|
503 |
+
.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; }
|
504 |
+
.@{fa-css-prefix}-send:before,
|
505 |
+
.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; }
|
506 |
+
.@{fa-css-prefix}-send-o:before,
|
507 |
+
.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; }
|
508 |
+
.@{fa-css-prefix}-history:before { content: @fa-var-history; }
|
509 |
+
.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; }
|
510 |
+
.@{fa-css-prefix}-header:before { content: @fa-var-header; }
|
511 |
+
.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; }
|
512 |
+
.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; }
|
513 |
+
.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; }
|
514 |
+
.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; }
|
515 |
+
.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; }
|
516 |
+
.@{fa-css-prefix}-soccer-ball-o:before,
|
517 |
+
.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; }
|
518 |
+
.@{fa-css-prefix}-tty:before { content: @fa-var-tty; }
|
519 |
+
.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; }
|
520 |
+
.@{fa-css-prefix}-plug:before { content: @fa-var-plug; }
|
521 |
+
.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }
|
522 |
+
.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }
|
523 |
+
.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }
|
524 |
+
.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }
|
525 |
+
.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }
|
526 |
+
.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }
|
527 |
+
.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }
|
528 |
+
.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }
|
529 |
+
.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }
|
530 |
+
.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }
|
531 |
+
.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }
|
532 |
+
.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }
|
533 |
+
.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }
|
534 |
+
.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }
|
535 |
+
.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; }
|
536 |
+
.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; }
|
537 |
+
.@{fa-css-prefix}-trash:before { content: @fa-var-trash; }
|
538 |
+
.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; }
|
539 |
+
.@{fa-css-prefix}-at:before { content: @fa-var-at; }
|
540 |
+
.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; }
|
541 |
+
.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; }
|
542 |
+
.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; }
|
543 |
+
.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; }
|
544 |
+
.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; }
|
545 |
+
.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }
|
546 |
+
.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }
|
547 |
+
.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }
|
548 |
+
.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }
|
549 |
+
.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }
|
550 |
+
.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; }
|
551 |
+
.@{fa-css-prefix}-bus:before { content: @fa-var-bus; }
|
552 |
+
.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; }
|
553 |
+
.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; }
|
554 |
+
.@{fa-css-prefix}-cc:before { content: @fa-var-cc; }
|
555 |
+
.@{fa-css-prefix}-shekel:before,
|
556 |
+
.@{fa-css-prefix}-sheqel:before,
|
557 |
+
.@{fa-css-prefix}-ils:before { content: @fa-var-ils; }
|
558 |
+
.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; }
|
559 |
+
.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; }
|
560 |
+
.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; }
|
561 |
+
.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; }
|
562 |
+
.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; }
|
563 |
+
.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; }
|
564 |
+
.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; }
|
565 |
+
.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; }
|
566 |
+
.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; }
|
567 |
+
.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; }
|
568 |
+
.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; }
|
569 |
+
.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; }
|
570 |
+
.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; }
|
571 |
+
.@{fa-css-prefix}-ship:before { content: @fa-var-ship; }
|
572 |
+
.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; }
|
573 |
+
.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; }
|
574 |
+
.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; }
|
575 |
+
.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; }
|
576 |
+
.@{fa-css-prefix}-venus:before { content: @fa-var-venus; }
|
577 |
+
.@{fa-css-prefix}-mars:before { content: @fa-var-mars; }
|
578 |
+
.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; }
|
579 |
+
.@{fa-css-prefix}-intersex:before,
|
580 |
+
.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; }
|
581 |
+
.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; }
|
582 |
+
.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; }
|
583 |
+
.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; }
|
584 |
+
.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; }
|
585 |
+
.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; }
|
586 |
+
.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; }
|
587 |
+
.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; }
|
588 |
+
.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; }
|
589 |
+
.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; }
|
590 |
+
.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; }
|
591 |
+
.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; }
|
592 |
+
.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; }
|
593 |
+
.@{fa-css-prefix}-server:before { content: @fa-var-server; }
|
594 |
+
.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; }
|
595 |
+
.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; }
|
596 |
+
.@{fa-css-prefix}-hotel:before,
|
597 |
+
.@{fa-css-prefix}-bed:before { content: @fa-var-bed; }
|
598 |
+
.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; }
|
599 |
+
.@{fa-css-prefix}-train:before { content: @fa-var-train; }
|
600 |
+
.@{fa-css-prefix}-subway:before { content: @fa-var-subway; }
|
601 |
+
.@{fa-css-prefix}-medium:before { content: @fa-var-medium; }
|
602 |
+
.@{fa-css-prefix}-yc:before,
|
603 |
+
.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; }
|
604 |
+
.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; }
|
605 |
+
.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; }
|
606 |
+
.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; }
|
607 |
+
.@{fa-css-prefix}-battery-4:before,
|
608 |
+
.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; }
|
609 |
+
.@{fa-css-prefix}-battery-3:before,
|
610 |
+
.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; }
|
611 |
+
.@{fa-css-prefix}-battery-2:before,
|
612 |
+
.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; }
|
613 |
+
.@{fa-css-prefix}-battery-1:before,
|
614 |
+
.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; }
|
615 |
+
.@{fa-css-prefix}-battery-0:before,
|
616 |
+
.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; }
|
617 |
+
.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; }
|
618 |
+
.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; }
|
619 |
+
.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; }
|
620 |
+
.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; }
|
621 |
+
.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; }
|
622 |
+
.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; }
|
623 |
+
.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; }
|
624 |
+
.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; }
|
625 |
+
.@{fa-css-prefix}-clone:before { content: @fa-var-clone; }
|
626 |
+
.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; }
|
627 |
+
.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; }
|
628 |
+
.@{fa-css-prefix}-hourglass-1:before,
|
629 |
+
.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; }
|
630 |
+
.@{fa-css-prefix}-hourglass-2:before,
|
631 |
+
.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; }
|
632 |
+
.@{fa-css-prefix}-hourglass-3:before,
|
633 |
+
.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; }
|
634 |
+
.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; }
|
635 |
+
.@{fa-css-prefix}-hand-grab-o:before,
|
636 |
+
.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; }
|
637 |
+
.@{fa-css-prefix}-hand-stop-o:before,
|
638 |
+
.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; }
|
639 |
+
.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; }
|
640 |
+
.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; }
|
641 |
+
.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; }
|
642 |
+
.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; }
|
643 |
+
.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; }
|
644 |
+
.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; }
|
645 |
+
.@{fa-css-prefix}-registered:before { content: @fa-var-registered; }
|
646 |
+
.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; }
|
647 |
+
.@{fa-css-prefix}-gg:before { content: @fa-var-gg; }
|
648 |
+
.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; }
|
649 |
+
.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; }
|
650 |
+
.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; }
|
651 |
+
.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; }
|
652 |
+
.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; }
|
653 |
+
.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; }
|
654 |
+
.@{fa-css-prefix}-safari:before { content: @fa-var-safari; }
|
655 |
+
.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; }
|
656 |
+
.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; }
|
657 |
+
.@{fa-css-prefix}-opera:before { content: @fa-var-opera; }
|
658 |
+
.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; }
|
659 |
+
.@{fa-css-prefix}-tv:before,
|
660 |
+
.@{fa-css-prefix}-television:before { content: @fa-var-television; }
|
661 |
+
.@{fa-css-prefix}-contao:before { content: @fa-var-contao; }
|
662 |
+
.@{fa-css-prefix}-500px:before { content: @fa-var-500px; }
|
663 |
+
.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; }
|
664 |
+
.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; }
|
665 |
+
.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; }
|
666 |
+
.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; }
|
667 |
+
.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; }
|
668 |
+
.@{fa-css-prefix}-industry:before { content: @fa-var-industry; }
|
669 |
+
.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; }
|
670 |
+
.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; }
|
671 |
+
.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; }
|
672 |
+
.@{fa-css-prefix}-map:before { content: @fa-var-map; }
|
673 |
+
.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; }
|
674 |
+
.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; }
|
675 |
+
.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; }
|
676 |
+
.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; }
|
677 |
+
.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; }
|
678 |
+
.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; }
|
679 |
+
.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; }
|
680 |
+
.@{fa-css-prefix}-edge:before { content: @fa-var-edge; }
|
681 |
+
.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; }
|
682 |
+
.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; }
|
683 |
+
.@{fa-css-prefix}-modx:before { content: @fa-var-modx; }
|
684 |
+
.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; }
|
685 |
+
.@{fa-css-prefix}-usb:before { content: @fa-var-usb; }
|
686 |
+
.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; }
|
687 |
+
.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; }
|
688 |
+
.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; }
|
689 |
+
.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; }
|
690 |
+
.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; }
|
691 |
+
.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; }
|
692 |
+
.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; }
|
693 |
+
.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; }
|
694 |
+
.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; }
|
695 |
+
.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; }
|
696 |
+
.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; }
|
697 |
+
.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; }
|
698 |
+
.@{fa-css-prefix}-percent:before { content: @fa-var-percent; }
|
699 |
+
.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; }
|
700 |
+
.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; }
|
701 |
+
.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; }
|
702 |
+
.@{fa-css-prefix}-envira:before { content: @fa-var-envira; }
|
703 |
+
.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; }
|
704 |
+
.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; }
|
705 |
+
.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }
|
706 |
+
.@{fa-css-prefix}-blind:before { content: @fa-var-blind; }
|
707 |
+
.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; }
|
708 |
+
.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; }
|
709 |
+
.@{fa-css-prefix}-braille:before { content: @fa-var-braille; }
|
710 |
+
.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; }
|
711 |
+
.@{fa-css-prefix}-asl-interpreting:before,
|
712 |
+
.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; }
|
713 |
+
.@{fa-css-prefix}-deafness:before,
|
714 |
+
.@{fa-css-prefix}-hard-of-hearing:before,
|
715 |
+
.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; }
|
716 |
+
.@{fa-css-prefix}-glide:before { content: @fa-var-glide; }
|
717 |
+
.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; }
|
718 |
+
.@{fa-css-prefix}-signing:before,
|
719 |
+
.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; }
|
720 |
+
.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; }
|
721 |
+
.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; }
|
722 |
+
.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; }
|
723 |
+
.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; }
|
724 |
+
.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; }
|
725 |
+
.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; }
|
726 |
+
.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; }
|
727 |
+
.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; }
|
728 |
+
.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; }
|
729 |
+
.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; }
|
730 |
+
.@{fa-css-prefix}-google-plus-circle:before,
|
731 |
+
.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; }
|
732 |
+
.@{fa-css-prefix}-fa:before,
|
733 |
+
.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; }
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/larger.less
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Icon Sizes
|
2 |
+
// -------------------------
|
3 |
+
|
4 |
+
/* makes the font 33% larger relative to the icon container */
|
5 |
+
.@{fa-css-prefix}-lg {
|
6 |
+
font-size: (4em / 3);
|
7 |
+
line-height: (3em / 4);
|
8 |
+
vertical-align: -15%;
|
9 |
+
}
|
10 |
+
.@{fa-css-prefix}-2x { font-size: 2em; }
|
11 |
+
.@{fa-css-prefix}-3x { font-size: 3em; }
|
12 |
+
.@{fa-css-prefix}-4x { font-size: 4em; }
|
13 |
+
.@{fa-css-prefix}-5x { font-size: 5em; }
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/list.less
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// List Icons
|
2 |
+
// -------------------------
|
3 |
+
|
4 |
+
.@{fa-css-prefix}-ul {
|
5 |
+
padding-left: 0;
|
6 |
+
margin-left: @fa-li-width;
|
7 |
+
list-style-type: none;
|
8 |
+
> li { position: relative; }
|
9 |
+
}
|
10 |
+
.@{fa-css-prefix}-li {
|
11 |
+
position: absolute;
|
12 |
+
left: -@fa-li-width;
|
13 |
+
width: @fa-li-width;
|
14 |
+
top: (2em / 14);
|
15 |
+
text-align: center;
|
16 |
+
&.@{fa-css-prefix}-lg {
|
17 |
+
left: (-@fa-li-width + (4em / 14));
|
18 |
+
}
|
19 |
+
}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/mixins.less
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Mixins
|
2 |
+
// --------------------------
|
3 |
+
|
4 |
+
.fa-icon() {
|
5 |
+
display: inline-block;
|
6 |
+
font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
|
7 |
+
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
8 |
+
text-rendering: auto; // optimizelegibility throws things off #1094
|
9 |
+
-webkit-font-smoothing: antialiased;
|
10 |
+
-moz-osx-font-smoothing: grayscale;
|
11 |
+
|
12 |
+
}
|
13 |
+
|
14 |
+
.fa-icon-rotate(@degrees, @rotation) {
|
15 |
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})";
|
16 |
+
-webkit-transform: rotate(@degrees);
|
17 |
+
-ms-transform: rotate(@degrees);
|
18 |
+
transform: rotate(@degrees);
|
19 |
+
}
|
20 |
+
|
21 |
+
.fa-icon-flip(@horiz, @vert, @rotation) {
|
22 |
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)";
|
23 |
+
-webkit-transform: scale(@horiz, @vert);
|
24 |
+
-ms-transform: scale(@horiz, @vert);
|
25 |
+
transform: scale(@horiz, @vert);
|
26 |
+
}
|
27 |
+
|
28 |
+
|
29 |
+
// Only display content to screen readers. A la Bootstrap 4.
|
30 |
+
//
|
31 |
+
// See: http://a11yproject.com/posts/how-to-hide-content/
|
32 |
+
|
33 |
+
.sr-only() {
|
34 |
+
position: absolute;
|
35 |
+
width: 1px;
|
36 |
+
height: 1px;
|
37 |
+
padding: 0;
|
38 |
+
margin: -1px;
|
39 |
+
overflow: hidden;
|
40 |
+
clip: rect(0,0,0,0);
|
41 |
+
border: 0;
|
42 |
+
}
|
43 |
+
|
44 |
+
// Use in conjunction with .sr-only to only display content when it's focused.
|
45 |
+
//
|
46 |
+
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
47 |
+
//
|
48 |
+
// Credit: HTML5 Boilerplate
|
49 |
+
|
50 |
+
.sr-only-focusable() {
|
51 |
+
&:active,
|
52 |
+
&:focus {
|
53 |
+
position: static;
|
54 |
+
width: auto;
|
55 |
+
height: auto;
|
56 |
+
margin: 0;
|
57 |
+
overflow: visible;
|
58 |
+
clip: auto;
|
59 |
+
}
|
60 |
+
}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/path.less
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* FONT PATH
|
2 |
+
* -------------------------- */
|
3 |
+
|
4 |
+
@font-face {
|
5 |
+
font-family: 'FontAwesome';
|
6 |
+
src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
|
7 |
+
src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
|
8 |
+
url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),
|
9 |
+
url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
|
10 |
+
url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
|
11 |
+
url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
|
12 |
+
// src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
|
13 |
+
font-weight: normal;
|
14 |
+
font-style: normal;
|
15 |
+
}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/rotated-flipped.less
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Rotated & Flipped Icons
|
2 |
+
// -------------------------
|
3 |
+
|
4 |
+
.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); }
|
5 |
+
.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
|
6 |
+
.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
|
7 |
+
|
8 |
+
.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
|
9 |
+
.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
|
10 |
+
|
11 |
+
// Hook for IE8-9
|
12 |
+
// -------------------------
|
13 |
+
|
14 |
+
:root .@{fa-css-prefix}-rotate-90,
|
15 |
+
:root .@{fa-css-prefix}-rotate-180,
|
16 |
+
:root .@{fa-css-prefix}-rotate-270,
|
17 |
+
:root .@{fa-css-prefix}-flip-horizontal,
|
18 |
+
:root .@{fa-css-prefix}-flip-vertical {
|
19 |
+
filter: none;
|
20 |
+
}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/screen-reader.less
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Screen Readers
|
2 |
+
// -------------------------
|
3 |
+
|
4 |
+
.sr-only { .sr-only(); }
|
5 |
+
.sr-only-focusable { .sr-only-focusable(); }
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/stacked.less
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Stacked Icons
|
2 |
+
// -------------------------
|
3 |
+
|
4 |
+
.@{fa-css-prefix}-stack {
|
5 |
+
position: relative;
|
6 |
+
display: inline-block;
|
7 |
+
width: 2em;
|
8 |
+
height: 2em;
|
9 |
+
line-height: 2em;
|
10 |
+
vertical-align: middle;
|
11 |
+
}
|
12 |
+
.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
|
13 |
+
position: absolute;
|
14 |
+
left: 0;
|
15 |
+
width: 100%;
|
16 |
+
text-align: center;
|
17 |
+
}
|
18 |
+
.@{fa-css-prefix}-stack-1x { line-height: inherit; }
|
19 |
+
.@{fa-css-prefix}-stack-2x { font-size: 2em; }
|
20 |
+
.@{fa-css-prefix}-inverse { color: @fa-inverse; }
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/less/variables.less
ADDED
@@ -0,0 +1,744 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Variables
|
2 |
+
// --------------------------
|
3 |
+
|
4 |
+
@fa-font-path: "../fonts";
|
5 |
+
@fa-font-size-base: 14px;
|
6 |
+
@fa-line-height-base: 1;
|
7 |
+
//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.3/fonts"; // for referencing Bootstrap CDN font files directly
|
8 |
+
@fa-css-prefix: fa;
|
9 |
+
@fa-version: "4.6.3";
|
10 |
+
@fa-border-color: #eee;
|
11 |
+
@fa-inverse: #fff;
|
12 |
+
@fa-li-width: (30em / 14);
|
13 |
+
|
14 |
+
@fa-var-500px: "\f26e";
|
15 |
+
@fa-var-adjust: "\f042";
|
16 |
+
@fa-var-adn: "\f170";
|
17 |
+
@fa-var-align-center: "\f037";
|
18 |
+
@fa-var-align-justify: "\f039";
|
19 |
+
@fa-var-align-left: "\f036";
|
20 |
+
@fa-var-align-right: "\f038";
|
21 |
+
@fa-var-amazon: "\f270";
|
22 |
+
@fa-var-ambulance: "\f0f9";
|
23 |
+
@fa-var-american-sign-language-interpreting: "\f2a3";
|
24 |
+
@fa-var-anchor: "\f13d";
|
25 |
+
@fa-var-android: "\f17b";
|
26 |
+
@fa-var-angellist: "\f209";
|
27 |
+
@fa-var-angle-double-down: "\f103";
|
28 |
+
@fa-var-angle-double-left: "\f100";
|
29 |
+
@fa-var-angle-double-right: "\f101";
|
30 |
+
@fa-var-angle-double-up: "\f102";
|
31 |
+
@fa-var-angle-down: "\f107";
|
32 |
+
@fa-var-angle-left: "\f104";
|
33 |
+
@fa-var-angle-right: "\f105";
|
34 |
+
@fa-var-angle-up: "\f106";
|
35 |
+
@fa-var-apple: "\f179";
|
36 |
+
@fa-var-archive: "\f187";
|
37 |
+
@fa-var-area-chart: "\f1fe";
|
38 |
+
@fa-var-arrow-circle-down: "\f0ab";
|
39 |
+
@fa-var-arrow-circle-left: "\f0a8";
|
40 |
+
@fa-var-arrow-circle-o-down: "\f01a";
|
41 |
+
@fa-var-arrow-circle-o-left: "\f190";
|
42 |
+
@fa-var-arrow-circle-o-right: "\f18e";
|
43 |
+
@fa-var-arrow-circle-o-up: "\f01b";
|
44 |
+
@fa-var-arrow-circle-right: "\f0a9";
|
45 |
+
@fa-var-arrow-circle-up: "\f0aa";
|
46 |
+
@fa-var-arrow-down: "\f063";
|
47 |
+
@fa-var-arrow-left: "\f060";
|
48 |
+
@fa-var-arrow-right: "\f061";
|
49 |
+
@fa-var-arrow-up: "\f062";
|
50 |
+
@fa-var-arrows: "\f047";
|
51 |
+
@fa-var-arrows-alt: "\f0b2";
|
52 |
+
@fa-var-arrows-h: "\f07e";
|
53 |
+
@fa-var-arrows-v: "\f07d";
|
54 |
+
@fa-var-asl-interpreting: "\f2a3";
|
55 |
+
@fa-var-assistive-listening-systems: "\f2a2";
|
56 |
+
@fa-var-asterisk: "\f069";
|
57 |
+
@fa-var-at: "\f1fa";
|
58 |
+
@fa-var-audio-description: "\f29e";
|
59 |
+
@fa-var-automobile: "\f1b9";
|
60 |
+
@fa-var-backward: "\f04a";
|
61 |
+
@fa-var-balance-scale: "\f24e";
|
62 |
+
@fa-var-ban: "\f05e";
|
63 |
+
@fa-var-bank: "\f19c";
|
64 |
+
@fa-var-bar-chart: "\f080";
|
65 |
+
@fa-var-bar-chart-o: "\f080";
|
66 |
+
@fa-var-barcode: "\f02a";
|
67 |
+
@fa-var-bars: "\f0c9";
|
68 |
+
@fa-var-battery-0: "\f244";
|
69 |
+
@fa-var-battery-1: "\f243";
|
70 |
+
@fa-var-battery-2: "\f242";
|
71 |
+
@fa-var-battery-3: "\f241";
|
72 |
+
@fa-var-battery-4: "\f240";
|
73 |
+
@fa-var-battery-empty: "\f244";
|
74 |
+
@fa-var-battery-full: "\f240";
|
75 |
+
@fa-var-battery-half: "\f242";
|
76 |
+
@fa-var-battery-quarter: "\f243";
|
77 |
+
@fa-var-battery-three-quarters: "\f241";
|
78 |
+
@fa-var-bed: "\f236";
|
79 |
+
@fa-var-beer: "\f0fc";
|
80 |
+
@fa-var-behance: "\f1b4";
|
81 |
+
@fa-var-behance-square: "\f1b5";
|
82 |
+
@fa-var-bell: "\f0f3";
|
83 |
+
@fa-var-bell-o: "\f0a2";
|
84 |
+
@fa-var-bell-slash: "\f1f6";
|
85 |
+
@fa-var-bell-slash-o: "\f1f7";
|
86 |
+
@fa-var-bicycle: "\f206";
|
87 |
+
@fa-var-binoculars: "\f1e5";
|
88 |
+
@fa-var-birthday-cake: "\f1fd";
|
89 |
+
@fa-var-bitbucket: "\f171";
|
90 |
+
@fa-var-bitbucket-square: "\f172";
|
91 |
+
@fa-var-bitcoin: "\f15a";
|
92 |
+
@fa-var-black-tie: "\f27e";
|
93 |
+
@fa-var-blind: "\f29d";
|
94 |
+
@fa-var-bluetooth: "\f293";
|
95 |
+
@fa-var-bluetooth-b: "\f294";
|
96 |
+
@fa-var-bold: "\f032";
|
97 |
+
@fa-var-bolt: "\f0e7";
|
98 |
+
@fa-var-bomb: "\f1e2";
|
99 |
+
@fa-var-book: "\f02d";
|
100 |
+
@fa-var-bookmark: "\f02e";
|
101 |
+
@fa-var-bookmark-o: "\f097";
|
102 |
+
@fa-var-braille: "\f2a1";
|
103 |
+
@fa-var-briefcase: "\f0b1";
|
104 |
+
@fa-var-btc: "\f15a";
|
105 |
+
@fa-var-bug: "\f188";
|
106 |
+
@fa-var-building: "\f1ad";
|
107 |
+
@fa-var-building-o: "\f0f7";
|
108 |
+
@fa-var-bullhorn: "\f0a1";
|
109 |
+
@fa-var-bullseye: "\f140";
|
110 |
+
@fa-var-bus: "\f207";
|
111 |
+
@fa-var-buysellads: "\f20d";
|
112 |
+
@fa-var-cab: "\f1ba";
|
113 |
+
@fa-var-calculator: "\f1ec";
|
114 |
+
@fa-var-calendar: "\f073";
|
115 |
+
@fa-var-calendar-check-o: "\f274";
|
116 |
+
@fa-var-calendar-minus-o: "\f272";
|
117 |
+
@fa-var-calendar-o: "\f133";
|
118 |
+
@fa-var-calendar-plus-o: "\f271";
|
119 |
+
@fa-var-calendar-times-o: "\f273";
|
120 |
+
@fa-var-camera: "\f030";
|
121 |
+
@fa-var-camera-retro: "\f083";
|
122 |
+
@fa-var-car: "\f1b9";
|
123 |
+
@fa-var-caret-down: "\f0d7";
|
124 |
+
@fa-var-caret-left: "\f0d9";
|
125 |
+
@fa-var-caret-right: "\f0da";
|
126 |
+
@fa-var-caret-square-o-down: "\f150";
|
127 |
+
@fa-var-caret-square-o-left: "\f191";
|
128 |
+
@fa-var-caret-square-o-right: "\f152";
|
129 |
+
@fa-var-caret-square-o-up: "\f151";
|
130 |
+
@fa-var-caret-up: "\f0d8";
|
131 |
+
@fa-var-cart-arrow-down: "\f218";
|
132 |
+
@fa-var-cart-plus: "\f217";
|
133 |
+
@fa-var-cc: "\f20a";
|
134 |
+
@fa-var-cc-amex: "\f1f3";
|
135 |
+
@fa-var-cc-diners-club: "\f24c";
|
136 |
+
@fa-var-cc-discover: "\f1f2";
|
137 |
+
@fa-var-cc-jcb: "\f24b";
|
138 |
+
@fa-var-cc-mastercard: "\f1f1";
|
139 |
+
@fa-var-cc-paypal: "\f1f4";
|
140 |
+
@fa-var-cc-stripe: "\f1f5";
|
141 |
+
@fa-var-cc-visa: "\f1f0";
|
142 |
+
@fa-var-certificate: "\f0a3";
|
143 |
+
@fa-var-chain: "\f0c1";
|
144 |
+
@fa-var-chain-broken: "\f127";
|
145 |
+
@fa-var-check: "\f00c";
|
146 |
+
@fa-var-check-circle: "\f058";
|
147 |
+
@fa-var-check-circle-o: "\f05d";
|
148 |
+
@fa-var-check-square: "\f14a";
|
149 |
+
@fa-var-check-square-o: "\f046";
|
150 |
+
@fa-var-chevron-circle-down: "\f13a";
|
151 |
+
@fa-var-chevron-circle-left: "\f137";
|
152 |
+
@fa-var-chevron-circle-right: "\f138";
|
153 |
+
@fa-var-chevron-circle-up: "\f139";
|
154 |
+
@fa-var-chevron-down: "\f078";
|
155 |
+
@fa-var-chevron-left: "\f053";
|
156 |
+
@fa-var-chevron-right: "\f054";
|
157 |
+
@fa-var-chevron-up: "\f077";
|
158 |
+
@fa-var-child: "\f1ae";
|
159 |
+
@fa-var-chrome: "\f268";
|
160 |
+
@fa-var-circle: "\f111";
|
161 |
+
@fa-var-circle-o: "\f10c";
|
162 |
+
@fa-var-circle-o-notch: "\f1ce";
|
163 |
+
@fa-var-circle-thin: "\f1db";
|
164 |
+
@fa-var-clipboard: "\f0ea";
|
165 |
+
@fa-var-clock-o: "\f017";
|
166 |
+
@fa-var-clone: "\f24d";
|
167 |
+
@fa-var-close: "\f00d";
|
168 |
+
@fa-var-cloud: "\f0c2";
|
169 |
+
@fa-var-cloud-download: "\f0ed";
|
170 |
+
@fa-var-cloud-upload: "\f0ee";
|
171 |
+
@fa-var-cny: "\f157";
|
172 |
+
@fa-var-code: "\f121";
|
173 |
+
@fa-var-code-fork: "\f126";
|
174 |
+
@fa-var-codepen: "\f1cb";
|
175 |
+
@fa-var-codiepie: "\f284";
|
176 |
+
@fa-var-coffee: "\f0f4";
|
177 |
+
@fa-var-cog: "\f013";
|
178 |
+
@fa-var-cogs: "\f085";
|
179 |
+
@fa-var-columns: "\f0db";
|
180 |
+
@fa-var-comment: "\f075";
|
181 |
+
@fa-var-comment-o: "\f0e5";
|
182 |
+
@fa-var-commenting: "\f27a";
|
183 |
+
@fa-var-commenting-o: "\f27b";
|
184 |
+
@fa-var-comments: "\f086";
|
185 |
+
@fa-var-comments-o: "\f0e6";
|
186 |
+
@fa-var-compass: "\f14e";
|
187 |
+
@fa-var-compress: "\f066";
|
188 |
+
@fa-var-connectdevelop: "\f20e";
|
189 |
+
@fa-var-contao: "\f26d";
|
190 |
+
@fa-var-copy: "\f0c5";
|
191 |
+
@fa-var-copyright: "\f1f9";
|
192 |
+
@fa-var-creative-commons: "\f25e";
|
193 |
+
@fa-var-credit-card: "\f09d";
|
194 |
+
@fa-var-credit-card-alt: "\f283";
|
195 |
+
@fa-var-crop: "\f125";
|
196 |
+
@fa-var-crosshairs: "\f05b";
|
197 |
+
@fa-var-css3: "\f13c";
|
198 |
+
@fa-var-cube: "\f1b2";
|
199 |
+
@fa-var-cubes: "\f1b3";
|
200 |
+
@fa-var-cut: "\f0c4";
|
201 |
+
@fa-var-cutlery: "\f0f5";
|
202 |
+
@fa-var-dashboard: "\f0e4";
|
203 |
+
@fa-var-dashcube: "\f210";
|
204 |
+
@fa-var-database: "\f1c0";
|
205 |
+
@fa-var-deaf: "\f2a4";
|
206 |
+
@fa-var-deafness: "\f2a4";
|
207 |
+
@fa-var-dedent: "\f03b";
|
208 |
+
@fa-var-delicious: "\f1a5";
|
209 |
+
@fa-var-desktop: "\f108";
|
210 |
+
@fa-var-deviantart: "\f1bd";
|
211 |
+
@fa-var-diamond: "\f219";
|
212 |
+
@fa-var-digg: "\f1a6";
|
213 |
+
@fa-var-dollar: "\f155";
|
214 |
+
@fa-var-dot-circle-o: "\f192";
|
215 |
+
@fa-var-download: "\f019";
|
216 |
+
@fa-var-dribbble: "\f17d";
|
217 |
+
@fa-var-dropbox: "\f16b";
|
218 |
+
@fa-var-drupal: "\f1a9";
|
219 |
+
@fa-var-edge: "\f282";
|
220 |
+
@fa-var-edit: "\f044";
|
221 |
+
@fa-var-eject: "\f052";
|
222 |
+
@fa-var-ellipsis-h: "\f141";
|
223 |
+
@fa-var-ellipsis-v: "\f142";
|
224 |
+
@fa-var-empire: "\f1d1";
|
225 |
+
@fa-var-envelope: "\f0e0";
|
226 |
+
@fa-var-envelope-o: "\f003";
|
227 |
+
@fa-var-envelope-square: "\f199";
|
228 |
+
@fa-var-envira: "\f299";
|
229 |
+
@fa-var-eraser: "\f12d";
|
230 |
+
@fa-var-eur: "\f153";
|
231 |
+
@fa-var-euro: "\f153";
|
232 |
+
@fa-var-exchange: "\f0ec";
|
233 |
+
@fa-var-exclamation: "\f12a";
|
234 |
+
@fa-var-exclamation-circle: "\f06a";
|
235 |
+
@fa-var-exclamation-triangle: "\f071";
|
236 |
+
@fa-var-expand: "\f065";
|
237 |
+
@fa-var-expeditedssl: "\f23e";
|
238 |
+
@fa-var-external-link: "\f08e";
|
239 |
+
@fa-var-external-link-square: "\f14c";
|
240 |
+
@fa-var-eye: "\f06e";
|
241 |
+
@fa-var-eye-slash: "\f070";
|
242 |
+
@fa-var-eyedropper: "\f1fb";
|
243 |
+
@fa-var-fa: "\f2b4";
|
244 |
+
@fa-var-facebook: "\f09a";
|
245 |
+
@fa-var-facebook-f: "\f09a";
|
246 |
+
@fa-var-facebook-official: "\f230";
|
247 |
+
@fa-var-facebook-square: "\f082";
|
248 |
+
@fa-var-fast-backward: "\f049";
|
249 |
+
@fa-var-fast-forward: "\f050";
|
250 |
+
@fa-var-fax: "\f1ac";
|
251 |
+
@fa-var-feed: "\f09e";
|
252 |
+
@fa-var-female: "\f182";
|
253 |
+
@fa-var-fighter-jet: "\f0fb";
|
254 |
+
@fa-var-file: "\f15b";
|
255 |
+
@fa-var-file-archive-o: "\f1c6";
|
256 |
+
@fa-var-file-audio-o: "\f1c7";
|
257 |
+
@fa-var-file-code-o: "\f1c9";
|
258 |
+
@fa-var-file-excel-o: "\f1c3";
|
259 |
+
@fa-var-file-image-o: "\f1c5";
|
260 |
+
@fa-var-file-movie-o: "\f1c8";
|
261 |
+
@fa-var-file-o: "\f016";
|
262 |
+
@fa-var-file-pdf-o: "\f1c1";
|
263 |
+
@fa-var-file-photo-o: "\f1c5";
|
264 |
+
@fa-var-file-picture-o: "\f1c5";
|
265 |
+
@fa-var-file-powerpoint-o: "\f1c4";
|
266 |
+
@fa-var-file-sound-o: "\f1c7";
|
267 |
+
@fa-var-file-text: "\f15c";
|
268 |
+
@fa-var-file-text-o: "\f0f6";
|
269 |
+
@fa-var-file-video-o: "\f1c8";
|
270 |
+
@fa-var-file-word-o: "\f1c2";
|
271 |
+
@fa-var-file-zip-o: "\f1c6";
|
272 |
+
@fa-var-files-o: "\f0c5";
|
273 |
+
@fa-var-film: "\f008";
|
274 |
+
@fa-var-filter: "\f0b0";
|
275 |
+
@fa-var-fire: "\f06d";
|
276 |
+
@fa-var-fire-extinguisher: "\f134";
|
277 |
+
@fa-var-firefox: "\f269";
|
278 |
+
@fa-var-first-order: "\f2b0";
|
279 |
+
@fa-var-flag: "\f024";
|
280 |
+
@fa-var-flag-checkered: "\f11e";
|
281 |
+
@fa-var-flag-o: "\f11d";
|
282 |
+
@fa-var-flash: "\f0e7";
|
283 |
+
@fa-var-flask: "\f0c3";
|
284 |
+
@fa-var-flickr: "\f16e";
|
285 |
+
@fa-var-floppy-o: "\f0c7";
|
286 |
+
@fa-var-folder: "\f07b";
|
287 |
+
@fa-var-folder-o: "\f114";
|
288 |
+
@fa-var-folder-open: "\f07c";
|
289 |
+
@fa-var-folder-open-o: "\f115";
|
290 |
+
@fa-var-font: "\f031";
|
291 |
+
@fa-var-font-awesome: "\f2b4";
|
292 |
+
@fa-var-fonticons: "\f280";
|
293 |
+
@fa-var-fort-awesome: "\f286";
|
294 |
+
@fa-var-forumbee: "\f211";
|
295 |
+
@fa-var-forward: "\f04e";
|
296 |
+
@fa-var-foursquare: "\f180";
|
297 |
+
@fa-var-frown-o: "\f119";
|
298 |
+
@fa-var-futbol-o: "\f1e3";
|
299 |
+
@fa-var-gamepad: "\f11b";
|
300 |
+
@fa-var-gavel: "\f0e3";
|
301 |
+
@fa-var-gbp: "\f154";
|
302 |
+
@fa-var-ge: "\f1d1";
|
303 |
+
@fa-var-gear: "\f013";
|
304 |
+
@fa-var-gears: "\f085";
|
305 |
+
@fa-var-genderless: "\f22d";
|
306 |
+
@fa-var-get-pocket: "\f265";
|
307 |
+
@fa-var-gg: "\f260";
|
308 |
+
@fa-var-gg-circle: "\f261";
|
309 |
+
@fa-var-gift: "\f06b";
|
310 |
+
@fa-var-git: "\f1d3";
|
311 |
+
@fa-var-git-square: "\f1d2";
|
312 |
+
@fa-var-github: "\f09b";
|
313 |
+
@fa-var-github-alt: "\f113";
|
314 |
+
@fa-var-github-square: "\f092";
|
315 |
+
@fa-var-gitlab: "\f296";
|
316 |
+
@fa-var-gittip: "\f184";
|
317 |
+
@fa-var-glass: "\f000";
|
318 |
+
@fa-var-glide: "\f2a5";
|
319 |
+
@fa-var-glide-g: "\f2a6";
|
320 |
+
@fa-var-globe: "\f0ac";
|
321 |
+
@fa-var-google: "\f1a0";
|
322 |
+
@fa-var-google-plus: "\f0d5";
|
323 |
+
@fa-var-google-plus-circle: "\f2b3";
|
324 |
+
@fa-var-google-plus-official: "\f2b3";
|
325 |
+
@fa-var-google-plus-square: "\f0d4";
|
326 |
+
@fa-var-google-wallet: "\f1ee";
|
327 |
+
@fa-var-graduation-cap: "\f19d";
|
328 |
+
@fa-var-gratipay: "\f184";
|
329 |
+
@fa-var-group: "\f0c0";
|
330 |
+
@fa-var-h-square: "\f0fd";
|
331 |
+
@fa-var-hacker-news: "\f1d4";
|
332 |
+
@fa-var-hand-grab-o: "\f255";
|
333 |
+
@fa-var-hand-lizard-o: "\f258";
|
334 |
+
@fa-var-hand-o-down: "\f0a7";
|
335 |
+
@fa-var-hand-o-left: "\f0a5";
|
336 |
+
@fa-var-hand-o-right: "\f0a4";
|
337 |
+
@fa-var-hand-o-up: "\f0a6";
|
338 |
+
@fa-var-hand-paper-o: "\f256";
|
339 |
+
@fa-var-hand-peace-o: "\f25b";
|
340 |
+
@fa-var-hand-pointer-o: "\f25a";
|
341 |
+
@fa-var-hand-rock-o: "\f255";
|
342 |
+
@fa-var-hand-scissors-o: "\f257";
|
343 |
+
@fa-var-hand-spock-o: "\f259";
|
344 |
+
@fa-var-hand-stop-o: "\f256";
|
345 |
+
@fa-var-hard-of-hearing: "\f2a4";
|
346 |
+
@fa-var-hashtag: "\f292";
|
347 |
+
@fa-var-hdd-o: "\f0a0";
|
348 |
+
@fa-var-header: "\f1dc";
|
349 |
+
@fa-var-headphones: "\f025";
|
350 |
+
@fa-var-heart: "\f004";
|
351 |
+
@fa-var-heart-o: "\f08a";
|
352 |
+
@fa-var-heartbeat: "\f21e";
|
353 |
+
@fa-var-history: "\f1da";
|
354 |
+
@fa-var-home: "\f015";
|
355 |
+
@fa-var-hospital-o: "\f0f8";
|
356 |
+
@fa-var-hotel: "\f236";
|
357 |
+
@fa-var-hourglass: "\f254";
|
358 |
+
@fa-var-hourglass-1: "\f251";
|
359 |
+
@fa-var-hourglass-2: "\f252";
|
360 |
+
@fa-var-hourglass-3: "\f253";
|
361 |
+
@fa-var-hourglass-end: "\f253";
|
362 |
+
@fa-var-hourglass-half: "\f252";
|
363 |
+
@fa-var-hourglass-o: "\f250";
|
364 |
+
@fa-var-hourglass-start: "\f251";
|
365 |
+
@fa-var-houzz: "\f27c";
|
366 |
+
@fa-var-html5: "\f13b";
|
367 |
+
@fa-var-i-cursor: "\f246";
|
368 |
+
@fa-var-ils: "\f20b";
|
369 |
+
@fa-var-image: "\f03e";
|
370 |
+
@fa-var-inbox: "\f01c";
|
371 |
+
@fa-var-indent: "\f03c";
|
372 |
+
@fa-var-industry: "\f275";
|
373 |
+
@fa-var-info: "\f129";
|
374 |
+
@fa-var-info-circle: "\f05a";
|
375 |
+
@fa-var-inr: "\f156";
|
376 |
+
@fa-var-instagram: "\f16d";
|
377 |
+
@fa-var-institution: "\f19c";
|
378 |
+
@fa-var-internet-explorer: "\f26b";
|
379 |
+
@fa-var-intersex: "\f224";
|
380 |
+
@fa-var-ioxhost: "\f208";
|
381 |
+
@fa-var-italic: "\f033";
|
382 |
+
@fa-var-joomla: "\f1aa";
|
383 |
+
@fa-var-jpy: "\f157";
|
384 |
+
@fa-var-jsfiddle: "\f1cc";
|
385 |
+
@fa-var-key: "\f084";
|
386 |
+
@fa-var-keyboard-o: "\f11c";
|
387 |
+
@fa-var-krw: "\f159";
|
388 |
+
@fa-var-language: "\f1ab";
|
389 |
+
@fa-var-laptop: "\f109";
|
390 |
+
@fa-var-lastfm: "\f202";
|
391 |
+
@fa-var-lastfm-square: "\f203";
|
392 |
+
@fa-var-leaf: "\f06c";
|
393 |
+
@fa-var-leanpub: "\f212";
|
394 |
+
@fa-var-legal: "\f0e3";
|
395 |
+
@fa-var-lemon-o: "\f094";
|
396 |
+
@fa-var-level-down: "\f149";
|
397 |
+
@fa-var-level-up: "\f148";
|
398 |
+
@fa-var-life-bouy: "\f1cd";
|
399 |
+
@fa-var-life-buoy: "\f1cd";
|
400 |
+
@fa-var-life-ring: "\f1cd";
|
401 |
+
@fa-var-life-saver: "\f1cd";
|
402 |
+
@fa-var-lightbulb-o: "\f0eb";
|
403 |
+
@fa-var-line-chart: "\f201";
|
404 |
+
@fa-var-link: "\f0c1";
|
405 |
+
@fa-var-linkedin: "\f0e1";
|
406 |
+
@fa-var-linkedin-square: "\f08c";
|
407 |
+
@fa-var-linux: "\f17c";
|
408 |
+
@fa-var-list: "\f03a";
|
409 |
+
@fa-var-list-alt: "\f022";
|
410 |
+
@fa-var-list-ol: "\f0cb";
|
411 |
+
@fa-var-list-ul: "\f0ca";
|
412 |
+
@fa-var-location-arrow: "\f124";
|
413 |
+
@fa-var-lock: "\f023";
|
414 |
+
@fa-var-long-arrow-down: "\f175";
|
415 |
+
@fa-var-long-arrow-left: "\f177";
|
416 |
+
@fa-var-long-arrow-right: "\f178";
|
417 |
+
@fa-var-long-arrow-up: "\f176";
|
418 |
+
@fa-var-low-vision: "\f2a8";
|
419 |
+
@fa-var-magic: "\f0d0";
|
420 |
+
@fa-var-magnet: "\f076";
|
421 |
+
@fa-var-mail-forward: "\f064";
|
422 |
+
@fa-var-mail-reply: "\f112";
|
423 |
+
@fa-var-mail-reply-all: "\f122";
|
424 |
+
@fa-var-male: "\f183";
|
425 |
+
@fa-var-map: "\f279";
|
426 |
+
@fa-var-map-marker: "\f041";
|
427 |
+
@fa-var-map-o: "\f278";
|
428 |
+
@fa-var-map-pin: "\f276";
|
429 |
+
@fa-var-map-signs: "\f277";
|
430 |
+
@fa-var-mars: "\f222";
|
431 |
+
@fa-var-mars-double: "\f227";
|
432 |
+
@fa-var-mars-stroke: "\f229";
|
433 |
+
@fa-var-mars-stroke-h: "\f22b";
|
434 |
+
@fa-var-mars-stroke-v: "\f22a";
|
435 |
+
@fa-var-maxcdn: "\f136";
|
436 |
+
@fa-var-meanpath: "\f20c";
|
437 |
+
@fa-var-medium: "\f23a";
|
438 |
+
@fa-var-medkit: "\f0fa";
|
439 |
+
@fa-var-meh-o: "\f11a";
|
440 |
+
@fa-var-mercury: "\f223";
|
441 |
+
@fa-var-microphone: "\f130";
|
442 |
+
@fa-var-microphone-slash: "\f131";
|
443 |
+
@fa-var-minus: "\f068";
|
444 |
+
@fa-var-minus-circle: "\f056";
|
445 |
+
@fa-var-minus-square: "\f146";
|
446 |
+
@fa-var-minus-square-o: "\f147";
|
447 |
+
@fa-var-mixcloud: "\f289";
|
448 |
+
@fa-var-mobile: "\f10b";
|
449 |
+
@fa-var-mobile-phone: "\f10b";
|
450 |
+
@fa-var-modx: "\f285";
|
451 |
+
@fa-var-money: "\f0d6";
|
452 |
+
@fa-var-moon-o: "\f186";
|
453 |
+
@fa-var-mortar-board: "\f19d";
|
454 |
+
@fa-var-motorcycle: "\f21c";
|
455 |
+
@fa-var-mouse-pointer: "\f245";
|
456 |
+
@fa-var-music: "\f001";
|
457 |
+
@fa-var-navicon: "\f0c9";
|
458 |
+
@fa-var-neuter: "\f22c";
|
459 |
+
@fa-var-newspaper-o: "\f1ea";
|
460 |
+
@fa-var-object-group: "\f247";
|
461 |
+
@fa-var-object-ungroup: "\f248";
|
462 |
+
@fa-var-odnoklassniki: "\f263";
|
463 |
+
@fa-var-odnoklassniki-square: "\f264";
|
464 |
+
@fa-var-opencart: "\f23d";
|
465 |
+
@fa-var-openid: "\f19b";
|
466 |
+
@fa-var-opera: "\f26a";
|
467 |
+
@fa-var-optin-monster: "\f23c";
|
468 |
+
@fa-var-outdent: "\f03b";
|
469 |
+
@fa-var-pagelines: "\f18c";
|
470 |
+
@fa-var-paint-brush: "\f1fc";
|
471 |
+
@fa-var-paper-plane: "\f1d8";
|
472 |
+
@fa-var-paper-plane-o: "\f1d9";
|
473 |
+
@fa-var-paperclip: "\f0c6";
|
474 |
+
@fa-var-paragraph: "\f1dd";
|
475 |
+
@fa-var-paste: "\f0ea";
|
476 |
+
@fa-var-pause: "\f04c";
|
477 |
+
@fa-var-pause-circle: "\f28b";
|
478 |
+
@fa-var-pause-circle-o: "\f28c";
|
479 |
+
@fa-var-paw: "\f1b0";
|
480 |
+
@fa-var-paypal: "\f1ed";
|
481 |
+
@fa-var-pencil: "\f040";
|
482 |
+
@fa-var-pencil-square: "\f14b";
|
483 |
+
@fa-var-pencil-square-o: "\f044";
|
484 |
+
@fa-var-percent: "\f295";
|
485 |
+
@fa-var-phone: "\f095";
|
486 |
+
@fa-var-phone-square: "\f098";
|
487 |
+
@fa-var-photo: "\f03e";
|
488 |
+
@fa-var-picture-o: "\f03e";
|
489 |
+
@fa-var-pie-chart: "\f200";
|
490 |
+
@fa-var-pied-piper: "\f2ae";
|
491 |
+
@fa-var-pied-piper-alt: "\f1a8";
|
492 |
+
@fa-var-pied-piper-pp: "\f1a7";
|
493 |
+
@fa-var-pinterest: "\f0d2";
|
494 |
+
@fa-var-pinterest-p: "\f231";
|
495 |
+
@fa-var-pinterest-square: "\f0d3";
|
496 |
+
@fa-var-plane: "\f072";
|
497 |
+
@fa-var-play: "\f04b";
|
498 |
+
@fa-var-play-circle: "\f144";
|
499 |
+
@fa-var-play-circle-o: "\f01d";
|
500 |
+
@fa-var-plug: "\f1e6";
|
501 |
+
@fa-var-plus: "\f067";
|
502 |
+
@fa-var-plus-circle: "\f055";
|
503 |
+
@fa-var-plus-square: "\f0fe";
|
504 |
+
@fa-var-plus-square-o: "\f196";
|
505 |
+
@fa-var-power-off: "\f011";
|
506 |
+
@fa-var-print: "\f02f";
|
507 |
+
@fa-var-product-hunt: "\f288";
|
508 |
+
@fa-var-puzzle-piece: "\f12e";
|
509 |
+
@fa-var-qq: "\f1d6";
|
510 |
+
@fa-var-qrcode: "\f029";
|
511 |
+
@fa-var-question: "\f128";
|
512 |
+
@fa-var-question-circle: "\f059";
|
513 |
+
@fa-var-question-circle-o: "\f29c";
|
514 |
+
@fa-var-quote-left: "\f10d";
|
515 |
+
@fa-var-quote-right: "\f10e";
|
516 |
+
@fa-var-ra: "\f1d0";
|
517 |
+
@fa-var-random: "\f074";
|
518 |
+
@fa-var-rebel: "\f1d0";
|
519 |
+
@fa-var-recycle: "\f1b8";
|
520 |
+
@fa-var-reddit: "\f1a1";
|
521 |
+
@fa-var-reddit-alien: "\f281";
|
522 |
+
@fa-var-reddit-square: "\f1a2";
|
523 |
+
@fa-var-refresh: "\f021";
|
524 |
+
@fa-var-registered: "\f25d";
|
525 |
+
@fa-var-remove: "\f00d";
|
526 |
+
@fa-var-renren: "\f18b";
|
527 |
+
@fa-var-reorder: "\f0c9";
|
528 |
+
@fa-var-repeat: "\f01e";
|
529 |
+
@fa-var-reply: "\f112";
|
530 |
+
@fa-var-reply-all: "\f122";
|
531 |
+
@fa-var-resistance: "\f1d0";
|
532 |
+
@fa-var-retweet: "\f079";
|
533 |
+
@fa-var-rmb: "\f157";
|
534 |
+
@fa-var-road: "\f018";
|
535 |
+
@fa-var-rocket: "\f135";
|
536 |
+
@fa-var-rotate-left: "\f0e2";
|
537 |
+
@fa-var-rotate-right: "\f01e";
|
538 |
+
@fa-var-rouble: "\f158";
|
539 |
+
@fa-var-rss: "\f09e";
|
540 |
+
@fa-var-rss-square: "\f143";
|
541 |
+
@fa-var-rub: "\f158";
|
542 |
+
@fa-var-ruble: "\f158";
|
543 |
+
@fa-var-rupee: "\f156";
|
544 |
+
@fa-var-safari: "\f267";
|
545 |
+
@fa-var-save: "\f0c7";
|
546 |
+
@fa-var-scissors: "\f0c4";
|
547 |
+
@fa-var-scribd: "\f28a";
|
548 |
+
@fa-var-search: "\f002";
|
549 |
+
@fa-var-search-minus: "\f010";
|
550 |
+
@fa-var-search-plus: "\f00e";
|
551 |
+
@fa-var-sellsy: "\f213";
|
552 |
+
@fa-var-send: "\f1d8";
|
553 |
+
@fa-var-send-o: "\f1d9";
|
554 |
+
@fa-var-server: "\f233";
|
555 |
+
@fa-var-share: "\f064";
|
556 |
+
@fa-var-share-alt: "\f1e0";
|
557 |
+
@fa-var-share-alt-square: "\f1e1";
|
558 |
+
@fa-var-share-square: "\f14d";
|
559 |
+
@fa-var-share-square-o: "\f045";
|
560 |
+
@fa-var-shekel: "\f20b";
|
561 |
+
@fa-var-sheqel: "\f20b";
|
562 |
+
@fa-var-shield: "\f132";
|
563 |
+
@fa-var-ship: "\f21a";
|
564 |
+
@fa-var-shirtsinbulk: "\f214";
|
565 |
+
@fa-var-shopping-bag: "\f290";
|
566 |
+
@fa-var-shopping-basket: "\f291";
|
567 |
+
@fa-var-shopping-cart: "\f07a";
|
568 |
+
@fa-var-sign-in: "\f090";
|
569 |
+
@fa-var-sign-language: "\f2a7";
|
570 |
+
@fa-var-sign-out: "\f08b";
|
571 |
+
@fa-var-signal: "\f012";
|
572 |
+
@fa-var-signing: "\f2a7";
|
573 |
+
@fa-var-simplybuilt: "\f215";
|
574 |
+
@fa-var-sitemap: "\f0e8";
|
575 |
+
@fa-var-skyatlas: "\f216";
|
576 |
+
@fa-var-skype: "\f17e";
|
577 |
+
@fa-var-slack: "\f198";
|
578 |
+
@fa-var-sliders: "\f1de";
|
579 |
+
@fa-var-slideshare: "\f1e7";
|
580 |
+
@fa-var-smile-o: "\f118";
|
581 |
+
@fa-var-snapchat: "\f2ab";
|
582 |
+
@fa-var-snapchat-ghost: "\f2ac";
|
583 |
+
@fa-var-snapchat-square: "\f2ad";
|
584 |
+
@fa-var-soccer-ball-o: "\f1e3";
|
585 |
+
@fa-var-sort: "\f0dc";
|
586 |
+
@fa-var-sort-alpha-asc: "\f15d";
|
587 |
+
@fa-var-sort-alpha-desc: "\f15e";
|
588 |
+
@fa-var-sort-amount-asc: "\f160";
|
589 |
+
@fa-var-sort-amount-desc: "\f161";
|
590 |
+
@fa-var-sort-asc: "\f0de";
|
591 |
+
@fa-var-sort-desc: "\f0dd";
|
592 |
+
@fa-var-sort-down: "\f0dd";
|
593 |
+
@fa-var-sort-numeric-asc: "\f162";
|
594 |
+
@fa-var-sort-numeric-desc: "\f163";
|
595 |
+
@fa-var-sort-up: "\f0de";
|
596 |
+
@fa-var-soundcloud: "\f1be";
|
597 |
+
@fa-var-space-shuttle: "\f197";
|
598 |
+
@fa-var-spinner: "\f110";
|
599 |
+
@fa-var-spoon: "\f1b1";
|
600 |
+
@fa-var-spotify: "\f1bc";
|
601 |
+
@fa-var-square: "\f0c8";
|
602 |
+
@fa-var-square-o: "\f096";
|
603 |
+
@fa-var-stack-exchange: "\f18d";
|
604 |
+
@fa-var-stack-overflow: "\f16c";
|
605 |
+
@fa-var-star: "\f005";
|
606 |
+
@fa-var-star-half: "\f089";
|
607 |
+
@fa-var-star-half-empty: "\f123";
|
608 |
+
@fa-var-star-half-full: "\f123";
|
609 |
+
@fa-var-star-half-o: "\f123";
|
610 |
+
@fa-var-star-o: "\f006";
|
611 |
+
@fa-var-steam: "\f1b6";
|
612 |
+
@fa-var-steam-square: "\f1b7";
|
613 |
+
@fa-var-step-backward: "\f048";
|
614 |
+
@fa-var-step-forward: "\f051";
|
615 |
+
@fa-var-stethoscope: "\f0f1";
|
616 |
+
@fa-var-sticky-note: "\f249";
|
617 |
+
@fa-var-sticky-note-o: "\f24a";
|
618 |
+
@fa-var-stop: "\f04d";
|
619 |
+
@fa-var-stop-circle: "\f28d";
|
620 |
+
@fa-var-stop-circle-o: "\f28e";
|
621 |
+
@fa-var-street-view: "\f21d";
|
622 |
+
@fa-var-strikethrough: "\f0cc";
|
623 |
+
@fa-var-stumbleupon: "\f1a4";
|
624 |
+
@fa-var-stumbleupon-circle: "\f1a3";
|
625 |
+
@fa-var-subscript: "\f12c";
|
626 |
+
@fa-var-subway: "\f239";
|
627 |
+
@fa-var-suitcase: "\f0f2";
|
628 |
+
@fa-var-sun-o: "\f185";
|
629 |
+
@fa-var-superscript: "\f12b";
|
630 |
+
@fa-var-support: "\f1cd";
|
631 |
+
@fa-var-table: "\f0ce";
|
632 |
+
@fa-var-tablet: "\f10a";
|
633 |
+
@fa-var-tachometer: "\f0e4";
|
634 |
+
@fa-var-tag: "\f02b";
|
635 |
+
@fa-var-tags: "\f02c";
|
636 |
+
@fa-var-tasks: "\f0ae";
|
637 |
+
@fa-var-taxi: "\f1ba";
|
638 |
+
@fa-var-television: "\f26c";
|
639 |
+
@fa-var-tencent-weibo: "\f1d5";
|
640 |
+
@fa-var-terminal: "\f120";
|
641 |
+
@fa-var-text-height: "\f034";
|
642 |
+
@fa-var-text-width: "\f035";
|
643 |
+
@fa-var-th: "\f00a";
|
644 |
+
@fa-var-th-large: "\f009";
|
645 |
+
@fa-var-th-list: "\f00b";
|
646 |
+
@fa-var-themeisle: "\f2b2";
|
647 |
+
@fa-var-thumb-tack: "\f08d";
|
648 |
+
@fa-var-thumbs-down: "\f165";
|
649 |
+
@fa-var-thumbs-o-down: "\f088";
|
650 |
+
@fa-var-thumbs-o-up: "\f087";
|
651 |
+
@fa-var-thumbs-up: "\f164";
|
652 |
+
@fa-var-ticket: "\f145";
|
653 |
+
@fa-var-times: "\f00d";
|
654 |
+
@fa-var-times-circle: "\f057";
|
655 |
+
@fa-var-times-circle-o: "\f05c";
|
656 |
+
@fa-var-tint: "\f043";
|
657 |
+
@fa-var-toggle-down: "\f150";
|
658 |
+
@fa-var-toggle-left: "\f191";
|
659 |
+
@fa-var-toggle-off: "\f204";
|
660 |
+
@fa-var-toggle-on: "\f205";
|
661 |
+
@fa-var-toggle-right: "\f152";
|
662 |
+
@fa-var-toggle-up: "\f151";
|
663 |
+
@fa-var-trademark: "\f25c";
|
664 |
+
@fa-var-train: "\f238";
|
665 |
+
@fa-var-transgender: "\f224";
|
666 |
+
@fa-var-transgender-alt: "\f225";
|
667 |
+
@fa-var-trash: "\f1f8";
|
668 |
+
@fa-var-trash-o: "\f014";
|
669 |
+
@fa-var-tree: "\f1bb";
|
670 |
+
@fa-var-trello: "\f181";
|
671 |
+
@fa-var-tripadvisor: "\f262";
|
672 |
+
@fa-var-trophy: "\f091";
|
673 |
+
@fa-var-truck: "\f0d1";
|
674 |
+
@fa-var-try: "\f195";
|
675 |
+
@fa-var-tty: "\f1e4";
|
676 |
+
@fa-var-tumblr: "\f173";
|
677 |
+
@fa-var-tumblr-square: "\f174";
|
678 |
+
@fa-var-turkish-lira: "\f195";
|
679 |
+
@fa-var-tv: "\f26c";
|
680 |
+
@fa-var-twitch: "\f1e8";
|
681 |
+
@fa-var-twitter: "\f099";
|
682 |
+
@fa-var-twitter-square: "\f081";
|
683 |
+
@fa-var-umbrella: "\f0e9";
|
684 |
+
@fa-var-underline: "\f0cd";
|
685 |
+
@fa-var-undo: "\f0e2";
|
686 |
+
@fa-var-universal-access: "\f29a";
|
687 |
+
@fa-var-university: "\f19c";
|
688 |
+
@fa-var-unlink: "\f127";
|
689 |
+
@fa-var-unlock: "\f09c";
|
690 |
+
@fa-var-unlock-alt: "\f13e";
|
691 |
+
@fa-var-unsorted: "\f0dc";
|
692 |
+
@fa-var-upload: "\f093";
|
693 |
+
@fa-var-usb: "\f287";
|
694 |
+
@fa-var-usd: "\f155";
|
695 |
+
@fa-var-user: "\f007";
|
696 |
+
@fa-var-user-md: "\f0f0";
|
697 |
+
@fa-var-user-plus: "\f234";
|
698 |
+
@fa-var-user-secret: "\f21b";
|
699 |
+
@fa-var-user-times: "\f235";
|
700 |
+
@fa-var-users: "\f0c0";
|
701 |
+
@fa-var-venus: "\f221";
|
702 |
+
@fa-var-venus-double: "\f226";
|
703 |
+
@fa-var-venus-mars: "\f228";
|
704 |
+
@fa-var-viacoin: "\f237";
|
705 |
+
@fa-var-viadeo: "\f2a9";
|
706 |
+
@fa-var-viadeo-square: "\f2aa";
|
707 |
+
@fa-var-video-camera: "\f03d";
|
708 |
+
@fa-var-vimeo: "\f27d";
|
709 |
+
@fa-var-vimeo-square: "\f194";
|
710 |
+
@fa-var-vine: "\f1ca";
|
711 |
+
@fa-var-vk: "\f189";
|
712 |
+
@fa-var-volume-control-phone: "\f2a0";
|
713 |
+
@fa-var-volume-down: "\f027";
|
714 |
+
@fa-var-volume-off: "\f026";
|
715 |
+
@fa-var-volume-up: "\f028";
|
716 |
+
@fa-var-warning: "\f071";
|
717 |
+
@fa-var-wechat: "\f1d7";
|
718 |
+
@fa-var-weibo: "\f18a";
|
719 |
+
@fa-var-weixin: "\f1d7";
|
720 |
+
@fa-var-whatsapp: "\f232";
|
721 |
+
@fa-var-wheelchair: "\f193";
|
722 |
+
@fa-var-wheelchair-alt: "\f29b";
|
723 |
+
@fa-var-wifi: "\f1eb";
|
724 |
+
@fa-var-wikipedia-w: "\f266";
|
725 |
+
@fa-var-windows: "\f17a";
|
726 |
+
@fa-var-won: "\f159";
|
727 |
+
@fa-var-wordpress: "\f19a";
|
728 |
+
@fa-var-wpbeginner: "\f297";
|
729 |
+
@fa-var-wpforms: "\f298";
|
730 |
+
@fa-var-wrench: "\f0ad";
|
731 |
+
@fa-var-xing: "\f168";
|
732 |
+
@fa-var-xing-square: "\f169";
|
733 |
+
@fa-var-y-combinator: "\f23b";
|
734 |
+
@fa-var-y-combinator-square: "\f1d4";
|
735 |
+
@fa-var-yahoo: "\f19e";
|
736 |
+
@fa-var-yc: "\f23b";
|
737 |
+
@fa-var-yc-square: "\f1d4";
|
738 |
+
@fa-var-yelp: "\f1e9";
|
739 |
+
@fa-var-yen: "\f157";
|
740 |
+
@fa-var-yoast: "\f2b1";
|
741 |
+
@fa-var-youtube: "\f167";
|
742 |
+
@fa-var-youtube-play: "\f16a";
|
743 |
+
@fa-var-youtube-square: "\f166";
|
744 |
+
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/scss/_animated.scss
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Spinning Icons
|
2 |
+
// --------------------------
|
3 |
+
|
4 |
+
.#{$fa-css-prefix}-spin {
|
5 |
+
-webkit-animation: fa-spin 2s infinite linear;
|
6 |
+
animation: fa-spin 2s infinite linear;
|
7 |
+
}
|
8 |
+
|
9 |
+
.#{$fa-css-prefix}-pulse {
|
10 |
+
-webkit-animation: fa-spin 1s infinite steps(8);
|
11 |
+
animation: fa-spin 1s infinite steps(8);
|
12 |
+
}
|
13 |
+
|
14 |
+
@-webkit-keyframes fa-spin {
|
15 |
+
0% {
|
16 |
+
-webkit-transform: rotate(0deg);
|
17 |
+
transform: rotate(0deg);
|
18 |
+
}
|
19 |
+
100% {
|
20 |
+
-webkit-transform: rotate(359deg);
|
21 |
+
transform: rotate(359deg);
|
22 |
+
}
|
23 |
+
}
|
24 |
+
|
25 |
+
@keyframes fa-spin {
|
26 |
+
0% {
|
27 |
+
-webkit-transform: rotate(0deg);
|
28 |
+
transform: rotate(0deg);
|
29 |
+
}
|
30 |
+
100% {
|
31 |
+
-webkit-transform: rotate(359deg);
|
32 |
+
transform: rotate(359deg);
|
33 |
+
}
|
34 |
+
}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/scss/_bordered-pulled.scss
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Bordered & Pulled
|
2 |
+
// -------------------------
|
3 |
+
|
4 |
+
.#{$fa-css-prefix}-border {
|
5 |
+
padding: .2em .25em .15em;
|
6 |
+
border: solid .08em $fa-border-color;
|
7 |
+
border-radius: .1em;
|
8 |
+
}
|
9 |
+
|
10 |
+
.#{$fa-css-prefix}-pull-left { float: left; }
|
11 |
+
.#{$fa-css-prefix}-pull-right { float: right; }
|
12 |
+
|
13 |
+
.#{$fa-css-prefix} {
|
14 |
+
&.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
|
15 |
+
&.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
|
16 |
+
}
|
17 |
+
|
18 |
+
/* Deprecated as of 4.4.0 */
|
19 |
+
.pull-right { float: right; }
|
20 |
+
.pull-left { float: left; }
|
21 |
+
|
22 |
+
.#{$fa-css-prefix} {
|
23 |
+
&.pull-left { margin-right: .3em; }
|
24 |
+
&.pull-right { margin-left: .3em; }
|
25 |
+
}
|
Twitter_sentiment/Twitter-Sentiment-Analysis-Web/static/font-awesome/scss/_core.scss
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// Base Class Definition
|
2 |
+
// -------------------------
|
3 |
+
|
4 |
+
.#{$fa-css-prefix} {
|
5 |
+
display: inline-block;
|
6 |
+
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
|
7 |
+
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
8 |
+
text-rendering: auto; // optimizelegibility throws things off #1094
|
9 |
+
-webkit-font-smoothing: antialiased;
|
10 |
+
-moz-osx-font-smoothing: grayscale;
|
11 |
+
|
12 |
+
}
|