Commit 4d8fc29ebee077feb21a7c6f5ca5dc6a3b462b55

Authored by Nam Tran
1 parent 4fbb0ca3e3

Id added for login.html

Showing 9 changed files with 94 additions and 134 deletions Inline Diff

<!DOCTYPE html> 1 1 <!DOCTYPE html>
<html ng-app="flashy"> 2 2 <html ng-app="flashy">
<base href="/app/"> 3 3 <base href="/app/">
<head> 4 4 <head>
5 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<link rel="stylesheet" 5 6 <link rel="stylesheet"
href="https://ajax.googleapis.com/ajax/libs/angular_material/0.9.0/angular-material.min.css"> 6 7 href="https://ajax.googleapis.com/ajax/libs/angular_material/0.9.0/angular-material.min.css">
7 8
<link rel="stylesheet" href="styles/flashier.css"/> 8 9 <link rel="stylesheet" href="styles/flashier.css"/>
<link rel="stylesheet" href="styles/flashy.css"/> 9 10 <link rel="stylesheet" href="styles/flashy.css"/>
<link href='https://fonts.googleapis.com/css?family=Titillium+Web:200,200italic,300,600,400,900,700,400italic,700italic,300italic,600italic' 10 11 <link href='https://fonts.googleapis.com/css?family=Titillium+Web:200,200italic,300,600,400,900,700,400italic,700italic,300italic,600italic'
rel='stylesheet' type='text/css'> 11 12 rel='stylesheet' type='text/css'>
<title>Flashy</title> 12 13 <title>Flashy</title>
</head> 13 14 </head>
<header> 14 15 <header>
15 16
<!--<a href="#" style="position:absolute;top:0;left:0;" data-activates="sidebar" class="button-collapse"><i 16 17 <!--<a href="#" style="position:absolute;top:0;left:0;" data-activates="sidebar" class="button-collapse"><i
class="medium mdi-navigation-menu"></i></a> 17 18 class="medium mdi-navigation-menu"></i></a>
<ul ng-show="isLoggedIn" id="sidebar" class="side-nav fixed ng-cloak"> 18 19 <ul ng-show="isLoggedIn" id="sidebar" class="side-nav fixed ng-cloak">
<li class="logo"><a href="//flashy.cards/" id="logo-container"> 19 20 <li class="logo"><a href="//flashy.cards/" id="logo-container">
20 21
<h1>Flashy</h1> 21 22 <h1>Flashy</h1>
</a></li> 22 23 </a></li>
<li class="no-padding"> 23 24 <li class="no-padding">
<ul class="collapsible" data-collapsible="accordion"> 24 25 <ul class="collapsible" data-collapsible="accordion">
<li class="bold"> 25 26 <li class="bold">
<a class="collapsible-header black-text">Classes</a> 26 27 <a class="collapsible-header black-text">Classes</a>
</li> 27 28 </li>
<div class="collapsible-body" style="display: block"> 28 29 <div class="collapsible-body" style="display: block">
<ul> 29 30 <ul>
<li ui-sref-active="active" ng-repeat="section in sections"> 30 31 <li ui-sref-active="active" ng-repeat="section in sections">
<a class="class bold" ui-sref="feed({sectionId:{{section.id}}})">{{section.short_name}}</a> 31 32 <a class="class bold" ui-sref="feed({sectionId:{{section.id}}})">{{section.short_name}}</a>
</li> 32 33 </li>
</ul> 33 34 </ul>
</div> 34 35 </div>
</ul> 35 36 </ul>
</li> 36 37 </li>
<li class="bold"><a ui-sref="addclass">Add Class</a></li> 37 38 <li class="bold"><a ui-sref="addclass">Add Class</a></li>
<li class="bold"><a ui-sref="study">Study</a></li> 38 39 <li class="bold"><a ui-sref="study">Study</a></li>
<li class="bold"><a ui-sref="logout">Logout</a></li> 39 40 <li class="bold"><a ui-sref="logout">Logout</a></li>
</ul>--> 40 41 </ul>-->
41 42
42 43
</header> 43 44 </header>
<body ng-controller="RootController"> 44 45 <body ng-controller="RootController">
45 46
<!-- Menu Bar --> 46 47 <!-- Menu Bar -->
<nav ng-show="isLoggedIn"> 47 48 <nav>
<div class="nav-wrapper"> 48 49 <div class="nav-wrapper">
<a href="#" class="brand-logo center">Flashy</a> 49 50 <a href="#" class="brand-logo center">Flashy</a>
<ul id="nav-mobile" class="right hide-on-med-and-down"> 50 51 <ul ng-show="isLoggedIn" id="nav-mobile" class="right hide-on-med-and-down">
51 52
<ul id="dropdown1" class="dropdown-content"> 52 53 <ul id="dropdown1" class="dropdown-content">
53 54
<li ui-sref-active="active" ng-repeat="section in sections"> 54 55 <li ui-sref-active="active" ng-repeat="section in sections">
<a class="class bold" ui-sref="feed({sectionId:{{section.id}}})">{{section.short_name}}</a> 55 56 <a class="class bold" ui-sref="feed({sectionId:{{section.id}}})">{{section.short_name}}</a>
</li> 56 57 </li>
<li class="divider"></li> 57 58 <li class="divider"></li>
<li><a ui-sref="addclass">Add Class</a></li> 58 59 <li><a ui-sref="addclass">Add Class</a></li>
</ul> 59
60
61
<li><a class="dropdown-button" href="#!" data-activates="dropdown1">Classes<i class="mdi-navigation-arrow-drop-down right"></i></a></li> 62
<li><a ui-sref="study">Study</a></li> 63
<li><a ui-sref="logout">Logout</a></li> 64
</ul> 65 60 </ul>
</div> 66
</nav> 67
68 61
<div class="" ui-view></div> 69
70 62
63 <li><a class="dropdown-button" href="#!" data-activates="dropdown1">Classes<i
64 class="mdi-navigation-arrow-drop-down right"></i></a></li>
65 <li><a ui-sref="study">Study</a></li>
66 <li><a ui-sref="logout">Logout</a></li>
67 </ul>
68 </div>
69 </nav>
71 70
<!--<main> 72 71 <main ui-view></main>
<div class="" ui-view></div> 73
</main>--> 74
75 72
</body> 76 73 </body>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.js"></script> 77 74 <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.14/angular-ui-router.js"></script> 78 75 <script src="//cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.14/angular-ui-router.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-cookies.js"></script> 79 76 <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-cookies.js"></script>
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script> 80 77 <script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="scripts/materialize.js"></script> 81 78 <script type="text/javascript" src="scripts/materialize.js"></script>
<script type="text/javascript" src="scripts/jquery.collapsible.js"></script> 82 79 <script type="text/javascript" src="scripts/jquery.collapsible.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angular_material/0.9.0/angular-material.min.js"></script> 83 80 <script src="https://ajax.googleapis.com/ajax/libs/angular_material/0.9.0/angular-material.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-animate.min.js"></script> 84 81 <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-animate.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-aria.min.js"></script> 85 82 <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-aria.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-filter/0.5.4/angular-filter.js"></script> 86 83 <script src="https://cdnjs.cloudflare.com/ajax/libs/angular-filter/0.5.4/angular-filter.js"></script>
87 84
88 85
<script src="config.js"></script> 89 86 <script src="config.js"></script>
90 87
<!-- Controllers --> 91 88 <!-- Controllers -->
<script src="scripts/FeedController.js"></script> 92 89 <script src="scripts/FeedController.js"></script>
<script src="scripts/RootController.js"></script> 93 90 <script src="scripts/RootController.js"></script>
<script src="scripts/LoginController.js"></script> 94 91 <script src="scripts/LoginController.js"></script>
<script src="scripts/LogoutController.js"></script> 95 92 <script src="scripts/LogoutController.js"></script>
<script src="scripts/DeckController.js"></script> 96 93 <script src="scripts/DeckController.js"></script>
<script src="scripts/RequestResetController.js"></script> 97 94 <script src="scripts/RequestResetController.js"></script>
<script src="scripts/ClassAddController.js"></script> 98 95 <script src="scripts/ClassAddController.js"></script>
<script src="scripts/StudyController.js"></script> 99 96 <script src="scripts/StudyController.js"></script>
<script src="scripts/ResetPasswordController.js"></script> 100 97 <script src="scripts/ResetPasswordController.js"></script>
<script src="scripts/CardListController.js"></script> 101 98 <script src="scripts/CardListController.js"></script>
<script src="scripts/VerifyEmailController.js"></script> 102 99 <script src="scripts/VerifyEmailController.js"></script>
<!--<script src="scripts/SidebarController.js"></script>--> 103 100 <!--<script src="scripts/SidebarController.js"></script>-->
104 101
<!-- Services --> 105 102 <!-- Services -->
<script src="scripts/UserService.js"></script> 106 103 <script src="scripts/UserService.js"></script>
107 104
<!-- Directives --> 108 105 <!-- Directives -->
<script src="scripts/FlashcardDirective.js"></script> 109 106 <script src="scripts/FlashcardDirective.js"></script>
110 107
<!-- Other --> 111 108 <!-- Other -->
<!--<script src="scripts/StudyController.js"></script>--> 112 109 <!--<script src="scripts/StudyController.js"></script>-->
113 110
114 111
</html> 115 112 </html>
116 113
sass/flashier.scss View file @ 4d8fc29
@import "materialize"; 1 1 @import "materialize";
2
header, main, footer { 3
padding-left: 240px; 4
} 5
6
7
@media #{$medium-and-down} { 8
header, main, footer { 9
scripts/FeedController.js View file @ 4d8fc29
angular.module('flashy.FeedController', ['ui.router']). 1 1 angular.module('flashy.FeedController', ['ui.router']).
2 2
controller('FeedController', ['$scope', '$stateParams', '$state', '$http', function ($scope, $stateParams, $state, $http) { 3 3 controller('FeedController', ['$scope', '$stateParams', '$state', '$http', function($scope, $stateParams, $state, $http) {
4 4
5 5
6 6
console.log('Hello from feed'); 7 7 console.log('Hello from feed');
sectionId = $stateParams.sectionId; 8 8 sectionId = $stateParams.sectionId;
$scope.cards = []; 9 9 $scope.cards = [];
10 10
var loc = window.location, new_uri; 11 11 var loc = window.location, new_uri;
if (loc.protocol === 'https:') { 12 12 if (loc.protocol === 'https:') {
new_uri = 'wss:'; 13 13 new_uri = 'wss:';
} else { 14 14 } else {
new_uri = 'ws:'; 15 15 new_uri = 'ws:';
} 16 16 }
new_uri += '//' + loc.host; 17 17 new_uri += '//' + loc.host;
var ws = new WebSocket(new_uri + '/ws/feed/' + sectionId + '?subscribe-broadcast'); 18 18 var ws = new WebSocket(new_uri + '/ws/feed/' + sectionId + '?subscribe-broadcast');
19 19
ws.onopen = function() { 20 20 ws.onopen = function() {
console.log('websocket connected'); 21 21 console.log('websocket connected');
}; 22 22 };
ws.onmessage = function(e) { 23 23 ws.onmessage = function(e) {
console.log('got websocket message ' + e.data); 24 24 console.log('got websocket message ' + e.data);
$scope.refreshCards(); 25 25 $scope.refreshCards();
}; 26 26 };
ws.onerror = function(e) { 27 27 ws.onerror = function(e) {
console.error(e); 28 28 console.error(e);
}; 29 29 };
ws.onclose = function(e) { 30 30 ws.onclose = function(e) {
console.log('connection closed'); 31 31 console.log('connection closed');
}; 32 32 };
33 33
$http.get('/api/sections/' + sectionId + '/feed/'). 34 34 $http.get('/api/sections/' + sectionId + '/feed/').
success(function(data) { 35 35 success(function(data) {
console.log(data); 36 36 console.log(data);
$scope.cards = data; 37 37 $scope.cards = data;
}). 38 38 }).
error(function(err) { 39 39 error(function(err) {
console.log('pulling feed failed'); 40 40 console.log('pulling feed failed');
}); 41 41 });
42 42
$scope.viewDeck = function() { 43 43 $scope.viewDeck = function() {
$state.go('deck', {sectionId: sectionId}); 44 44 $state.go('deck', {sectionId: sectionId});
console.log('go to deck'); 45 45 console.log('go to deck');
}; 46 46 };
47 47
$scope.pushCard = function() { 48 48 $scope.pushCard = function() {
console.log('make! card content:' + $scope.text); 49 49 console.log('make! card content:' + $scope.text);
var pushed = new Date(Date.now()); 50 50 var pushed = new Date(Date.now());
console.log(pushed.toString()); 51 51 console.log(pushed.toString());
text = $scope.text; 52 52 text = $scope.text;
// attempt to make card :( 53 53 // attempt to make card :(
var myCard = { 54 54 var myCard = {
'text': $scope.text, 55 55 'text': $scope.text,
'material_date': pushed, 56 56 'material_date': pushed,
'mask': '[]', 57 57 'mask': '[]',
section: sectionId 58 58 section: sectionId
}; 59 59 };
$http.post('/api/flashcards/', myCard). 60 60 $http.post('/api/flashcards/', myCard).
success(function(data) { 61 61 success(function(data) {
console.log('pushed a card!'); 62 62 console.log('pushed a card!');
listenForC = true; 63 63 listenForC = true;
}). 64 64 }).
error(function(error) { 65 65 error(function(error) {
console.log('something went wrong pushing a card!'); 66 66 console.log('something went wrong pushing a card!');
}); 67 67 });
68 68
$scope.text = ''; 69 69 $scope.text = '';
}; 70 70 };
71 71
$scope.refreshCards = function() { 72 72 $scope.refreshCards = function() {
$http.get('/api/sections/' + sectionId + '/feed/'). 73 73 $http.get('/api/sections/' + sectionId + '/feed/').
success(function(data) { 74 74 success(function(data) {
console.log(data); 75 75 console.log(data);
$scope.cards = data; 76 76 $scope.cards = data;
console.log('success in refresh cards...'); 77 77 console.log('success in refresh cards...');
}). 78 78 }).
error(function(err) { 79 79 error(function(err) {
console.log('refresh fail'); 80 80 console.log('refresh fail');
}); 81 81 });
}; 82 82 };
83 83
/* Key bindings for the whole feed window. Hotkey it up! */ 84 84 /* Key bindings for the whole feed window. Hotkey it up! */
var listenForC = true; 85 85 var listenForC = true;
86 86
// Need to pass these options into openmodal and leanmodal, 87 87 // Need to pass these options into openmodal and leanmodal,
// otherwise the ready handler doesn't get called 88 88 // otherwise the ready handler doesn't get called
89 89
modal_options = { 90 90 modal_options = {
dismissible: true, // Modal can be dismissed by clicking outside of the modal 91 91 dismissible: true, // Modal can be dismissed by clicking outside of the modal
opacity: 0, // Opacity of modal background 92 92 opacity: 0, // Opacity of modal background
in_duration: 300, // Transition in duration 93 93 in_duration: 300, // Transition in duration
out_duration: 200, // Transition out duration 94 94 out_duration: 200, // Transition out duration
ready: function() { 95 95 ready: function() {
listenForC = false; 96 96 listenForC = false;
console.log('modal OPENING'); 97 97 console.log('modal OPENING');
$('#new-card-input').focus(); 98 98 $('#new-card-input').focus();
}, 99 99 },
complete: function() { 100 100 complete: function() {
listenForC = true; 101 101 listenForC = true;
console.log('modal done, closing'); 102 102 console.log('modal done, closing');
$('#new-card-input').blur(); 103 103 $('#new-card-input').blur();
} 104 104 }
}; 105 105 };
106 106
$(document).keydown(function(e) { 107 107 $(document).keydown(function(e) {
var keyed = e.which; 108 108 var keyed = e.which;
if (keyed == 67 && listenForC) { // "c" or "C" for compose 109 109 if (keyed == 67 && listenForC) { // "c" or "C" for compose
$('#newCard').openModal(modal_options); 110 110 $('#newCard').openModal(modal_options);
e.preventDefault(); 111 111 e.preventDefault();
listenForC = false; 112 112 listenForC = false;
return false; 113 113 return false;
} else if (keyed == 13 || keyed == 27) { // enter or esc, respectively 114 114 } else if (keyed == 13 || keyed == 27) { // enter or esc, respectively
listenForC = true; 115 115 listenForC = true;
document.getElementById('new-card-input').value = ''; 116 116 document.getElementById('new-card-input').value = '';
} 117 117 }
}); 118 118 });
119 119
$scope.flashcard = ''; 120 120 $scope.flashcard = '';
$scope.text = ''; 121 121 $scope.text = '';
var selected_start = 0; 122 122 var selected_start = 0;
var selected_end = 0; 123 123 var selected_end = 0;
$(document).ready(function() { 124 124 $(document).ready(function() {
// the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered 125 125 // the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered
$('.modal-trigger').leanModal(modal_options); 126 126 $('.modal-trigger').leanModal(modal_options);
$('#new-card-input').on('mouseup', function() { 127 127 $('#new-card-input').on('mouseup', function() {
selected_start = this.selectionStart; 128 128 selected_start = this.selectionStart;
selected_end = this.selectionEnd; 129 129 selected_end = this.selectionEnd;
}); 130 130 });
scripts/FlashcardDirective.js View file @ 4d8fc29
angular.module('flashy.FlashcardDirective', []). 1 1 angular.module('flashy.FlashcardDirective', []).
2 2
directive('flashcard', ['$http', '$state', '$window', 3 3 directive('flashcard', ['$http', '$state', '$window',
function($http, $state, $window) { 4 4 function($http, $state, $window) {
return { 5 5 return {
templateUrl: '/app/templates/flashcard.html', 6 6 templateUrl: '/app/templates/flashcard.html',
restrict: 'E', 7 7 restrict: 'E',
scope: { 8 8 scope: {
flashcard: '=flashcardObj', // flashcard-obj in parent html 9 9 flashcard: '=flashcardObj', // flashcard-obj in parent html
refresh: '&' // eval refresh in parent html 10 10 refresh: '&' // eval refresh in parent html
}, 11 11 },
link: function(scope, element) { 12 12 link: function(scope, element) {
/* Handles width of the card */ 13 13 /* Handles width of the card */
function refresh_width() { 14 14 function refresh_width() {
avail = $window.innerWidth - 17; 15 15 avail = $window.innerWidth - 17;
if (avail > 992) avail -= 240; 16
width = Math.floor(avail / Math.floor(avail / 250) - 12); 17 16 width = Math.floor(avail / Math.floor(avail / 250) - 12);
element.children().css({ 18 17 element.children().css({
width: width + 'px', 19 18 width: width + 'px',
height: (width * 3 / 5) + 'px', 20 19 height: (width * 3 / 5) + 'px',
'font-size': 100 * width / 250 + '%' 21 20 'font-size': 100 * width / 250 + '%'
}); 22 21 });
}; 23 22 };
angular.element($window).bind('resize', refresh_width); 24 23 angular.element($window).bind('resize', refresh_width);
refresh_width(); 25 24 refresh_width();
26 25
/* Pulls card from feed into deck */ 27 26 /* Pulls card from feed into deck */
scope.pullCard = function(flashcard) { 28 27 scope.pullCard = function(flashcard) {
if ($state.current.name == 'feed') { 29 28 if ($state.current.name == 'feed') {
$http.post('/api/flashcards/' + flashcard.id + '/pull/', flashcard). 30 29 $http.post('/api/flashcards/' + flashcard.id + '/pull/', flashcard).
success(function(data) { 31 30 success(function(data) {
console.log('pulled flashcard #' + flashcard.id); 32 31 console.log('pulled flashcard #' + flashcard.id);
scope.startShrink = true; 33 32 scope.startShrink = true;
scope.refresh(); 34 33 scope.refresh();
}). 35 34 }).
error(function(data) { 36 35 error(function(data) {
console.log('failed to pull flashcard #' + flashcard.id); 37 36 console.log('failed to pull flashcard #' + flashcard.id);
}); 38 37 });
} 39 38 }
}; 40 39 };
41 40
/* Unpulls card from deck */ 42 41 /* Unpulls card from deck */
scope.unpullCard = function(flashcard) { 43 42 scope.unpullCard = function(flashcard) {
if ($state.current.name == 'deck') { 44 43 if ($state.current.name == 'deck') {
console.log('unpulling card...'); 45 44 console.log('unpulling card...');
46 45
$http.post('/api/flashcards/' + flashcard.id + '/unpull/', 47 46 $http.post('/api/flashcards/' + flashcard.id + '/unpull/',
flashcard). 48 47 flashcard).
success(function(data) { 49 48 success(function(data) {
console.log('card unpull success'); 50 49 console.log('card unpull success');
scope.startShrink = true; 51 50 scope.startShrink = true;
scope.refresh(); 52 51 scope.refresh();
}). 53 52 }).
error(function(data) { 54 53 error(function(data) {
console.log('card unpull FAILURE'); 55 54 console.log('card unpull FAILURE');
}); 56 55 });
} 57 56 }
}; 58 57 };
59 58
/* Hides card from feed */ 60 59 /* Hides card from feed */
scope.hideCard = function(flashcard) { 61 60 scope.hideCard = function(flashcard) {
if ($state.current.name == 'feed') { 62 61 if ($state.current.name == 'feed') {
$http.post('/api/flashcards/' + flashcard.id + '/hide/', 63 62 $http.post('/api/flashcards/' + flashcard.id + '/hide/',
flashcard). 64 63 flashcard).
success(function(data) { 65 64 success(function(data) {
console.log('card hide success'); 66 65 console.log('card hide success');
scope.startShrink = true; 67 66 scope.startShrink = true;
scope.refresh(); 68 67 scope.refresh();
}). 69 68 }).
error(function(data) { 70 69 error(function(data) {
console.log('card hide FAILURE'); 71 70 console.log('card hide FAILURE');
}); 72 71 });
scripts/LoginController.js View file @ 4d8fc29
angular.module('flashy.LoginController', ['ui.router']). 1 1 angular.module('flashy.LoginController', ['ui.router']).
2 2
controller('LoginController', ['$rootScope', '$scope', '$state', '$http', 'UserService', 3 3 controller('LoginController', ['$rootScope', '$scope', '$state', '$http', 'UserService',
function($rootScope, $scope, $state, $http, UserService) { 4 4 function($rootScope, $scope, $state, $http, UserService) {
'use strict'; 5 5 'use strict';
// If we're logged in, there's nothing to do here 6 6 // If we're logged in, there's nothing to do here
if (UserService.isLoggedIn()) $state.go('addclass'); 7 7 if (UserService.isLoggedIn()) $state.go('addclass');
$scope.uniqueError = false; 8 8 $scope.uniqueError = false;
$scope.loginError = false; 9 9 $scope.loginError = false;
$scope.login = function(email, password) { 10 10 $scope.login = function(email, password) {
$http.post('/api/login/', JSON.stringify({ 11 11 $http.post('/api/login/', JSON.stringify({
'email': email, 12 12 'email': email,
'password': password 13 13 'password': password
})). 14 14 })).
success(function(data) { 15 15 success(function(data) {
UserService.setUserData(data); 16 16 UserService.setUserData(data);
if (angular.isDefined($scope.returnToState)) 17 17 if (angular.isDefined($scope.returnToState))
$state.go($scope.returnToState.name, $scope.returnToStateParams); 18 18 $state.go($scope.returnToState.name, $scope.returnToStateParams);
else $state.go('addclass'); 19 19 else $state.go('addclass');
console.log(data); 20 20 console.log(data);
}). 21 21 }).
error(function(data, status, header, config) { 22 22 error(function(data, status, header, config) {
if (data.detail) { // assume 'invalid email or pass' 23 23 if (data.detail) { // assume 'invalid email or pass'
$scope.loginError = true; 24 24 $scope.loginError = true;
} 25 25 }
console.log(data); 26 26 console.log(data);
}); 27 27 });
}; 28 28 };
$scope.signUp = function(email, password) { 29 29 $scope.signUp = function(email, password) {
$http.post('/api/register/', JSON.stringify({ 30 30 $http.post('/api/register/', JSON.stringify({
'email': email, 31 31 'email': email,
'password': password 32 32 'password': password
})). 33 33 })).
success(function(data) { 34 34 success(function(data) {
35 console.log(data);
if (angular.isDefined($scope.returnToState)) 35 36 if (angular.isDefined($scope.returnToState))
$state.go($scope.returnToState.name, $scope.returnToStateParams); 36 37 $state.go($scope.returnToState.name, $scope.returnToStateParams);
else $state.go('addclass'); 37 38 else $state.go('addclass');
console.log(data); 38 39
}). 39 40 }).
error(function(data, status, headers, config) { 40 41 error(function(data, status, headers, config) {
console.log(data.email); 41 42 console.log(data.email);
if (data.email == 'This field is required.') { 42 43 if (data.email == 'This field is required.') {
$scope.invalid = true; 43 44 $scope.invalid = true;
$scope.uniqueError = false; 44 45 $scope.uniqueError = false;
} else if (data.email == 'This field must be unique.') { 45 46 } else if (data.email == 'This field must be unique.') {
// assume 'email not unique' error 46 47 // assume 'email not unique' error
$scope.uniqueError = true; 47 48 $scope.uniqueError = true;
$scope.invalid = false; 48 49 $scope.invalid = false;
} 49 50 }
console.log(data); 50 51 console.log(data);
}); 51 52 });
52 53
}; 53 54 };
$scope.triggerPasswordReset = function() { 54 55 $scope.triggerPasswordReset = function() {
$state.go('requestpasswordreset'); 55 56 $state.go('requestpasswordreset');
}; 56 57 };
$(document).ready(function() { 57 58 $(document).ready(function() {
$('ul.tabs').tabs(); 58 59 $('ul.tabs').tabs();
}); 59 60 });
} 60 61 }
styles/flashier.css View file @ 4d8fc29
.materialize-red.lighten-5 { 1 1 .materialize-red.lighten-5 {
background-color: #fdeaeb !important; } 2 2 background-color: #fdeaeb !important; }
3 3
.materialize-red-text.text-lighten-5 { 4 4 .materialize-red-text.text-lighten-5 {
color: #fdeaeb !important; } 5 5 color: #fdeaeb !important; }
6 6
.materialize-red.lighten-4 { 7 7 .materialize-red.lighten-4 {
background-color: #f8c1c3 !important; } 8 8 background-color: #f8c1c3 !important; }
9 9
.materialize-red-text.text-lighten-4 { 10 10 .materialize-red-text.text-lighten-4 {
color: #f8c1c3 !important; } 11 11 color: #f8c1c3 !important; }
12 12
.materialize-red.lighten-3 { 13 13 .materialize-red.lighten-3 {
background-color: #f3989b !important; } 14 14 background-color: #f3989b !important; }
15 15
.materialize-red-text.text-lighten-3 { 16 16 .materialize-red-text.text-lighten-3 {
color: #f3989b !important; } 17 17 color: #f3989b !important; }
18 18
.materialize-red.lighten-2 { 19 19 .materialize-red.lighten-2 {
background-color: #ee6e73 !important; } 20 20 background-color: #ee6e73 !important; }
21 21
.materialize-red-text.text-lighten-2 { 22 22 .materialize-red-text.text-lighten-2 {
color: #ee6e73 !important; } 23 23 color: #ee6e73 !important; }
24 24
.materialize-red.lighten-1 { 25 25 .materialize-red.lighten-1 {
background-color: #ea454b !important; } 26 26 background-color: #ea454b !important; }
27 27
.materialize-red-text.text-lighten-1 { 28 28 .materialize-red-text.text-lighten-1 {
color: #ea454b !important; } 29 29 color: #ea454b !important; }
30 30
.materialize-red { 31 31 .materialize-red {
background-color: #e51c23 !important; } 32 32 background-color: #e51c23 !important; }
33 33
.materialize-red-text { 34 34 .materialize-red-text {
color: #e51c23 !important; } 35 35 color: #e51c23 !important; }
36 36
.materialize-red.darken-1 { 37 37 .materialize-red.darken-1 {
background-color: #d0181e !important; } 38 38 background-color: #d0181e !important; }
39 39
.materialize-red-text.text-darken-1 { 40 40 .materialize-red-text.text-darken-1 {
color: #d0181e !important; } 41 41 color: #d0181e !important; }
42 42
.materialize-red.darken-2 { 43 43 .materialize-red.darken-2 {
background-color: #b9151b !important; } 44 44 background-color: #b9151b !important; }
45 45
.materialize-red-text.text-darken-2 { 46 46 .materialize-red-text.text-darken-2 {
color: #b9151b !important; } 47 47 color: #b9151b !important; }
48 48
.materialize-red.darken-3 { 49 49 .materialize-red.darken-3 {
background-color: #a21318 !important; } 50 50 background-color: #a21318 !important; }
51 51
.materialize-red-text.text-darken-3 { 52 52 .materialize-red-text.text-darken-3 {
color: #a21318 !important; } 53 53 color: #a21318 !important; }
54 54
.materialize-red.darken-4 { 55 55 .materialize-red.darken-4 {
background-color: #8b1014 !important; } 56 56 background-color: #8b1014 !important; }
57 57
.materialize-red-text.text-darken-4 { 58 58 .materialize-red-text.text-darken-4 {
color: #8b1014 !important; } 59 59 color: #8b1014 !important; }
60 60
.red.lighten-5 { 61 61 .red.lighten-5 {
background-color: #FFEBEE !important; } 62 62 background-color: #FFEBEE !important; }
63 63
.red-text.text-lighten-5 { 64 64 .red-text.text-lighten-5 {
color: #FFEBEE !important; } 65 65 color: #FFEBEE !important; }
66 66
.red.lighten-4 { 67 67 .red.lighten-4 {
background-color: #FFCDD2 !important; } 68 68 background-color: #FFCDD2 !important; }
69 69
.red-text.text-lighten-4 { 70 70 .red-text.text-lighten-4 {
color: #FFCDD2 !important; } 71 71 color: #FFCDD2 !important; }
72 72
.red.lighten-3 { 73 73 .red.lighten-3 {
background-color: #EF9A9A !important; } 74 74 background-color: #EF9A9A !important; }
75 75
.red-text.text-lighten-3 { 76 76 .red-text.text-lighten-3 {
color: #EF9A9A !important; } 77 77 color: #EF9A9A !important; }
78 78
.red.lighten-2 { 79 79 .red.lighten-2 {
background-color: #E57373 !important; } 80 80 background-color: #E57373 !important; }
81 81
.red-text.text-lighten-2 { 82 82 .red-text.text-lighten-2 {
color: #E57373 !important; } 83 83 color: #E57373 !important; }
84 84
.red.lighten-1 { 85 85 .red.lighten-1 {
background-color: #EF5350 !important; } 86 86 background-color: #EF5350 !important; }
87 87
.red-text.text-lighten-1 { 88 88 .red-text.text-lighten-1 {
color: #EF5350 !important; } 89 89 color: #EF5350 !important; }
90 90
.red { 91 91 .red {
background-color: #F44336 !important; } 92 92 background-color: #F44336 !important; }
93 93
.red-text { 94 94 .red-text {
color: #F44336 !important; } 95 95 color: #F44336 !important; }
96 96
.red.darken-1 { 97 97 .red.darken-1 {
background-color: #E53935 !important; } 98 98 background-color: #E53935 !important; }
99 99
.red-text.text-darken-1 { 100 100 .red-text.text-darken-1 {
color: #E53935 !important; } 101 101 color: #E53935 !important; }
102 102
.red.darken-2 { 103 103 .red.darken-2 {
background-color: #D32F2F !important; } 104 104 background-color: #D32F2F !important; }
105 105
.red-text.text-darken-2 { 106 106 .red-text.text-darken-2 {
color: #D32F2F !important; } 107 107 color: #D32F2F !important; }
108 108
.red.darken-3 { 109 109 .red.darken-3 {
background-color: #C62828 !important; } 110 110 background-color: #C62828 !important; }
111 111
.red-text.text-darken-3 { 112 112 .red-text.text-darken-3 {
color: #C62828 !important; } 113 113 color: #C62828 !important; }
114 114
.red.darken-4 { 115 115 .red.darken-4 {
background-color: #B71C1C !important; } 116 116 background-color: #B71C1C !important; }
117 117
.red-text.text-darken-4 { 118 118 .red-text.text-darken-4 {
color: #B71C1C !important; } 119 119 color: #B71C1C !important; }
120 120
.red.accent-1 { 121 121 .red.accent-1 {
background-color: #FF8A80 !important; } 122 122 background-color: #FF8A80 !important; }
123 123
.red-text.text-accent-1 { 124 124 .red-text.text-accent-1 {
color: #FF8A80 !important; } 125 125 color: #FF8A80 !important; }
126 126
.red.accent-2 { 127 127 .red.accent-2 {
background-color: #FF5252 !important; } 128 128 background-color: #FF5252 !important; }
129 129
.red-text.text-accent-2 { 130 130 .red-text.text-accent-2 {
color: #FF5252 !important; } 131 131 color: #FF5252 !important; }
132 132
.red.accent-3 { 133 133 .red.accent-3 {
background-color: #FF1744 !important; } 134 134 background-color: #FF1744 !important; }
135 135
.red-text.text-accent-3 { 136 136 .red-text.text-accent-3 {
color: #FF1744 !important; } 137 137 color: #FF1744 !important; }
138 138
.red.accent-4 { 139 139 .red.accent-4 {
background-color: #D50000 !important; } 140 140 background-color: #D50000 !important; }
141 141
.red-text.text-accent-4 { 142 142 .red-text.text-accent-4 {
color: #D50000 !important; } 143 143 color: #D50000 !important; }
144 144
.pink.lighten-5 { 145 145 .pink.lighten-5 {
background-color: #fce4ec !important; } 146 146 background-color: #fce4ec !important; }
147 147
.pink-text.text-lighten-5 { 148 148 .pink-text.text-lighten-5 {
color: #fce4ec !important; } 149 149 color: #fce4ec !important; }
150 150
.pink.lighten-4 { 151 151 .pink.lighten-4 {
background-color: #f8bbd0 !important; } 152 152 background-color: #f8bbd0 !important; }
153 153
.pink-text.text-lighten-4 { 154 154 .pink-text.text-lighten-4 {
color: #f8bbd0 !important; } 155 155 color: #f8bbd0 !important; }
156 156
.pink.lighten-3 { 157 157 .pink.lighten-3 {
background-color: #f48fb1 !important; } 158 158 background-color: #f48fb1 !important; }
159 159
.pink-text.text-lighten-3 { 160 160 .pink-text.text-lighten-3 {
color: #f48fb1 !important; } 161 161 color: #f48fb1 !important; }
162 162
.pink.lighten-2 { 163 163 .pink.lighten-2 {
background-color: #f06292 !important; } 164 164 background-color: #f06292 !important; }
165 165
.pink-text.text-lighten-2 { 166 166 .pink-text.text-lighten-2 {
color: #f06292 !important; } 167 167 color: #f06292 !important; }
168 168
.pink.lighten-1 { 169 169 .pink.lighten-1 {
background-color: #ec407a !important; } 170 170 background-color: #ec407a !important; }
171 171
.pink-text.text-lighten-1 { 172 172 .pink-text.text-lighten-1 {
color: #ec407a !important; } 173 173 color: #ec407a !important; }
174 174
.pink { 175 175 .pink {
background-color: #e91e63 !important; } 176 176 background-color: #e91e63 !important; }
177 177
.pink-text { 178 178 .pink-text {
color: #e91e63 !important; } 179 179 color: #e91e63 !important; }
180 180
.pink.darken-1 { 181 181 .pink.darken-1 {
background-color: #d81b60 !important; } 182 182 background-color: #d81b60 !important; }
183 183
.pink-text.text-darken-1 { 184 184 .pink-text.text-darken-1 {
color: #d81b60 !important; } 185 185 color: #d81b60 !important; }
186 186
.pink.darken-2 { 187 187 .pink.darken-2 {
background-color: #c2185b !important; } 188 188 background-color: #c2185b !important; }
189 189
.pink-text.text-darken-2 { 190 190 .pink-text.text-darken-2 {
color: #c2185b !important; } 191 191 color: #c2185b !important; }
192 192
.pink.darken-3 { 193 193 .pink.darken-3 {
background-color: #ad1457 !important; } 194 194 background-color: #ad1457 !important; }
195 195
.pink-text.text-darken-3 { 196 196 .pink-text.text-darken-3 {
color: #ad1457 !important; } 197 197 color: #ad1457 !important; }
198 198
.pink.darken-4 { 199 199 .pink.darken-4 {
background-color: #880e4f !important; } 200 200 background-color: #880e4f !important; }
201 201
.pink-text.text-darken-4 { 202 202 .pink-text.text-darken-4 {
color: #880e4f !important; } 203 203 color: #880e4f !important; }
204 204
.pink.accent-1 { 205 205 .pink.accent-1 {
background-color: #ff80ab !important; } 206 206 background-color: #ff80ab !important; }
207 207
.pink-text.text-accent-1 { 208 208 .pink-text.text-accent-1 {
color: #ff80ab !important; } 209 209 color: #ff80ab !important; }
210 210
.pink.accent-2 { 211 211 .pink.accent-2 {
background-color: #ff4081 !important; } 212 212 background-color: #ff4081 !important; }
213 213
.pink-text.text-accent-2 { 214 214 .pink-text.text-accent-2 {
color: #ff4081 !important; } 215 215 color: #ff4081 !important; }
216 216
.pink.accent-3 { 217 217 .pink.accent-3 {
background-color: #f50057 !important; } 218 218 background-color: #f50057 !important; }
219 219
.pink-text.text-accent-3 { 220 220 .pink-text.text-accent-3 {
color: #f50057 !important; } 221 221 color: #f50057 !important; }
222 222
.pink.accent-4 { 223 223 .pink.accent-4 {
background-color: #c51162 !important; } 224 224 background-color: #c51162 !important; }
225 225
.pink-text.text-accent-4 { 226 226 .pink-text.text-accent-4 {
color: #c51162 !important; } 227 227 color: #c51162 !important; }
228 228
.purple.lighten-5 { 229 229 .purple.lighten-5 {
background-color: #f3e5f5 !important; } 230 230 background-color: #f3e5f5 !important; }
231 231
.purple-text.text-lighten-5 { 232 232 .purple-text.text-lighten-5 {
color: #f3e5f5 !important; } 233 233 color: #f3e5f5 !important; }
234 234
.purple.lighten-4 { 235 235 .purple.lighten-4 {
background-color: #e1bee7 !important; } 236 236 background-color: #e1bee7 !important; }
237 237
.purple-text.text-lighten-4 { 238 238 .purple-text.text-lighten-4 {
color: #e1bee7 !important; } 239 239 color: #e1bee7 !important; }
240 240
.purple.lighten-3 { 241 241 .purple.lighten-3 {
background-color: #ce93d8 !important; } 242 242 background-color: #ce93d8 !important; }
243 243
.purple-text.text-lighten-3 { 244 244 .purple-text.text-lighten-3 {
color: #ce93d8 !important; } 245 245 color: #ce93d8 !important; }
246 246
.purple.lighten-2 { 247 247 .purple.lighten-2 {
background-color: #ba68c8 !important; } 248 248 background-color: #ba68c8 !important; }
249 249
.purple-text.text-lighten-2 { 250 250 .purple-text.text-lighten-2 {
color: #ba68c8 !important; } 251 251 color: #ba68c8 !important; }
252 252
.purple.lighten-1 { 253 253 .purple.lighten-1 {
background-color: #ab47bc !important; } 254 254 background-color: #ab47bc !important; }
255 255
.purple-text.text-lighten-1 { 256 256 .purple-text.text-lighten-1 {
color: #ab47bc !important; } 257 257 color: #ab47bc !important; }
258 258
.purple { 259 259 .purple {
background-color: #9c27b0 !important; } 260 260 background-color: #9c27b0 !important; }
261 261
.purple-text { 262 262 .purple-text {
color: #9c27b0 !important; } 263 263 color: #9c27b0 !important; }
264 264
.purple.darken-1 { 265 265 .purple.darken-1 {
background-color: #8e24aa !important; } 266 266 background-color: #8e24aa !important; }
267 267
.purple-text.text-darken-1 { 268 268 .purple-text.text-darken-1 {
color: #8e24aa !important; } 269 269 color: #8e24aa !important; }
270 270
.purple.darken-2 { 271 271 .purple.darken-2 {
background-color: #7b1fa2 !important; } 272 272 background-color: #7b1fa2 !important; }
273 273
.purple-text.text-darken-2 { 274 274 .purple-text.text-darken-2 {
color: #7b1fa2 !important; } 275 275 color: #7b1fa2 !important; }
276 276
.purple.darken-3 { 277 277 .purple.darken-3 {
background-color: #6a1b9a !important; } 278 278 background-color: #6a1b9a !important; }
279 279
.purple-text.text-darken-3 { 280 280 .purple-text.text-darken-3 {
color: #6a1b9a !important; } 281 281 color: #6a1b9a !important; }
282 282
.purple.darken-4 { 283 283 .purple.darken-4 {
background-color: #4a148c !important; } 284 284 background-color: #4a148c !important; }
285 285
.purple-text.text-darken-4 { 286 286 .purple-text.text-darken-4 {
color: #4a148c !important; } 287 287 color: #4a148c !important; }
288 288
.purple.accent-1 { 289 289 .purple.accent-1 {
background-color: #ea80fc !important; } 290 290 background-color: #ea80fc !important; }
291 291
.purple-text.text-accent-1 { 292 292 .purple-text.text-accent-1 {
color: #ea80fc !important; } 293 293 color: #ea80fc !important; }
294 294
.purple.accent-2 { 295 295 .purple.accent-2 {
background-color: #e040fb !important; } 296 296 background-color: #e040fb !important; }
297 297
.purple-text.text-accent-2 { 298 298 .purple-text.text-accent-2 {
color: #e040fb !important; } 299 299 color: #e040fb !important; }
300 300
.purple.accent-3 { 301 301 .purple.accent-3 {
background-color: #d500f9 !important; } 302 302 background-color: #d500f9 !important; }
303 303
.purple-text.text-accent-3 { 304 304 .purple-text.text-accent-3 {
color: #d500f9 !important; } 305 305 color: #d500f9 !important; }
306 306
.purple.accent-4 { 307 307 .purple.accent-4 {
background-color: #aa00ff !important; } 308 308 background-color: #aa00ff !important; }
309 309
.purple-text.text-accent-4 { 310 310 .purple-text.text-accent-4 {
color: #aa00ff !important; } 311 311 color: #aa00ff !important; }
312 312
.deep-purple.lighten-5 { 313 313 .deep-purple.lighten-5 {
background-color: #ede7f6 !important; } 314 314 background-color: #ede7f6 !important; }
315 315
.deep-purple-text.text-lighten-5 { 316 316 .deep-purple-text.text-lighten-5 {
color: #ede7f6 !important; } 317 317 color: #ede7f6 !important; }
318 318
.deep-purple.lighten-4 { 319 319 .deep-purple.lighten-4 {
background-color: #d1c4e9 !important; } 320 320 background-color: #d1c4e9 !important; }
321 321
.deep-purple-text.text-lighten-4 { 322 322 .deep-purple-text.text-lighten-4 {
color: #d1c4e9 !important; } 323 323 color: #d1c4e9 !important; }
324 324
.deep-purple.lighten-3 { 325 325 .deep-purple.lighten-3 {
background-color: #b39ddb !important; } 326 326 background-color: #b39ddb !important; }
327 327
.deep-purple-text.text-lighten-3 { 328 328 .deep-purple-text.text-lighten-3 {
color: #b39ddb !important; } 329 329 color: #b39ddb !important; }
330 330
.deep-purple.lighten-2 { 331 331 .deep-purple.lighten-2 {
background-color: #9575cd !important; } 332 332 background-color: #9575cd !important; }
333 333
.deep-purple-text.text-lighten-2 { 334 334 .deep-purple-text.text-lighten-2 {
color: #9575cd !important; } 335 335 color: #9575cd !important; }
336 336
.deep-purple.lighten-1 { 337 337 .deep-purple.lighten-1 {
background-color: #7e57c2 !important; } 338 338 background-color: #7e57c2 !important; }
339 339
.deep-purple-text.text-lighten-1 { 340 340 .deep-purple-text.text-lighten-1 {
color: #7e57c2 !important; } 341 341 color: #7e57c2 !important; }
342 342
.deep-purple { 343 343 .deep-purple {
background-color: #673ab7 !important; } 344 344 background-color: #673ab7 !important; }
345 345
.deep-purple-text { 346 346 .deep-purple-text {
color: #673ab7 !important; } 347 347 color: #673ab7 !important; }
348 348
.deep-purple.darken-1 { 349 349 .deep-purple.darken-1 {
background-color: #5e35b1 !important; } 350 350 background-color: #5e35b1 !important; }
351 351
.deep-purple-text.text-darken-1 { 352 352 .deep-purple-text.text-darken-1 {
color: #5e35b1 !important; } 353 353 color: #5e35b1 !important; }
354 354
.deep-purple.darken-2 { 355 355 .deep-purple.darken-2 {
background-color: #512da8 !important; } 356 356 background-color: #512da8 !important; }
357 357
.deep-purple-text.text-darken-2 { 358 358 .deep-purple-text.text-darken-2 {
color: #512da8 !important; } 359 359 color: #512da8 !important; }
360 360
.deep-purple.darken-3 { 361 361 .deep-purple.darken-3 {
background-color: #4527a0 !important; } 362 362 background-color: #4527a0 !important; }
363 363
.deep-purple-text.text-darken-3 { 364 364 .deep-purple-text.text-darken-3 {
color: #4527a0 !important; } 365 365 color: #4527a0 !important; }
366 366
.deep-purple.darken-4 { 367 367 .deep-purple.darken-4 {
background-color: #311b92 !important; } 368 368 background-color: #311b92 !important; }
369 369
.deep-purple-text.text-darken-4 { 370 370 .deep-purple-text.text-darken-4 {
color: #311b92 !important; } 371 371 color: #311b92 !important; }
372 372
.deep-purple.accent-1 { 373 373 .deep-purple.accent-1 {
background-color: #b388ff !important; } 374 374 background-color: #b388ff !important; }
375 375
.deep-purple-text.text-accent-1 { 376 376 .deep-purple-text.text-accent-1 {
color: #b388ff !important; } 377 377 color: #b388ff !important; }
378 378
.deep-purple.accent-2 { 379 379 .deep-purple.accent-2 {
background-color: #7c4dff !important; } 380 380 background-color: #7c4dff !important; }
381 381
.deep-purple-text.text-accent-2 { 382 382 .deep-purple-text.text-accent-2 {
color: #7c4dff !important; } 383 383 color: #7c4dff !important; }
384 384
.deep-purple.accent-3 { 385 385 .deep-purple.accent-3 {
background-color: #651fff !important; } 386 386 background-color: #651fff !important; }
387 387
.deep-purple-text.text-accent-3 { 388 388 .deep-purple-text.text-accent-3 {
color: #651fff !important; } 389 389 color: #651fff !important; }
390 390
.deep-purple.accent-4 { 391 391 .deep-purple.accent-4 {
background-color: #6200ea !important; } 392 392 background-color: #6200ea !important; }
393 393
.deep-purple-text.text-accent-4 { 394 394 .deep-purple-text.text-accent-4 {
color: #6200ea !important; } 395 395 color: #6200ea !important; }
396 396
.indigo.lighten-5 { 397 397 .indigo.lighten-5 {
background-color: #e8eaf6 !important; } 398 398 background-color: #e8eaf6 !important; }
399 399
.indigo-text.text-lighten-5 { 400 400 .indigo-text.text-lighten-5 {
color: #e8eaf6 !important; } 401 401 color: #e8eaf6 !important; }
402 402
.indigo.lighten-4 { 403 403 .indigo.lighten-4 {
background-color: #c5cae9 !important; } 404 404 background-color: #c5cae9 !important; }
405 405
.indigo-text.text-lighten-4 { 406 406 .indigo-text.text-lighten-4 {
color: #c5cae9 !important; } 407 407 color: #c5cae9 !important; }
408 408
.indigo.lighten-3 { 409 409 .indigo.lighten-3 {
background-color: #9fa8da !important; } 410 410 background-color: #9fa8da !important; }
411 411
.indigo-text.text-lighten-3 { 412 412 .indigo-text.text-lighten-3 {
color: #9fa8da !important; } 413 413 color: #9fa8da !important; }
414 414
.indigo.lighten-2 { 415 415 .indigo.lighten-2 {
background-color: #7986cb !important; } 416 416 background-color: #7986cb !important; }
417 417
.indigo-text.text-lighten-2 { 418 418 .indigo-text.text-lighten-2 {
color: #7986cb !important; } 419 419 color: #7986cb !important; }
420 420
.indigo.lighten-1 { 421 421 .indigo.lighten-1 {
background-color: #5c6bc0 !important; } 422 422 background-color: #5c6bc0 !important; }
423 423
.indigo-text.text-lighten-1 { 424 424 .indigo-text.text-lighten-1 {
color: #5c6bc0 !important; } 425 425 color: #5c6bc0 !important; }
426 426
.indigo { 427 427 .indigo {
background-color: #3f51b5 !important; } 428 428 background-color: #3f51b5 !important; }
429 429
.indigo-text { 430 430 .indigo-text {
color: #3f51b5 !important; } 431 431 color: #3f51b5 !important; }
432 432
.indigo.darken-1 { 433 433 .indigo.darken-1 {
background-color: #3949ab !important; } 434 434 background-color: #3949ab !important; }
435 435
.indigo-text.text-darken-1 { 436 436 .indigo-text.text-darken-1 {
color: #3949ab !important; } 437 437 color: #3949ab !important; }
438 438
.indigo.darken-2 { 439 439 .indigo.darken-2 {
background-color: #303f9f !important; } 440 440 background-color: #303f9f !important; }
441 441
.indigo-text.text-darken-2 { 442 442 .indigo-text.text-darken-2 {
color: #303f9f !important; } 443 443 color: #303f9f !important; }
444 444
.indigo.darken-3 { 445 445 .indigo.darken-3 {
background-color: #283593 !important; } 446 446 background-color: #283593 !important; }
447 447
.indigo-text.text-darken-3 { 448 448 .indigo-text.text-darken-3 {
color: #283593 !important; } 449 449 color: #283593 !important; }
450 450
.indigo.darken-4 { 451 451 .indigo.darken-4 {
background-color: #1a237e !important; } 452 452 background-color: #1a237e !important; }
453 453
.indigo-text.text-darken-4 { 454 454 .indigo-text.text-darken-4 {
color: #1a237e !important; } 455 455 color: #1a237e !important; }
456 456
.indigo.accent-1 { 457 457 .indigo.accent-1 {
background-color: #8c9eff !important; } 458 458 background-color: #8c9eff !important; }
459 459
.indigo-text.text-accent-1 { 460 460 .indigo-text.text-accent-1 {
color: #8c9eff !important; } 461 461 color: #8c9eff !important; }
462 462
.indigo.accent-2 { 463 463 .indigo.accent-2 {
background-color: #536dfe !important; } 464 464 background-color: #536dfe !important; }
465 465
.indigo-text.text-accent-2 { 466 466 .indigo-text.text-accent-2 {
color: #536dfe !important; } 467 467 color: #536dfe !important; }
468 468
.indigo.accent-3 { 469 469 .indigo.accent-3 {
background-color: #3d5afe !important; } 470 470 background-color: #3d5afe !important; }
471 471
.indigo-text.text-accent-3 { 472 472 .indigo-text.text-accent-3 {
color: #3d5afe !important; } 473 473 color: #3d5afe !important; }
474 474
.indigo.accent-4 { 475 475 .indigo.accent-4 {
background-color: #304ffe !important; } 476 476 background-color: #304ffe !important; }
477 477
.indigo-text.text-accent-4 { 478 478 .indigo-text.text-accent-4 {
color: #304ffe !important; } 479 479 color: #304ffe !important; }
480 480
.blue.lighten-5 { 481 481 .blue.lighten-5 {
background-color: #E3F2FD !important; } 482 482 background-color: #E3F2FD !important; }
483 483
.blue-text.text-lighten-5 { 484 484 .blue-text.text-lighten-5 {
color: #E3F2FD !important; } 485 485 color: #E3F2FD !important; }
486 486
.blue.lighten-4 { 487 487 .blue.lighten-4 {
background-color: #BBDEFB !important; } 488 488 background-color: #BBDEFB !important; }
489 489
.blue-text.text-lighten-4 { 490 490 .blue-text.text-lighten-4 {
color: #BBDEFB !important; } 491 491 color: #BBDEFB !important; }
492 492
.blue.lighten-3 { 493 493 .blue.lighten-3 {
background-color: #90CAF9 !important; } 494 494 background-color: #90CAF9 !important; }
495 495
.blue-text.text-lighten-3 { 496 496 .blue-text.text-lighten-3 {
color: #90CAF9 !important; } 497 497 color: #90CAF9 !important; }
498 498
.blue.lighten-2 { 499 499 .blue.lighten-2 {
background-color: #64B5F6 !important; } 500 500 background-color: #64B5F6 !important; }
501 501
.blue-text.text-lighten-2 { 502 502 .blue-text.text-lighten-2 {
color: #64B5F6 !important; } 503 503 color: #64B5F6 !important; }
504 504
.blue.lighten-1 { 505 505 .blue.lighten-1 {
background-color: #42A5F5 !important; } 506 506 background-color: #42A5F5 !important; }
507 507
.blue-text.text-lighten-1 { 508 508 .blue-text.text-lighten-1 {
color: #42A5F5 !important; } 509 509 color: #42A5F5 !important; }
510 510
.blue { 511 511 .blue {
background-color: #2196F3 !important; } 512 512 background-color: #2196F3 !important; }
513 513
.blue-text { 514 514 .blue-text {
color: #2196F3 !important; } 515 515 color: #2196F3 !important; }
516 516
.blue.darken-1 { 517 517 .blue.darken-1 {
background-color: #1E88E5 !important; } 518 518 background-color: #1E88E5 !important; }
519 519
.blue-text.text-darken-1 { 520 520 .blue-text.text-darken-1 {
color: #1E88E5 !important; } 521 521 color: #1E88E5 !important; }
522 522
.blue.darken-2 { 523 523 .blue.darken-2 {
background-color: #1976D2 !important; } 524 524 background-color: #1976D2 !important; }
525 525
.blue-text.text-darken-2 { 526 526 .blue-text.text-darken-2 {
color: #1976D2 !important; } 527 527 color: #1976D2 !important; }
528 528
.blue.darken-3 { 529 529 .blue.darken-3 {
background-color: #1565C0 !important; } 530 530 background-color: #1565C0 !important; }
531 531
.blue-text.text-darken-3 { 532 532 .blue-text.text-darken-3 {
color: #1565C0 !important; } 533 533 color: #1565C0 !important; }
534 534
.blue.darken-4 { 535 535 .blue.darken-4 {
background-color: #0D47A1 !important; } 536 536 background-color: #0D47A1 !important; }
537 537
.blue-text.text-darken-4 { 538 538 .blue-text.text-darken-4 {
color: #0D47A1 !important; } 539 539 color: #0D47A1 !important; }
540 540
.blue.accent-1 { 541 541 .blue.accent-1 {
background-color: #82B1FF !important; } 542 542 background-color: #82B1FF !important; }
543 543
.blue-text.text-accent-1 { 544 544 .blue-text.text-accent-1 {
color: #82B1FF !important; } 545 545 color: #82B1FF !important; }
546 546
.blue.accent-2 { 547 547 .blue.accent-2 {
background-color: #448AFF !important; } 548 548 background-color: #448AFF !important; }
549 549
.blue-text.text-accent-2 { 550 550 .blue-text.text-accent-2 {
color: #448AFF !important; } 551 551 color: #448AFF !important; }
552 552
.blue.accent-3 { 553 553 .blue.accent-3 {
background-color: #2979FF !important; } 554 554 background-color: #2979FF !important; }
555 555
.blue-text.text-accent-3 { 556 556 .blue-text.text-accent-3 {
color: #2979FF !important; } 557 557 color: #2979FF !important; }
558 558
.blue.accent-4 { 559 559 .blue.accent-4 {
background-color: #2962FF !important; } 560 560 background-color: #2962FF !important; }
561 561
.blue-text.text-accent-4 { 562 562 .blue-text.text-accent-4 {
color: #2962FF !important; } 563 563 color: #2962FF !important; }
564 564
.light-blue.lighten-5 { 565 565 .light-blue.lighten-5 {
background-color: #e1f5fe !important; } 566 566 background-color: #e1f5fe !important; }
567 567
.light-blue-text.text-lighten-5 { 568 568 .light-blue-text.text-lighten-5 {
color: #e1f5fe !important; } 569 569 color: #e1f5fe !important; }
570 570
.light-blue.lighten-4 { 571 571 .light-blue.lighten-4 {
background-color: #b3e5fc !important; } 572 572 background-color: #b3e5fc !important; }
573 573
.light-blue-text.text-lighten-4 { 574 574 .light-blue-text.text-lighten-4 {
color: #b3e5fc !important; } 575 575 color: #b3e5fc !important; }
576 576
.light-blue.lighten-3 { 577 577 .light-blue.lighten-3 {
background-color: #81d4fa !important; } 578 578 background-color: #81d4fa !important; }
579 579
.light-blue-text.text-lighten-3 { 580 580 .light-blue-text.text-lighten-3 {
color: #81d4fa !important; } 581 581 color: #81d4fa !important; }
582 582
.light-blue.lighten-2 { 583 583 .light-blue.lighten-2 {
background-color: #4fc3f7 !important; } 584 584 background-color: #4fc3f7 !important; }
585 585
.light-blue-text.text-lighten-2 { 586 586 .light-blue-text.text-lighten-2 {
color: #4fc3f7 !important; } 587 587 color: #4fc3f7 !important; }
588 588
.light-blue.lighten-1 { 589 589 .light-blue.lighten-1 {
background-color: #29b6f6 !important; } 590 590 background-color: #29b6f6 !important; }
591 591
.light-blue-text.text-lighten-1 { 592 592 .light-blue-text.text-lighten-1 {
color: #29b6f6 !important; } 593 593 color: #29b6f6 !important; }
594 594
.light-blue { 595 595 .light-blue {
background-color: #03a9f4 !important; } 596 596 background-color: #03a9f4 !important; }
597 597
.light-blue-text { 598 598 .light-blue-text {
color: #03a9f4 !important; } 599 599 color: #03a9f4 !important; }
600 600
.light-blue.darken-1 { 601 601 .light-blue.darken-1 {
background-color: #039be5 !important; } 602 602 background-color: #039be5 !important; }
603 603
.light-blue-text.text-darken-1 { 604 604 .light-blue-text.text-darken-1 {
color: #039be5 !important; } 605 605 color: #039be5 !important; }
606 606
.light-blue.darken-2 { 607 607 .light-blue.darken-2 {
background-color: #0288d1 !important; } 608 608 background-color: #0288d1 !important; }
609 609
.light-blue-text.text-darken-2 { 610 610 .light-blue-text.text-darken-2 {
color: #0288d1 !important; } 611 611 color: #0288d1 !important; }
612 612
.light-blue.darken-3 { 613 613 .light-blue.darken-3 {
background-color: #0277bd !important; } 614 614 background-color: #0277bd !important; }
615 615
.light-blue-text.text-darken-3 { 616 616 .light-blue-text.text-darken-3 {
color: #0277bd !important; } 617 617 color: #0277bd !important; }
618 618
.light-blue.darken-4 { 619 619 .light-blue.darken-4 {
background-color: #01579b !important; } 620 620 background-color: #01579b !important; }
621 621
.light-blue-text.text-darken-4 { 622 622 .light-blue-text.text-darken-4 {
color: #01579b !important; } 623 623 color: #01579b !important; }
624 624
.light-blue.accent-1 { 625 625 .light-blue.accent-1 {
background-color: #80d8ff !important; } 626 626 background-color: #80d8ff !important; }
627 627
.light-blue-text.text-accent-1 { 628 628 .light-blue-text.text-accent-1 {
color: #80d8ff !important; } 629 629 color: #80d8ff !important; }
630 630
.light-blue.accent-2 { 631 631 .light-blue.accent-2 {
background-color: #40c4ff !important; } 632 632 background-color: #40c4ff !important; }
633 633
.light-blue-text.text-accent-2 { 634 634 .light-blue-text.text-accent-2 {
color: #40c4ff !important; } 635 635 color: #40c4ff !important; }
636 636
.light-blue.accent-3 { 637 637 .light-blue.accent-3 {
background-color: #00b0ff !important; } 638 638 background-color: #00b0ff !important; }
639 639
.light-blue-text.text-accent-3 { 640 640 .light-blue-text.text-accent-3 {
color: #00b0ff !important; } 641 641 color: #00b0ff !important; }
642 642
.light-blue.accent-4 { 643 643 .light-blue.accent-4 {
background-color: #0091ea !important; } 644 644 background-color: #0091ea !important; }
645 645
.light-blue-text.text-accent-4 { 646 646 .light-blue-text.text-accent-4 {
color: #0091ea !important; } 647 647 color: #0091ea !important; }
648 648
.cyan.lighten-5 { 649 649 .cyan.lighten-5 {
background-color: #e0f7fa !important; } 650 650 background-color: #e0f7fa !important; }
651 651
.cyan-text.text-lighten-5 { 652 652 .cyan-text.text-lighten-5 {
color: #e0f7fa !important; } 653 653 color: #e0f7fa !important; }
654 654
.cyan.lighten-4 { 655 655 .cyan.lighten-4 {
background-color: #b2ebf2 !important; } 656 656 background-color: #b2ebf2 !important; }
657 657
.cyan-text.text-lighten-4 { 658 658 .cyan-text.text-lighten-4 {
color: #b2ebf2 !important; } 659 659 color: #b2ebf2 !important; }
660 660
.cyan.lighten-3 { 661 661 .cyan.lighten-3 {
background-color: #80deea !important; } 662 662 background-color: #80deea !important; }
663 663
.cyan-text.text-lighten-3 { 664 664 .cyan-text.text-lighten-3 {
color: #80deea !important; } 665 665 color: #80deea !important; }
666 666
.cyan.lighten-2 { 667 667 .cyan.lighten-2 {
background-color: #4dd0e1 !important; } 668 668 background-color: #4dd0e1 !important; }
669 669
.cyan-text.text-lighten-2 { 670 670 .cyan-text.text-lighten-2 {
color: #4dd0e1 !important; } 671 671 color: #4dd0e1 !important; }
672 672
.cyan.lighten-1 { 673 673 .cyan.lighten-1 {
background-color: #26c6da !important; } 674 674 background-color: #26c6da !important; }
675 675
.cyan-text.text-lighten-1 { 676 676 .cyan-text.text-lighten-1 {
color: #26c6da !important; } 677 677 color: #26c6da !important; }
678 678
.cyan { 679 679 .cyan {
background-color: #00bcd4 !important; } 680 680 background-color: #00bcd4 !important; }
681 681
.cyan-text { 682 682 .cyan-text {
color: #00bcd4 !important; } 683 683 color: #00bcd4 !important; }
684 684
.cyan.darken-1 { 685 685 .cyan.darken-1 {
background-color: #00acc1 !important; } 686 686 background-color: #00acc1 !important; }
687 687
.cyan-text.text-darken-1 { 688 688 .cyan-text.text-darken-1 {
color: #00acc1 !important; } 689 689 color: #00acc1 !important; }
690 690
.cyan.darken-2 { 691 691 .cyan.darken-2 {
background-color: #0097a7 !important; } 692 692 background-color: #0097a7 !important; }
693 693
.cyan-text.text-darken-2 { 694 694 .cyan-text.text-darken-2 {
color: #0097a7 !important; } 695 695 color: #0097a7 !important; }
696 696
.cyan.darken-3 { 697 697 .cyan.darken-3 {
background-color: #00838f !important; } 698 698 background-color: #00838f !important; }
699 699
.cyan-text.text-darken-3 { 700 700 .cyan-text.text-darken-3 {
color: #00838f !important; } 701 701 color: #00838f !important; }
702 702
.cyan.darken-4 { 703 703 .cyan.darken-4 {
background-color: #006064 !important; } 704 704 background-color: #006064 !important; }
705 705
.cyan-text.text-darken-4 { 706 706 .cyan-text.text-darken-4 {
color: #006064 !important; } 707 707 color: #006064 !important; }
708 708
.cyan.accent-1 { 709 709 .cyan.accent-1 {
background-color: #84ffff !important; } 710 710 background-color: #84ffff !important; }
711 711
.cyan-text.text-accent-1 { 712 712 .cyan-text.text-accent-1 {
color: #84ffff !important; } 713 713 color: #84ffff !important; }
714 714
.cyan.accent-2 { 715 715 .cyan.accent-2 {
background-color: #18ffff !important; } 716 716 background-color: #18ffff !important; }
717 717
.cyan-text.text-accent-2 { 718 718 .cyan-text.text-accent-2 {
color: #18ffff !important; } 719 719 color: #18ffff !important; }
720 720
.cyan.accent-3 { 721 721 .cyan.accent-3 {
background-color: #00e5ff !important; } 722 722 background-color: #00e5ff !important; }
723 723
.cyan-text.text-accent-3 { 724 724 .cyan-text.text-accent-3 {
color: #00e5ff !important; } 725 725 color: #00e5ff !important; }
726 726
.cyan.accent-4 { 727 727 .cyan.accent-4 {
background-color: #00b8d4 !important; } 728 728 background-color: #00b8d4 !important; }
729 729
.cyan-text.text-accent-4 { 730 730 .cyan-text.text-accent-4 {
color: #00b8d4 !important; } 731 731 color: #00b8d4 !important; }
732 732
.teal.lighten-5 { 733 733 .teal.lighten-5 {
background-color: #e0f2f1 !important; } 734 734 background-color: #e0f2f1 !important; }
735 735
.teal-text.text-lighten-5 { 736 736 .teal-text.text-lighten-5 {
color: #e0f2f1 !important; } 737 737 color: #e0f2f1 !important; }
738 738
.teal.lighten-4 { 739 739 .teal.lighten-4 {
background-color: #b2dfdb !important; } 740 740 background-color: #b2dfdb !important; }
741 741
.teal-text.text-lighten-4 { 742 742 .teal-text.text-lighten-4 {
color: #b2dfdb !important; } 743 743 color: #b2dfdb !important; }
744 744
.teal.lighten-3 { 745 745 .teal.lighten-3 {
background-color: #80cbc4 !important; } 746 746 background-color: #80cbc4 !important; }
747 747
.teal-text.text-lighten-3 { 748 748 .teal-text.text-lighten-3 {
color: #80cbc4 !important; } 749 749 color: #80cbc4 !important; }
750 750
.teal.lighten-2 { 751 751 .teal.lighten-2 {
background-color: #4db6ac !important; } 752 752 background-color: #4db6ac !important; }
753 753
.teal-text.text-lighten-2 { 754 754 .teal-text.text-lighten-2 {
color: #4db6ac !important; } 755 755 color: #4db6ac !important; }
756 756
.teal.lighten-1 { 757 757 .teal.lighten-1 {
background-color: #26a69a !important; } 758 758 background-color: #26a69a !important; }
759 759
.teal-text.text-lighten-1 { 760 760 .teal-text.text-lighten-1 {
color: #26a69a !important; } 761 761 color: #26a69a !important; }
762 762
.teal { 763 763 .teal {
background-color: #009688 !important; } 764 764 background-color: #009688 !important; }
765 765
.teal-text { 766 766 .teal-text {
color: #009688 !important; } 767 767 color: #009688 !important; }
768 768
.teal.darken-1 { 769 769 .teal.darken-1 {
background-color: #00897b !important; } 770 770 background-color: #00897b !important; }
771 771
.teal-text.text-darken-1 { 772 772 .teal-text.text-darken-1 {
color: #00897b !important; } 773 773 color: #00897b !important; }
774 774
.teal.darken-2 { 775 775 .teal.darken-2 {
background-color: #00796b !important; } 776 776 background-color: #00796b !important; }
777 777
.teal-text.text-darken-2 { 778 778 .teal-text.text-darken-2 {
color: #00796b !important; } 779 779 color: #00796b !important; }
780 780
.teal.darken-3 { 781 781 .teal.darken-3 {
background-color: #00695c !important; } 782 782 background-color: #00695c !important; }
783 783
.teal-text.text-darken-3 { 784 784 .teal-text.text-darken-3 {
color: #00695c !important; } 785 785 color: #00695c !important; }
786 786
.teal.darken-4 { 787 787 .teal.darken-4 {
background-color: #004d40 !important; } 788 788 background-color: #004d40 !important; }
789 789
.teal-text.text-darken-4 { 790 790 .teal-text.text-darken-4 {
color: #004d40 !important; } 791 791 color: #004d40 !important; }
792 792
.teal.accent-1 { 793 793 .teal.accent-1 {
background-color: #a7ffeb !important; } 794 794 background-color: #a7ffeb !important; }
795 795
.teal-text.text-accent-1 { 796 796 .teal-text.text-accent-1 {
color: #a7ffeb !important; } 797 797 color: #a7ffeb !important; }
798 798
.teal.accent-2 { 799 799 .teal.accent-2 {
background-color: #64ffda !important; } 800 800 background-color: #64ffda !important; }
801 801
.teal-text.text-accent-2 { 802 802 .teal-text.text-accent-2 {
color: #64ffda !important; } 803 803 color: #64ffda !important; }
804 804
.teal.accent-3 { 805 805 .teal.accent-3 {
background-color: #1de9b6 !important; } 806 806 background-color: #1de9b6 !important; }
807 807
.teal-text.text-accent-3 { 808 808 .teal-text.text-accent-3 {
color: #1de9b6 !important; } 809 809 color: #1de9b6 !important; }
810 810
.teal.accent-4 { 811 811 .teal.accent-4 {
background-color: #00bfa5 !important; } 812 812 background-color: #00bfa5 !important; }
813 813
.teal-text.text-accent-4 { 814 814 .teal-text.text-accent-4 {
color: #00bfa5 !important; } 815 815 color: #00bfa5 !important; }
816 816
.green.lighten-5 { 817 817 .green.lighten-5 {
background-color: #E8F5E9 !important; } 818 818 background-color: #E8F5E9 !important; }
819 819
.green-text.text-lighten-5 { 820 820 .green-text.text-lighten-5 {
color: #E8F5E9 !important; } 821 821 color: #E8F5E9 !important; }
822 822
.green.lighten-4 { 823 823 .green.lighten-4 {
background-color: #C8E6C9 !important; } 824 824 background-color: #C8E6C9 !important; }
825 825
.green-text.text-lighten-4 { 826 826 .green-text.text-lighten-4 {
color: #C8E6C9 !important; } 827 827 color: #C8E6C9 !important; }
828 828
.green.lighten-3 { 829 829 .green.lighten-3 {
background-color: #A5D6A7 !important; } 830 830 background-color: #A5D6A7 !important; }
831 831
.green-text.text-lighten-3 { 832 832 .green-text.text-lighten-3 {
color: #A5D6A7 !important; } 833 833 color: #A5D6A7 !important; }
834 834
.green.lighten-2 { 835 835 .green.lighten-2 {
background-color: #81C784 !important; } 836 836 background-color: #81C784 !important; }
837 837
.green-text.text-lighten-2 { 838 838 .green-text.text-lighten-2 {
color: #81C784 !important; } 839 839 color: #81C784 !important; }
840 840
.green.lighten-1 { 841 841 .green.lighten-1 {
background-color: #66BB6A !important; } 842 842 background-color: #66BB6A !important; }
843 843
.green-text.text-lighten-1 { 844 844 .green-text.text-lighten-1 {
color: #66BB6A !important; } 845 845 color: #66BB6A !important; }
846 846
.green { 847 847 .green {
background-color: #4CAF50 !important; } 848 848 background-color: #4CAF50 !important; }
849 849
.green-text { 850 850 .green-text {
color: #4CAF50 !important; } 851 851 color: #4CAF50 !important; }
852 852
.green.darken-1 { 853 853 .green.darken-1 {
background-color: #43A047 !important; } 854 854 background-color: #43A047 !important; }
855 855
.green-text.text-darken-1 { 856 856 .green-text.text-darken-1 {
color: #43A047 !important; } 857 857 color: #43A047 !important; }
858 858
.green.darken-2 { 859 859 .green.darken-2 {
background-color: #388E3C !important; } 860 860 background-color: #388E3C !important; }
861 861
.green-text.text-darken-2 { 862 862 .green-text.text-darken-2 {
color: #388E3C !important; } 863 863 color: #388E3C !important; }
864 864
.green.darken-3 { 865 865 .green.darken-3 {
background-color: #2E7D32 !important; } 866 866 background-color: #2E7D32 !important; }
867 867
.green-text.text-darken-3 { 868 868 .green-text.text-darken-3 {
color: #2E7D32 !important; } 869 869 color: #2E7D32 !important; }
870 870
.green.darken-4 { 871 871 .green.darken-4 {
background-color: #1B5E20 !important; } 872 872 background-color: #1B5E20 !important; }
873 873
.green-text.text-darken-4 { 874 874 .green-text.text-darken-4 {
color: #1B5E20 !important; } 875 875 color: #1B5E20 !important; }
876 876
.green.accent-1 { 877 877 .green.accent-1 {
background-color: #B9F6CA !important; } 878 878 background-color: #B9F6CA !important; }
879 879
.green-text.text-accent-1 { 880 880 .green-text.text-accent-1 {
color: #B9F6CA !important; } 881 881 color: #B9F6CA !important; }
882 882
.green.accent-2 { 883 883 .green.accent-2 {
background-color: #69F0AE !important; } 884 884 background-color: #69F0AE !important; }
885 885
.green-text.text-accent-2 { 886 886 .green-text.text-accent-2 {
color: #69F0AE !important; } 887 887 color: #69F0AE !important; }
888 888
.green.accent-3 { 889 889 .green.accent-3 {
background-color: #00E676 !important; } 890 890 background-color: #00E676 !important; }
891 891
.green-text.text-accent-3 { 892 892 .green-text.text-accent-3 {
color: #00E676 !important; } 893 893 color: #00E676 !important; }
894 894
.green.accent-4 { 895 895 .green.accent-4 {
background-color: #00C853 !important; } 896 896 background-color: #00C853 !important; }
897 897
.green-text.text-accent-4 { 898 898 .green-text.text-accent-4 {
color: #00C853 !important; } 899 899 color: #00C853 !important; }
900 900
.light-green.lighten-5 { 901 901 .light-green.lighten-5 {
background-color: #f1f8e9 !important; } 902 902 background-color: #f1f8e9 !important; }
903 903
.light-green-text.text-lighten-5 { 904 904 .light-green-text.text-lighten-5 {
color: #f1f8e9 !important; } 905 905 color: #f1f8e9 !important; }
906 906
.light-green.lighten-4 { 907 907 .light-green.lighten-4 {
background-color: #dcedc8 !important; } 908 908 background-color: #dcedc8 !important; }
909 909
.light-green-text.text-lighten-4 { 910 910 .light-green-text.text-lighten-4 {
color: #dcedc8 !important; } 911 911 color: #dcedc8 !important; }
912 912
.light-green.lighten-3 { 913 913 .light-green.lighten-3 {
background-color: #c5e1a5 !important; } 914 914 background-color: #c5e1a5 !important; }
915 915
.light-green-text.text-lighten-3 { 916 916 .light-green-text.text-lighten-3 {
color: #c5e1a5 !important; } 917 917 color: #c5e1a5 !important; }
918 918
.light-green.lighten-2 { 919 919 .light-green.lighten-2 {
background-color: #aed581 !important; } 920 920 background-color: #aed581 !important; }
921 921
.light-green-text.text-lighten-2 { 922 922 .light-green-text.text-lighten-2 {
color: #aed581 !important; } 923 923 color: #aed581 !important; }
924 924
.light-green.lighten-1 { 925 925 .light-green.lighten-1 {
background-color: #9ccc65 !important; } 926 926 background-color: #9ccc65 !important; }
927 927
.light-green-text.text-lighten-1 { 928 928 .light-green-text.text-lighten-1 {
color: #9ccc65 !important; } 929 929 color: #9ccc65 !important; }
930 930
.light-green { 931 931 .light-green {
background-color: #8bc34a !important; } 932 932 background-color: #8bc34a !important; }
933 933
.light-green-text { 934 934 .light-green-text {
color: #8bc34a !important; } 935 935 color: #8bc34a !important; }
936 936
.light-green.darken-1 { 937 937 .light-green.darken-1 {
background-color: #7cb342 !important; } 938 938 background-color: #7cb342 !important; }
939 939
.light-green-text.text-darken-1 { 940 940 .light-green-text.text-darken-1 {
color: #7cb342 !important; } 941 941 color: #7cb342 !important; }
942 942
.light-green.darken-2 { 943 943 .light-green.darken-2 {
background-color: #689f38 !important; } 944 944 background-color: #689f38 !important; }
945 945
.light-green-text.text-darken-2 { 946 946 .light-green-text.text-darken-2 {
color: #689f38 !important; } 947 947 color: #689f38 !important; }
948 948
.light-green.darken-3 { 949 949 .light-green.darken-3 {
background-color: #558b2f !important; } 950 950 background-color: #558b2f !important; }
951 951
.light-green-text.text-darken-3 { 952 952 .light-green-text.text-darken-3 {
color: #558b2f !important; } 953 953 color: #558b2f !important; }
954 954
.light-green.darken-4 { 955 955 .light-green.darken-4 {
background-color: #33691e !important; } 956 956 background-color: #33691e !important; }
957 957
.light-green-text.text-darken-4 { 958 958 .light-green-text.text-darken-4 {
color: #33691e !important; } 959 959 color: #33691e !important; }
960 960
.light-green.accent-1 { 961 961 .light-green.accent-1 {
background-color: #ccff90 !important; } 962 962 background-color: #ccff90 !important; }
963 963
.light-green-text.text-accent-1 { 964 964 .light-green-text.text-accent-1 {
color: #ccff90 !important; } 965 965 color: #ccff90 !important; }
966 966
.light-green.accent-2 { 967 967 .light-green.accent-2 {
background-color: #b2ff59 !important; } 968 968 background-color: #b2ff59 !important; }
969 969
.light-green-text.text-accent-2 { 970 970 .light-green-text.text-accent-2 {
color: #b2ff59 !important; } 971 971 color: #b2ff59 !important; }
972 972
.light-green.accent-3 { 973 973 .light-green.accent-3 {
background-color: #76ff03 !important; } 974 974 background-color: #76ff03 !important; }
975 975
.light-green-text.text-accent-3 { 976 976 .light-green-text.text-accent-3 {
color: #76ff03 !important; } 977 977 color: #76ff03 !important; }
978 978
.light-green.accent-4 { 979 979 .light-green.accent-4 {
background-color: #64dd17 !important; } 980 980 background-color: #64dd17 !important; }
981 981
.light-green-text.text-accent-4 { 982 982 .light-green-text.text-accent-4 {
color: #64dd17 !important; } 983 983 color: #64dd17 !important; }
984 984
.lime.lighten-5 { 985 985 .lime.lighten-5 {
background-color: #f9fbe7 !important; } 986 986 background-color: #f9fbe7 !important; }
987 987
.lime-text.text-lighten-5 { 988 988 .lime-text.text-lighten-5 {
color: #f9fbe7 !important; } 989 989 color: #f9fbe7 !important; }
990 990
.lime.lighten-4 { 991 991 .lime.lighten-4 {
background-color: #f0f4c3 !important; } 992 992 background-color: #f0f4c3 !important; }
993 993
.lime-text.text-lighten-4 { 994 994 .lime-text.text-lighten-4 {
color: #f0f4c3 !important; } 995 995 color: #f0f4c3 !important; }
996 996
.lime.lighten-3 { 997 997 .lime.lighten-3 {
background-color: #e6ee9c !important; } 998 998 background-color: #e6ee9c !important; }
999 999
.lime-text.text-lighten-3 { 1000 1000 .lime-text.text-lighten-3 {
color: #e6ee9c !important; } 1001 1001 color: #e6ee9c !important; }
1002 1002
.lime.lighten-2 { 1003 1003 .lime.lighten-2 {
background-color: #dce775 !important; } 1004 1004 background-color: #dce775 !important; }
1005 1005
.lime-text.text-lighten-2 { 1006 1006 .lime-text.text-lighten-2 {
color: #dce775 !important; } 1007 1007 color: #dce775 !important; }
1008 1008
.lime.lighten-1 { 1009 1009 .lime.lighten-1 {
background-color: #d4e157 !important; } 1010 1010 background-color: #d4e157 !important; }
1011 1011
.lime-text.text-lighten-1 { 1012 1012 .lime-text.text-lighten-1 {
color: #d4e157 !important; } 1013 1013 color: #d4e157 !important; }
1014 1014
.lime { 1015 1015 .lime {
background-color: #cddc39 !important; } 1016 1016 background-color: #cddc39 !important; }
1017 1017
.lime-text { 1018 1018 .lime-text {
color: #cddc39 !important; } 1019 1019 color: #cddc39 !important; }
1020 1020
.lime.darken-1 { 1021 1021 .lime.darken-1 {
background-color: #c0ca33 !important; } 1022 1022 background-color: #c0ca33 !important; }
1023 1023
.lime-text.text-darken-1 { 1024 1024 .lime-text.text-darken-1 {
color: #c0ca33 !important; } 1025 1025 color: #c0ca33 !important; }
1026 1026
.lime.darken-2 { 1027 1027 .lime.darken-2 {
background-color: #afb42b !important; } 1028 1028 background-color: #afb42b !important; }
1029 1029
.lime-text.text-darken-2 { 1030 1030 .lime-text.text-darken-2 {
color: #afb42b !important; } 1031 1031 color: #afb42b !important; }
1032 1032
.lime.darken-3 { 1033 1033 .lime.darken-3 {
background-color: #9e9d24 !important; } 1034 1034 background-color: #9e9d24 !important; }
1035 1035
.lime-text.text-darken-3 { 1036 1036 .lime-text.text-darken-3 {
color: #9e9d24 !important; } 1037 1037 color: #9e9d24 !important; }
1038 1038
.lime.darken-4 { 1039 1039 .lime.darken-4 {
background-color: #827717 !important; } 1040 1040 background-color: #827717 !important; }
1041 1041
.lime-text.text-darken-4 { 1042 1042 .lime-text.text-darken-4 {
color: #827717 !important; } 1043 1043 color: #827717 !important; }
1044 1044
.lime.accent-1 { 1045 1045 .lime.accent-1 {
background-color: #f4ff81 !important; } 1046 1046 background-color: #f4ff81 !important; }
1047 1047
.lime-text.text-accent-1 { 1048 1048 .lime-text.text-accent-1 {
color: #f4ff81 !important; } 1049 1049 color: #f4ff81 !important; }
1050 1050
.lime.accent-2 { 1051 1051 .lime.accent-2 {
background-color: #eeff41 !important; } 1052 1052 background-color: #eeff41 !important; }
1053 1053
.lime-text.text-accent-2 { 1054 1054 .lime-text.text-accent-2 {
color: #eeff41 !important; } 1055 1055 color: #eeff41 !important; }
1056 1056
.lime.accent-3 { 1057 1057 .lime.accent-3 {
background-color: #c6ff00 !important; } 1058 1058 background-color: #c6ff00 !important; }
1059 1059
.lime-text.text-accent-3 { 1060 1060 .lime-text.text-accent-3 {
color: #c6ff00 !important; } 1061 1061 color: #c6ff00 !important; }
1062 1062
.lime.accent-4 { 1063 1063 .lime.accent-4 {
background-color: #aeea00 !important; } 1064 1064 background-color: #aeea00 !important; }
1065 1065
.lime-text.text-accent-4 { 1066 1066 .lime-text.text-accent-4 {
color: #aeea00 !important; } 1067 1067 color: #aeea00 !important; }
1068 1068
.yellow.lighten-5 { 1069 1069 .yellow.lighten-5 {
background-color: #fffde7 !important; } 1070 1070 background-color: #fffde7 !important; }
1071 1071
.yellow-text.text-lighten-5 { 1072 1072 .yellow-text.text-lighten-5 {
color: #fffde7 !important; } 1073 1073 color: #fffde7 !important; }
1074 1074
.yellow.lighten-4 { 1075 1075 .yellow.lighten-4 {
background-color: #fff9c4 !important; } 1076 1076 background-color: #fff9c4 !important; }
1077 1077
.yellow-text.text-lighten-4 { 1078 1078 .yellow-text.text-lighten-4 {
color: #fff9c4 !important; } 1079 1079 color: #fff9c4 !important; }
1080 1080
.yellow.lighten-3 { 1081 1081 .yellow.lighten-3 {
background-color: #fff59d !important; } 1082 1082 background-color: #fff59d !important; }
1083 1083
.yellow-text.text-lighten-3 { 1084 1084 .yellow-text.text-lighten-3 {
color: #fff59d !important; } 1085 1085 color: #fff59d !important; }
1086 1086
.yellow.lighten-2 { 1087 1087 .yellow.lighten-2 {
background-color: #fff176 !important; } 1088 1088 background-color: #fff176 !important; }
1089 1089
.yellow-text.text-lighten-2 { 1090 1090 .yellow-text.text-lighten-2 {
color: #fff176 !important; } 1091 1091 color: #fff176 !important; }
1092 1092
.yellow.lighten-1 { 1093 1093 .yellow.lighten-1 {
background-color: #ffee58 !important; } 1094 1094 background-color: #ffee58 !important; }
1095 1095
.yellow-text.text-lighten-1 { 1096 1096 .yellow-text.text-lighten-1 {
color: #ffee58 !important; } 1097 1097 color: #ffee58 !important; }
1098 1098
.yellow { 1099 1099 .yellow {
background-color: #ffeb3b !important; } 1100 1100 background-color: #ffeb3b !important; }
1101 1101
.yellow-text { 1102 1102 .yellow-text {
color: #ffeb3b !important; } 1103 1103 color: #ffeb3b !important; }
1104 1104
.yellow.darken-1 { 1105 1105 .yellow.darken-1 {
background-color: #fdd835 !important; } 1106 1106 background-color: #fdd835 !important; }
1107 1107
.yellow-text.text-darken-1 { 1108 1108 .yellow-text.text-darken-1 {
color: #fdd835 !important; } 1109 1109 color: #fdd835 !important; }
1110 1110
.yellow.darken-2 { 1111 1111 .yellow.darken-2 {
background-color: #fbc02d !important; } 1112 1112 background-color: #fbc02d !important; }
1113 1113
.yellow-text.text-darken-2 { 1114 1114 .yellow-text.text-darken-2 {
color: #fbc02d !important; } 1115 1115 color: #fbc02d !important; }
1116 1116
.yellow.darken-3 { 1117 1117 .yellow.darken-3 {
background-color: #f9a825 !important; } 1118 1118 background-color: #f9a825 !important; }
1119 1119
.yellow-text.text-darken-3 { 1120 1120 .yellow-text.text-darken-3 {
color: #f9a825 !important; } 1121 1121 color: #f9a825 !important; }
1122 1122
.yellow.darken-4 { 1123 1123 .yellow.darken-4 {
background-color: #f57f17 !important; } 1124 1124 background-color: #f57f17 !important; }
1125 1125
.yellow-text.text-darken-4 { 1126 1126 .yellow-text.text-darken-4 {
color: #f57f17 !important; } 1127 1127 color: #f57f17 !important; }
1128 1128
.yellow.accent-1 { 1129 1129 .yellow.accent-1 {
background-color: #ffff8d !important; } 1130 1130 background-color: #ffff8d !important; }
1131 1131
.yellow-text.text-accent-1 { 1132 1132 .yellow-text.text-accent-1 {
color: #ffff8d !important; } 1133 1133 color: #ffff8d !important; }
1134 1134
.yellow.accent-2 { 1135 1135 .yellow.accent-2 {
background-color: #ffff00 !important; } 1136 1136 background-color: #ffff00 !important; }
1137 1137
.yellow-text.text-accent-2 { 1138 1138 .yellow-text.text-accent-2 {
color: #ffff00 !important; } 1139 1139 color: #ffff00 !important; }
1140 1140
.yellow.accent-3 { 1141 1141 .yellow.accent-3 {
background-color: #ffea00 !important; } 1142 1142 background-color: #ffea00 !important; }
1143 1143
.yellow-text.text-accent-3 { 1144 1144 .yellow-text.text-accent-3 {
color: #ffea00 !important; } 1145 1145 color: #ffea00 !important; }
1146 1146
.yellow.accent-4 { 1147 1147 .yellow.accent-4 {
background-color: #ffd600 !important; } 1148 1148 background-color: #ffd600 !important; }
1149 1149
.yellow-text.text-accent-4 { 1150 1150 .yellow-text.text-accent-4 {
color: #ffd600 !important; } 1151 1151 color: #ffd600 !important; }
1152 1152
.amber.lighten-5 { 1153 1153 .amber.lighten-5 {
background-color: #fff8e1 !important; } 1154 1154 background-color: #fff8e1 !important; }
1155 1155
.amber-text.text-lighten-5 { 1156 1156 .amber-text.text-lighten-5 {
color: #fff8e1 !important; } 1157 1157 color: #fff8e1 !important; }
1158 1158
.amber.lighten-4 { 1159 1159 .amber.lighten-4 {
background-color: #ffecb3 !important; } 1160 1160 background-color: #ffecb3 !important; }
1161 1161
.amber-text.text-lighten-4 { 1162 1162 .amber-text.text-lighten-4 {
color: #ffecb3 !important; } 1163 1163 color: #ffecb3 !important; }
1164 1164
.amber.lighten-3 { 1165 1165 .amber.lighten-3 {
background-color: #ffe082 !important; } 1166 1166 background-color: #ffe082 !important; }
1167 1167
.amber-text.text-lighten-3 { 1168 1168 .amber-text.text-lighten-3 {
color: #ffe082 !important; } 1169 1169 color: #ffe082 !important; }
1170 1170
.amber.lighten-2 { 1171 1171 .amber.lighten-2 {
background-color: #ffd54f !important; } 1172 1172 background-color: #ffd54f !important; }
1173 1173
.amber-text.text-lighten-2 { 1174 1174 .amber-text.text-lighten-2 {
color: #ffd54f !important; } 1175 1175 color: #ffd54f !important; }
1176 1176
.amber.lighten-1 { 1177 1177 .amber.lighten-1 {
background-color: #ffca28 !important; } 1178 1178 background-color: #ffca28 !important; }
1179 1179
.amber-text.text-lighten-1 { 1180 1180 .amber-text.text-lighten-1 {
color: #ffca28 !important; } 1181 1181 color: #ffca28 !important; }
1182 1182
.amber { 1183 1183 .amber {
background-color: #ffc107 !important; } 1184 1184 background-color: #ffc107 !important; }
1185 1185
.amber-text { 1186 1186 .amber-text {
color: #ffc107 !important; } 1187 1187 color: #ffc107 !important; }
1188 1188
.amber.darken-1 { 1189 1189 .amber.darken-1 {
background-color: #ffb300 !important; } 1190 1190 background-color: #ffb300 !important; }
1191 1191
.amber-text.text-darken-1 { 1192 1192 .amber-text.text-darken-1 {
color: #ffb300 !important; } 1193 1193 color: #ffb300 !important; }
1194 1194
.amber.darken-2 { 1195 1195 .amber.darken-2 {
background-color: #ffa000 !important; } 1196 1196 background-color: #ffa000 !important; }
1197 1197
.amber-text.text-darken-2 { 1198 1198 .amber-text.text-darken-2 {
color: #ffa000 !important; } 1199 1199 color: #ffa000 !important; }
1200 1200
.amber.darken-3 { 1201 1201 .amber.darken-3 {
background-color: #ff8f00 !important; } 1202 1202 background-color: #ff8f00 !important; }
1203 1203
.amber-text.text-darken-3 { 1204 1204 .amber-text.text-darken-3 {
color: #ff8f00 !important; } 1205 1205 color: #ff8f00 !important; }
1206 1206
.amber.darken-4 { 1207 1207 .amber.darken-4 {
background-color: #ff6f00 !important; } 1208 1208 background-color: #ff6f00 !important; }
1209 1209
.amber-text.text-darken-4 { 1210 1210 .amber-text.text-darken-4 {
color: #ff6f00 !important; } 1211 1211 color: #ff6f00 !important; }
1212 1212
.amber.accent-1 { 1213 1213 .amber.accent-1 {
background-color: #ffe57f !important; } 1214 1214 background-color: #ffe57f !important; }
1215 1215
.amber-text.text-accent-1 { 1216 1216 .amber-text.text-accent-1 {
color: #ffe57f !important; } 1217 1217 color: #ffe57f !important; }
1218 1218
.amber.accent-2 { 1219 1219 .amber.accent-2 {
background-color: #ffd740 !important; } 1220 1220 background-color: #ffd740 !important; }
1221 1221
.amber-text.text-accent-2 { 1222 1222 .amber-text.text-accent-2 {
color: #ffd740 !important; } 1223 1223 color: #ffd740 !important; }
1224 1224
.amber.accent-3 { 1225 1225 .amber.accent-3 {
background-color: #ffc400 !important; } 1226 1226 background-color: #ffc400 !important; }
1227 1227
.amber-text.text-accent-3 { 1228 1228 .amber-text.text-accent-3 {
color: #ffc400 !important; } 1229 1229 color: #ffc400 !important; }
1230 1230
.amber.accent-4 { 1231 1231 .amber.accent-4 {
background-color: #ffab00 !important; } 1232 1232 background-color: #ffab00 !important; }
1233 1233
.amber-text.text-accent-4 { 1234 1234 .amber-text.text-accent-4 {
color: #ffab00 !important; } 1235 1235 color: #ffab00 !important; }
1236 1236
.orange.lighten-5 { 1237 1237 .orange.lighten-5 {
background-color: #fff3e0 !important; } 1238 1238 background-color: #fff3e0 !important; }
1239 1239
.orange-text.text-lighten-5 { 1240 1240 .orange-text.text-lighten-5 {
color: #fff3e0 !important; } 1241 1241 color: #fff3e0 !important; }
1242 1242
.orange.lighten-4 { 1243 1243 .orange.lighten-4 {
background-color: #ffe0b2 !important; } 1244 1244 background-color: #ffe0b2 !important; }
1245 1245
.orange-text.text-lighten-4 { 1246 1246 .orange-text.text-lighten-4 {
color: #ffe0b2 !important; } 1247 1247 color: #ffe0b2 !important; }
1248 1248
.orange.lighten-3 { 1249 1249 .orange.lighten-3 {
background-color: #ffcc80 !important; } 1250 1250 background-color: #ffcc80 !important; }
1251 1251
.orange-text.text-lighten-3 { 1252 1252 .orange-text.text-lighten-3 {
color: #ffcc80 !important; } 1253 1253 color: #ffcc80 !important; }
1254 1254
.orange.lighten-2 { 1255 1255 .orange.lighten-2 {
background-color: #ffb74d !important; } 1256 1256 background-color: #ffb74d !important; }
1257 1257
.orange-text.text-lighten-2 { 1258 1258 .orange-text.text-lighten-2 {
color: #ffb74d !important; } 1259 1259 color: #ffb74d !important; }
1260 1260
.orange.lighten-1 { 1261 1261 .orange.lighten-1 {
background-color: #ffa726 !important; } 1262 1262 background-color: #ffa726 !important; }
1263 1263
.orange-text.text-lighten-1 { 1264 1264 .orange-text.text-lighten-1 {
color: #ffa726 !important; } 1265 1265 color: #ffa726 !important; }
1266 1266
.orange { 1267 1267 .orange {
background-color: #ff9800 !important; } 1268 1268 background-color: #ff9800 !important; }
1269 1269
.orange-text { 1270 1270 .orange-text {
color: #ff9800 !important; } 1271 1271 color: #ff9800 !important; }
1272 1272
.orange.darken-1 { 1273 1273 .orange.darken-1 {
background-color: #fb8c00 !important; } 1274 1274 background-color: #fb8c00 !important; }
1275 1275
.orange-text.text-darken-1 { 1276 1276 .orange-text.text-darken-1 {
color: #fb8c00 !important; } 1277 1277 color: #fb8c00 !important; }
1278 1278
.orange.darken-2 { 1279 1279 .orange.darken-2 {
background-color: #f57c00 !important; } 1280 1280 background-color: #f57c00 !important; }
1281 1281
.orange-text.text-darken-2 { 1282 1282 .orange-text.text-darken-2 {
color: #f57c00 !important; } 1283 1283 color: #f57c00 !important; }
1284 1284
.orange.darken-3 { 1285 1285 .orange.darken-3 {
background-color: #ef6c00 !important; } 1286 1286 background-color: #ef6c00 !important; }
1287 1287
.orange-text.text-darken-3 { 1288 1288 .orange-text.text-darken-3 {
color: #ef6c00 !important; } 1289 1289 color: #ef6c00 !important; }
1290 1290
.orange.darken-4 { 1291 1291 .orange.darken-4 {
background-color: #e65100 !important; } 1292 1292 background-color: #e65100 !important; }
1293 1293
.orange-text.text-darken-4 { 1294 1294 .orange-text.text-darken-4 {
color: #e65100 !important; } 1295 1295 color: #e65100 !important; }
1296 1296
.orange.accent-1 { 1297 1297 .orange.accent-1 {
background-color: #ffd180 !important; } 1298 1298 background-color: #ffd180 !important; }
1299 1299
.orange-text.text-accent-1 { 1300 1300 .orange-text.text-accent-1 {
color: #ffd180 !important; } 1301 1301 color: #ffd180 !important; }
1302 1302
.orange.accent-2 { 1303 1303 .orange.accent-2 {
background-color: #ffab40 !important; } 1304 1304 background-color: #ffab40 !important; }
1305 1305
.orange-text.text-accent-2 { 1306 1306 .orange-text.text-accent-2 {
color: #ffab40 !important; } 1307 1307 color: #ffab40 !important; }
1308 1308
.orange.accent-3 { 1309 1309 .orange.accent-3 {
background-color: #ff9100 !important; } 1310 1310 background-color: #ff9100 !important; }
1311 1311
.orange-text.text-accent-3 { 1312 1312 .orange-text.text-accent-3 {
color: #ff9100 !important; } 1313 1313 color: #ff9100 !important; }
1314 1314
.orange.accent-4 { 1315 1315 .orange.accent-4 {
background-color: #ff6d00 !important; } 1316 1316 background-color: #ff6d00 !important; }
1317 1317
.orange-text.text-accent-4 { 1318 1318 .orange-text.text-accent-4 {
color: #ff6d00 !important; } 1319 1319 color: #ff6d00 !important; }
1320 1320
.deep-orange.lighten-5 { 1321 1321 .deep-orange.lighten-5 {
background-color: #fbe9e7 !important; } 1322 1322 background-color: #fbe9e7 !important; }
1323 1323
.deep-orange-text.text-lighten-5 { 1324 1324 .deep-orange-text.text-lighten-5 {
color: #fbe9e7 !important; } 1325 1325 color: #fbe9e7 !important; }
1326 1326
.deep-orange.lighten-4 { 1327 1327 .deep-orange.lighten-4 {
background-color: #ffccbc !important; } 1328 1328 background-color: #ffccbc !important; }
1329 1329
.deep-orange-text.text-lighten-4 { 1330 1330 .deep-orange-text.text-lighten-4 {
color: #ffccbc !important; } 1331 1331 color: #ffccbc !important; }
1332 1332
.deep-orange.lighten-3 { 1333 1333 .deep-orange.lighten-3 {
background-color: #ffab91 !important; } 1334 1334 background-color: #ffab91 !important; }
1335 1335
.deep-orange-text.text-lighten-3 { 1336 1336 .deep-orange-text.text-lighten-3 {
color: #ffab91 !important; } 1337 1337 color: #ffab91 !important; }
1338 1338
.deep-orange.lighten-2 { 1339 1339 .deep-orange.lighten-2 {
background-color: #ff8a65 !important; } 1340 1340 background-color: #ff8a65 !important; }
1341 1341
.deep-orange-text.text-lighten-2 { 1342 1342 .deep-orange-text.text-lighten-2 {
color: #ff8a65 !important; } 1343 1343 color: #ff8a65 !important; }
1344 1344
.deep-orange.lighten-1 { 1345 1345 .deep-orange.lighten-1 {
background-color: #ff7043 !important; } 1346 1346 background-color: #ff7043 !important; }
1347 1347
.deep-orange-text.text-lighten-1 { 1348 1348 .deep-orange-text.text-lighten-1 {
color: #ff7043 !important; } 1349 1349 color: #ff7043 !important; }
1350 1350
.deep-orange { 1351 1351 .deep-orange {
background-color: #ff5722 !important; } 1352 1352 background-color: #ff5722 !important; }
1353 1353
.deep-orange-text { 1354 1354 .deep-orange-text {
color: #ff5722 !important; } 1355 1355 color: #ff5722 !important; }
1356 1356
.deep-orange.darken-1 { 1357 1357 .deep-orange.darken-1 {
background-color: #f4511e !important; } 1358 1358 background-color: #f4511e !important; }
1359 1359
.deep-orange-text.text-darken-1 { 1360 1360 .deep-orange-text.text-darken-1 {
color: #f4511e !important; } 1361 1361 color: #f4511e !important; }
1362 1362
.deep-orange.darken-2 { 1363 1363 .deep-orange.darken-2 {
background-color: #e64a19 !important; } 1364 1364 background-color: #e64a19 !important; }
1365 1365
.deep-orange-text.text-darken-2 { 1366 1366 .deep-orange-text.text-darken-2 {
color: #e64a19 !important; } 1367 1367 color: #e64a19 !important; }
1368 1368
.deep-orange.darken-3 { 1369 1369 .deep-orange.darken-3 {
background-color: #d84315 !important; } 1370 1370 background-color: #d84315 !important; }
1371 1371
.deep-orange-text.text-darken-3 { 1372 1372 .deep-orange-text.text-darken-3 {
color: #d84315 !important; } 1373 1373 color: #d84315 !important; }
1374 1374
.deep-orange.darken-4 { 1375 1375 .deep-orange.darken-4 {
background-color: #bf360c !important; } 1376 1376 background-color: #bf360c !important; }
1377 1377
.deep-orange-text.text-darken-4 { 1378 1378 .deep-orange-text.text-darken-4 {
color: #bf360c !important; } 1379 1379 color: #bf360c !important; }
1380 1380
.deep-orange.accent-1 { 1381 1381 .deep-orange.accent-1 {
background-color: #ff9e80 !important; } 1382 1382 background-color: #ff9e80 !important; }
1383 1383
.deep-orange-text.text-accent-1 { 1384 1384 .deep-orange-text.text-accent-1 {
color: #ff9e80 !important; } 1385 1385 color: #ff9e80 !important; }
1386 1386
.deep-orange.accent-2 { 1387 1387 .deep-orange.accent-2 {
background-color: #ff6e40 !important; } 1388 1388 background-color: #ff6e40 !important; }
1389 1389
.deep-orange-text.text-accent-2 { 1390 1390 .deep-orange-text.text-accent-2 {
color: #ff6e40 !important; } 1391 1391 color: #ff6e40 !important; }
1392 1392
.deep-orange.accent-3 { 1393 1393 .deep-orange.accent-3 {
background-color: #ff3d00 !important; } 1394 1394 background-color: #ff3d00 !important; }
1395 1395
.deep-orange-text.text-accent-3 { 1396 1396 .deep-orange-text.text-accent-3 {
color: #ff3d00 !important; } 1397 1397 color: #ff3d00 !important; }
1398 1398
.deep-orange.accent-4 { 1399 1399 .deep-orange.accent-4 {
background-color: #dd2c00 !important; } 1400 1400 background-color: #dd2c00 !important; }
1401 1401
.deep-orange-text.text-accent-4 { 1402 1402 .deep-orange-text.text-accent-4 {
color: #dd2c00 !important; } 1403 1403 color: #dd2c00 !important; }
1404 1404
.brown.lighten-5 { 1405 1405 .brown.lighten-5 {
background-color: #efebe9 !important; } 1406 1406 background-color: #efebe9 !important; }
1407 1407
.brown-text.text-lighten-5 { 1408 1408 .brown-text.text-lighten-5 {
color: #efebe9 !important; } 1409 1409 color: #efebe9 !important; }
1410 1410
.brown.lighten-4 { 1411 1411 .brown.lighten-4 {
background-color: #d7ccc8 !important; } 1412 1412 background-color: #d7ccc8 !important; }
1413 1413
.brown-text.text-lighten-4 { 1414 1414 .brown-text.text-lighten-4 {
color: #d7ccc8 !important; } 1415 1415 color: #d7ccc8 !important; }
1416 1416
.brown.lighten-3 { 1417 1417 .brown.lighten-3 {
background-color: #bcaaa4 !important; } 1418 1418 background-color: #bcaaa4 !important; }
1419 1419
.brown-text.text-lighten-3 { 1420 1420 .brown-text.text-lighten-3 {
color: #bcaaa4 !important; } 1421 1421 color: #bcaaa4 !important; }
1422 1422
.brown.lighten-2 { 1423 1423 .brown.lighten-2 {
background-color: #a1887f !important; } 1424 1424 background-color: #a1887f !important; }
1425 1425
.brown-text.text-lighten-2 { 1426 1426 .brown-text.text-lighten-2 {
color: #a1887f !important; } 1427 1427 color: #a1887f !important; }
1428 1428
.brown.lighten-1 { 1429 1429 .brown.lighten-1 {
background-color: #8d6e63 !important; } 1430 1430 background-color: #8d6e63 !important; }
1431 1431
.brown-text.text-lighten-1 { 1432 1432 .brown-text.text-lighten-1 {
color: #8d6e63 !important; } 1433 1433 color: #8d6e63 !important; }
1434 1434
.brown { 1435 1435 .brown {
background-color: #795548 !important; } 1436 1436 background-color: #795548 !important; }
1437 1437
.brown-text { 1438 1438 .brown-text {
color: #795548 !important; } 1439 1439 color: #795548 !important; }
1440 1440
.brown.darken-1 { 1441 1441 .brown.darken-1 {
background-color: #6d4c41 !important; } 1442 1442 background-color: #6d4c41 !important; }
1443 1443
.brown-text.text-darken-1 { 1444 1444 .brown-text.text-darken-1 {
color: #6d4c41 !important; } 1445 1445 color: #6d4c41 !important; }
1446 1446
.brown.darken-2 { 1447 1447 .brown.darken-2 {
background-color: #5d4037 !important; } 1448 1448 background-color: #5d4037 !important; }
1449 1449
.brown-text.text-darken-2 { 1450 1450 .brown-text.text-darken-2 {
color: #5d4037 !important; } 1451 1451 color: #5d4037 !important; }
1452 1452
.brown.darken-3 { 1453 1453 .brown.darken-3 {
background-color: #4e342e !important; } 1454 1454 background-color: #4e342e !important; }
1455 1455
.brown-text.text-darken-3 { 1456 1456 .brown-text.text-darken-3 {
color: #4e342e !important; } 1457 1457 color: #4e342e !important; }
1458 1458
.brown.darken-4 { 1459 1459 .brown.darken-4 {
background-color: #3e2723 !important; } 1460 1460 background-color: #3e2723 !important; }
1461 1461
.brown-text.text-darken-4 { 1462 1462 .brown-text.text-darken-4 {
color: #3e2723 !important; } 1463 1463 color: #3e2723 !important; }
1464 1464
.blue-grey.lighten-5 { 1465 1465 .blue-grey.lighten-5 {
background-color: #eceff1 !important; } 1466 1466 background-color: #eceff1 !important; }
1467 1467
.blue-grey-text.text-lighten-5 { 1468 1468 .blue-grey-text.text-lighten-5 {
color: #eceff1 !important; } 1469 1469 color: #eceff1 !important; }
1470 1470
.blue-grey.lighten-4 { 1471 1471 .blue-grey.lighten-4 {
background-color: #cfd8dc !important; } 1472 1472 background-color: #cfd8dc !important; }
1473 1473
.blue-grey-text.text-lighten-4 { 1474 1474 .blue-grey-text.text-lighten-4 {
color: #cfd8dc !important; } 1475 1475 color: #cfd8dc !important; }
1476 1476
.blue-grey.lighten-3 { 1477 1477 .blue-grey.lighten-3 {
background-color: #b0bec5 !important; } 1478 1478 background-color: #b0bec5 !important; }
1479 1479
.blue-grey-text.text-lighten-3 { 1480 1480 .blue-grey-text.text-lighten-3 {
color: #b0bec5 !important; } 1481 1481 color: #b0bec5 !important; }
1482 1482
.blue-grey.lighten-2 { 1483 1483 .blue-grey.lighten-2 {
background-color: #90a4ae !important; } 1484 1484 background-color: #90a4ae !important; }
1485 1485
.blue-grey-text.text-lighten-2 { 1486 1486 .blue-grey-text.text-lighten-2 {
color: #90a4ae !important; } 1487 1487 color: #90a4ae !important; }
1488 1488
.blue-grey.lighten-1 { 1489 1489 .blue-grey.lighten-1 {
background-color: #78909c !important; } 1490 1490 background-color: #78909c !important; }
1491 1491
.blue-grey-text.text-lighten-1 { 1492 1492 .blue-grey-text.text-lighten-1 {
color: #78909c !important; } 1493 1493 color: #78909c !important; }
1494 1494
.blue-grey { 1495 1495 .blue-grey {
background-color: #607d8b !important; } 1496 1496 background-color: #607d8b !important; }
1497 1497
.blue-grey-text { 1498 1498 .blue-grey-text {
color: #607d8b !important; } 1499 1499 color: #607d8b !important; }
1500 1500
.blue-grey.darken-1 { 1501 1501 .blue-grey.darken-1 {
background-color: #546e7a !important; } 1502 1502 background-color: #546e7a !important; }
1503 1503
.blue-grey-text.text-darken-1 { 1504 1504 .blue-grey-text.text-darken-1 {
color: #546e7a !important; } 1505 1505 color: #546e7a !important; }
1506 1506
.blue-grey.darken-2 { 1507 1507 .blue-grey.darken-2 {
background-color: #455a64 !important; } 1508 1508 background-color: #455a64 !important; }
1509 1509
.blue-grey-text.text-darken-2 { 1510 1510 .blue-grey-text.text-darken-2 {
color: #455a64 !important; } 1511 1511 color: #455a64 !important; }
1512 1512
.blue-grey.darken-3 { 1513 1513 .blue-grey.darken-3 {
background-color: #37474f !important; } 1514 1514 background-color: #37474f !important; }
1515 1515
.blue-grey-text.text-darken-3 { 1516 1516 .blue-grey-text.text-darken-3 {
color: #37474f !important; } 1517 1517 color: #37474f !important; }
1518 1518
.blue-grey.darken-4 { 1519 1519 .blue-grey.darken-4 {
background-color: #263238 !important; } 1520 1520 background-color: #263238 !important; }
1521 1521
.blue-grey-text.text-darken-4 { 1522 1522 .blue-grey-text.text-darken-4 {
color: #263238 !important; } 1523 1523 color: #263238 !important; }
1524 1524
.grey.lighten-5 { 1525 1525 .grey.lighten-5 {
background-color: #fafafa !important; } 1526 1526 background-color: #fafafa !important; }
1527 1527
.grey-text.text-lighten-5 { 1528 1528 .grey-text.text-lighten-5 {
color: #fafafa !important; } 1529 1529 color: #fafafa !important; }
1530 1530
.grey.lighten-4 { 1531 1531 .grey.lighten-4 {
background-color: #f5f5f5 !important; } 1532 1532 background-color: #f5f5f5 !important; }
1533 1533
.grey-text.text-lighten-4 { 1534 1534 .grey-text.text-lighten-4 {
color: #f5f5f5 !important; } 1535 1535 color: #f5f5f5 !important; }
1536 1536
.grey.lighten-3 { 1537 1537 .grey.lighten-3 {
background-color: #eeeeee !important; } 1538 1538 background-color: #eeeeee !important; }
1539 1539
.grey-text.text-lighten-3 { 1540 1540 .grey-text.text-lighten-3 {
color: #eeeeee !important; } 1541 1541 color: #eeeeee !important; }
1542 1542
.grey.lighten-2 { 1543 1543 .grey.lighten-2 {
background-color: #e0e0e0 !important; } 1544 1544 background-color: #e0e0e0 !important; }
1545 1545
.grey-text.text-lighten-2 { 1546 1546 .grey-text.text-lighten-2 {
color: #e0e0e0 !important; } 1547 1547 color: #e0e0e0 !important; }
1548 1548
.grey.lighten-1 { 1549 1549 .grey.lighten-1 {
background-color: #bdbdbd !important; } 1550 1550 background-color: #bdbdbd !important; }
1551 1551
.grey-text.text-lighten-1 { 1552 1552 .grey-text.text-lighten-1 {
color: #bdbdbd !important; } 1553 1553 color: #bdbdbd !important; }
1554 1554
.grey { 1555 1555 .grey {
background-color: #9e9e9e !important; } 1556 1556 background-color: #9e9e9e !important; }
1557 1557
.grey-text { 1558 1558 .grey-text {
color: #9e9e9e !important; } 1559 1559 color: #9e9e9e !important; }
1560 1560
.grey.darken-1 { 1561 1561 .grey.darken-1 {
background-color: #757575 !important; } 1562 1562 background-color: #757575 !important; }
1563 1563
.grey-text.text-darken-1 { 1564 1564 .grey-text.text-darken-1 {
color: #757575 !important; } 1565 1565 color: #757575 !important; }
1566 1566
.grey.darken-2 { 1567 1567 .grey.darken-2 {
background-color: #616161 !important; } 1568 1568 background-color: #616161 !important; }
1569 1569
.grey-text.text-darken-2 { 1570 1570 .grey-text.text-darken-2 {
color: #616161 !important; } 1571 1571 color: #616161 !important; }
1572 1572
.grey.darken-3 { 1573 1573 .grey.darken-3 {
background-color: #424242 !important; } 1574 1574 background-color: #424242 !important; }
1575 1575
.grey-text.text-darken-3 { 1576 1576 .grey-text.text-darken-3 {
color: #424242 !important; } 1577 1577 color: #424242 !important; }
1578 1578
.grey.darken-4 { 1579 1579 .grey.darken-4 {
background-color: #212121 !important; } 1580 1580 background-color: #212121 !important; }
1581 1581
.grey-text.text-darken-4 { 1582 1582 .grey-text.text-darken-4 {
color: #212121 !important; } 1583 1583 color: #212121 !important; }
1584 1584
.shades.black { 1585 1585 .shades.black {
background-color: #000000 !important; } 1586 1586 background-color: #000000 !important; }
1587 1587
.shades-text.text-black { 1588 1588 .shades-text.text-black {
color: #000000 !important; } 1589 1589 color: #000000 !important; }
1590 1590
.shades.white { 1591 1591 .shades.white {
background-color: #FFFFFF !important; } 1592 1592 background-color: #FFFFFF !important; }
1593 1593
.shades-text.text-white { 1594 1594 .shades-text.text-white {
color: #FFFFFF !important; } 1595 1595 color: #FFFFFF !important; }
1596 1596
.shades.transparent { 1597 1597 .shades.transparent {
background-color: transparent !important; } 1598 1598 background-color: transparent !important; }
1599 1599
.shades-text.text-transparent { 1600 1600 .shades-text.text-transparent {
color: transparent !important; } 1601 1601 color: transparent !important; }
1602 1602
.black { 1603 1603 .black {
background-color: #000000 !important; } 1604 1604 background-color: #000000 !important; }
1605 1605
.black-text { 1606 1606 .black-text {
color: #000000 !important; } 1607 1607 color: #000000 !important; }
1608 1608
.white { 1609 1609 .white {
background-color: #FFFFFF !important; } 1610 1610 background-color: #FFFFFF !important; }
1611 1611
.white-text { 1612 1612 .white-text {
color: #FFFFFF !important; } 1613 1613 color: #FFFFFF !important; }
1614 1614
.transparent { 1615 1615 .transparent {
background-color: transparent !important; } 1616 1616 background-color: transparent !important; }
1617 1617
.transparent-text { 1618 1618 .transparent-text {
color: transparent !important; } 1619 1619 color: transparent !important; }
1620 1620
/*** Colors ***/ 1621 1621 /*** Colors ***/
/*** Badges ***/ 1622 1622 /*** Badges ***/
/*** Buttons ***/ 1623 1623 /*** Buttons ***/
/*** Cards ***/ 1624 1624 /*** Cards ***/
/*** Collapsible ***/ 1625 1625 /*** Collapsible ***/
/*** Dropdown ***/ 1626 1626 /*** Dropdown ***/
/*** Fonts ***/ 1627 1627 /*** Fonts ***/
/*** Forms ***/ 1628 1628 /*** Forms ***/
/*** Global ***/ 1629 1629 /*** Global ***/
/*** Navbar ***/ 1630 1630 /*** Navbar ***/
/*** SideNav ***/ 1631 1631 /*** SideNav ***/
/*** Tabs ***/ 1632 1632 /*** Tabs ***/
/*** Tables ***/ 1633 1633 /*** Tables ***/
/*** Toasts ***/ 1634 1634 /*** Toasts ***/
/*** Typography ***/ 1635 1635 /*** Typography ***/
/*** Collections ***/ 1636 1636 /*** Collections ***/
/* Progress Bar */ 1637 1637 /* Progress Bar */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ 1638 1638 /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/** 1639 1639 /**
* 1. Set default font family to sans-serif. 1640 1640 * 1. Set default font family to sans-serif.
* 2. Prevent iOS text size adjust after orientation change, without disabling 1641 1641 * 2. Prevent iOS text size adjust after orientation change, without disabling
* user zoom. 1642 1642 * user zoom.
*/ 1643 1643 */
html { 1644 1644 html {
font-family: sans-serif; 1645 1645 font-family: sans-serif;
/* 1 */ 1646 1646 /* 1 */
-ms-text-size-adjust: 100%; 1647 1647 -ms-text-size-adjust: 100%;
/* 2 */ 1648 1648 /* 2 */
-webkit-text-size-adjust: 100%; 1649 1649 -webkit-text-size-adjust: 100%;
/* 2 */ } 1650 1650 /* 2 */ }
1651 1651
/** 1652 1652 /**
* Remove default margin. 1653 1653 * Remove default margin.
*/ 1654 1654 */
body { 1655 1655 body {
margin: 0; } 1656 1656 margin: 0; }
1657 1657
/* HTML5 display definitions 1658 1658 /* HTML5 display definitions
========================================================================== */ 1659 1659 ========================================================================== */
/** 1660 1660 /**
* Correct `block` display not defined for any HTML5 element in IE 8/9. 1661 1661 * Correct `block` display not defined for any HTML5 element in IE 8/9.
* Correct `block` display not defined for `details` or `summary` in IE 10/11 1662 1662 * Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox. 1663 1663 * and Firefox.
* Correct `block` display not defined for `main` in IE 11. 1664 1664 * Correct `block` display not defined for `main` in IE 11.
*/ 1665 1665 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { 1666 1666 article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
display: block; } 1667 1667 display: block; }
1668 1668
/** 1669 1669 /**
* 1. Correct `inline-block` display not defined in IE 8/9. 1670 1670 * 1. Correct `inline-block` display not defined in IE 8/9.
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. 1671 1671 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
*/ 1672 1672 */
audio, canvas, progress, video { 1673 1673 audio, canvas, progress, video {
display: inline-block; 1674 1674 display: inline-block;
/* 1 */ 1675 1675 /* 1 */
vertical-align: baseline; 1676 1676 vertical-align: baseline;
/* 2 */ } 1677 1677 /* 2 */ }
1678 1678
/** 1679 1679 /**
* Prevent modern browsers from displaying `audio` without controls. 1680 1680 * Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices. 1681 1681 * Remove excess height in iOS 5 devices.
*/ 1682 1682 */
audio:not([controls]) { 1683 1683 audio:not([controls]) {
display: none; 1684 1684 display: none;
height: 0; } 1685 1685 height: 0; }
1686 1686
/** 1687 1687 /**
* Address `[hidden]` styling not present in IE 8/9/10. 1688 1688 * Address `[hidden]` styling not present in IE 8/9/10.
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. 1689 1689 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
*/ 1690 1690 */
[hidden], template { 1691 1691 [hidden], template {
display: none; } 1692 1692 display: none; }
1693 1693
/* Links 1694 1694 /* Links
========================================================================== */ 1695 1695 ========================================================================== */
/** 1696 1696 /**
* Remove the gray background color from active links in IE 10. 1697 1697 * Remove the gray background color from active links in IE 10.
*/ 1698 1698 */
a { 1699 1699 a {
background-color: transparent; } 1700 1700 background-color: transparent; }
1701 1701
/** 1702 1702 /**
* Improve readability when focused and also mouse hovered in all browsers. 1703 1703 * Improve readability when focused and also mouse hovered in all browsers.
*/ 1704 1704 */
a:active, a:hover { 1705 1705 a:active, a:hover {
outline: 0; } 1706 1706 outline: 0; }
1707 1707
/* Text-level semantics 1708 1708 /* Text-level semantics
========================================================================== */ 1709 1709 ========================================================================== */
/** 1710 1710 /**
* Address styling not present in IE 8/9/10/11, Safari, and Chrome. 1711 1711 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
*/ 1712 1712 */
abbr[title] { 1713 1713 abbr[title] {
border-bottom: 1px dotted; } 1714 1714 border-bottom: 1px dotted; }
1715 1715
/** 1716 1716 /**
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome. 1717 1717 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
*/ 1718 1718 */
b, strong { 1719 1719 b, strong {
font-weight: bold; } 1720 1720 font-weight: bold; }
1721 1721
/** 1722 1722 /**
* Address styling not present in Safari and Chrome. 1723 1723 * Address styling not present in Safari and Chrome.
*/ 1724 1724 */
dfn { 1725 1725 dfn {
font-style: italic; } 1726 1726 font-style: italic; }
1727 1727
/** 1728 1728 /**
* Address variable `h1` font-size and margin within `section` and `article` 1729 1729 * Address variable `h1` font-size and margin within `section` and `article`
* contexts in Firefox 4+, Safari, and Chrome. 1730 1730 * contexts in Firefox 4+, Safari, and Chrome.
*/ 1731 1731 */
h1 { 1732 1732 h1 {
font-size: 2em; 1733 1733 font-size: 2em;
margin: 0.67em 0; } 1734 1734 margin: 0.67em 0; }
1735 1735
/** 1736 1736 /**
* Address styling not present in IE 8/9. 1737 1737 * Address styling not present in IE 8/9.
*/ 1738 1738 */
mark { 1739 1739 mark {
background: #ff0; 1740 1740 background: #ff0;
color: #000; } 1741 1741 color: #000; }
1742 1742
/** 1743 1743 /**
* Address inconsistent and variable font size in all browsers. 1744 1744 * Address inconsistent and variable font size in all browsers.
*/ 1745 1745 */
small { 1746 1746 small {
font-size: 80%; } 1747 1747 font-size: 80%; }
1748 1748
/** 1749 1749 /**
* Prevent `sub` and `sup` affecting `line-height` in all browsers. 1750 1750 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/ 1751 1751 */
sub, sup { 1752 1752 sub, sup {
font-size: 75%; 1753 1753 font-size: 75%;
line-height: 0; 1754 1754 line-height: 0;
position: relative; 1755 1755 position: relative;
vertical-align: baseline; } 1756 1756 vertical-align: baseline; }
1757 1757
sup { 1758 1758 sup {
top: -0.5em; } 1759 1759 top: -0.5em; }
1760 1760
sub { 1761 1761 sub {
bottom: -0.25em; } 1762 1762 bottom: -0.25em; }
1763 1763
/* Embedded content 1764 1764 /* Embedded content
========================================================================== */ 1765 1765 ========================================================================== */
/** 1766 1766 /**
* Remove border when inside `a` element in IE 8/9/10. 1767 1767 * Remove border when inside `a` element in IE 8/9/10.
*/ 1768 1768 */
img { 1769 1769 img {
border: 0; } 1770 1770 border: 0; }
1771 1771
/** 1772 1772 /**
* Correct overflow not hidden in IE 9/10/11. 1773 1773 * Correct overflow not hidden in IE 9/10/11.
*/ 1774 1774 */
svg:not(:root) { 1775 1775 svg:not(:root) {
overflow: hidden; } 1776 1776 overflow: hidden; }
1777 1777
/* Grouping content 1778 1778 /* Grouping content
========================================================================== */ 1779 1779 ========================================================================== */
/** 1780 1780 /**
* Address margin not present in IE 8/9 and Safari. 1781 1781 * Address margin not present in IE 8/9 and Safari.
*/ 1782 1782 */
figure { 1783 1783 figure {
margin: 1em 40px; } 1784 1784 margin: 1em 40px; }
1785 1785
/** 1786 1786 /**
* Address differences between Firefox and other browsers. 1787 1787 * Address differences between Firefox and other browsers.
*/ 1788 1788 */
hr { 1789 1789 hr {
-moz-box-sizing: content-box; 1790 1790 -moz-box-sizing: content-box;
box-sizing: content-box; 1791 1791 box-sizing: content-box;
height: 0; } 1792 1792 height: 0; }
1793 1793
/** 1794 1794 /**
* Contain overflow in all browsers. 1795 1795 * Contain overflow in all browsers.
*/ 1796 1796 */
pre { 1797 1797 pre {
overflow: auto; } 1798 1798 overflow: auto; }
1799 1799
/** 1800 1800 /**
* Address odd `em`-unit font size rendering in all browsers. 1801 1801 * Address odd `em`-unit font size rendering in all browsers.
*/ 1802 1802 */
code, kbd, pre, samp { 1803 1803 code, kbd, pre, samp {
font-family: monospace, monospace; 1804 1804 font-family: monospace, monospace;
font-size: 1em; } 1805 1805 font-size: 1em; }
1806 1806
/* Forms 1807 1807 /* Forms
========================================================================== */ 1808 1808 ========================================================================== */
/** 1809 1809 /**
* Known limitation: by default, Chrome and Safari on OS X allow very limited 1810 1810 * Known limitation: by default, Chrome and Safari on OS X allow very limited
* styling of `select`, unless a `border` property is set. 1811 1811 * styling of `select`, unless a `border` property is set.
*/ 1812 1812 */
/** 1813 1813 /**
* 1. Correct color not being inherited. 1814 1814 * 1. Correct color not being inherited.
* Known issue: affects color of disabled elements. 1815 1815 * Known issue: affects color of disabled elements.
* 2. Correct font properties not being inherited. 1816 1816 * 2. Correct font properties not being inherited.
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome. 1817 1817 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
*/ 1818 1818 */
button, input, optgroup, select, textarea { 1819 1819 button, input, optgroup, select, textarea {
color: inherit; 1820 1820 color: inherit;
/* 1 */ 1821 1821 /* 1 */
font: inherit; 1822 1822 font: inherit;
/* 2 */ 1823 1823 /* 2 */
margin: 0; 1824 1824 margin: 0;
/* 3 */ } 1825 1825 /* 3 */ }
1826 1826
/** 1827 1827 /**
* Address `overflow` set to `hidden` in IE 8/9/10/11. 1828 1828 * Address `overflow` set to `hidden` in IE 8/9/10/11.
*/ 1829 1829 */
button { 1830 1830 button {
overflow: visible; } 1831 1831 overflow: visible; }
1832 1832
/** 1833 1833 /**
* Address inconsistent `text-transform` inheritance for `button` and `select`. 1834 1834 * Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values. 1835 1835 * All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. 1836 1836 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
* Correct `select` style inheritance in Firefox. 1837 1837 * Correct `select` style inheritance in Firefox.
*/ 1838 1838 */
button, select { 1839 1839 button, select {
text-transform: none; } 1840 1840 text-transform: none; }
1841 1841
/** 1842 1842 /**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` 1843 1843 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
* and `video` controls. 1844 1844 * and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS. 1845 1845 * 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type 1846 1846 * 3. Improve usability and consistency of cursor style between image-type
* `input` and others. 1847 1847 * `input` and others.
*/ 1848 1848 */
/* 1 */ 1849 1849 /* 1 */
html input[type="button"], button, input[type="reset"], input[type="submit"] { 1850 1850 html input[type="button"], button, input[type="reset"], input[type="submit"] {
-webkit-appearance: button; 1851 1851 -webkit-appearance: button;
/* 2 */ 1852 1852 /* 2 */
cursor: pointer; 1853 1853 cursor: pointer;
/* 3 */ } 1854 1854 /* 3 */ }
1855 1855
/** 1856 1856 /**
* Re-set default cursor for disabled elements. 1857 1857 * Re-set default cursor for disabled elements.
*/ 1858 1858 */
button[disabled], html input[disabled] { 1859 1859 button[disabled], html input[disabled] {
cursor: default; } 1860 1860 cursor: default; }
1861 1861
/** 1862 1862 /**
* Remove inner padding and border in Firefox 4+. 1863 1863 * Remove inner padding and border in Firefox 4+.
*/ 1864 1864 */
button::-moz-focus-inner, input::-moz-focus-inner { 1865 1865 button::-moz-focus-inner, input::-moz-focus-inner {
border: 0; 1866 1866 border: 0;
padding: 0; } 1867 1867 padding: 0; }
1868 1868
/** 1869 1869 /**
* Address Firefox 4+ setting `line-height` on `input` using `!important` in 1870 1870 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
* the UA stylesheet. 1871 1871 * the UA stylesheet.
*/ 1872 1872 */
input { 1873 1873 input {
line-height: normal; } 1874 1874 line-height: normal; }
1875 1875
/** 1876 1876 /**
* It's recommended that you don't attempt to style these elements. 1877 1877 * It's recommended that you don't attempt to style these elements.
* Firefox's implementation doesn't respect box-sizing, padding, or width. 1878 1878 * Firefox's implementation doesn't respect box-sizing, padding, or width.
* 1879 1879 *
* 1. Address box sizing set to `content-box` in IE 8/9/10. 1880 1880 * 1. Address box sizing set to `content-box` in IE 8/9/10.
* 2. Remove excess padding in IE 8/9/10. 1881 1881 * 2. Remove excess padding in IE 8/9/10.
*/ 1882 1882 */
input[type="checkbox"], input[type="radio"] { 1883 1883 input[type="checkbox"], input[type="radio"] {
box-sizing: border-box; 1884 1884 box-sizing: border-box;
/* 1 */ 1885 1885 /* 1 */
padding: 0; 1886 1886 padding: 0;
/* 2 */ } 1887 1887 /* 2 */ }
1888 1888
/** 1889 1889 /**
* Fix the cursor style for Chrome's increment/decrement buttons. For certain 1890 1890 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
* `font-size` values of the `input`, it causes the cursor style of the 1891 1891 * `font-size` values of the `input`, it causes the cursor style of the
* decrement button to change from `default` to `text`. 1892 1892 * decrement button to change from `default` to `text`.
*/ 1893 1893 */
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { 1894 1894 input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
height: auto; } 1895 1895 height: auto; }
1896 1896
/** 1897 1897 /**
* 1. Address `appearance` set to `searchfield` in Safari and Chrome. 1898 1898 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome 1899 1899 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
* (include `-moz` to future-proof). 1900 1900 * (include `-moz` to future-proof).
*/ 1901 1901 */
input[type="search"] { 1902 1902 input[type="search"] {
-webkit-appearance: textfield; 1903 1903 -webkit-appearance: textfield;
/* 1 */ 1904 1904 /* 1 */
-moz-box-sizing: content-box; 1905 1905 -moz-box-sizing: content-box;
-webkit-box-sizing: content-box; 1906 1906 -webkit-box-sizing: content-box;
/* 2 */ 1907 1907 /* 2 */
box-sizing: content-box; } 1908 1908 box-sizing: content-box; }
1909 1909
/** 1910 1910 /**
* Remove inner padding and search cancel button in Safari and Chrome on OS X. 1911 1911 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
* Safari (but not Chrome) clips the cancel button when the search input has 1912 1912 * Safari (but not Chrome) clips the cancel button when the search input has
* padding (and `textfield` appearance). 1913 1913 * padding (and `textfield` appearance).
*/ 1914 1914 */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { 1915 1915 input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; } 1916 1916 -webkit-appearance: none; }
1917 1917
/** 1918 1918 /**
* Define consistent border, margin, and padding. 1919 1919 * Define consistent border, margin, and padding.
*/ 1920 1920 */
fieldset { 1921 1921 fieldset {
border: 1px solid #c0c0c0; 1922 1922 border: 1px solid #c0c0c0;
margin: 0 2px; 1923 1923 margin: 0 2px;
padding: 0.35em 0.625em 0.75em; } 1924 1924 padding: 0.35em 0.625em 0.75em; }
1925 1925
/** 1926 1926 /**
* 1. Correct `color` not being inherited in IE 8/9/10/11. 1927 1927 * 1. Correct `color` not being inherited in IE 8/9/10/11.
* 2. Remove padding so people aren't caught out if they zero out fieldsets. 1928 1928 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
*/ 1929 1929 */
legend { 1930 1930 legend {
border: 0; 1931 1931 border: 0;
/* 1 */ 1932 1932 /* 1 */
padding: 0; 1933 1933 padding: 0;
/* 2 */ } 1934 1934 /* 2 */ }
1935 1935
/** 1936 1936 /**
* Remove default vertical scrollbar in IE 8/9/10/11. 1937 1937 * Remove default vertical scrollbar in IE 8/9/10/11.
*/ 1938 1938 */
textarea { 1939 1939 textarea {
overflow: auto; } 1940 1940 overflow: auto; }
1941 1941
/** 1942 1942 /**
* Don't inherit the `font-weight` (applied by a rule above). 1943 1943 * Don't inherit the `font-weight` (applied by a rule above).
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X. 1944 1944 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
*/ 1945 1945 */
optgroup { 1946 1946 optgroup {
font-weight: bold; } 1947 1947 font-weight: bold; }
1948 1948
/* Tables 1949 1949 /* Tables
========================================================================== */ 1950 1950 ========================================================================== */
/** 1951 1951 /**
* Remove most spacing between table cells. 1952 1952 * Remove most spacing between table cells.
*/ 1953 1953 */
table { 1954 1954 table {
border-collapse: collapse; 1955 1955 border-collapse: collapse;
border-spacing: 0; } 1956 1956 border-spacing: 0; }
1957 1957
td, th { 1958 1958 td, th {
padding: 0; } 1959 1959 padding: 0; }
1960 1960
html { 1961 1961 html {
box-sizing: border-box; } 1962 1962 box-sizing: border-box; }
1963 1963
*, *:before, *:after { 1964 1964 *, *:before, *:after {
box-sizing: inherit; } 1965 1965 box-sizing: inherit; }
1966 1966
ul { 1967 1967 ul {
list-style-type: none; } 1968 1968 list-style-type: none; }
1969 1969
a { 1970 1970 a {
color: #039be5; 1971 1971 color: #039be5;
text-decoration: none; 1972 1972 text-decoration: none;
-webkit-tap-highlight-color: transparent; } 1973 1973 -webkit-tap-highlight-color: transparent; }
1974 1974
.valign-wrapper { 1975 1975 .valign-wrapper {
display: -webkit-box; 1976 1976 display: -webkit-box;
display: -moz-box; 1977 1977 display: -moz-box;
display: -ms-flexbox; 1978 1978 display: -ms-flexbox;
display: -webkit-flex; 1979 1979 display: -webkit-flex;
display: flex; 1980 1980 display: flex;
-webkit-flex-align: center; 1981 1981 -webkit-flex-align: center;
-ms-flex-align: center; 1982 1982 -ms-flex-align: center;
-webkit-align-items: center; 1983 1983 -webkit-align-items: center;
align-items: center; } 1984 1984 align-items: center; }
.valign-wrapper .valign { 1985 1985 .valign-wrapper .valign {
display: block; } 1986 1986 display: block; }
1987 1987
ul { 1988 1988 ul {
padding: 0; } 1989 1989 padding: 0; }
ul li { 1990 1990 ul li {
list-style-type: none; } 1991 1991 list-style-type: none; }
1992 1992
.clearfix { 1993 1993 .clearfix {
clear: both; } 1994 1994 clear: both; }
1995 1995
.z-depth-1, nav, .card-panel, .card, .toast, .btn, .btn-large, .btn-floating, .dropdown-content, .collapsible, .side-nav { 1996 1996 .z-depth-1, nav, .card-panel, .card, .toast, .btn, .btn-large, .btn-floating, .dropdown-content, .collapsible, .side-nav {
-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); 1997 1997 -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
-moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); 1998 1998 -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); } 1999 1999 box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
2000 2000
.z-depth-1-half, .btn:hover, .btn-large:hover, .btn-floating:hover { 2001 2001 .z-depth-1-half, .btn:hover, .btn-large:hover, .btn-floating:hover {
-webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); 2002 2002 -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); 2003 2003 -moz-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); } 2004 2004 box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
2005 2005
.z-depth-2 { 2006 2006 .z-depth-2 {
-webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); 2007 2007 -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
-moz-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); 2008 2008 -moz-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); } 2009 2009 box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
2010 2010
.z-depth-3 { 2011 2011 .z-depth-3 {
-webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); 2012 2012 -webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
-moz-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); 2013 2013 -moz-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); } 2014 2014 box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); }
2015 2015
.z-depth-4, .modal { 2016 2016 .z-depth-4, .modal {
-webkit-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21); 2017 2017 -webkit-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
-moz-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21); 2018 2018 -moz-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21); } 2019 2019 box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21); }
2020 2020
.z-depth-5 { 2021 2021 .z-depth-5 {
-webkit-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22); 2022 2022 -webkit-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
-moz-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22); 2023 2023 -moz-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22); } 2024 2024 box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22); }
2025 2025
.divider { 2026 2026 .divider {
height: 1px; 2027 2027 height: 1px;
overflow: hidden; 2028 2028 overflow: hidden;
background-color: #e0e0e0; } 2029 2029 background-color: #e0e0e0; }
2030 2030
blockquote { 2031 2031 blockquote {
margin: 20px 0; 2032 2032 margin: 20px 0;
padding-left: 1.5rem; 2033 2033 padding-left: 1.5rem;
border-left: 5px solid #EF9A9A; } 2034 2034 border-left: 5px solid #EF9A9A; }
2035 2035
i { 2036 2036 i {
line-height: inherit; } 2037 2037 line-height: inherit; }
i.left { 2038 2038 i.left {
float: left; 2039 2039 float: left;
margin-right: 15px; } 2040 2040 margin-right: 15px; }
i.right { 2041 2041 i.right {
float: right; 2042 2042 float: right;
margin-left: 15px; } 2043 2043 margin-left: 15px; }
i.tiny { 2044 2044 i.tiny {
font-size: 1rem; } 2045 2045 font-size: 1rem; }
i.small { 2046 2046 i.small {
font-size: 2rem; } 2047 2047 font-size: 2rem; }
i.medium { 2048 2048 i.medium {
font-size: 4rem; } 2049 2049 font-size: 4rem; }
i.large { 2050 2050 i.large {
font-size: 6rem; } 2051 2051 font-size: 6rem; }
2052 2052
img.responsive-img, video.responsive-video { 2053 2053 img.responsive-img, video.responsive-video {
max-width: 100%; 2054 2054 max-width: 100%;
height: auto; } 2055 2055 height: auto; }
2056 2056
.pagination li { 2057 2057 .pagination li {
font-size: 1.2rem; 2058 2058 font-size: 1.2rem;
float: left; 2059 2059 float: left;
width: 30px; 2060 2060 width: 30px;
height: 30px; 2061 2061 height: 30px;
margin: 0 10px; 2062 2062 margin: 0 10px;
border-radius: 2px; 2063 2063 border-radius: 2px;
text-align: center; } 2064 2064 text-align: center; }
.pagination li a { 2065 2065 .pagination li a {
color: #444; } 2066 2066 color: #444; }
.pagination li.active a { 2067 2067 .pagination li.active a {
color: #fff; } 2068 2068 color: #fff; }
.pagination li.active { 2069 2069 .pagination li.active {
background-color: #3e1944; } 2070 2070 background-color: #3e1944; }
.pagination li.disabled a { 2071 2071 .pagination li.disabled a {
color: #999; } 2072 2072 color: #999; }
.pagination li i { 2073 2073 .pagination li i {
font-size: 2rem; 2074 2074 font-size: 2rem;
line-height: 1.8rem; } 2075 2075 line-height: 1.8rem; }
2076 2076
.parallax-container { 2077 2077 .parallax-container {
position: relative; 2078 2078 position: relative;
overflow: hidden; 2079 2079 overflow: hidden;
height: 500px; } 2080 2080 height: 500px; }
2081 2081
.parallax { 2082 2082 .parallax {
position: absolute; 2083 2083 position: absolute;
top: 0; 2084 2084 top: 0;
left: 0; 2085 2085 left: 0;
right: 0; 2086 2086 right: 0;
bottom: 0; 2087 2087 bottom: 0;
z-index: -1; } 2088 2088 z-index: -1; }
.parallax img { 2089 2089 .parallax img {
display: none; 2090 2090 display: none;
position: absolute; 2091 2091 position: absolute;
left: 50%; 2092 2092 left: 50%;
bottom: 0; 2093 2093 bottom: 0;
min-width: 100%; 2094 2094 min-width: 100%;
min-height: 100%; 2095 2095 min-height: 100%;
-webkit-transform: translate3d(0, 0, 0); 2096 2096 -webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); 2097 2097 transform: translate3d(0, 0, 0);
transform: translateX(-50%); } 2098 2098 transform: translateX(-50%); }
2099 2099
.pin-top, .pin-bottom { 2100 2100 .pin-top, .pin-bottom {
position: relative; } 2101 2101 position: relative; }
2102 2102
.pinned { 2103 2103 .pinned {
position: fixed !important; } 2104 2104 position: fixed !important; }
2105 2105
/********************* 2106 2106 /*********************
Transition Classes 2107 2107 Transition Classes
**********************/ 2108 2108 **********************/
ul.staggered-list li { 2109 2109 ul.staggered-list li {
opacity: 0; } 2110 2110 opacity: 0; }
2111 2111
.fade-in { 2112 2112 .fade-in {
opacity: 0; 2113 2113 opacity: 0;
transform-origin: 0 50%; } 2114 2114 transform-origin: 0 50%; }
2115 2115
/********************* 2116 2116 /*********************
Media Query Classes 2117 2117 Media Query Classes
**********************/ 2118 2118 **********************/
@media only screen and (max-width : 600px) { 2119 2119 @media only screen and (max-width : 600px) {
.hide-on-small-only, .hide-on-small-and-down { 2120 2120 .hide-on-small-only, .hide-on-small-and-down {
display: none !important; } } 2121 2121 display: none !important; } }
2122 2122
@media only screen and (max-width : 992px) { 2123 2123 @media only screen and (max-width : 992px) {
.hide-on-med-and-down { 2124 2124 .hide-on-med-and-down {
display: none !important; } } 2125 2125 display: none !important; } }
2126 2126
@media only screen and (min-width : 601px) { 2127 2127 @media only screen and (min-width : 601px) {
.hide-on-med-and-up { 2128 2128 .hide-on-med-and-up {
display: none !important; } } 2129 2129 display: none !important; } }
2130 2130
@media only screen and (min-width: 600px) and (max-width: 992px) { 2131 2131 @media only screen and (min-width: 600px) and (max-width: 992px) {
.hide-on-med-only { 2132 2132 .hide-on-med-only {
display: none !important; } } 2133 2133 display: none !important; } }
2134 2134
@media only screen and (min-width : 993px) { 2135 2135 @media only screen and (min-width : 993px) {
.hide-on-large-only { 2136 2136 .hide-on-large-only {
display: none !important; } } 2137 2137 display: none !important; } }
2138 2138
@media only screen and (min-width : 993px) { 2139 2139 @media only screen and (min-width : 993px) {
.show-on-large { 2140 2140 .show-on-large {
display: initial !important; } } 2141 2141 display: initial !important; } }
2142 2142
@media only screen and (min-width: 600px) and (max-width: 992px) { 2143 2143 @media only screen and (min-width: 600px) and (max-width: 992px) {
.show-on-medium { 2144 2144 .show-on-medium {
display: initial !important; } } 2145 2145 display: initial !important; } }
2146 2146
@media only screen and (max-width : 600px) { 2147 2147 @media only screen and (max-width : 600px) {
.show-on-small { 2148 2148 .show-on-small {
display: initial !important; } } 2149 2149 display: initial !important; } }
2150 2150
@media only screen and (min-width : 601px) { 2151 2151 @media only screen and (min-width : 601px) {
.show-on-medium-and-up { 2152 2152 .show-on-medium-and-up {
display: initial !important; } } 2153 2153 display: initial !important; } }
2154 2154
@media only screen and (max-width : 992px) { 2155 2155 @media only screen and (max-width : 992px) {
.show-on-medium-and-down { 2156 2156 .show-on-medium-and-down {
display: initial !important; } } 2157 2157 display: initial !important; } }
2158 2158
@media only screen and (max-width : 600px) { 2159 2159 @media only screen and (max-width : 600px) {
.center-on-small-only { 2160 2160 .center-on-small-only {
text-align: center; } } 2161 2161 text-align: center; } }
2162 2162
footer.page-footer { 2163 2163 footer.page-footer {
margin-top: 20px; 2164 2164 margin-top: 20px;
padding-top: 20px; 2165 2165 padding-top: 20px;
background-color: #3e1944; } 2166 2166 background-color: #3e1944; }
footer.page-footer .footer-copyright { 2167 2167 footer.page-footer .footer-copyright {
overflow: hidden; 2168 2168 overflow: hidden;
height: 50px; 2169 2169 height: 50px;
line-height: 50px; 2170 2170 line-height: 50px;
color: rgba(255, 255, 255, 0.8); 2171 2171 color: rgba(255, 255, 255, 0.8);
background-color: rgba(51, 51, 51, 0.08); } 2172 2172 background-color: rgba(51, 51, 51, 0.08); }
2173 2173
table, th, td { 2174 2174 table, th, td {
border: none; } 2175 2175 border: none; }
2176 2176
table { 2177 2177 table {
width: 100%; 2178 2178 width: 100%;
display: table; } 2179 2179 display: table; }
table.bordered tr { 2180 2180 table.bordered tr {
border-bottom: 1px solid #d0d0d0; } 2181 2181 border-bottom: 1px solid #d0d0d0; }
table.striped tbody tr:nth-child(odd) { 2182 2182 table.striped tbody tr:nth-child(odd) {
background-color: #f2f2f2; } 2183 2183 background-color: #f2f2f2; }
table.hoverable tbody tr { 2184 2184 table.hoverable tbody tr {
-webkit-transition: background-color 0.25s ease; 2185 2185 -webkit-transition: background-color 0.25s ease;
-moz-transition: background-color 0.25s ease; 2186 2186 -moz-transition: background-color 0.25s ease;
-o-transition: background-color 0.25s ease; 2187 2187 -o-transition: background-color 0.25s ease;
-ms-transition: background-color 0.25s ease; 2188 2188 -ms-transition: background-color 0.25s ease;
transition: background-color 0.25s ease; } 2189 2189 transition: background-color 0.25s ease; }
table.hoverable tbody tr:hover { 2190 2190 table.hoverable tbody tr:hover {
background-color: #f2f2f2; } 2191 2191 background-color: #f2f2f2; }
table.centered thead tr th, table.centered tbody tr td { 2192 2192 table.centered thead tr th, table.centered tbody tr td {
text-align: center; } 2193 2193 text-align: center; }
2194 2194
thead { 2195 2195 thead {
border-bottom: 1px solid #d0d0d0; } 2196 2196 border-bottom: 1px solid #d0d0d0; }
2197 2197
td, th { 2198 2198 td, th {
padding: 15px 5px; 2199 2199 padding: 15px 5px;
display: table-cell; 2200 2200 display: table-cell;
text-align: left; 2201 2201 text-align: left;
vertical-align: middle; 2202 2202 vertical-align: middle;
border-radius: 2px; } 2203 2203 border-radius: 2px; }
2204 2204
@media only screen and (max-width : 992px) { 2205 2205 @media only screen and (max-width : 992px) {
table.responsive-table { 2206 2206 table.responsive-table {
width: 100%; 2207 2207 width: 100%;
border-collapse: collapse; 2208 2208 border-collapse: collapse;
border-spacing: 0; 2209 2209 border-spacing: 0;
display: block; 2210 2210 display: block;
position: relative; 2211 2211 position: relative;
/* sort out borders */ } 2212 2212 /* sort out borders */ }
table.responsive-table th, table.responsive-table td { 2213 2213 table.responsive-table th, table.responsive-table td {
margin: 0; 2214 2214 margin: 0;
vertical-align: top; } 2215 2215 vertical-align: top; }
table.responsive-table th { 2216 2216 table.responsive-table th {
text-align: left; } 2217 2217 text-align: left; }
table.responsive-table thead { 2218 2218 table.responsive-table thead {
display: block; 2219 2219 display: block;
float: left; } 2220 2220 float: left; }
table.responsive-table thead tr { 2221 2221 table.responsive-table thead tr {
display: block; 2222 2222 display: block;
padding: 0 10px 0 0; } 2223 2223 padding: 0 10px 0 0; }
table.responsive-table thead tr th::before { 2224 2224 table.responsive-table thead tr th::before {
content: "\00a0"; } 2225 2225 content: "\00a0"; }
table.responsive-table tbody { 2226 2226 table.responsive-table tbody {
display: block; 2227 2227 display: block;
width: auto; 2228 2228 width: auto;
position: relative; 2229 2229 position: relative;
overflow-x: auto; 2230 2230 overflow-x: auto;
white-space: nowrap; } 2231 2231 white-space: nowrap; }
table.responsive-table tbody tr { 2232 2232 table.responsive-table tbody tr {
display: inline-block; 2233 2233 display: inline-block;
vertical-align: top; } 2234 2234 vertical-align: top; }
table.responsive-table th { 2235 2235 table.responsive-table th {
display: block; 2236 2236 display: block;
text-align: right; } 2237 2237 text-align: right; }
table.responsive-table td { 2238 2238 table.responsive-table td {
display: block; 2239 2239 display: block;
min-height: 1.25em; 2240 2240 min-height: 1.25em;
text-align: left; } 2241 2241 text-align: left; }
table.responsive-table tr { 2242 2242 table.responsive-table tr {
padding: 0 10px; } 2243 2243 padding: 0 10px; }
table.responsive-table thead { 2244 2244 table.responsive-table thead {
border: 0; 2245 2245 border: 0;
border-right: 1px solid #d0d0d0; } 2246 2246 border-right: 1px solid #d0d0d0; }
table.responsive-table.bordered th { 2247 2247 table.responsive-table.bordered th {
border-bottom: 0; 2248 2248 border-bottom: 0;
border-left: 0; } 2249 2249 border-left: 0; }
table.responsive-table.bordered td { 2250 2250 table.responsive-table.bordered td {
border-left: 0; 2251 2251 border-left: 0;
border-right: 0; 2252 2252 border-right: 0;
border-bottom: 0; } 2253 2253 border-bottom: 0; }
table.responsive-table.bordered tr { 2254 2254 table.responsive-table.bordered tr {
border: 0; } 2255 2255 border: 0; }
table.responsive-table.bordered tbody tr { 2256 2256 table.responsive-table.bordered tbody tr {
border-right: 1px solid #d0d0d0; } 2257 2257 border-right: 1px solid #d0d0d0; }
} 2258 2258 }
2259 2259
.collection { 2260 2260 .collection {
margin: 0.5rem 0 1rem 0; 2261 2261 margin: 0.5rem 0 1rem 0;
border: 1px solid #e0e0e0; 2262 2262 border: 1px solid #e0e0e0;
border-radius: 2px; 2263 2263 border-radius: 2px;
overflow: hidden; 2264 2264 overflow: hidden;
position: relative; } 2265 2265 position: relative; }
.collection .collection-item { 2266 2266 .collection .collection-item {
background-color: #fff; 2267 2267 background-color: #fff;
line-height: 1.5rem; 2268 2268 line-height: 1.5rem;
padding: 10px 20px; 2269 2269 padding: 10px 20px;
margin: 0; 2270 2270 margin: 0;
border-bottom: 1px solid #e0e0e0; } 2271 2271 border-bottom: 1px solid #e0e0e0; }
.collection .collection-item.avatar { 2272 2272 .collection .collection-item.avatar {
height: 84px; 2273 2273 height: 84px;
padding-left: 72px; 2274 2274 padding-left: 72px;
position: relative; } 2275 2275 position: relative; }
.collection .collection-item.avatar .circle { 2276 2276 .collection .collection-item.avatar .circle {
position: absolute; 2277 2277 position: absolute;
width: 42px; 2278 2278 width: 42px;
height: 42px; 2279 2279 height: 42px;
overflow: hidden; 2280 2280 overflow: hidden;
left: 15px; 2281 2281 left: 15px;
display: inline-block; 2282 2282 display: inline-block;
vertical-align: middle; } 2283 2283 vertical-align: middle; }
.collection .collection-item.avatar i.circle { 2284 2284 .collection .collection-item.avatar i.circle {
font-size: 18px; 2285 2285 font-size: 18px;
line-height: 42px; 2286 2286 line-height: 42px;
color: #fff; 2287 2287 color: #fff;
background-color: #999; 2288 2288 background-color: #999;
text-align: center; } 2289 2289 text-align: center; }
.collection .collection-item.avatar .title { 2290 2290 .collection .collection-item.avatar .title {
font-size: 16px; } 2291 2291 font-size: 16px; }
.collection .collection-item.avatar p { 2292 2292 .collection .collection-item.avatar p {
margin: 0; } 2293 2293 margin: 0; }
.collection .collection-item.avatar .secondary-content { 2294 2294 .collection .collection-item.avatar .secondary-content {
position: absolute; 2295 2295 position: absolute;
top: 16px; 2296 2296 top: 16px;
right: 16px; } 2297 2297 right: 16px; }
.collection .collection-item:last-child { 2298 2298 .collection .collection-item:last-child {
border-bottom: none; } 2299 2299 border-bottom: none; }
.collection .collection-item.active { 2300 2300 .collection .collection-item.active {
background-color: #26a69a; 2301 2301 background-color: #26a69a;
color: #eafaf9; } 2302 2302 color: #eafaf9; }
.collection a.collection-item { 2303 2303 .collection a.collection-item {
display: block; 2304 2304 display: block;
-webkit-transition: 0.25s; 2305 2305 -webkit-transition: 0.25s;
-moz-transition: 0.25s; 2306 2306 -moz-transition: 0.25s;
-o-transition: 0.25s; 2307 2307 -o-transition: 0.25s;
-ms-transition: 0.25s; 2308 2308 -ms-transition: 0.25s;
transition: 0.25s; 2309 2309 transition: 0.25s;
color: #26a69a; } 2310 2310 color: #26a69a; }
.collection a.collection-item:not(.active):hover { 2311 2311 .collection a.collection-item:not(.active):hover {
background-color: #ddd; } 2312 2312 background-color: #ddd; }
.collection.with-header .collection-header { 2313 2313 .collection.with-header .collection-header {
background-color: #fff; 2314 2314 background-color: #fff;
border-bottom: 1px solid #e0e0e0; 2315 2315 border-bottom: 1px solid #e0e0e0;
padding: 10px 20px; } 2316 2316 padding: 10px 20px; }
.collection.with-header .collection-item { 2317 2317 .collection.with-header .collection-item {
padding-left: 30px; } 2318 2318 padding-left: 30px; }
2319 2319
.secondary-content { 2320 2320 .secondary-content {
float: right; 2321 2321 float: right;
color: #26a69a; } 2322 2322 color: #26a69a; }
2323 2323
span.badge { 2324 2324 span.badge {
min-width: 3rem; 2325 2325 min-width: 3rem;
padding: 0 6px; 2326 2326 padding: 0 6px;
text-align: center; 2327 2327 text-align: center;
font-size: 1rem; 2328 2328 font-size: 1rem;
line-height: inherit; 2329 2329 line-height: inherit;
color: #757575; 2330 2330 color: #757575;
position: absolute; 2331 2331 position: absolute;
right: 15px; 2332 2332 right: 15px;
-webkit-box-sizing: border-box; 2333 2333 -webkit-box-sizing: border-box;
-moz-box-sizing: border-box; 2334 2334 -moz-box-sizing: border-box;
box-sizing: border-box; } 2335 2335 box-sizing: border-box; }
span.badge.new { 2336 2336 span.badge.new {
font-weight: 300; 2337 2337 font-weight: 300;
font-size: 0.8rem; 2338 2338 font-size: 0.8rem;
color: #fff; 2339 2339 color: #fff;
background-color: #26a69a; 2340 2340 background-color: #26a69a;
border-radius: 2px; } 2341 2341 border-radius: 2px; }
span.badge.new:after { 2342 2342 span.badge.new:after {
content: " new"; } 2343 2343 content: " new"; }
2344 2344
.video-container { 2345 2345 .video-container {
position: relative; 2346 2346 position: relative;
padding-bottom: 56.25%; 2347 2347 padding-bottom: 56.25%;
padding-top: 30px; 2348 2348 padding-top: 30px;
height: 0; 2349 2349 height: 0;
overflow: hidden; } 2350 2350 overflow: hidden; }
.video-container.no-controls { 2351 2351 .video-container.no-controls {
padding-top: 0; } 2352 2352 padding-top: 0; }
.video-container iframe, .video-container object, .video-container embed { 2353 2353 .video-container iframe, .video-container object, .video-container embed {
position: absolute; 2354 2354 position: absolute;
top: 0; 2355 2355 top: 0;
left: 0; 2356 2356 left: 0;
width: 100%; 2357 2357 width: 100%;
height: 100%; } 2358 2358 height: 100%; }
2359 2359
.progress { 2360 2360 .progress {
position: relative; 2361 2361 position: relative;
height: 4px; 2362 2362 height: 4px;
display: block; 2363 2363 display: block;
width: 100%; 2364 2364 width: 100%;
background-color: #acece6; 2365 2365 background-color: #acece6;
border-radius: 2px; 2366 2366 border-radius: 2px;
margin: 0.5rem 0 1rem 0; 2367 2367 margin: 0.5rem 0 1rem 0;
overflow: hidden; } 2368 2368 overflow: hidden; }
.progress .determinate { 2369 2369 .progress .determinate {
position: absolute; 2370 2370 position: absolute;
background-color: inherit; 2371 2371 background-color: inherit;
top: 0; 2372 2372 top: 0;
bottom: 0; 2373 2373 bottom: 0;
background-color: #26a69a; 2374 2374 background-color: #26a69a;
-webkit-transition: width 0.3s linear; 2375 2375 -webkit-transition: width 0.3s linear;
-moz-transition: width 0.3s linear; 2376 2376 -moz-transition: width 0.3s linear;
-o-transition: width 0.3s linear; 2377 2377 -o-transition: width 0.3s linear;
-ms-transition: width 0.3s linear; 2378 2378 -ms-transition: width 0.3s linear;
transition: width 0.3s linear; } 2379 2379 transition: width 0.3s linear; }
.progress .indeterminate { 2380 2380 .progress .indeterminate {
background-color: #26a69a; } 2381 2381 background-color: #26a69a; }
.progress .indeterminate:before { 2382 2382 .progress .indeterminate:before {
content: ''; 2383 2383 content: '';
position: absolute; 2384 2384 position: absolute;
background-color: inherit; 2385 2385 background-color: inherit;
top: 0; 2386 2386 top: 0;
left: 0; 2387 2387 left: 0;
bottom: 0; 2388 2388 bottom: 0;
will-change: left, right; 2389 2389 will-change: left, right;
-webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; 2390 2390 -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
-moz-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; 2391 2391 -moz-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
-ms-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; 2392 2392 -ms-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
-o-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; 2393 2393 -o-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; } 2394 2394 animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; }
.progress .indeterminate:after { 2395 2395 .progress .indeterminate:after {
content: ''; 2396 2396 content: '';
position: absolute; 2397 2397 position: absolute;
background-color: inherit; 2398 2398 background-color: inherit;
top: 0; 2399 2399 top: 0;
left: 0; 2400 2400 left: 0;
bottom: 0; 2401 2401 bottom: 0;
will-change: left, right; 2402 2402 will-change: left, right;
-webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; 2403 2403 -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
-moz-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; 2404 2404 -moz-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
-ms-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; 2405 2405 -ms-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
-o-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; 2406 2406 -o-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; 2407 2407 animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
-webkit-animation-delay: 1.15s; 2408 2408 -webkit-animation-delay: 1.15s;
-moz-animation-delay: 1.15s; 2409 2409 -moz-animation-delay: 1.15s;
-ms-animation-delay: 1.15s; 2410 2410 -ms-animation-delay: 1.15s;
-o-animation-delay: 1.15s; 2411 2411 -o-animation-delay: 1.15s;
animation-delay: 1.15s; } 2412 2412 animation-delay: 1.15s; }
2413 2413
@-webkit-keyframes indeterminate { 2414 2414 @-webkit-keyframes indeterminate {
0% { 2415 2415 0% {
left: -35%; 2416 2416 left: -35%;
right: 100%; } 2417 2417 right: 100%; }
2418 2418
60% { 2419 2419 60% {
left: 100%; 2420 2420 left: 100%;
right: -90%; } 2421 2421 right: -90%; }
2422 2422
100% { 2423 2423 100% {
left: 100%; 2424 2424 left: 100%;
right: -90%; } } 2425 2425 right: -90%; } }
2426 2426
@-moz-keyframes indeterminate { 2427 2427 @-moz-keyframes indeterminate {
0% { 2428 2428 0% {
left: -35%; 2429 2429 left: -35%;
right: 100%; } 2430 2430 right: 100%; }
2431 2431
60% { 2432 2432 60% {
left: 100%; 2433 2433 left: 100%;
right: -90%; } 2434 2434 right: -90%; }
2435 2435
100% { 2436 2436 100% {
left: 100%; 2437 2437 left: 100%;
right: -90%; } } 2438 2438 right: -90%; } }
2439 2439
@keyframes indeterminate { 2440 2440 @keyframes indeterminate {
0% { 2441 2441 0% {
left: -35%; 2442 2442 left: -35%;
right: 100%; } 2443 2443 right: 100%; }
2444 2444
60% { 2445 2445 60% {
left: 100%; 2446 2446 left: 100%;
right: -90%; } 2447 2447 right: -90%; }
2448 2448
100% { 2449 2449 100% {
left: 100%; 2450 2450 left: 100%;
right: -90%; } } 2451 2451 right: -90%; } }
2452 2452
@-webkit-keyframes indeterminate-short { 2453 2453 @-webkit-keyframes indeterminate-short {
0% { 2454 2454 0% {
left: -200%; 2455 2455 left: -200%;
right: 100%; } 2456 2456 right: 100%; }
2457 2457
60% { 2458 2458 60% {
left: 107%; 2459 2459 left: 107%;
right: -8%; } 2460 2460 right: -8%; }
2461 2461
100% { 2462 2462 100% {
left: 107%; 2463 2463 left: 107%;
right: -8%; } } 2464 2464 right: -8%; } }
2465 2465
@-moz-keyframes indeterminate-short { 2466 2466 @-moz-keyframes indeterminate-short {
0% { 2467 2467 0% {
left: -200%; 2468 2468 left: -200%;
right: 100%; } 2469 2469 right: 100%; }
2470 2470
60% { 2471 2471 60% {
left: 107%; 2472 2472 left: 107%;
right: -8%; } 2473 2473 right: -8%; }
2474 2474
100% { 2475 2475 100% {
left: 107%; 2476 2476 left: 107%;
right: -8%; } } 2477 2477 right: -8%; } }
2478 2478
@keyframes indeterminate-short { 2479 2479 @keyframes indeterminate-short {
0% { 2480 2480 0% {
left: -200%; 2481 2481 left: -200%;
right: 100%; } 2482 2482 right: 100%; }
2483 2483
60% { 2484 2484 60% {
left: 107%; 2485 2485 left: 107%;
right: -8%; } 2486 2486 right: -8%; }
2487 2487
100% { 2488 2488 100% {
left: 107%; 2489 2489 left: 107%;
right: -8%; } } 2490 2490 right: -8%; } }
2491 2491
/******************* 2492 2492 /*******************
Utility Classes 2493 2493 Utility Classes
*******************/ 2494 2494 *******************/
.hide { 2495 2495 .hide {
display: none !important; } 2496 2496 display: none !important; }
2497 2497
.left-align { 2498 2498 .left-align {
text-align: left; } 2499 2499 text-align: left; }
2500 2500
.right-align { 2501 2501 .right-align {
text-align: right; } 2502 2502 text-align: right; }
2503 2503
.center, .center-align { 2504 2504 .center, .center-align {
text-align: center; } 2505 2505 text-align: center; }
2506 2506
.left { 2507 2507 .left {
float: left !important; } 2508 2508 float: left !important; }
2509 2509
.right { 2510 2510 .right {
float: right !important; } 2511 2511 float: right !important; }
2512 2512
.no-select, input[type=range], input[type=range] + .thumb { 2513 2513 .no-select, input[type=range], input[type=range] + .thumb {
-webkit-touch-callout: none; 2514 2514 -webkit-touch-callout: none;
-webkit-user-select: none; 2515 2515 -webkit-user-select: none;
-khtml-user-select: none; 2516 2516 -khtml-user-select: none;
-moz-user-select: none; 2517 2517 -moz-user-select: none;
-ms-user-select: none; 2518 2518 -ms-user-select: none;
user-select: none; } 2519 2519 user-select: none; }
2520 2520
.circle { 2521 2521 .circle {
border-radius: 50%; } 2522 2522 border-radius: 50%; }
2523 2523
.center-block { 2524 2524 .center-block {
display: block; 2525 2525 display: block;
margin-left: auto; 2526 2526 margin-left: auto;
margin-right: auto; } 2527 2527 margin-right: auto; }
2528 2528
.truncate { 2529 2529 .truncate {
white-space: nowrap; 2530 2530 white-space: nowrap;
overflow: hidden; 2531 2531 overflow: hidden;
text-overflow: ellipsis; } 2532 2532 text-overflow: ellipsis; }
2533 2533
.no-padding { 2534 2534 .no-padding {
padding: 0 !important; } 2535 2535 padding: 0 !important; }
2536 2536
@font-face { 2537 2537 @font-face {
font-family: "Material-Design-Icons"; 2538 2538 font-family: "Material-Design-Icons";
src: url("../font/material-design-icons/Material-Design-Icons.eot?#iefix") format("embedded-opentype"), url("../font/material-design-icons/Material-Design-Icons.woff2") format("woff2"), url("../font/material-design-icons/Material-Design-Icons.woff") format("woff"), url("../font/material-design-icons/Material-Design-Icons.ttf") format("truetype"), url("../font/material-design-icons/Material-Design-Icons.svg#Material-Design-Icons") format("svg"); 2539 2539 src: url("../font/material-design-icons/Material-Design-Icons.eot?#iefix") format("embedded-opentype"), url("../font/material-design-icons/Material-Design-Icons.woff2") format("woff2"), url("../font/material-design-icons/Material-Design-Icons.woff") format("woff"), url("../font/material-design-icons/Material-Design-Icons.ttf") format("truetype"), url("../font/material-design-icons/Material-Design-Icons.svg#Material-Design-Icons") format("svg");
font-weight: normal; 2540 2540 font-weight: normal;
font-style: normal; } 2541 2541 font-style: normal; }
2542 2542
[class^="mdi-"], [class*=" mdi-"] { 2543 2543 [class^="mdi-"], [class*=" mdi-"] {
font-family: "Material-Design-Icons"; 2544 2544 font-family: "Material-Design-Icons";
speak: none; 2545 2545 speak: none;
font-style: normal; 2546 2546 font-style: normal;
font-weight: normal; 2547 2547 font-weight: normal;
font-variant: normal; 2548 2548 font-variant: normal;
text-transform: none; 2549 2549 text-transform: none;
text-rendering: auto; 2550 2550 text-rendering: auto;
/* Better Font Rendering =========== */ 2551 2551 /* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased; 2552 2552 -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; } 2553 2553 -moz-osx-font-smoothing: grayscale; }
2554 2554
.mdi-action-3d-rotation:before { 2555 2555 .mdi-action-3d-rotation:before {
content: "\e600"; } 2556 2556 content: "\e600"; }
2557 2557
.mdi-action-accessibility:before { 2558 2558 .mdi-action-accessibility:before {
content: "\e601"; } 2559 2559 content: "\e601"; }
2560 2560
.mdi-action-account-balance:before { 2561 2561 .mdi-action-account-balance:before {
content: "\e602"; } 2562 2562 content: "\e602"; }
2563 2563
.mdi-action-account-balance-wallet:before { 2564 2564 .mdi-action-account-balance-wallet:before {
content: "\e603"; } 2565 2565 content: "\e603"; }
2566 2566
.mdi-action-account-box:before { 2567 2567 .mdi-action-account-box:before {
content: "\e604"; } 2568 2568 content: "\e604"; }
2569 2569
.mdi-action-account-child:before { 2570 2570 .mdi-action-account-child:before {
content: "\e605"; } 2571 2571 content: "\e605"; }
2572 2572
.mdi-action-account-circle:before { 2573 2573 .mdi-action-account-circle:before {
content: "\e606"; } 2574 2574 content: "\e606"; }
2575 2575
.mdi-action-add-shopping-cart:before { 2576 2576 .mdi-action-add-shopping-cart:before {
content: "\e607"; } 2577 2577 content: "\e607"; }
2578 2578
.mdi-action-alarm:before { 2579 2579 .mdi-action-alarm:before {
content: "\e608"; } 2580 2580 content: "\e608"; }
2581 2581
.mdi-action-alarm-add:before { 2582 2582 .mdi-action-alarm-add:before {
content: "\e609"; } 2583 2583 content: "\e609"; }
2584 2584
.mdi-action-alarm-off:before { 2585 2585 .mdi-action-alarm-off:before {
content: "\e60a"; } 2586 2586 content: "\e60a"; }
2587 2587
.mdi-action-alarm-on:before { 2588 2588 .mdi-action-alarm-on:before {
content: "\e60b"; } 2589 2589 content: "\e60b"; }
2590 2590
.mdi-action-android:before { 2591 2591 .mdi-action-android:before {
content: "\e60c"; } 2592 2592 content: "\e60c"; }
2593 2593
.mdi-action-announcement:before { 2594 2594 .mdi-action-announcement:before {
content: "\e60d"; } 2595 2595 content: "\e60d"; }
2596 2596
.mdi-action-aspect-ratio:before { 2597 2597 .mdi-action-aspect-ratio:before {
content: "\e60e"; } 2598 2598 content: "\e60e"; }
2599 2599
.mdi-action-assessment:before { 2600 2600 .mdi-action-assessment:before {
content: "\e60f"; } 2601 2601 content: "\e60f"; }
2602 2602
.mdi-action-assignment:before { 2603 2603 .mdi-action-assignment:before {
content: "\e610"; } 2604 2604 content: "\e610"; }
2605 2605
.mdi-action-assignment-ind:before { 2606 2606 .mdi-action-assignment-ind:before {
content: "\e611"; } 2607 2607 content: "\e611"; }
2608 2608
.mdi-action-assignment-late:before { 2609 2609 .mdi-action-assignment-late:before {
content: "\e612"; } 2610 2610 content: "\e612"; }
2611 2611
.mdi-action-assignment-return:before { 2612 2612 .mdi-action-assignment-return:before {
content: "\e613"; } 2613 2613 content: "\e613"; }
2614 2614
.mdi-action-assignment-returned:before { 2615 2615 .mdi-action-assignment-returned:before {
content: "\e614"; } 2616 2616 content: "\e614"; }
2617 2617
.mdi-action-assignment-turned-in:before { 2618 2618 .mdi-action-assignment-turned-in:before {
content: "\e615"; } 2619 2619 content: "\e615"; }
2620 2620
.mdi-action-autorenew:before { 2621 2621 .mdi-action-autorenew:before {
content: "\e616"; } 2622 2622 content: "\e616"; }
2623 2623
.mdi-action-backup:before { 2624 2624 .mdi-action-backup:before {
content: "\e617"; } 2625 2625 content: "\e617"; }
2626 2626
.mdi-action-book:before { 2627 2627 .mdi-action-book:before {
content: "\e618"; } 2628 2628 content: "\e618"; }
2629 2629
.mdi-action-bookmark:before { 2630 2630 .mdi-action-bookmark:before {
content: "\e619"; } 2631 2631 content: "\e619"; }
2632 2632
.mdi-action-bookmark-outline:before { 2633 2633 .mdi-action-bookmark-outline:before {
content: "\e61a"; } 2634 2634 content: "\e61a"; }
2635 2635
.mdi-action-bug-report:before { 2636 2636 .mdi-action-bug-report:before {
content: "\e61b"; } 2637 2637 content: "\e61b"; }
2638 2638
.mdi-action-cached:before { 2639 2639 .mdi-action-cached:before {
content: "\e61c"; } 2640 2640 content: "\e61c"; }
2641 2641
.mdi-action-class:before { 2642 2642 .mdi-action-class:before {
content: "\e61d"; } 2643 2643 content: "\e61d"; }
2644 2644
.mdi-action-credit-card:before { 2645 2645 .mdi-action-credit-card:before {
content: "\e61e"; } 2646 2646 content: "\e61e"; }
2647 2647
.mdi-action-dashboard:before { 2648 2648 .mdi-action-dashboard:before {
content: "\e61f"; } 2649 2649 content: "\e61f"; }
2650 2650
.mdi-action-delete:before { 2651 2651 .mdi-action-delete:before {
content: "\e620"; } 2652 2652 content: "\e620"; }
2653 2653
.mdi-action-description:before { 2654 2654 .mdi-action-description:before {
content: "\e621"; } 2655 2655 content: "\e621"; }
2656 2656
.mdi-action-dns:before { 2657 2657 .mdi-action-dns:before {
content: "\e622"; } 2658 2658 content: "\e622"; }
2659 2659
.mdi-action-done:before { 2660 2660 .mdi-action-done:before {
content: "\e623"; } 2661 2661 content: "\e623"; }
2662 2662
.mdi-action-done-all:before { 2663 2663 .mdi-action-done-all:before {
content: "\e624"; } 2664 2664 content: "\e624"; }
2665 2665
.mdi-action-event:before { 2666 2666 .mdi-action-event:before {
content: "\e625"; } 2667 2667 content: "\e625"; }
2668 2668
.mdi-action-exit-to-app:before { 2669 2669 .mdi-action-exit-to-app:before {
content: "\e626"; } 2670 2670 content: "\e626"; }
2671 2671
.mdi-action-explore:before { 2672 2672 .mdi-action-explore:before {
content: "\e627"; } 2673 2673 content: "\e627"; }
2674 2674
.mdi-action-extension:before { 2675 2675 .mdi-action-extension:before {
content: "\e628"; } 2676 2676 content: "\e628"; }
2677 2677
.mdi-action-face-unlock:before { 2678 2678 .mdi-action-face-unlock:before {
content: "\e629"; } 2679 2679 content: "\e629"; }
2680 2680
.mdi-action-favorite:before { 2681 2681 .mdi-action-favorite:before {
content: "\e62a"; } 2682 2682 content: "\e62a"; }
2683 2683
.mdi-action-favorite-outline:before { 2684 2684 .mdi-action-favorite-outline:before {
content: "\e62b"; } 2685 2685 content: "\e62b"; }
2686 2686
.mdi-action-find-in-page:before { 2687 2687 .mdi-action-find-in-page:before {
content: "\e62c"; } 2688 2688 content: "\e62c"; }
2689 2689
.mdi-action-find-replace:before { 2690 2690 .mdi-action-find-replace:before {
content: "\e62d"; } 2691 2691 content: "\e62d"; }
2692 2692
.mdi-action-flip-to-back:before { 2693 2693 .mdi-action-flip-to-back:before {
content: "\e62e"; } 2694 2694 content: "\e62e"; }
2695 2695
.mdi-action-flip-to-front:before { 2696 2696 .mdi-action-flip-to-front:before {
content: "\e62f"; } 2697 2697 content: "\e62f"; }
2698 2698
.mdi-action-get-app:before { 2699 2699 .mdi-action-get-app:before {
content: "\e630"; } 2700 2700 content: "\e630"; }
2701 2701
.mdi-action-grade:before { 2702 2702 .mdi-action-grade:before {
content: "\e631"; } 2703 2703 content: "\e631"; }
2704 2704
.mdi-action-group-work:before { 2705 2705 .mdi-action-group-work:before {
content: "\e632"; } 2706 2706 content: "\e632"; }
2707 2707
.mdi-action-help:before { 2708 2708 .mdi-action-help:before {
content: "\e633"; } 2709 2709 content: "\e633"; }
2710 2710
.mdi-action-highlight-remove:before { 2711 2711 .mdi-action-highlight-remove:before {
content: "\e634"; } 2712 2712 content: "\e634"; }
2713 2713
.mdi-action-history:before { 2714 2714 .mdi-action-history:before {
content: "\e635"; } 2715 2715 content: "\e635"; }
2716 2716
.mdi-action-home:before { 2717 2717 .mdi-action-home:before {
content: "\e636"; } 2718 2718 content: "\e636"; }
2719 2719
.mdi-action-https:before { 2720 2720 .mdi-action-https:before {
content: "\e637"; } 2721 2721 content: "\e637"; }
2722 2722
.mdi-action-info:before { 2723 2723 .mdi-action-info:before {
content: "\e638"; } 2724 2724 content: "\e638"; }
2725 2725
.mdi-action-info-outline:before { 2726 2726 .mdi-action-info-outline:before {
content: "\e639"; } 2727 2727 content: "\e639"; }
2728 2728
.mdi-action-input:before { 2729 2729 .mdi-action-input:before {
content: "\e63a"; } 2730 2730 content: "\e63a"; }
2731 2731
.mdi-action-invert-colors:before { 2732 2732 .mdi-action-invert-colors:before {
content: "\e63b"; } 2733 2733 content: "\e63b"; }
2734 2734
.mdi-action-label:before { 2735 2735 .mdi-action-label:before {
content: "\e63c"; } 2736 2736 content: "\e63c"; }
2737 2737
.mdi-action-label-outline:before { 2738 2738 .mdi-action-label-outline:before {
content: "\e63d"; } 2739 2739 content: "\e63d"; }
2740 2740
.mdi-action-language:before { 2741 2741 .mdi-action-language:before {
content: "\e63e"; } 2742 2742 content: "\e63e"; }
2743 2743
.mdi-action-launch:before { 2744 2744 .mdi-action-launch:before {
content: "\e63f"; } 2745 2745 content: "\e63f"; }
2746 2746
.mdi-action-list:before { 2747 2747 .mdi-action-list:before {
content: "\e640"; } 2748 2748 content: "\e640"; }
2749 2749
.mdi-action-lock:before { 2750 2750 .mdi-action-lock:before {
content: "\e641"; } 2751 2751 content: "\e641"; }
2752 2752
.mdi-action-lock-open:before { 2753 2753 .mdi-action-lock-open:before {
content: "\e642"; } 2754 2754 content: "\e642"; }
2755 2755
.mdi-action-lock-outline:before { 2756 2756 .mdi-action-lock-outline:before {
content: "\e643"; } 2757 2757 content: "\e643"; }
2758 2758
.mdi-action-loyalty:before { 2759 2759 .mdi-action-loyalty:before {
content: "\e644"; } 2760 2760 content: "\e644"; }
2761 2761
.mdi-action-markunread-mailbox:before { 2762 2762 .mdi-action-markunread-mailbox:before {
content: "\e645"; } 2763 2763 content: "\e645"; }
2764 2764
.mdi-action-note-add:before { 2765 2765 .mdi-action-note-add:before {
content: "\e646"; } 2766 2766 content: "\e646"; }
2767 2767
.mdi-action-open-in-browser:before { 2768 2768 .mdi-action-open-in-browser:before {
content: "\e647"; } 2769 2769 content: "\e647"; }
2770 2770
.mdi-action-open-in-new:before { 2771 2771 .mdi-action-open-in-new:before {
content: "\e648"; } 2772 2772 content: "\e648"; }
2773 2773
.mdi-action-open-with:before { 2774 2774 .mdi-action-open-with:before {
content: "\e649"; } 2775 2775 content: "\e649"; }
2776 2776
.mdi-action-pageview:before { 2777 2777 .mdi-action-pageview:before {
content: "\e64a"; } 2778 2778 content: "\e64a"; }
2779 2779
.mdi-action-payment:before { 2780 2780 .mdi-action-payment:before {
content: "\e64b"; } 2781 2781 content: "\e64b"; }
2782 2782
.mdi-action-perm-camera-mic:before { 2783 2783 .mdi-action-perm-camera-mic:before {
content: "\e64c"; } 2784 2784 content: "\e64c"; }
2785 2785
.mdi-action-perm-contact-cal:before { 2786 2786 .mdi-action-perm-contact-cal:before {
content: "\e64d"; } 2787 2787 content: "\e64d"; }
2788 2788
.mdi-action-perm-data-setting:before { 2789 2789 .mdi-action-perm-data-setting:before {
content: "\e64e"; } 2790 2790 content: "\e64e"; }
2791 2791
.mdi-action-perm-device-info:before { 2792 2792 .mdi-action-perm-device-info:before {
content: "\e64f"; } 2793 2793 content: "\e64f"; }
2794 2794
.mdi-action-perm-identity:before { 2795 2795 .mdi-action-perm-identity:before {
content: "\e650"; } 2796 2796 content: "\e650"; }
2797 2797
.mdi-action-perm-media:before { 2798 2798 .mdi-action-perm-media:before {
content: "\e651"; } 2799 2799 content: "\e651"; }
2800 2800
.mdi-action-perm-phone-msg:before { 2801 2801 .mdi-action-perm-phone-msg:before {
content: "\e652"; } 2802 2802 content: "\e652"; }
2803 2803
.mdi-action-perm-scan-wifi:before { 2804 2804 .mdi-action-perm-scan-wifi:before {
content: "\e653"; } 2805 2805 content: "\e653"; }
2806 2806
.mdi-action-picture-in-picture:before { 2807 2807 .mdi-action-picture-in-picture:before {
content: "\e654"; } 2808 2808 content: "\e654"; }
2809 2809
.mdi-action-polymer:before { 2810 2810 .mdi-action-polymer:before {
content: "\e655"; } 2811 2811 content: "\e655"; }
2812 2812
.mdi-action-print:before { 2813 2813 .mdi-action-print:before {
content: "\e656"; } 2814 2814 content: "\e656"; }
2815 2815
.mdi-action-query-builder:before { 2816 2816 .mdi-action-query-builder:before {
content: "\e657"; } 2817 2817 content: "\e657"; }
2818 2818
.mdi-action-question-answer:before { 2819 2819 .mdi-action-question-answer:before {
content: "\e658"; } 2820 2820 content: "\e658"; }
2821 2821
.mdi-action-receipt:before { 2822 2822 .mdi-action-receipt:before {
content: "\e659"; } 2823 2823 content: "\e659"; }
2824 2824
.mdi-action-redeem:before { 2825 2825 .mdi-action-redeem:before {
content: "\e65a"; } 2826 2826 content: "\e65a"; }
2827 2827
.mdi-action-report-problem:before { 2828 2828 .mdi-action-report-problem:before {
content: "\e65b"; } 2829 2829 content: "\e65b"; }
2830 2830
.mdi-action-restore:before { 2831 2831 .mdi-action-restore:before {
content: "\e65c"; } 2832 2832 content: "\e65c"; }
2833 2833
.mdi-action-room:before { 2834 2834 .mdi-action-room:before {
content: "\e65d"; } 2835 2835 content: "\e65d"; }
2836 2836
.mdi-action-schedule:before { 2837 2837 .mdi-action-schedule:before {
content: "\e65e"; } 2838 2838 content: "\e65e"; }
2839 2839
.mdi-action-search:before { 2840 2840 .mdi-action-search:before {
content: "\e65f"; } 2841 2841 content: "\e65f"; }
2842 2842
.mdi-action-settings:before { 2843 2843 .mdi-action-settings:before {
content: "\e660"; } 2844 2844 content: "\e660"; }
2845 2845
.mdi-action-settings-applications:before { 2846 2846 .mdi-action-settings-applications:before {
content: "\e661"; } 2847 2847 content: "\e661"; }
2848 2848
.mdi-action-settings-backup-restore:before { 2849 2849 .mdi-action-settings-backup-restore:before {
content: "\e662"; } 2850 2850 content: "\e662"; }
2851 2851
.mdi-action-settings-bluetooth:before { 2852 2852 .mdi-action-settings-bluetooth:before {
content: "\e663"; } 2853 2853 content: "\e663"; }
2854 2854
.mdi-action-settings-cell:before { 2855 2855 .mdi-action-settings-cell:before {
content: "\e664"; } 2856 2856 content: "\e664"; }
2857 2857
.mdi-action-settings-display:before { 2858 2858 .mdi-action-settings-display:before {
content: "\e665"; } 2859 2859 content: "\e665"; }
2860 2860
.mdi-action-settings-ethernet:before { 2861 2861 .mdi-action-settings-ethernet:before {
content: "\e666"; } 2862 2862 content: "\e666"; }
2863 2863
.mdi-action-settings-input-antenna:before { 2864 2864 .mdi-action-settings-input-antenna:before {
content: "\e667"; } 2865 2865 content: "\e667"; }
2866 2866
.mdi-action-settings-input-component:before { 2867 2867 .mdi-action-settings-input-component:before {
content: "\e668"; } 2868 2868 content: "\e668"; }
2869 2869
.mdi-action-settings-input-composite:before { 2870 2870 .mdi-action-settings-input-composite:before {
content: "\e669"; } 2871 2871 content: "\e669"; }
2872 2872
.mdi-action-settings-input-hdmi:before { 2873 2873 .mdi-action-settings-input-hdmi:before {
content: "\e66a"; } 2874 2874 content: "\e66a"; }
2875 2875
.mdi-action-settings-input-svideo:before { 2876 2876 .mdi-action-settings-input-svideo:before {
content: "\e66b"; } 2877 2877 content: "\e66b"; }
2878 2878
.mdi-action-settings-overscan:before { 2879 2879 .mdi-action-settings-overscan:before {
content: "\e66c"; } 2880 2880 content: "\e66c"; }
2881 2881
.mdi-action-settings-phone:before { 2882 2882 .mdi-action-settings-phone:before {
content: "\e66d"; } 2883 2883 content: "\e66d"; }
2884 2884
.mdi-action-settings-power:before { 2885 2885 .mdi-action-settings-power:before {
content: "\e66e"; } 2886 2886 content: "\e66e"; }
2887 2887
.mdi-action-settings-remote:before { 2888 2888 .mdi-action-settings-remote:before {
content: "\e66f"; } 2889 2889 content: "\e66f"; }
2890 2890
.mdi-action-settings-voice:before { 2891 2891 .mdi-action-settings-voice:before {
content: "\e670"; } 2892 2892 content: "\e670"; }
2893 2893
.mdi-action-shop:before { 2894 2894 .mdi-action-shop:before {
content: "\e671"; } 2895 2895 content: "\e671"; }
2896 2896
.mdi-action-shopping-basket:before { 2897 2897 .mdi-action-shopping-basket:before {
content: "\e672"; } 2898 2898 content: "\e672"; }
2899 2899
.mdi-action-shopping-cart:before { 2900 2900 .mdi-action-shopping-cart:before {
content: "\e673"; } 2901 2901 content: "\e673"; }
2902 2902
.mdi-action-shop-two:before { 2903 2903 .mdi-action-shop-two:before {
content: "\e674"; } 2904 2904 content: "\e674"; }
2905 2905
.mdi-action-speaker-notes:before { 2906 2906 .mdi-action-speaker-notes:before {
content: "\e675"; } 2907 2907 content: "\e675"; }
2908 2908
.mdi-action-spellcheck:before { 2909 2909 .mdi-action-spellcheck:before {
content: "\e676"; } 2910 2910 content: "\e676"; }
2911 2911
.mdi-action-star-rate:before { 2912 2912 .mdi-action-star-rate:before {
content: "\e677"; } 2913 2913 content: "\e677"; }
2914 2914
.mdi-action-stars:before { 2915 2915 .mdi-action-stars:before {
content: "\e678"; } 2916 2916 content: "\e678"; }
2917 2917
.mdi-action-store:before { 2918 2918 .mdi-action-store:before {
content: "\e679"; } 2919 2919 content: "\e679"; }
2920 2920
.mdi-action-subject:before { 2921 2921 .mdi-action-subject:before {
content: "\e67a"; } 2922 2922 content: "\e67a"; }
2923 2923
.mdi-action-swap-horiz:before { 2924 2924 .mdi-action-swap-horiz:before {
content: "\e67b"; } 2925 2925 content: "\e67b"; }
2926 2926
.mdi-action-swap-vert:before { 2927 2927 .mdi-action-swap-vert:before {
content: "\e67c"; } 2928 2928 content: "\e67c"; }
2929 2929
.mdi-action-swap-vert-circle:before { 2930 2930 .mdi-action-swap-vert-circle:before {
content: "\e67d"; } 2931 2931 content: "\e67d"; }
2932 2932
.mdi-action-system-update-tv:before { 2933 2933 .mdi-action-system-update-tv:before {
content: "\e67e"; } 2934 2934 content: "\e67e"; }
2935 2935
.mdi-action-tab:before { 2936 2936 .mdi-action-tab:before {
content: "\e67f"; } 2937 2937 content: "\e67f"; }
2938 2938
.mdi-action-tab-unselected:before { 2939 2939 .mdi-action-tab-unselected:before {
content: "\e680"; } 2940 2940 content: "\e680"; }
2941 2941
.mdi-action-theaters:before { 2942 2942 .mdi-action-theaters:before {
content: "\e681"; } 2943 2943 content: "\e681"; }
2944 2944
.mdi-action-thumb-down:before { 2945 2945 .mdi-action-thumb-down:before {
content: "\e682"; } 2946 2946 content: "\e682"; }
2947 2947
.mdi-action-thumbs-up-down:before { 2948 2948 .mdi-action-thumbs-up-down:before {
content: "\e683"; } 2949 2949 content: "\e683"; }
2950 2950
.mdi-action-thumb-up:before { 2951 2951 .mdi-action-thumb-up:before {
content: "\e684"; } 2952 2952 content: "\e684"; }
2953 2953
.mdi-action-toc:before { 2954 2954 .mdi-action-toc:before {
content: "\e685"; } 2955 2955 content: "\e685"; }
2956 2956
.mdi-action-today:before { 2957 2957 .mdi-action-today:before {
content: "\e686"; } 2958 2958 content: "\e686"; }
2959 2959
.mdi-action-track-changes:before { 2960 2960 .mdi-action-track-changes:before {
content: "\e687"; } 2961 2961 content: "\e687"; }
2962 2962
.mdi-action-translate:before { 2963 2963 .mdi-action-translate:before {
content: "\e688"; } 2964 2964 content: "\e688"; }
2965 2965
.mdi-action-trending-down:before { 2966 2966 .mdi-action-trending-down:before {
content: "\e689"; } 2967 2967 content: "\e689"; }
2968 2968
.mdi-action-trending-neutral:before { 2969 2969 .mdi-action-trending-neutral:before {
content: "\e68a"; } 2970 2970 content: "\e68a"; }
2971 2971
.mdi-action-trending-up:before { 2972 2972 .mdi-action-trending-up:before {
content: "\e68b"; } 2973 2973 content: "\e68b"; }
2974 2974
.mdi-action-turned-in:before { 2975 2975 .mdi-action-turned-in:before {
content: "\e68c"; } 2976 2976 content: "\e68c"; }
2977 2977
.mdi-action-turned-in-not:before { 2978 2978 .mdi-action-turned-in-not:before {
content: "\e68d"; } 2979 2979 content: "\e68d"; }
2980 2980
.mdi-action-verified-user:before { 2981 2981 .mdi-action-verified-user:before {
content: "\e68e"; } 2982 2982 content: "\e68e"; }
2983 2983
.mdi-action-view-agenda:before { 2984 2984 .mdi-action-view-agenda:before {
content: "\e68f"; } 2985 2985 content: "\e68f"; }
2986 2986
.mdi-action-view-array:before { 2987 2987 .mdi-action-view-array:before {
content: "\e690"; } 2988 2988 content: "\e690"; }
2989 2989
.mdi-action-view-carousel:before { 2990 2990 .mdi-action-view-carousel:before {
content: "\e691"; } 2991 2991 content: "\e691"; }
2992 2992
.mdi-action-view-column:before { 2993 2993 .mdi-action-view-column:before {
content: "\e692"; } 2994 2994 content: "\e692"; }
2995 2995
.mdi-action-view-day:before { 2996 2996 .mdi-action-view-day:before {
content: "\e693"; } 2997 2997 content: "\e693"; }
2998 2998
.mdi-action-view-headline:before { 2999 2999 .mdi-action-view-headline:before {
content: "\e694"; } 3000 3000 content: "\e694"; }
3001 3001
.mdi-action-view-list:before { 3002 3002 .mdi-action-view-list:before {
content: "\e695"; } 3003 3003 content: "\e695"; }
3004 3004
.mdi-action-view-module:before { 3005 3005 .mdi-action-view-module:before {
content: "\e696"; } 3006 3006 content: "\e696"; }
3007 3007
.mdi-action-view-quilt:before { 3008 3008 .mdi-action-view-quilt:before {
content: "\e697"; } 3009 3009 content: "\e697"; }
3010 3010
.mdi-action-view-stream:before { 3011 3011 .mdi-action-view-stream:before {
content: "\e698"; } 3012 3012 content: "\e698"; }
3013 3013
.mdi-action-view-week:before { 3014 3014 .mdi-action-view-week:before {
content: "\e699"; } 3015 3015 content: "\e699"; }
3016 3016
.mdi-action-visibility:before { 3017 3017 .mdi-action-visibility:before {
content: "\e69a"; } 3018 3018 content: "\e69a"; }
3019 3019
.mdi-action-visibility-off:before { 3020 3020 .mdi-action-visibility-off:before {
content: "\e69b"; } 3021 3021 content: "\e69b"; }
3022 3022
.mdi-action-wallet-giftcard:before { 3023 3023 .mdi-action-wallet-giftcard:before {
content: "\e69c"; } 3024 3024 content: "\e69c"; }
3025 3025
.mdi-action-wallet-membership:before { 3026 3026 .mdi-action-wallet-membership:before {
content: "\e69d"; } 3027 3027 content: "\e69d"; }
3028 3028
.mdi-action-wallet-travel:before { 3029 3029 .mdi-action-wallet-travel:before {
content: "\e69e"; } 3030 3030 content: "\e69e"; }
3031 3031
.mdi-action-work:before { 3032 3032 .mdi-action-work:before {
content: "\e69f"; } 3033 3033 content: "\e69f"; }
3034 3034
.mdi-alert-error:before { 3035 3035 .mdi-alert-error:before {
content: "\e6a0"; } 3036 3036 content: "\e6a0"; }
3037 3037
.mdi-alert-warning:before { 3038 3038 .mdi-alert-warning:before {
content: "\e6a1"; } 3039 3039 content: "\e6a1"; }
3040 3040
.mdi-av-album:before { 3041 3041 .mdi-av-album:before {
content: "\e6a2"; } 3042 3042 content: "\e6a2"; }
3043 3043
.mdi-av-timer:before { 3044 3044 .mdi-av-timer:before {
content: "\e6a3"; } 3045 3045 content: "\e6a3"; }
3046 3046
.mdi-av-closed-caption:before { 3047 3047 .mdi-av-closed-caption:before {
content: "\e6a4"; } 3048 3048 content: "\e6a4"; }
3049 3049
.mdi-av-equalizer:before { 3050 3050 .mdi-av-equalizer:before {
content: "\e6a5"; } 3051 3051 content: "\e6a5"; }
3052 3052
.mdi-av-explicit:before { 3053 3053 .mdi-av-explicit:before {
content: "\e6a6"; } 3054 3054 content: "\e6a6"; }
3055 3055
.mdi-av-fast-forward:before { 3056 3056 .mdi-av-fast-forward:before {
content: "\e6a7"; } 3057 3057 content: "\e6a7"; }
3058 3058
.mdi-av-fast-rewind:before { 3059 3059 .mdi-av-fast-rewind:before {
content: "\e6a8"; } 3060 3060 content: "\e6a8"; }
3061 3061
.mdi-av-games:before { 3062 3062 .mdi-av-games:before {
content: "\e6a9"; } 3063 3063 content: "\e6a9"; }
3064 3064
.mdi-av-hearing:before { 3065 3065 .mdi-av-hearing:before {
content: "\e6aa"; } 3066 3066 content: "\e6aa"; }
3067 3067
.mdi-av-high-quality:before { 3068 3068 .mdi-av-high-quality:before {
content: "\e6ab"; } 3069 3069 content: "\e6ab"; }
3070 3070
.mdi-av-loop:before { 3071 3071 .mdi-av-loop:before {
content: "\e6ac"; } 3072 3072 content: "\e6ac"; }
3073 3073
.mdi-av-mic:before { 3074 3074 .mdi-av-mic:before {
content: "\e6ad"; } 3075 3075 content: "\e6ad"; }
3076 3076
.mdi-av-mic-none:before { 3077 3077 .mdi-av-mic-none:before {
content: "\e6ae"; } 3078 3078 content: "\e6ae"; }
3079 3079
.mdi-av-mic-off:before { 3080 3080 .mdi-av-mic-off:before {
content: "\e6af"; } 3081 3081 content: "\e6af"; }
3082 3082
.mdi-av-movie:before { 3083 3083 .mdi-av-movie:before {
content: "\e6b0"; } 3084 3084 content: "\e6b0"; }
3085 3085
.mdi-av-my-library-add:before { 3086 3086 .mdi-av-my-library-add:before {
content: "\e6b1"; } 3087 3087 content: "\e6b1"; }
3088 3088
.mdi-av-my-library-books:before { 3089 3089 .mdi-av-my-library-books:before {
content: "\e6b2"; } 3090 3090 content: "\e6b2"; }
3091 3091
.mdi-av-my-library-music:before { 3092 3092 .mdi-av-my-library-music:before {
content: "\e6b3"; } 3093 3093 content: "\e6b3"; }
3094 3094
.mdi-av-new-releases:before { 3095 3095 .mdi-av-new-releases:before {
content: "\e6b4"; } 3096 3096 content: "\e6b4"; }
3097 3097
.mdi-av-not-interested:before { 3098 3098 .mdi-av-not-interested:before {
content: "\e6b5"; } 3099 3099 content: "\e6b5"; }
3100 3100
.mdi-av-pause:before { 3101 3101 .mdi-av-pause:before {
content: "\e6b6"; } 3102 3102 content: "\e6b6"; }
3103 3103
.mdi-av-pause-circle-fill:before { 3104 3104 .mdi-av-pause-circle-fill:before {
content: "\e6b7"; } 3105 3105 content: "\e6b7"; }
3106 3106
.mdi-av-pause-circle-outline:before { 3107 3107 .mdi-av-pause-circle-outline:before {
content: "\e6b8"; } 3108 3108 content: "\e6b8"; }
3109 3109
.mdi-av-play-arrow:before { 3110 3110 .mdi-av-play-arrow:before {
content: "\e6b9"; } 3111 3111 content: "\e6b9"; }
3112 3112
.mdi-av-play-circle-fill:before { 3113 3113 .mdi-av-play-circle-fill:before {
content: "\e6ba"; } 3114 3114 content: "\e6ba"; }
3115 3115
.mdi-av-play-circle-outline:before { 3116 3116 .mdi-av-play-circle-outline:before {
content: "\e6bb"; } 3117 3117 content: "\e6bb"; }
3118 3118
.mdi-av-playlist-add:before { 3119 3119 .mdi-av-playlist-add:before {
content: "\e6bc"; } 3120 3120 content: "\e6bc"; }
3121 3121
.mdi-av-play-shopping-bag:before { 3122 3122 .mdi-av-play-shopping-bag:before {
content: "\e6bd"; } 3123 3123 content: "\e6bd"; }
3124 3124
.mdi-av-queue:before { 3125 3125 .mdi-av-queue:before {
content: "\e6be"; } 3126 3126 content: "\e6be"; }
3127 3127
.mdi-av-queue-music:before { 3128 3128 .mdi-av-queue-music:before {
content: "\e6bf"; } 3129 3129 content: "\e6bf"; }
3130 3130
.mdi-av-radio:before { 3131 3131 .mdi-av-radio:before {
content: "\e6c0"; } 3132 3132 content: "\e6c0"; }
3133 3133
.mdi-av-recent-actors:before { 3134 3134 .mdi-av-recent-actors:before {
content: "\e6c1"; } 3135 3135 content: "\e6c1"; }
3136 3136
.mdi-av-repeat:before { 3137 3137 .mdi-av-repeat:before {
content: "\e6c2"; } 3138 3138 content: "\e6c2"; }
3139 3139
.mdi-av-repeat-one:before { 3140 3140 .mdi-av-repeat-one:before {
content: "\e6c3"; } 3141 3141 content: "\e6c3"; }
3142 3142
.mdi-av-replay:before { 3143 3143 .mdi-av-replay:before {
content: "\e6c4"; } 3144 3144 content: "\e6c4"; }
3145 3145
.mdi-av-shuffle:before { 3146 3146 .mdi-av-shuffle:before {
content: "\e6c5"; } 3147 3147 content: "\e6c5"; }
3148 3148
.mdi-av-skip-next:before { 3149 3149 .mdi-av-skip-next:before {
content: "\e6c6"; } 3150 3150 content: "\e6c6"; }
3151 3151
.mdi-av-skip-previous:before { 3152 3152 .mdi-av-skip-previous:before {
content: "\e6c7"; } 3153 3153 content: "\e6c7"; }
3154 3154
.mdi-av-snooze:before { 3155 3155 .mdi-av-snooze:before {
content: "\e6c8"; } 3156 3156 content: "\e6c8"; }
3157 3157
.mdi-av-stop:before { 3158 3158 .mdi-av-stop:before {
content: "\e6c9"; } 3159 3159 content: "\e6c9"; }
3160 3160
.mdi-av-subtitles:before { 3161 3161 .mdi-av-subtitles:before {
content: "\e6ca"; } 3162 3162 content: "\e6ca"; }
3163 3163
.mdi-av-surround-sound:before { 3164 3164 .mdi-av-surround-sound:before {
content: "\e6cb"; } 3165 3165 content: "\e6cb"; }
3166 3166
.mdi-av-videocam:before { 3167 3167 .mdi-av-videocam:before {
content: "\e6cc"; } 3168 3168 content: "\e6cc"; }
3169 3169
.mdi-av-videocam-off:before { 3170 3170 .mdi-av-videocam-off:before {
content: "\e6cd"; } 3171 3171 content: "\e6cd"; }
3172 3172
.mdi-av-video-collection:before { 3173 3173 .mdi-av-video-collection:before {
content: "\e6ce"; } 3174 3174 content: "\e6ce"; }
3175 3175
.mdi-av-volume-down:before { 3176 3176 .mdi-av-volume-down:before {
content: "\e6cf"; } 3177 3177 content: "\e6cf"; }
3178 3178
.mdi-av-volume-mute:before { 3179 3179 .mdi-av-volume-mute:before {
content: "\e6d0"; } 3180 3180 content: "\e6d0"; }
3181 3181
.mdi-av-volume-off:before { 3182 3182 .mdi-av-volume-off:before {
content: "\e6d1"; } 3183 3183 content: "\e6d1"; }
3184 3184
.mdi-av-volume-up:before { 3185 3185 .mdi-av-volume-up:before {
content: "\e6d2"; } 3186 3186 content: "\e6d2"; }
3187 3187
.mdi-av-web:before { 3188 3188 .mdi-av-web:before {
content: "\e6d3"; } 3189 3189 content: "\e6d3"; }
3190 3190
.mdi-communication-business:before { 3191 3191 .mdi-communication-business:before {
content: "\e6d4"; } 3192 3192 content: "\e6d4"; }
3193 3193
.mdi-communication-call:before { 3194 3194 .mdi-communication-call:before {
content: "\e6d5"; } 3195 3195 content: "\e6d5"; }
3196 3196
.mdi-communication-call-end:before { 3197 3197 .mdi-communication-call-end:before {
content: "\e6d6"; } 3198 3198 content: "\e6d6"; }
3199 3199
.mdi-communication-call-made:before { 3200 3200 .mdi-communication-call-made:before {
content: "\e6d7"; } 3201 3201 content: "\e6d7"; }
3202 3202
.mdi-communication-call-merge:before { 3203 3203 .mdi-communication-call-merge:before {
content: "\e6d8"; } 3204 3204 content: "\e6d8"; }
3205 3205
.mdi-communication-call-missed:before { 3206 3206 .mdi-communication-call-missed:before {
content: "\e6d9"; } 3207 3207 content: "\e6d9"; }
3208 3208
.mdi-communication-call-received:before { 3209 3209 .mdi-communication-call-received:before {
content: "\e6da"; } 3210 3210 content: "\e6da"; }
3211 3211
.mdi-communication-call-split:before { 3212 3212 .mdi-communication-call-split:before {
content: "\e6db"; } 3213 3213 content: "\e6db"; }
3214 3214
.mdi-communication-chat:before { 3215 3215 .mdi-communication-chat:before {
content: "\e6dc"; } 3216 3216 content: "\e6dc"; }
3217 3217
.mdi-communication-clear-all:before { 3218 3218 .mdi-communication-clear-all:before {
content: "\e6dd"; } 3219 3219 content: "\e6dd"; }
3220 3220
.mdi-communication-comment:before { 3221 3221 .mdi-communication-comment:before {
content: "\e6de"; } 3222 3222 content: "\e6de"; }
3223 3223
.mdi-communication-contacts:before { 3224 3224 .mdi-communication-contacts:before {
content: "\e6df"; } 3225 3225 content: "\e6df"; }
3226 3226
.mdi-communication-dialer-sip:before { 3227 3227 .mdi-communication-dialer-sip:before {
content: "\e6e0"; } 3228 3228 content: "\e6e0"; }
3229 3229
.mdi-communication-dialpad:before { 3230 3230 .mdi-communication-dialpad:before {
content: "\e6e1"; } 3231 3231 content: "\e6e1"; }
3232 3232
.mdi-communication-dnd-on:before { 3233 3233 .mdi-communication-dnd-on:before {
content: "\e6e2"; } 3234 3234 content: "\e6e2"; }
3235 3235
.mdi-communication-email:before { 3236 3236 .mdi-communication-email:before {
content: "\e6e3"; } 3237 3237 content: "\e6e3"; }
3238 3238
.mdi-communication-forum:before { 3239 3239 .mdi-communication-forum:before {
content: "\e6e4"; } 3240 3240 content: "\e6e4"; }
3241 3241
.mdi-communication-import-export:before { 3242 3242 .mdi-communication-import-export:before {
content: "\e6e5"; } 3243 3243 content: "\e6e5"; }
3244 3244
.mdi-communication-invert-colors-off:before { 3245 3245 .mdi-communication-invert-colors-off:before {
content: "\e6e6"; } 3246 3246 content: "\e6e6"; }
3247 3247
.mdi-communication-invert-colors-on:before { 3248 3248 .mdi-communication-invert-colors-on:before {
content: "\e6e7"; } 3249 3249 content: "\e6e7"; }
3250 3250
.mdi-communication-live-help:before { 3251 3251 .mdi-communication-live-help:before {
content: "\e6e8"; } 3252 3252 content: "\e6e8"; }
3253 3253
.mdi-communication-location-off:before { 3254 3254 .mdi-communication-location-off:before {
content: "\e6e9"; } 3255 3255 content: "\e6e9"; }
3256 3256
.mdi-communication-location-on:before { 3257 3257 .mdi-communication-location-on:before {
content: "\e6ea"; } 3258 3258 content: "\e6ea"; }
3259 3259
.mdi-communication-message:before { 3260 3260 .mdi-communication-message:before {
content: "\e6eb"; } 3261 3261 content: "\e6eb"; }
3262 3262
.mdi-communication-messenger:before { 3263 3263 .mdi-communication-messenger:before {
content: "\e6ec"; } 3264 3264 content: "\e6ec"; }
3265 3265
.mdi-communication-no-sim:before { 3266 3266 .mdi-communication-no-sim:before {
content: "\e6ed"; } 3267 3267 content: "\e6ed"; }
3268 3268
.mdi-communication-phone:before { 3269 3269 .mdi-communication-phone:before {
content: "\e6ee"; } 3270 3270 content: "\e6ee"; }
3271 3271
.mdi-communication-portable-wifi-off:before { 3272 3272 .mdi-communication-portable-wifi-off:before {
content: "\e6ef"; } 3273 3273 content: "\e6ef"; }
3274 3274
.mdi-communication-quick-contacts-dialer:before { 3275 3275 .mdi-communication-quick-contacts-dialer:before {
content: "\e6f0"; } 3276 3276 content: "\e6f0"; }
3277 3277
.mdi-communication-quick-contacts-mail:before { 3278 3278 .mdi-communication-quick-contacts-mail:before {
content: "\e6f1"; } 3279 3279 content: "\e6f1"; }
3280 3280
.mdi-communication-ring-volume:before { 3281 3281 .mdi-communication-ring-volume:before {
content: "\e6f2"; } 3282 3282 content: "\e6f2"; }
3283 3283
.mdi-communication-stay-current-landscape:before { 3284 3284 .mdi-communication-stay-current-landscape:before {
content: "\e6f3"; } 3285 3285 content: "\e6f3"; }
3286 3286
.mdi-communication-stay-current-portrait:before { 3287 3287 .mdi-communication-stay-current-portrait:before {
content: "\e6f4"; } 3288 3288 content: "\e6f4"; }
3289 3289
.mdi-communication-stay-primary-landscape:before { 3290 3290 .mdi-communication-stay-primary-landscape:before {
content: "\e6f5"; } 3291 3291 content: "\e6f5"; }
3292 3292
.mdi-communication-stay-primary-portrait:before { 3293 3293 .mdi-communication-stay-primary-portrait:before {
content: "\e6f6"; } 3294 3294 content: "\e6f6"; }
3295 3295
.mdi-communication-swap-calls:before { 3296 3296 .mdi-communication-swap-calls:before {
content: "\e6f7"; } 3297 3297 content: "\e6f7"; }
3298 3298
.mdi-communication-textsms:before { 3299 3299 .mdi-communication-textsms:before {
content: "\e6f8"; } 3300 3300 content: "\e6f8"; }
3301 3301
.mdi-communication-voicemail:before { 3302 3302 .mdi-communication-voicemail:before {
content: "\e6f9"; } 3303 3303 content: "\e6f9"; }
3304 3304
.mdi-communication-vpn-key:before { 3305 3305 .mdi-communication-vpn-key:before {
content: "\e6fa"; } 3306 3306 content: "\e6fa"; }
3307 3307
.mdi-content-add:before { 3308 3308 .mdi-content-add:before {
content: "\e6fb"; } 3309 3309 content: "\e6fb"; }
3310 3310
.mdi-content-add-box:before { 3311 3311 .mdi-content-add-box:before {
content: "\e6fc"; } 3312 3312 content: "\e6fc"; }
3313 3313
.mdi-content-add-circle:before { 3314 3314 .mdi-content-add-circle:before {
content: "\e6fd"; } 3315 3315 content: "\e6fd"; }
3316 3316
.mdi-content-add-circle-outline:before { 3317 3317 .mdi-content-add-circle-outline:before {
content: "\e6fe"; } 3318 3318 content: "\e6fe"; }
3319 3319
.mdi-content-archive:before { 3320 3320 .mdi-content-archive:before {
content: "\e6ff"; } 3321 3321 content: "\e6ff"; }
3322 3322
.mdi-content-backspace:before { 3323 3323 .mdi-content-backspace:before {
content: "\e700"; } 3324 3324 content: "\e700"; }
3325 3325
.mdi-content-block:before { 3326 3326 .mdi-content-block:before {
content: "\e701"; } 3327 3327 content: "\e701"; }
3328 3328
.mdi-content-clear:before { 3329 3329 .mdi-content-clear:before {
content: "\e702"; } 3330 3330 content: "\e702"; }
3331 3331
.mdi-content-content-copy:before { 3332 3332 .mdi-content-content-copy:before {
content: "\e703"; } 3333 3333 content: "\e703"; }
3334 3334
.mdi-content-content-cut:before { 3335 3335 .mdi-content-content-cut:before {
content: "\e704"; } 3336 3336 content: "\e704"; }
3337 3337
.mdi-content-content-paste:before { 3338 3338 .mdi-content-content-paste:before {
content: "\e705"; } 3339 3339 content: "\e705"; }
3340 3340
.mdi-content-create:before { 3341 3341 .mdi-content-create:before {
content: "\e706"; } 3342 3342 content: "\e706"; }
3343 3343
.mdi-content-drafts:before { 3344 3344 .mdi-content-drafts:before {
content: "\e707"; } 3345 3345 content: "\e707"; }
3346 3346
.mdi-content-filter-list:before { 3347 3347 .mdi-content-filter-list:before {
content: "\e708"; } 3348 3348 content: "\e708"; }
3349 3349
.mdi-content-flag:before { 3350 3350 .mdi-content-flag:before {
content: "\e709"; } 3351 3351 content: "\e709"; }
3352 3352
.mdi-content-forward:before { 3353 3353 .mdi-content-forward:before {
content: "\e70a"; } 3354 3354 content: "\e70a"; }
3355 3355
.mdi-content-gesture:before { 3356 3356 .mdi-content-gesture:before {
content: "\e70b"; } 3357 3357 content: "\e70b"; }
3358 3358
.mdi-content-inbox:before { 3359 3359 .mdi-content-inbox:before {
content: "\e70c"; } 3360 3360 content: "\e70c"; }
3361 3361
.mdi-content-link:before { 3362 3362 .mdi-content-link:before {
content: "\e70d"; } 3363 3363 content: "\e70d"; }
3364 3364
.mdi-content-mail:before { 3365 3365 .mdi-content-mail:before {
content: "\e70e"; } 3366 3366 content: "\e70e"; }
3367 3367
.mdi-content-markunread:before { 3368 3368 .mdi-content-markunread:before {
content: "\e70f"; } 3369 3369 content: "\e70f"; }
3370 3370
.mdi-content-redo:before { 3371 3371 .mdi-content-redo:before {
content: "\e710"; } 3372 3372 content: "\e710"; }
3373 3373
.mdi-content-remove:before { 3374 3374 .mdi-content-remove:before {
content: "\e711"; } 3375 3375 content: "\e711"; }
3376 3376
.mdi-content-remove-circle:before { 3377 3377 .mdi-content-remove-circle:before {
content: "\e712"; } 3378 3378 content: "\e712"; }
3379 3379
.mdi-content-remove-circle-outline:before { 3380 3380 .mdi-content-remove-circle-outline:before {
content: "\e713"; } 3381 3381 content: "\e713"; }
3382 3382
.mdi-content-reply:before { 3383 3383 .mdi-content-reply:before {
content: "\e714"; } 3384 3384 content: "\e714"; }
3385 3385
.mdi-content-reply-all:before { 3386 3386 .mdi-content-reply-all:before {
content: "\e715"; } 3387 3387 content: "\e715"; }
3388 3388
.mdi-content-report:before { 3389 3389 .mdi-content-report:before {
content: "\e716"; } 3390 3390 content: "\e716"; }
3391 3391
.mdi-content-save:before { 3392 3392 .mdi-content-save:before {
content: "\e717"; } 3393 3393 content: "\e717"; }
3394 3394
.mdi-content-select-all:before { 3395 3395 .mdi-content-select-all:before {
content: "\e718"; } 3396 3396 content: "\e718"; }
3397 3397
.mdi-content-send:before { 3398 3398 .mdi-content-send:before {
content: "\e719"; } 3399 3399 content: "\e719"; }
3400 3400
.mdi-content-sort:before { 3401 3401 .mdi-content-sort:before {
content: "\e71a"; } 3402 3402 content: "\e71a"; }
3403 3403
.mdi-content-text-format:before { 3404 3404 .mdi-content-text-format:before {
content: "\e71b"; } 3405 3405 content: "\e71b"; }
3406 3406
.mdi-content-undo:before { 3407 3407 .mdi-content-undo:before {
content: "\e71c"; } 3408 3408 content: "\e71c"; }
3409 3409
.mdi-device-access-alarm:before { 3410 3410 .mdi-device-access-alarm:before {
content: "\e71d"; } 3411 3411 content: "\e71d"; }
3412 3412
.mdi-device-access-alarms:before { 3413 3413 .mdi-device-access-alarms:before {
content: "\e71e"; } 3414 3414 content: "\e71e"; }
3415 3415
.mdi-device-access-time:before { 3416 3416 .mdi-device-access-time:before {
content: "\e71f"; } 3417 3417 content: "\e71f"; }
3418 3418
.mdi-device-add-alarm:before { 3419 3419 .mdi-device-add-alarm:before {
content: "\e720"; } 3420 3420 content: "\e720"; }
3421 3421
.mdi-device-airplanemode-off:before { 3422 3422 .mdi-device-airplanemode-off:before {
content: "\e721"; } 3423 3423 content: "\e721"; }
3424 3424
.mdi-device-airplanemode-on:before { 3425 3425 .mdi-device-airplanemode-on:before {
content: "\e722"; } 3426 3426 content: "\e722"; }
3427 3427
.mdi-device-battery-20:before { 3428 3428 .mdi-device-battery-20:before {
content: "\e723"; } 3429 3429 content: "\e723"; }
3430 3430
.mdi-device-battery-30:before { 3431 3431 .mdi-device-battery-30:before {
content: "\e724"; } 3432 3432 content: "\e724"; }
3433 3433
.mdi-device-battery-50:before { 3434 3434 .mdi-device-battery-50:before {
content: "\e725"; } 3435 3435 content: "\e725"; }
3436 3436
.mdi-device-battery-60:before { 3437 3437 .mdi-device-battery-60:before {
content: "\e726"; } 3438 3438 content: "\e726"; }
3439 3439
.mdi-device-battery-80:before { 3440 3440 .mdi-device-battery-80:before {
content: "\e727"; } 3441 3441 content: "\e727"; }
3442 3442
.mdi-device-battery-90:before { 3443 3443 .mdi-device-battery-90:before {
content: "\e728"; } 3444 3444 content: "\e728"; }
3445 3445
.mdi-device-battery-alert:before { 3446 3446 .mdi-device-battery-alert:before {
content: "\e729"; } 3447 3447 content: "\e729"; }
3448 3448
.mdi-device-battery-charging-20:before { 3449 3449 .mdi-device-battery-charging-20:before {
content: "\e72a"; } 3450 3450 content: "\e72a"; }
3451 3451
.mdi-device-battery-charging-30:before { 3452 3452 .mdi-device-battery-charging-30:before {
content: "\e72b"; } 3453 3453 content: "\e72b"; }
3454 3454
.mdi-device-battery-charging-50:before { 3455 3455 .mdi-device-battery-charging-50:before {
content: "\e72c"; } 3456 3456 content: "\e72c"; }
3457 3457
.mdi-device-battery-charging-60:before { 3458 3458 .mdi-device-battery-charging-60:before {
content: "\e72d"; } 3459 3459 content: "\e72d"; }
3460 3460
.mdi-device-battery-charging-80:before { 3461 3461 .mdi-device-battery-charging-80:before {
content: "\e72e"; } 3462 3462 content: "\e72e"; }
3463 3463
.mdi-device-battery-charging-90:before { 3464 3464 .mdi-device-battery-charging-90:before {
content: "\e72f"; } 3465 3465 content: "\e72f"; }
3466 3466
.mdi-device-battery-charging-full:before { 3467 3467 .mdi-device-battery-charging-full:before {
content: "\e730"; } 3468 3468 content: "\e730"; }
3469 3469
.mdi-device-battery-full:before { 3470 3470 .mdi-device-battery-full:before {
content: "\e731"; } 3471 3471 content: "\e731"; }
3472 3472
.mdi-device-battery-std:before { 3473 3473 .mdi-device-battery-std:before {
content: "\e732"; } 3474 3474 content: "\e732"; }
3475 3475
.mdi-device-battery-unknown:before { 3476 3476 .mdi-device-battery-unknown:before {
content: "\e733"; } 3477 3477 content: "\e733"; }
3478 3478
.mdi-device-bluetooth:before { 3479 3479 .mdi-device-bluetooth:before {
content: "\e734"; } 3480 3480 content: "\e734"; }
3481 3481
.mdi-device-bluetooth-connected:before { 3482 3482 .mdi-device-bluetooth-connected:before {
content: "\e735"; } 3483 3483 content: "\e735"; }
3484 3484
.mdi-device-bluetooth-disabled:before { 3485 3485 .mdi-device-bluetooth-disabled:before {
content: "\e736"; } 3486 3486 content: "\e736"; }
3487 3487
.mdi-device-bluetooth-searching:before { 3488 3488 .mdi-device-bluetooth-searching:before {
content: "\e737"; } 3489 3489 content: "\e737"; }
3490 3490
.mdi-device-brightness-auto:before { 3491 3491 .mdi-device-brightness-auto:before {
content: "\e738"; } 3492 3492 content: "\e738"; }
3493 3493
.mdi-device-brightness-high:before { 3494 3494 .mdi-device-brightness-high:before {
content: "\e739"; } 3495 3495 content: "\e739"; }
3496 3496
.mdi-device-brightness-low:before { 3497 3497 .mdi-device-brightness-low:before {
content: "\e73a"; } 3498 3498 content: "\e73a"; }
3499 3499
.mdi-device-brightness-medium:before { 3500 3500 .mdi-device-brightness-medium:before {
content: "\e73b"; } 3501 3501 content: "\e73b"; }
3502 3502
.mdi-device-data-usage:before { 3503 3503 .mdi-device-data-usage:before {
content: "\e73c"; } 3504 3504 content: "\e73c"; }
3505 3505
.mdi-device-developer-mode:before { 3506 3506 .mdi-device-developer-mode:before {
content: "\e73d"; } 3507 3507 content: "\e73d"; }
3508 3508
.mdi-device-devices:before { 3509 3509 .mdi-device-devices:before {
content: "\e73e"; } 3510 3510 content: "\e73e"; }
3511 3511
.mdi-device-dvr:before { 3512 3512 .mdi-device-dvr:before {
content: "\e73f"; } 3513 3513 content: "\e73f"; }
3514 3514
.mdi-device-gps-fixed:before { 3515 3515 .mdi-device-gps-fixed:before {
content: "\e740"; } 3516 3516 content: "\e740"; }
3517 3517
.mdi-device-gps-not-fixed:before { 3518 3518 .mdi-device-gps-not-fixed:before {
content: "\e741"; } 3519 3519 content: "\e741"; }
3520 3520
.mdi-device-gps-off:before { 3521 3521 .mdi-device-gps-off:before {
content: "\e742"; } 3522 3522 content: "\e742"; }
3523 3523
.mdi-device-location-disabled:before { 3524 3524 .mdi-device-location-disabled:before {
content: "\e743"; } 3525 3525 content: "\e743"; }
3526 3526
.mdi-device-location-searching:before { 3527 3527 .mdi-device-location-searching:before {
content: "\e744"; } 3528 3528 content: "\e744"; }
3529 3529
.mdi-device-multitrack-audio:before { 3530 3530 .mdi-device-multitrack-audio:before {
content: "\e745"; } 3531 3531 content: "\e745"; }
3532 3532
.mdi-device-network-cell:before { 3533 3533 .mdi-device-network-cell:before {
content: "\e746"; } 3534 3534 content: "\e746"; }
3535 3535
.mdi-device-network-wifi:before { 3536 3536 .mdi-device-network-wifi:before {
content: "\e747"; } 3537 3537 content: "\e747"; }
3538 3538
.mdi-device-nfc:before { 3539 3539 .mdi-device-nfc:before {
content: "\e748"; } 3540 3540 content: "\e748"; }
3541 3541
.mdi-device-now-wallpaper:before { 3542 3542 .mdi-device-now-wallpaper:before {
content: "\e749"; } 3543 3543 content: "\e749"; }
3544 3544
.mdi-device-now-widgets:before { 3545 3545 .mdi-device-now-widgets:before {
content: "\e74a"; } 3546 3546 content: "\e74a"; }
3547 3547
.mdi-device-screen-lock-landscape:before { 3548 3548 .mdi-device-screen-lock-landscape:before {
content: "\e74b"; } 3549 3549 content: "\e74b"; }
3550 3550
.mdi-device-screen-lock-portrait:before { 3551 3551 .mdi-device-screen-lock-portrait:before {
content: "\e74c"; } 3552 3552 content: "\e74c"; }
3553 3553
.mdi-device-screen-lock-rotation:before { 3554 3554 .mdi-device-screen-lock-rotation:before {
content: "\e74d"; } 3555 3555 content: "\e74d"; }
3556 3556
.mdi-device-screen-rotation:before { 3557 3557 .mdi-device-screen-rotation:before {
content: "\e74e"; } 3558 3558 content: "\e74e"; }
3559 3559
.mdi-device-sd-storage:before { 3560 3560 .mdi-device-sd-storage:before {
content: "\e74f"; } 3561 3561 content: "\e74f"; }
3562 3562
.mdi-device-settings-system-daydream:before { 3563 3563 .mdi-device-settings-system-daydream:before {
content: "\e750"; } 3564 3564 content: "\e750"; }
3565 3565
.mdi-device-signal-cellular-0-bar:before { 3566 3566 .mdi-device-signal-cellular-0-bar:before {
content: "\e751"; } 3567 3567 content: "\e751"; }
3568 3568
.mdi-device-signal-cellular-1-bar:before { 3569 3569 .mdi-device-signal-cellular-1-bar:before {
content: "\e752"; } 3570 3570 content: "\e752"; }
3571 3571
.mdi-device-signal-cellular-2-bar:before { 3572 3572 .mdi-device-signal-cellular-2-bar:before {
content: "\e753"; } 3573 3573 content: "\e753"; }
3574 3574
.mdi-device-signal-cellular-3-bar:before { 3575 3575 .mdi-device-signal-cellular-3-bar:before {
content: "\e754"; } 3576 3576 content: "\e754"; }
3577 3577
.mdi-device-signal-cellular-4-bar:before { 3578 3578 .mdi-device-signal-cellular-4-bar:before {
content: "\e755"; } 3579 3579 content: "\e755"; }
3580 3580
.mdi-device-signal-cellular-connected-no-internet-0-bar:before { 3581 3581 .mdi-device-signal-cellular-connected-no-internet-0-bar:before {
content: "\e756"; } 3582 3582 content: "\e756"; }
3583 3583
.mdi-device-signal-cellular-connected-no-internet-1-bar:before { 3584 3584 .mdi-device-signal-cellular-connected-no-internet-1-bar:before {
content: "\e757"; } 3585 3585 content: "\e757"; }
3586 3586
.mdi-device-signal-cellular-connected-no-internet-2-bar:before { 3587 3587 .mdi-device-signal-cellular-connected-no-internet-2-bar:before {
content: "\e758"; } 3588 3588 content: "\e758"; }
3589 3589
.mdi-device-signal-cellular-connected-no-internet-3-bar:before { 3590 3590 .mdi-device-signal-cellular-connected-no-internet-3-bar:before {
content: "\e759"; } 3591 3591 content: "\e759"; }
3592 3592
.mdi-device-signal-cellular-connected-no-internet-4-bar:before { 3593 3593 .mdi-device-signal-cellular-connected-no-internet-4-bar:before {
content: "\e75a"; } 3594 3594 content: "\e75a"; }
3595 3595
.mdi-device-signal-cellular-no-sim:before { 3596 3596 .mdi-device-signal-cellular-no-sim:before {
content: "\e75b"; } 3597 3597 content: "\e75b"; }
3598 3598
.mdi-device-signal-cellular-null:before { 3599 3599 .mdi-device-signal-cellular-null:before {
content: "\e75c"; } 3600 3600 content: "\e75c"; }
3601 3601
.mdi-device-signal-cellular-off:before { 3602 3602 .mdi-device-signal-cellular-off:before {
content: "\e75d"; } 3603 3603 content: "\e75d"; }
3604 3604
.mdi-device-signal-wifi-0-bar:before { 3605 3605 .mdi-device-signal-wifi-0-bar:before {
content: "\e75e"; } 3606 3606 content: "\e75e"; }
3607 3607
.mdi-device-signal-wifi-1-bar:before { 3608 3608 .mdi-device-signal-wifi-1-bar:before {
content: "\e75f"; } 3609 3609 content: "\e75f"; }
3610 3610
.mdi-device-signal-wifi-2-bar:before { 3611 3611 .mdi-device-signal-wifi-2-bar:before {
content: "\e760"; } 3612 3612 content: "\e760"; }
3613 3613
.mdi-device-signal-wifi-3-bar:before { 3614 3614 .mdi-device-signal-wifi-3-bar:before {
content: "\e761"; } 3615 3615 content: "\e761"; }
3616 3616
.mdi-device-signal-wifi-4-bar:before { 3617 3617 .mdi-device-signal-wifi-4-bar:before {
content: "\e762"; } 3618 3618 content: "\e762"; }
3619 3619
.mdi-device-signal-wifi-off:before { 3620 3620 .mdi-device-signal-wifi-off:before {
content: "\e763"; } 3621 3621 content: "\e763"; }
3622 3622
.mdi-device-storage:before { 3623 3623 .mdi-device-storage:before {
content: "\e764"; } 3624 3624 content: "\e764"; }
3625 3625
.mdi-device-usb:before { 3626 3626 .mdi-device-usb:before {
content: "\e765"; } 3627 3627 content: "\e765"; }
3628 3628
.mdi-device-wifi-lock:before { 3629 3629 .mdi-device-wifi-lock:before {
content: "\e766"; } 3630 3630 content: "\e766"; }
3631 3631
.mdi-device-wifi-tethering:before { 3632 3632 .mdi-device-wifi-tethering:before {
content: "\e767"; } 3633 3633 content: "\e767"; }
3634 3634
.mdi-editor-attach-file:before { 3635 3635 .mdi-editor-attach-file:before {
content: "\e768"; } 3636 3636 content: "\e768"; }
3637 3637
.mdi-editor-attach-money:before { 3638 3638 .mdi-editor-attach-money:before {
content: "\e769"; } 3639 3639 content: "\e769"; }
3640 3640
.mdi-editor-border-all:before { 3641 3641 .mdi-editor-border-all:before {
content: "\e76a"; } 3642 3642 content: "\e76a"; }
3643 3643
.mdi-editor-border-bottom:before { 3644 3644 .mdi-editor-border-bottom:before {
content: "\e76b"; } 3645 3645 content: "\e76b"; }
3646 3646
.mdi-editor-border-clear:before { 3647 3647 .mdi-editor-border-clear:before {
content: "\e76c"; } 3648 3648 content: "\e76c"; }
3649 3649
.mdi-editor-border-color:before { 3650 3650 .mdi-editor-border-color:before {
content: "\e76d"; } 3651 3651 content: "\e76d"; }
3652 3652
.mdi-editor-border-horizontal:before { 3653 3653 .mdi-editor-border-horizontal:before {
content: "\e76e"; } 3654 3654 content: "\e76e"; }
3655 3655
.mdi-editor-border-inner:before { 3656 3656 .mdi-editor-border-inner:before {
content: "\e76f"; } 3657 3657 content: "\e76f"; }
3658 3658
.mdi-editor-border-left:before { 3659 3659 .mdi-editor-border-left:before {
content: "\e770"; } 3660 3660 content: "\e770"; }
3661 3661
.mdi-editor-border-outer:before { 3662 3662 .mdi-editor-border-outer:before {
content: "\e771"; } 3663 3663 content: "\e771"; }
3664 3664
.mdi-editor-border-right:before { 3665 3665 .mdi-editor-border-right:before {
content: "\e772"; } 3666 3666 content: "\e772"; }
3667 3667
.mdi-editor-border-style:before { 3668 3668 .mdi-editor-border-style:before {
content: "\e773"; } 3669 3669 content: "\e773"; }
3670 3670
.mdi-editor-border-top:before { 3671 3671 .mdi-editor-border-top:before {
content: "\e774"; } 3672 3672 content: "\e774"; }
3673 3673
.mdi-editor-border-vertical:before { 3674 3674 .mdi-editor-border-vertical:before {
content: "\e775"; } 3675 3675 content: "\e775"; }
3676 3676
.mdi-editor-format-align-center:before { 3677 3677 .mdi-editor-format-align-center:before {
content: "\e776"; } 3678 3678 content: "\e776"; }
3679 3679
.mdi-editor-format-align-justify:before { 3680 3680 .mdi-editor-format-align-justify:before {
content: "\e777"; } 3681 3681 content: "\e777"; }
3682 3682
.mdi-editor-format-align-left:before { 3683 3683 .mdi-editor-format-align-left:before {
content: "\e778"; } 3684 3684 content: "\e778"; }
3685 3685
.mdi-editor-format-align-right:before { 3686 3686 .mdi-editor-format-align-right:before {
content: "\e779"; } 3687 3687 content: "\e779"; }
3688 3688
.mdi-editor-format-bold:before { 3689 3689 .mdi-editor-format-bold:before {
content: "\e77a"; } 3690 3690 content: "\e77a"; }
3691 3691
.mdi-editor-format-clear:before { 3692 3692 .mdi-editor-format-clear:before {
content: "\e77b"; } 3693 3693 content: "\e77b"; }
3694 3694
.mdi-editor-format-color-fill:before { 3695 3695 .mdi-editor-format-color-fill:before {
content: "\e77c"; } 3696 3696 content: "\e77c"; }
3697 3697
.mdi-editor-format-color-reset:before { 3698 3698 .mdi-editor-format-color-reset:before {
content: "\e77d"; } 3699 3699 content: "\e77d"; }
3700 3700
.mdi-editor-format-color-text:before { 3701 3701 .mdi-editor-format-color-text:before {
content: "\e77e"; } 3702 3702 content: "\e77e"; }
3703 3703
.mdi-editor-format-indent-decrease:before { 3704 3704 .mdi-editor-format-indent-decrease:before {
content: "\e77f"; } 3705 3705 content: "\e77f"; }
3706 3706
.mdi-editor-format-indent-increase:before { 3707 3707 .mdi-editor-format-indent-increase:before {
content: "\e780"; } 3708 3708 content: "\e780"; }
3709 3709
.mdi-editor-format-italic:before { 3710 3710 .mdi-editor-format-italic:before {
content: "\e781"; } 3711 3711 content: "\e781"; }
3712 3712
.mdi-editor-format-line-spacing:before { 3713 3713 .mdi-editor-format-line-spacing:before {
content: "\e782"; } 3714 3714 content: "\e782"; }
3715 3715
.mdi-editor-format-list-bulleted:before { 3716 3716 .mdi-editor-format-list-bulleted:before {
content: "\e783"; } 3717 3717 content: "\e783"; }
3718 3718
.mdi-editor-format-list-numbered:before { 3719 3719 .mdi-editor-format-list-numbered:before {
content: "\e784"; } 3720 3720 content: "\e784"; }
3721 3721
.mdi-editor-format-paint:before { 3722 3722 .mdi-editor-format-paint:before {
content: "\e785"; } 3723 3723 content: "\e785"; }
3724 3724
.mdi-editor-format-quote:before { 3725 3725 .mdi-editor-format-quote:before {
content: "\e786"; } 3726 3726 content: "\e786"; }
3727 3727
.mdi-editor-format-size:before { 3728 3728 .mdi-editor-format-size:before {
content: "\e787"; } 3729 3729 content: "\e787"; }
3730 3730
.mdi-editor-format-strikethrough:before { 3731 3731 .mdi-editor-format-strikethrough:before {
content: "\e788"; } 3732 3732 content: "\e788"; }
3733 3733
.mdi-editor-functions:before { 3734 3734 .mdi-editor-functions:before {
content: "\e789"; } 3735 3735 content: "\e789"; }
3736 3736
.mdi-editor-format-textdirection-l-to-r:before { 3737 3737 .mdi-editor-format-textdirection-l-to-r:before {
content: "\e78a"; } 3738 3738 content: "\e78a"; }
3739 3739
.mdi-editor-format-underline:before { 3740 3740 .mdi-editor-format-underline:before {
content: "\e78b"; } 3741 3741 content: "\e78b"; }
3742 3742
.mdi-editor-format-textdirection-r-to-l:before { 3743 3743 .mdi-editor-format-textdirection-r-to-l:before {
content: "\e78c"; } 3744 3744 content: "\e78c"; }
3745 3745
.mdi-editor-insert-chart:before { 3746 3746 .mdi-editor-insert-chart:before {
content: "\e78d"; } 3747 3747 content: "\e78d"; }
3748 3748
.mdi-editor-insert-comment:before { 3749 3749 .mdi-editor-insert-comment:before {
content: "\e78e"; } 3750 3750 content: "\e78e"; }
3751 3751
.mdi-editor-insert-drive-file:before { 3752 3752 .mdi-editor-insert-drive-file:before {
content: "\e78f"; } 3753 3753 content: "\e78f"; }
3754 3754
.mdi-editor-insert-emoticon:before { 3755 3755 .mdi-editor-insert-emoticon:before {
content: "\e790"; } 3756 3756 content: "\e790"; }
3757 3757
.mdi-editor-insert-invitation:before { 3758 3758 .mdi-editor-insert-invitation:before {
content: "\e791"; } 3759 3759 content: "\e791"; }
3760 3760
.mdi-editor-insert-link:before { 3761 3761 .mdi-editor-insert-link:before {
content: "\e792"; } 3762 3762 content: "\e792"; }
3763 3763
.mdi-editor-insert-photo:before { 3764 3764 .mdi-editor-insert-photo:before {
content: "\e793"; } 3765 3765 content: "\e793"; }
3766 3766
.mdi-editor-merge-type:before { 3767 3767 .mdi-editor-merge-type:before {
content: "\e794"; } 3768 3768 content: "\e794"; }
3769 3769
.mdi-editor-mode-comment:before { 3770 3770 .mdi-editor-mode-comment:before {
content: "\e795"; } 3771 3771 content: "\e795"; }
3772 3772
.mdi-editor-mode-edit:before { 3773 3773 .mdi-editor-mode-edit:before {
content: "\e796"; } 3774 3774 content: "\e796"; }
3775 3775
.mdi-editor-publish:before { 3776 3776 .mdi-editor-publish:before {
content: "\e797"; } 3777 3777 content: "\e797"; }
3778 3778
.mdi-editor-vertical-align-bottom:before { 3779 3779 .mdi-editor-vertical-align-bottom:before {
content: "\e798"; } 3780 3780 content: "\e798"; }
3781 3781
.mdi-editor-vertical-align-center:before { 3782 3782 .mdi-editor-vertical-align-center:before {
content: "\e799"; } 3783 3783 content: "\e799"; }
3784 3784
.mdi-editor-vertical-align-top:before { 3785 3785 .mdi-editor-vertical-align-top:before {
content: "\e79a"; } 3786 3786 content: "\e79a"; }
3787 3787
.mdi-editor-wrap-text:before { 3788 3788 .mdi-editor-wrap-text:before {
content: "\e79b"; } 3789 3789 content: "\e79b"; }
3790 3790
.mdi-file-attachment:before { 3791 3791 .mdi-file-attachment:before {
content: "\e79c"; } 3792 3792 content: "\e79c"; }
3793 3793
.mdi-file-cloud:before { 3794 3794 .mdi-file-cloud:before {
content: "\e79d"; } 3795 3795 content: "\e79d"; }
3796 3796
.mdi-file-cloud-circle:before { 3797 3797 .mdi-file-cloud-circle:before {
content: "\e79e"; } 3798 3798 content: "\e79e"; }
3799 3799
.mdi-file-cloud-done:before { 3800 3800 .mdi-file-cloud-done:before {
content: "\e79f"; } 3801 3801 content: "\e79f"; }
3802 3802
.mdi-file-cloud-download:before { 3803 3803 .mdi-file-cloud-download:before {
content: "\e7a0"; } 3804 3804 content: "\e7a0"; }
3805 3805
.mdi-file-cloud-off:before { 3806 3806 .mdi-file-cloud-off:before {
content: "\e7a1"; } 3807 3807 content: "\e7a1"; }
3808 3808
.mdi-file-cloud-queue:before { 3809 3809 .mdi-file-cloud-queue:before {
content: "\e7a2"; } 3810 3810 content: "\e7a2"; }
3811 3811
.mdi-file-cloud-upload:before { 3812 3812 .mdi-file-cloud-upload:before {
content: "\e7a3"; } 3813 3813 content: "\e7a3"; }
3814 3814
.mdi-file-file-download:before { 3815 3815 .mdi-file-file-download:before {
content: "\e7a4"; } 3816 3816 content: "\e7a4"; }
3817 3817
.mdi-file-file-upload:before { 3818 3818 .mdi-file-file-upload:before {
content: "\e7a5"; } 3819 3819 content: "\e7a5"; }
3820 3820
.mdi-file-folder:before { 3821 3821 .mdi-file-folder:before {
content: "\e7a6"; } 3822 3822 content: "\e7a6"; }
3823 3823
.mdi-file-folder-open:before { 3824 3824 .mdi-file-folder-open:before {
content: "\e7a7"; } 3825 3825 content: "\e7a7"; }
3826 3826
.mdi-file-folder-shared:before { 3827 3827 .mdi-file-folder-shared:before {
content: "\e7a8"; } 3828 3828 content: "\e7a8"; }
3829 3829
.mdi-hardware-cast:before { 3830 3830 .mdi-hardware-cast:before {
content: "\e7a9"; } 3831 3831 content: "\e7a9"; }
3832 3832
.mdi-hardware-cast-connected:before { 3833 3833 .mdi-hardware-cast-connected:before {
content: "\e7aa"; } 3834 3834 content: "\e7aa"; }
3835 3835
.mdi-hardware-computer:before { 3836 3836 .mdi-hardware-computer:before {
content: "\e7ab"; } 3837 3837 content: "\e7ab"; }
3838 3838
.mdi-hardware-desktop-mac:before { 3839 3839 .mdi-hardware-desktop-mac:before {
content: "\e7ac"; } 3840 3840 content: "\e7ac"; }
3841 3841
.mdi-hardware-desktop-windows:before { 3842 3842 .mdi-hardware-desktop-windows:before {
content: "\e7ad"; } 3843 3843 content: "\e7ad"; }
3844 3844
.mdi-hardware-dock:before { 3845 3845 .mdi-hardware-dock:before {
content: "\e7ae"; } 3846 3846 content: "\e7ae"; }
3847 3847
.mdi-hardware-gamepad:before { 3848 3848 .mdi-hardware-gamepad:before {
content: "\e7af"; } 3849 3849 content: "\e7af"; }
3850 3850
.mdi-hardware-headset:before { 3851 3851 .mdi-hardware-headset:before {
content: "\e7b0"; } 3852 3852 content: "\e7b0"; }
3853 3853
.mdi-hardware-headset-mic:before { 3854 3854 .mdi-hardware-headset-mic:before {
content: "\e7b1"; } 3855 3855 content: "\e7b1"; }
3856 3856
.mdi-hardware-keyboard:before { 3857 3857 .mdi-hardware-keyboard:before {
content: "\e7b2"; } 3858 3858 content: "\e7b2"; }
3859 3859
.mdi-hardware-keyboard-alt:before { 3860 3860 .mdi-hardware-keyboard-alt:before {
content: "\e7b3"; } 3861 3861 content: "\e7b3"; }
3862 3862
.mdi-hardware-keyboard-arrow-down:before { 3863 3863 .mdi-hardware-keyboard-arrow-down:before {
content: "\e7b4"; } 3864 3864 content: "\e7b4"; }
3865 3865
.mdi-hardware-keyboard-arrow-left:before { 3866 3866 .mdi-hardware-keyboard-arrow-left:before {
content: "\e7b5"; } 3867 3867 content: "\e7b5"; }
3868 3868
.mdi-hardware-keyboard-arrow-right:before { 3869 3869 .mdi-hardware-keyboard-arrow-right:before {
content: "\e7b6"; } 3870 3870 content: "\e7b6"; }
3871 3871
.mdi-hardware-keyboard-arrow-up:before { 3872 3872 .mdi-hardware-keyboard-arrow-up:before {
content: "\e7b7"; } 3873 3873 content: "\e7b7"; }
3874 3874
.mdi-hardware-keyboard-backspace:before { 3875 3875 .mdi-hardware-keyboard-backspace:before {
content: "\e7b8"; } 3876 3876 content: "\e7b8"; }
3877 3877
.mdi-hardware-keyboard-capslock:before { 3878 3878 .mdi-hardware-keyboard-capslock:before {
content: "\e7b9"; } 3879 3879 content: "\e7b9"; }
3880 3880
.mdi-hardware-keyboard-control:before { 3881 3881 .mdi-hardware-keyboard-control:before {
content: "\e7ba"; } 3882 3882 content: "\e7ba"; }
3883 3883
.mdi-hardware-keyboard-hide:before { 3884 3884 .mdi-hardware-keyboard-hide:before {
content: "\e7bb"; } 3885 3885 content: "\e7bb"; }
3886 3886
.mdi-hardware-keyboard-return:before { 3887 3887 .mdi-hardware-keyboard-return:before {
content: "\e7bc"; } 3888 3888 content: "\e7bc"; }
3889 3889
.mdi-hardware-keyboard-tab:before { 3890 3890 .mdi-hardware-keyboard-tab:before {
content: "\e7bd"; } 3891 3891 content: "\e7bd"; }
3892 3892
.mdi-hardware-keyboard-voice:before { 3893 3893 .mdi-hardware-keyboard-voice:before {
content: "\e7be"; } 3894 3894 content: "\e7be"; }
3895 3895
.mdi-hardware-laptop:before { 3896 3896 .mdi-hardware-laptop:before {
content: "\e7bf"; } 3897 3897 content: "\e7bf"; }
3898 3898
.mdi-hardware-laptop-chromebook:before { 3899 3899 .mdi-hardware-laptop-chromebook:before {
content: "\e7c0"; } 3900 3900 content: "\e7c0"; }
3901 3901
.mdi-hardware-laptop-mac:before { 3902 3902 .mdi-hardware-laptop-mac:before {
content: "\e7c1"; } 3903 3903 content: "\e7c1"; }
3904 3904
.mdi-hardware-laptop-windows:before { 3905 3905 .mdi-hardware-laptop-windows:before {
content: "\e7c2"; } 3906 3906 content: "\e7c2"; }
3907 3907
.mdi-hardware-memory:before { 3908 3908 .mdi-hardware-memory:before {
content: "\e7c3"; } 3909 3909 content: "\e7c3"; }
3910 3910
.mdi-hardware-mouse:before { 3911 3911 .mdi-hardware-mouse:before {
content: "\e7c4"; } 3912 3912 content: "\e7c4"; }
3913 3913
.mdi-hardware-phone-android:before { 3914 3914 .mdi-hardware-phone-android:before {
content: "\e7c5"; } 3915 3915 content: "\e7c5"; }
3916 3916
.mdi-hardware-phone-iphone:before { 3917 3917 .mdi-hardware-phone-iphone:before {
content: "\e7c6"; } 3918 3918 content: "\e7c6"; }
3919 3919
.mdi-hardware-phonelink:before { 3920 3920 .mdi-hardware-phonelink:before {
content: "\e7c7"; } 3921 3921 content: "\e7c7"; }
3922 3922
.mdi-hardware-phonelink-off:before { 3923 3923 .mdi-hardware-phonelink-off:before {
content: "\e7c8"; } 3924 3924 content: "\e7c8"; }
3925 3925
.mdi-hardware-security:before { 3926 3926 .mdi-hardware-security:before {
content: "\e7c9"; } 3927 3927 content: "\e7c9"; }
3928 3928
.mdi-hardware-sim-card:before { 3929 3929 .mdi-hardware-sim-card:before {
content: "\e7ca"; } 3930 3930 content: "\e7ca"; }
3931 3931
.mdi-hardware-smartphone:before { 3932 3932 .mdi-hardware-smartphone:before {
content: "\e7cb"; } 3933 3933 content: "\e7cb"; }
3934 3934
.mdi-hardware-speaker:before { 3935 3935 .mdi-hardware-speaker:before {
content: "\e7cc"; } 3936 3936 content: "\e7cc"; }
3937 3937
.mdi-hardware-tablet:before { 3938 3938 .mdi-hardware-tablet:before {
content: "\e7cd"; } 3939 3939 content: "\e7cd"; }
3940 3940
.mdi-hardware-tablet-android:before { 3941 3941 .mdi-hardware-tablet-android:before {
content: "\e7ce"; } 3942 3942 content: "\e7ce"; }
3943 3943
.mdi-hardware-tablet-mac:before { 3944 3944 .mdi-hardware-tablet-mac:before {
content: "\e7cf"; } 3945 3945 content: "\e7cf"; }
3946 3946
.mdi-hardware-tv:before { 3947 3947 .mdi-hardware-tv:before {
content: "\e7d0"; } 3948 3948 content: "\e7d0"; }
3949 3949
.mdi-hardware-watch:before { 3950 3950 .mdi-hardware-watch:before {
content: "\e7d1"; } 3951 3951 content: "\e7d1"; }
3952 3952
.mdi-image-add-to-photos:before { 3953 3953 .mdi-image-add-to-photos:before {
content: "\e7d2"; } 3954 3954 content: "\e7d2"; }
3955 3955
.mdi-image-adjust:before { 3956 3956 .mdi-image-adjust:before {
content: "\e7d3"; } 3957 3957 content: "\e7d3"; }
3958 3958
.mdi-image-assistant-photo:before { 3959 3959 .mdi-image-assistant-photo:before {
content: "\e7d4"; } 3960 3960 content: "\e7d4"; }
3961 3961
.mdi-image-audiotrack:before { 3962 3962 .mdi-image-audiotrack:before {
content: "\e7d5"; } 3963 3963 content: "\e7d5"; }
3964 3964
.mdi-image-blur-circular:before { 3965 3965 .mdi-image-blur-circular:before {
content: "\e7d6"; } 3966 3966 content: "\e7d6"; }
3967 3967
.mdi-image-blur-linear:before { 3968 3968 .mdi-image-blur-linear:before {
content: "\e7d7"; } 3969 3969 content: "\e7d7"; }
3970 3970
.mdi-image-blur-off:before { 3971 3971 .mdi-image-blur-off:before {
content: "\e7d8"; } 3972 3972 content: "\e7d8"; }
3973 3973
.mdi-image-blur-on:before { 3974 3974 .mdi-image-blur-on:before {
content: "\e7d9"; } 3975 3975 content: "\e7d9"; }
3976 3976
.mdi-image-brightness-1:before { 3977 3977 .mdi-image-brightness-1:before {
content: "\e7da"; } 3978 3978 content: "\e7da"; }
3979 3979
.mdi-image-brightness-2:before { 3980 3980 .mdi-image-brightness-2:before {
content: "\e7db"; } 3981 3981 content: "\e7db"; }
3982 3982
.mdi-image-brightness-3:before { 3983 3983 .mdi-image-brightness-3:before {
content: "\e7dc"; } 3984 3984 content: "\e7dc"; }
3985 3985
.mdi-image-brightness-4:before { 3986 3986 .mdi-image-brightness-4:before {
content: "\e7dd"; } 3987 3987 content: "\e7dd"; }
3988 3988
.mdi-image-brightness-5:before { 3989 3989 .mdi-image-brightness-5:before {
content: "\e7de"; } 3990 3990 content: "\e7de"; }
3991 3991
.mdi-image-brightness-6:before { 3992 3992 .mdi-image-brightness-6:before {
content: "\e7df"; } 3993 3993 content: "\e7df"; }
3994 3994
.mdi-image-brightness-7:before { 3995 3995 .mdi-image-brightness-7:before {
content: "\e7e0"; } 3996 3996 content: "\e7e0"; }
3997 3997
.mdi-image-brush:before { 3998 3998 .mdi-image-brush:before {
content: "\e7e1"; } 3999 3999 content: "\e7e1"; }
4000 4000
.mdi-image-camera:before { 4001 4001 .mdi-image-camera:before {
content: "\e7e2"; } 4002 4002 content: "\e7e2"; }
4003 4003
.mdi-image-camera-alt:before { 4004 4004 .mdi-image-camera-alt:before {
content: "\e7e3"; } 4005 4005 content: "\e7e3"; }
4006 4006
.mdi-image-camera-front:before { 4007 4007 .mdi-image-camera-front:before {
content: "\e7e4"; } 4008 4008 content: "\e7e4"; }
4009 4009
.mdi-image-camera-rear:before { 4010 4010 .mdi-image-camera-rear:before {
content: "\e7e5"; } 4011 4011 content: "\e7e5"; }
4012 4012
.mdi-image-camera-roll:before { 4013 4013 .mdi-image-camera-roll:before {
content: "\e7e6"; } 4014 4014 content: "\e7e6"; }
4015 4015
.mdi-image-center-focus-strong:before { 4016 4016 .mdi-image-center-focus-strong:before {
content: "\e7e7"; } 4017 4017 content: "\e7e7"; }
4018 4018
.mdi-image-center-focus-weak:before { 4019 4019 .mdi-image-center-focus-weak:before {
content: "\e7e8"; } 4020 4020 content: "\e7e8"; }
4021 4021
.mdi-image-collections:before { 4022 4022 .mdi-image-collections:before {
content: "\e7e9"; } 4023 4023 content: "\e7e9"; }
4024 4024
.mdi-image-colorize:before { 4025 4025 .mdi-image-colorize:before {
content: "\e7ea"; } 4026 4026 content: "\e7ea"; }
4027 4027
.mdi-image-color-lens:before { 4028 4028 .mdi-image-color-lens:before {
content: "\e7eb"; } 4029 4029 content: "\e7eb"; }
4030 4030
.mdi-image-compare:before { 4031 4031 .mdi-image-compare:before {
content: "\e7ec"; } 4032 4032 content: "\e7ec"; }
4033 4033
.mdi-image-control-point:before { 4034 4034 .mdi-image-control-point:before {
content: "\e7ed"; } 4035 4035 content: "\e7ed"; }
4036 4036
.mdi-image-control-point-duplicate:before { 4037 4037 .mdi-image-control-point-duplicate:before {
content: "\e7ee"; } 4038 4038 content: "\e7ee"; }
4039 4039
.mdi-image-crop:before { 4040 4040 .mdi-image-crop:before {
content: "\e7ef"; } 4041 4041 content: "\e7ef"; }
4042 4042
.mdi-image-crop-3-2:before { 4043 4043 .mdi-image-crop-3-2:before {
content: "\e7f0"; } 4044 4044 content: "\e7f0"; }
4045 4045
.mdi-image-crop-5-4:before { 4046 4046 .mdi-image-crop-5-4:before {
content: "\e7f1"; } 4047 4047 content: "\e7f1"; }
4048 4048
.mdi-image-crop-7-5:before { 4049 4049 .mdi-image-crop-7-5:before {
content: "\e7f2"; } 4050 4050 content: "\e7f2"; }
4051 4051
.mdi-image-crop-16-9:before { 4052 4052 .mdi-image-crop-16-9:before {
content: "\e7f3"; } 4053 4053 content: "\e7f3"; }
4054 4054
.mdi-image-crop-din:before { 4055 4055 .mdi-image-crop-din:before {
content: "\e7f4"; } 4056 4056 content: "\e7f4"; }
4057 4057
.mdi-image-crop-free:before { 4058 4058 .mdi-image-crop-free:before {
content: "\e7f5"; } 4059 4059 content: "\e7f5"; }
4060 4060
.mdi-image-crop-landscape:before { 4061 4061 .mdi-image-crop-landscape:before {
content: "\e7f6"; } 4062 4062 content: "\e7f6"; }
4063 4063
.mdi-image-crop-original:before { 4064 4064 .mdi-image-crop-original:before {
content: "\e7f7"; } 4065 4065 content: "\e7f7"; }
4066 4066
.mdi-image-crop-portrait:before { 4067 4067 .mdi-image-crop-portrait:before {
content: "\e7f8"; } 4068 4068 content: "\e7f8"; }
4069 4069
.mdi-image-crop-square:before { 4070 4070 .mdi-image-crop-square:before {
content: "\e7f9"; } 4071 4071 content: "\e7f9"; }
4072 4072
.mdi-image-dehaze:before { 4073 4073 .mdi-image-dehaze:before {
content: "\e7fa"; } 4074 4074 content: "\e7fa"; }
4075 4075
.mdi-image-details:before { 4076 4076 .mdi-image-details:before {
content: "\e7fb"; } 4077 4077 content: "\e7fb"; }
4078 4078
.mdi-image-edit:before { 4079 4079 .mdi-image-edit:before {
content: "\e7fc"; } 4080 4080 content: "\e7fc"; }
4081 4081
.mdi-image-exposure:before { 4082 4082 .mdi-image-exposure:before {
content: "\e7fd"; } 4083 4083 content: "\e7fd"; }
4084 4084
.mdi-image-exposure-minus-1:before { 4085 4085 .mdi-image-exposure-minus-1:before {
content: "\e7fe"; } 4086 4086 content: "\e7fe"; }
4087 4087
.mdi-image-exposure-minus-2:before { 4088 4088 .mdi-image-exposure-minus-2:before {
content: "\e7ff"; } 4089 4089 content: "\e7ff"; }
4090 4090
.mdi-image-exposure-plus-1:before { 4091 4091 .mdi-image-exposure-plus-1:before {
content: "\e800"; } 4092 4092 content: "\e800"; }
4093 4093
.mdi-image-exposure-plus-2:before { 4094 4094 .mdi-image-exposure-plus-2:before {
content: "\e801"; } 4095 4095 content: "\e801"; }
4096 4096
.mdi-image-exposure-zero:before { 4097 4097 .mdi-image-exposure-zero:before {
content: "\e802"; } 4098 4098 content: "\e802"; }
4099 4099
.mdi-image-filter:before { 4100 4100 .mdi-image-filter:before {
content: "\e803"; } 4101 4101 content: "\e803"; }
4102 4102
.mdi-image-filter-1:before { 4103 4103 .mdi-image-filter-1:before {
content: "\e804"; } 4104 4104 content: "\e804"; }
4105 4105
.mdi-image-filter-2:before { 4106 4106 .mdi-image-filter-2:before {
content: "\e805"; } 4107 4107 content: "\e805"; }
4108 4108
.mdi-image-filter-3:before { 4109 4109 .mdi-image-filter-3:before {
content: "\e806"; } 4110 4110 content: "\e806"; }
4111 4111
.mdi-image-filter-4:before { 4112 4112 .mdi-image-filter-4:before {
content: "\e807"; } 4113 4113 content: "\e807"; }
4114 4114
.mdi-image-filter-5:before { 4115 4115 .mdi-image-filter-5:before {
content: "\e808"; } 4116 4116 content: "\e808"; }
4117 4117
.mdi-image-filter-6:before { 4118 4118 .mdi-image-filter-6:before {
content: "\e809"; } 4119 4119 content: "\e809"; }
4120 4120
.mdi-image-filter-7:before { 4121 4121 .mdi-image-filter-7:before {
content: "\e80a"; } 4122 4122 content: "\e80a"; }
4123 4123
.mdi-image-filter-8:before { 4124 4124 .mdi-image-filter-8:before {
content: "\e80b"; } 4125 4125 content: "\e80b"; }
4126 4126
.mdi-image-filter-9:before { 4127 4127 .mdi-image-filter-9:before {
content: "\e80c"; } 4128 4128 content: "\e80c"; }
4129 4129
.mdi-image-filter-9-plus:before { 4130 4130 .mdi-image-filter-9-plus:before {
content: "\e80d"; } 4131 4131 content: "\e80d"; }
4132 4132
.mdi-image-filter-b-and-w:before { 4133 4133 .mdi-image-filter-b-and-w:before {
content: "\e80e"; } 4134 4134 content: "\e80e"; }
4135 4135
.mdi-image-filter-center-focus:before { 4136 4136 .mdi-image-filter-center-focus:before {
content: "\e80f"; } 4137 4137 content: "\e80f"; }
4138 4138
.mdi-image-filter-drama:before { 4139 4139 .mdi-image-filter-drama:before {
content: "\e810"; } 4140 4140 content: "\e810"; }
4141 4141
.mdi-image-filter-frames:before { 4142 4142 .mdi-image-filter-frames:before {
content: "\e811"; } 4143 4143 content: "\e811"; }
4144 4144
.mdi-image-filter-hdr:before { 4145 4145 .mdi-image-filter-hdr:before {
content: "\e812"; } 4146 4146 content: "\e812"; }
4147 4147
.mdi-image-filter-none:before { 4148 4148 .mdi-image-filter-none:before {
content: "\e813"; } 4149 4149 content: "\e813"; }
4150 4150
.mdi-image-filter-tilt-shift:before { 4151 4151 .mdi-image-filter-tilt-shift:before {
content: "\e814"; } 4152 4152 content: "\e814"; }
4153 4153
.mdi-image-filter-vintage:before { 4154 4154 .mdi-image-filter-vintage:before {
content: "\e815"; } 4155 4155 content: "\e815"; }
4156 4156
.mdi-image-flare:before { 4157 4157 .mdi-image-flare:before {
content: "\e816"; } 4158 4158 content: "\e816"; }
4159 4159
.mdi-image-flash-auto:before { 4160 4160 .mdi-image-flash-auto:before {
content: "\e817"; } 4161 4161 content: "\e817"; }
4162 4162
.mdi-image-flash-off:before { 4163 4163 .mdi-image-flash-off:before {
content: "\e818"; } 4164 4164 content: "\e818"; }
4165 4165
.mdi-image-flash-on:before { 4166 4166 .mdi-image-flash-on:before {
content: "\e819"; } 4167 4167 content: "\e819"; }
4168 4168
.mdi-image-flip:before { 4169 4169 .mdi-image-flip:before {
content: "\e81a"; } 4170 4170 content: "\e81a"; }
4171 4171
.mdi-image-gradient:before { 4172 4172 .mdi-image-gradient:before {
content: "\e81b"; } 4173 4173 content: "\e81b"; }
4174 4174
.mdi-image-grain:before { 4175 4175 .mdi-image-grain:before {
content: "\e81c"; } 4176 4176 content: "\e81c"; }
4177 4177
.mdi-image-grid-off:before { 4178 4178 .mdi-image-grid-off:before {
content: "\e81d"; } 4179 4179 content: "\e81d"; }
4180 4180
.mdi-image-grid-on:before { 4181 4181 .mdi-image-grid-on:before {
content: "\e81e"; } 4182 4182 content: "\e81e"; }
4183 4183
.mdi-image-hdr-off:before { 4184 4184 .mdi-image-hdr-off:before {
content: "\e81f"; } 4185 4185 content: "\e81f"; }
4186 4186
.mdi-image-hdr-on:before { 4187 4187 .mdi-image-hdr-on:before {
content: "\e820"; } 4188 4188 content: "\e820"; }
4189 4189
.mdi-image-hdr-strong:before { 4190 4190 .mdi-image-hdr-strong:before {
content: "\e821"; } 4191 4191 content: "\e821"; }
4192 4192
.mdi-image-hdr-weak:before { 4193 4193 .mdi-image-hdr-weak:before {
content: "\e822"; } 4194 4194 content: "\e822"; }
4195 4195
.mdi-image-healing:before { 4196 4196 .mdi-image-healing:before {
content: "\e823"; } 4197 4197 content: "\e823"; }
4198 4198
.mdi-image-image:before { 4199 4199 .mdi-image-image:before {
content: "\e824"; } 4200 4200 content: "\e824"; }
4201 4201
.mdi-image-image-aspect-ratio:before { 4202 4202 .mdi-image-image-aspect-ratio:before {
content: "\e825"; } 4203 4203 content: "\e825"; }
4204 4204
.mdi-image-iso:before { 4205 4205 .mdi-image-iso:before {
content: "\e826"; } 4206 4206 content: "\e826"; }
4207 4207
.mdi-image-landscape:before { 4208 4208 .mdi-image-landscape:before {
content: "\e827"; } 4209 4209 content: "\e827"; }
4210 4210
.mdi-image-leak-add:before { 4211 4211 .mdi-image-leak-add:before {
content: "\e828"; } 4212 4212 content: "\e828"; }
4213 4213
.mdi-image-leak-remove:before { 4214 4214 .mdi-image-leak-remove:before {
content: "\e829"; } 4215 4215 content: "\e829"; }
4216 4216
.mdi-image-lens:before { 4217 4217 .mdi-image-lens:before {
content: "\e82a"; } 4218 4218 content: "\e82a"; }
4219 4219
.mdi-image-looks:before { 4220 4220 .mdi-image-looks:before {
content: "\e82b"; } 4221 4221 content: "\e82b"; }
4222 4222
.mdi-image-looks-3:before { 4223 4223 .mdi-image-looks-3:before {
content: "\e82c"; } 4224 4224 content: "\e82c"; }
4225 4225
.mdi-image-looks-4:before { 4226 4226 .mdi-image-looks-4:before {
content: "\e82d"; } 4227 4227 content: "\e82d"; }
4228 4228
.mdi-image-looks-5:before { 4229 4229 .mdi-image-looks-5:before {
content: "\e82e"; } 4230 4230 content: "\e82e"; }
4231 4231
.mdi-image-looks-6:before { 4232 4232 .mdi-image-looks-6:before {
content: "\e82f"; } 4233 4233 content: "\e82f"; }
4234 4234
.mdi-image-looks-one:before { 4235 4235 .mdi-image-looks-one:before {
content: "\e830"; } 4236 4236 content: "\e830"; }
4237 4237
.mdi-image-looks-two:before { 4238 4238 .mdi-image-looks-two:before {
content: "\e831"; } 4239 4239 content: "\e831"; }
4240 4240
.mdi-image-loupe:before { 4241 4241 .mdi-image-loupe:before {
content: "\e832"; } 4242 4242 content: "\e832"; }
4243 4243
.mdi-image-movie-creation:before { 4244 4244 .mdi-image-movie-creation:before {
content: "\e833"; } 4245 4245 content: "\e833"; }
4246 4246
.mdi-image-nature:before { 4247 4247 .mdi-image-nature:before {
content: "\e834"; } 4248 4248 content: "\e834"; }
4249 4249
.mdi-image-nature-people:before { 4250 4250 .mdi-image-nature-people:before {
content: "\e835"; } 4251 4251 content: "\e835"; }
4252 4252
.mdi-image-navigate-before:before { 4253 4253 .mdi-image-navigate-before:before {
content: "\e836"; } 4254 4254 content: "\e836"; }
4255 4255
.mdi-image-navigate-next:before { 4256 4256 .mdi-image-navigate-next:before {
content: "\e837"; } 4257 4257 content: "\e837"; }
4258 4258
.mdi-image-palette:before { 4259 4259 .mdi-image-palette:before {
content: "\e838"; } 4260 4260 content: "\e838"; }
4261 4261
.mdi-image-panorama:before { 4262 4262 .mdi-image-panorama:before {
content: "\e839"; } 4263 4263 content: "\e839"; }
4264 4264
.mdi-image-panorama-fisheye:before { 4265 4265 .mdi-image-panorama-fisheye:before {
content: "\e83a"; } 4266 4266 content: "\e83a"; }
4267 4267
.mdi-image-panorama-horizontal:before { 4268 4268 .mdi-image-panorama-horizontal:before {
content: "\e83b"; } 4269 4269 content: "\e83b"; }
4270 4270
.mdi-image-panorama-vertical:before { 4271 4271 .mdi-image-panorama-vertical:before {
content: "\e83c"; } 4272 4272 content: "\e83c"; }
4273 4273
.mdi-image-panorama-wide-angle:before { 4274 4274 .mdi-image-panorama-wide-angle:before {
content: "\e83d"; } 4275 4275 content: "\e83d"; }
4276 4276
.mdi-image-photo:before { 4277 4277 .mdi-image-photo:before {
content: "\e83e"; } 4278 4278 content: "\e83e"; }
4279 4279
.mdi-image-photo-album:before { 4280 4280 .mdi-image-photo-album:before {
content: "\e83f"; } 4281 4281 content: "\e83f"; }
4282 4282
.mdi-image-photo-camera:before { 4283 4283 .mdi-image-photo-camera:before {
content: "\e840"; } 4284 4284 content: "\e840"; }
4285 4285
.mdi-image-photo-library:before { 4286 4286 .mdi-image-photo-library:before {
content: "\e841"; } 4287 4287 content: "\e841"; }
4288 4288
.mdi-image-portrait:before { 4289 4289 .mdi-image-portrait:before {
content: "\e842"; } 4290 4290 content: "\e842"; }
4291 4291
.mdi-image-remove-red-eye:before { 4292 4292 .mdi-image-remove-red-eye:before {
content: "\e843"; } 4293 4293 content: "\e843"; }
4294 4294
.mdi-image-rotate-left:before { 4295 4295 .mdi-image-rotate-left:before {
content: "\e844"; } 4296 4296 content: "\e844"; }
4297 4297
.mdi-image-rotate-right:before { 4298 4298 .mdi-image-rotate-right:before {
content: "\e845"; } 4299 4299 content: "\e845"; }
4300 4300
.mdi-image-slideshow:before { 4301 4301 .mdi-image-slideshow:before {
content: "\e846"; } 4302 4302 content: "\e846"; }
4303 4303
.mdi-image-straighten:before { 4304 4304 .mdi-image-straighten:before {
content: "\e847"; } 4305 4305 content: "\e847"; }
4306 4306
.mdi-image-style:before { 4307 4307 .mdi-image-style:before {
content: "\e848"; } 4308 4308 content: "\e848"; }
4309 4309
.mdi-image-switch-camera:before { 4310 4310 .mdi-image-switch-camera:before {
content: "\e849"; } 4311 4311 content: "\e849"; }
4312 4312
.mdi-image-switch-video:before { 4313 4313 .mdi-image-switch-video:before {
content: "\e84a"; } 4314 4314 content: "\e84a"; }
4315 4315
.mdi-image-tag-faces:before { 4316 4316 .mdi-image-tag-faces:before {
content: "\e84b"; } 4317 4317 content: "\e84b"; }
4318 4318
.mdi-image-texture:before { 4319 4319 .mdi-image-texture:before {
content: "\e84c"; } 4320 4320 content: "\e84c"; }
4321 4321
.mdi-image-timelapse:before { 4322 4322 .mdi-image-timelapse:before {
content: "\e84d"; } 4323 4323 content: "\e84d"; }
4324 4324
.mdi-image-timer:before { 4325 4325 .mdi-image-timer:before {
content: "\e84e"; } 4326 4326 content: "\e84e"; }
4327 4327
.mdi-image-timer-3:before { 4328 4328 .mdi-image-timer-3:before {
content: "\e84f"; } 4329 4329 content: "\e84f"; }
4330 4330
.mdi-image-timer-10:before { 4331 4331 .mdi-image-timer-10:before {
content: "\e850"; } 4332 4332 content: "\e850"; }
4333 4333
.mdi-image-timer-auto:before { 4334 4334 .mdi-image-timer-auto:before {
content: "\e851"; } 4335 4335 content: "\e851"; }
4336 4336
.mdi-image-timer-off:before { 4337 4337 .mdi-image-timer-off:before {
content: "\e852"; } 4338 4338 content: "\e852"; }
4339 4339
.mdi-image-tonality:before { 4340 4340 .mdi-image-tonality:before {
content: "\e853"; } 4341 4341 content: "\e853"; }
4342 4342
.mdi-image-transform:before { 4343 4343 .mdi-image-transform:before {
content: "\e854"; } 4344 4344 content: "\e854"; }
4345 4345
.mdi-image-tune:before { 4346 4346 .mdi-image-tune:before {
content: "\e855"; } 4347 4347 content: "\e855"; }
4348 4348
.mdi-image-wb-auto:before { 4349 4349 .mdi-image-wb-auto:before {
content: "\e856"; } 4350 4350 content: "\e856"; }
4351 4351
.mdi-image-wb-cloudy:before { 4352 4352 .mdi-image-wb-cloudy:before {
content: "\e857"; } 4353 4353 content: "\e857"; }
4354 4354
.mdi-image-wb-incandescent:before { 4355 4355 .mdi-image-wb-incandescent:before {
content: "\e858"; } 4356 4356 content: "\e858"; }
4357 4357
.mdi-image-wb-irradescent:before { 4358 4358 .mdi-image-wb-irradescent:before {
content: "\e859"; } 4359 4359 content: "\e859"; }
4360 4360
.mdi-image-wb-sunny:before { 4361 4361 .mdi-image-wb-sunny:before {
content: "\e85a"; } 4362 4362 content: "\e85a"; }
4363 4363
.mdi-maps-beenhere:before { 4364 4364 .mdi-maps-beenhere:before {
content: "\e85b"; } 4365 4365 content: "\e85b"; }
4366 4366
.mdi-maps-directions:before { 4367 4367 .mdi-maps-directions:before {
content: "\e85c"; } 4368 4368 content: "\e85c"; }
4369 4369
.mdi-maps-directions-bike:before { 4370 4370 .mdi-maps-directions-bike:before {
content: "\e85d"; } 4371 4371 content: "\e85d"; }
4372 4372
.mdi-maps-directions-bus:before { 4373 4373 .mdi-maps-directions-bus:before {
content: "\e85e"; } 4374 4374 content: "\e85e"; }
4375 4375
.mdi-maps-directions-car:before { 4376 4376 .mdi-maps-directions-car:before {
content: "\e85f"; } 4377 4377 content: "\e85f"; }
4378 4378
.mdi-maps-directions-ferry:before { 4379 4379 .mdi-maps-directions-ferry:before {
content: "\e860"; } 4380 4380 content: "\e860"; }
4381 4381
.mdi-maps-directions-subway:before { 4382 4382 .mdi-maps-directions-subway:before {
content: "\e861"; } 4383 4383 content: "\e861"; }
4384 4384
.mdi-maps-directions-train:before { 4385 4385 .mdi-maps-directions-train:before {
content: "\e862"; } 4386 4386 content: "\e862"; }
4387 4387
.mdi-maps-directions-transit:before { 4388 4388 .mdi-maps-directions-transit:before {
content: "\e863"; } 4389 4389 content: "\e863"; }
4390 4390
.mdi-maps-directions-walk:before { 4391 4391 .mdi-maps-directions-walk:before {
content: "\e864"; } 4392 4392 content: "\e864"; }
4393 4393
.mdi-maps-flight:before { 4394 4394 .mdi-maps-flight:before {
content: "\e865"; } 4395 4395 content: "\e865"; }
4396 4396
.mdi-maps-hotel:before { 4397 4397 .mdi-maps-hotel:before {
content: "\e866"; } 4398 4398 content: "\e866"; }
4399 4399
.mdi-maps-layers:before { 4400 4400 .mdi-maps-layers:before {
content: "\e867"; } 4401 4401 content: "\e867"; }
4402 4402
.mdi-maps-layers-clear:before { 4403 4403 .mdi-maps-layers-clear:before {
content: "\e868"; } 4404 4404 content: "\e868"; }
4405 4405
.mdi-maps-local-airport:before { 4406 4406 .mdi-maps-local-airport:before {
content: "\e869"; } 4407 4407 content: "\e869"; }
4408 4408
.mdi-maps-local-atm:before { 4409 4409 .mdi-maps-local-atm:before {
content: "\e86a"; } 4410 4410 content: "\e86a"; }
4411 4411
.mdi-maps-local-attraction:before { 4412 4412 .mdi-maps-local-attraction:before {
content: "\e86b"; } 4413 4413 content: "\e86b"; }
4414 4414
.mdi-maps-local-bar:before { 4415 4415 .mdi-maps-local-bar:before {
content: "\e86c"; } 4416 4416 content: "\e86c"; }
4417 4417
.mdi-maps-local-cafe:before { 4418 4418 .mdi-maps-local-cafe:before {
content: "\e86d"; } 4419 4419 content: "\e86d"; }
4420 4420
.mdi-maps-local-car-wash:before { 4421 4421 .mdi-maps-local-car-wash:before {
content: "\e86e"; } 4422 4422 content: "\e86e"; }
4423 4423
.mdi-maps-local-convenience-store:before { 4424 4424 .mdi-maps-local-convenience-store:before {
content: "\e86f"; } 4425 4425 content: "\e86f"; }
4426 4426
.mdi-maps-local-drink:before { 4427 4427 .mdi-maps-local-drink:before {
content: "\e870"; } 4428 4428 content: "\e870"; }
4429 4429
.mdi-maps-local-florist:before { 4430 4430 .mdi-maps-local-florist:before {
content: "\e871"; } 4431 4431 content: "\e871"; }
4432 4432
.mdi-maps-local-gas-station:before { 4433 4433 .mdi-maps-local-gas-station:before {
content: "\e872"; } 4434 4434 content: "\e872"; }
4435 4435
.mdi-maps-local-grocery-store:before { 4436 4436 .mdi-maps-local-grocery-store:before {
content: "\e873"; } 4437 4437 content: "\e873"; }
4438 4438
.mdi-maps-local-hospital:before { 4439 4439 .mdi-maps-local-hospital:before {
content: "\e874"; } 4440 4440 content: "\e874"; }
4441 4441
.mdi-maps-local-hotel:before { 4442 4442 .mdi-maps-local-hotel:before {
content: "\e875"; } 4443 4443 content: "\e875"; }
4444 4444
.mdi-maps-local-laundry-service:before { 4445 4445 .mdi-maps-local-laundry-service:before {
content: "\e876"; } 4446 4446 content: "\e876"; }
4447 4447
.mdi-maps-local-library:before { 4448 4448 .mdi-maps-local-library:before {
content: "\e877"; } 4449 4449 content: "\e877"; }
4450 4450
.mdi-maps-local-mall:before { 4451 4451 .mdi-maps-local-mall:before {
content: "\e878"; } 4452 4452 content: "\e878"; }
4453 4453
.mdi-maps-local-movies:before { 4454 4454 .mdi-maps-local-movies:before {
content: "\e879"; } 4455 4455 content: "\e879"; }
4456 4456
.mdi-maps-local-offer:before { 4457 4457 .mdi-maps-local-offer:before {
content: "\e87a"; } 4458 4458 content: "\e87a"; }
4459 4459
.mdi-maps-local-parking:before { 4460 4460 .mdi-maps-local-parking:before {
content: "\e87b"; } 4461 4461 content: "\e87b"; }
4462 4462
.mdi-maps-local-pharmacy:before { 4463 4463 .mdi-maps-local-pharmacy:before {
content: "\e87c"; } 4464 4464 content: "\e87c"; }
4465 4465
.mdi-maps-local-phone:before { 4466 4466 .mdi-maps-local-phone:before {
content: "\e87d"; } 4467 4467 content: "\e87d"; }
4468 4468
.mdi-maps-local-pizza:before { 4469 4469 .mdi-maps-local-pizza:before {
content: "\e87e"; } 4470 4470 content: "\e87e"; }
4471 4471
.mdi-maps-local-play:before { 4472 4472 .mdi-maps-local-play:before {
content: "\e87f"; } 4473 4473 content: "\e87f"; }
4474 4474
.mdi-maps-local-post-office:before { 4475 4475 .mdi-maps-local-post-office:before {
content: "\e880"; } 4476 4476 content: "\e880"; }
4477 4477
.mdi-maps-local-print-shop:before { 4478 4478 .mdi-maps-local-print-shop:before {
content: "\e881"; } 4479 4479 content: "\e881"; }
4480 4480
.mdi-maps-local-restaurant:before { 4481 4481 .mdi-maps-local-restaurant:before {
content: "\e882"; } 4482 4482 content: "\e882"; }
4483 4483
.mdi-maps-local-see:before { 4484 4484 .mdi-maps-local-see:before {
content: "\e883"; } 4485 4485 content: "\e883"; }
4486 4486
.mdi-maps-local-shipping:before { 4487 4487 .mdi-maps-local-shipping:before {
content: "\e884"; } 4488 4488 content: "\e884"; }
4489 4489
.mdi-maps-local-taxi:before { 4490 4490 .mdi-maps-local-taxi:before {
content: "\e885"; } 4491 4491 content: "\e885"; }
4492 4492
.mdi-maps-location-history:before { 4493 4493 .mdi-maps-location-history:before {
content: "\e886"; } 4494 4494 content: "\e886"; }
4495 4495
.mdi-maps-map:before { 4496 4496 .mdi-maps-map:before {
content: "\e887"; } 4497 4497 content: "\e887"; }
4498 4498
.mdi-maps-my-location:before { 4499 4499 .mdi-maps-my-location:before {
content: "\e888"; } 4500 4500 content: "\e888"; }
4501 4501
.mdi-maps-navigation:before { 4502 4502 .mdi-maps-navigation:before {
content: "\e889"; } 4503 4503 content: "\e889"; }
4504 4504
.mdi-maps-pin-drop:before { 4505 4505 .mdi-maps-pin-drop:before {
content: "\e88a"; } 4506 4506 content: "\e88a"; }
4507 4507
.mdi-maps-place:before { 4508 4508 .mdi-maps-place:before {
content: "\e88b"; } 4509 4509 content: "\e88b"; }
4510 4510
.mdi-maps-rate-review:before { 4511 4511 .mdi-maps-rate-review:before {
content: "\e88c"; } 4512 4512 content: "\e88c"; }
4513 4513
.mdi-maps-restaurant-menu:before { 4514 4514 .mdi-maps-restaurant-menu:before {
content: "\e88d"; } 4515 4515 content: "\e88d"; }
4516 4516
.mdi-maps-satellite:before { 4517 4517 .mdi-maps-satellite:before {
content: "\e88e"; } 4518 4518 content: "\e88e"; }
4519 4519
.mdi-maps-store-mall-directory:before { 4520 4520 .mdi-maps-store-mall-directory:before {
content: "\e88f"; } 4521 4521 content: "\e88f"; }
4522 4522
.mdi-maps-terrain:before { 4523 4523 .mdi-maps-terrain:before {
content: "\e890"; } 4524 4524 content: "\e890"; }
4525 4525
.mdi-maps-traffic:before { 4526 4526 .mdi-maps-traffic:before {
content: "\e891"; } 4527 4527 content: "\e891"; }
4528 4528
.mdi-navigation-apps:before { 4529 4529 .mdi-navigation-apps:before {
content: "\e892"; } 4530 4530 content: "\e892"; }
4531 4531
.mdi-navigation-arrow-back:before { 4532 4532 .mdi-navigation-arrow-back:before {
content: "\e893"; } 4533 4533 content: "\e893"; }
4534 4534
.mdi-navigation-arrow-drop-down:before { 4535 4535 .mdi-navigation-arrow-drop-down:before {
content: "\e894"; } 4536 4536 content: "\e894"; }
4537 4537
.mdi-navigation-arrow-drop-down-circle:before { 4538 4538 .mdi-navigation-arrow-drop-down-circle:before {
content: "\e895"; } 4539 4539 content: "\e895"; }
4540 4540
.mdi-navigation-arrow-drop-up:before { 4541 4541 .mdi-navigation-arrow-drop-up:before {
content: "\e896"; } 4542 4542 content: "\e896"; }
4543 4543
.mdi-navigation-arrow-forward:before { 4544 4544 .mdi-navigation-arrow-forward:before {
content: "\e897"; } 4545 4545 content: "\e897"; }
4546 4546
.mdi-navigation-cancel:before { 4547 4547 .mdi-navigation-cancel:before {
content: "\e898"; } 4548 4548 content: "\e898"; }
4549 4549
.mdi-navigation-check:before { 4550 4550 .mdi-navigation-check:before {
content: "\e899"; } 4551 4551 content: "\e899"; }
4552 4552
.mdi-navigation-chevron-left:before { 4553 4553 .mdi-navigation-chevron-left:before {
content: "\e89a"; } 4554 4554 content: "\e89a"; }
4555 4555
.mdi-navigation-chevron-right:before { 4556 4556 .mdi-navigation-chevron-right:before {
content: "\e89b"; } 4557 4557 content: "\e89b"; }
4558 4558
.mdi-navigation-close:before { 4559 4559 .mdi-navigation-close:before {
content: "\e89c"; } 4560 4560 content: "\e89c"; }
4561 4561
.mdi-navigation-expand-less:before { 4562 4562 .mdi-navigation-expand-less:before {
content: "\e89d"; } 4563 4563 content: "\e89d"; }
4564 4564
.mdi-navigation-expand-more:before { 4565 4565 .mdi-navigation-expand-more:before {
content: "\e89e"; } 4566 4566 content: "\e89e"; }
4567 4567
.mdi-navigation-fullscreen:before { 4568 4568 .mdi-navigation-fullscreen:before {
content: "\e89f"; } 4569 4569 content: "\e89f"; }
4570 4570
.mdi-navigation-fullscreen-exit:before { 4571 4571 .mdi-navigation-fullscreen-exit:before {
content: "\e8a0"; } 4572 4572 content: "\e8a0"; }
4573 4573
.mdi-navigation-menu:before { 4574 4574 .mdi-navigation-menu:before {
content: "\e8a1"; } 4575 4575 content: "\e8a1"; }
4576 4576
.mdi-navigation-more-horiz:before { 4577 4577 .mdi-navigation-more-horiz:before {
content: "\e8a2"; } 4578 4578 content: "\e8a2"; }
4579 4579
.mdi-navigation-more-vert:before { 4580 4580 .mdi-navigation-more-vert:before {
content: "\e8a3"; } 4581 4581 content: "\e8a3"; }
4582 4582
.mdi-navigation-refresh:before { 4583 4583 .mdi-navigation-refresh:before {
content: "\e8a4"; } 4584 4584 content: "\e8a4"; }
4585 4585
.mdi-navigation-unfold-less:before { 4586 4586 .mdi-navigation-unfold-less:before {
content: "\e8a5"; } 4587 4587 content: "\e8a5"; }
4588 4588
.mdi-navigation-unfold-more:before { 4589 4589 .mdi-navigation-unfold-more:before {
content: "\e8a6"; } 4590 4590 content: "\e8a6"; }
4591 4591
.mdi-notification-adb:before { 4592 4592 .mdi-notification-adb:before {
content: "\e8a7"; } 4593 4593 content: "\e8a7"; }
4594 4594
.mdi-notification-bluetooth-audio:before { 4595 4595 .mdi-notification-bluetooth-audio:before {
content: "\e8a8"; } 4596 4596 content: "\e8a8"; }
4597 4597
.mdi-notification-disc-full:before { 4598 4598 .mdi-notification-disc-full:before {
content: "\e8a9"; } 4599 4599 content: "\e8a9"; }
4600 4600
.mdi-notification-dnd-forwardslash:before { 4601 4601 .mdi-notification-dnd-forwardslash:before {
content: "\e8aa"; } 4602 4602 content: "\e8aa"; }
4603 4603
.mdi-notification-do-not-disturb:before { 4604 4604 .mdi-notification-do-not-disturb:before {
content: "\e8ab"; } 4605 4605 content: "\e8ab"; }
4606 4606
.mdi-notification-drive-eta:before { 4607 4607 .mdi-notification-drive-eta:before {
content: "\e8ac"; } 4608 4608 content: "\e8ac"; }
4609 4609
.mdi-notification-event-available:before { 4610 4610 .mdi-notification-event-available:before {
content: "\e8ad"; } 4611 4611 content: "\e8ad"; }
4612 4612
.mdi-notification-event-busy:before { 4613 4613 .mdi-notification-event-busy:before {
content: "\e8ae"; } 4614 4614 content: "\e8ae"; }
4615 4615
.mdi-notification-event-note:before { 4616 4616 .mdi-notification-event-note:before {
content: "\e8af"; } 4617 4617 content: "\e8af"; }
4618 4618
.mdi-notification-folder-special:before { 4619 4619 .mdi-notification-folder-special:before {
content: "\e8b0"; } 4620 4620 content: "\e8b0"; }
4621 4621
.mdi-notification-mms:before { 4622 4622 .mdi-notification-mms:before {
content: "\e8b1"; } 4623 4623 content: "\e8b1"; }
4624 4624
.mdi-notification-more:before { 4625 4625 .mdi-notification-more:before {
content: "\e8b2"; } 4626 4626 content: "\e8b2"; }
4627 4627
.mdi-notification-network-locked:before { 4628 4628 .mdi-notification-network-locked:before {
content: "\e8b3"; } 4629 4629 content: "\e8b3"; }
4630 4630
.mdi-notification-phone-bluetooth-speaker:before { 4631 4631 .mdi-notification-phone-bluetooth-speaker:before {
content: "\e8b4"; } 4632 4632 content: "\e8b4"; }
4633 4633
.mdi-notification-phone-forwarded:before { 4634 4634 .mdi-notification-phone-forwarded:before {
content: "\e8b5"; } 4635 4635 content: "\e8b5"; }
4636 4636
.mdi-notification-phone-in-talk:before { 4637 4637 .mdi-notification-phone-in-talk:before {
content: "\e8b6"; } 4638 4638 content: "\e8b6"; }
4639 4639
.mdi-notification-phone-locked:before { 4640 4640 .mdi-notification-phone-locked:before {
content: "\e8b7"; } 4641 4641 content: "\e8b7"; }
4642 4642
.mdi-notification-phone-missed:before { 4643 4643 .mdi-notification-phone-missed:before {
content: "\e8b8"; } 4644 4644 content: "\e8b8"; }
4645 4645
.mdi-notification-phone-paused:before { 4646 4646 .mdi-notification-phone-paused:before {
content: "\e8b9"; } 4647 4647 content: "\e8b9"; }
4648 4648
.mdi-notification-play-download:before { 4649 4649 .mdi-notification-play-download:before {
content: "\e8ba"; } 4650 4650 content: "\e8ba"; }
4651 4651
.mdi-notification-play-install:before { 4652 4652 .mdi-notification-play-install:before {
content: "\e8bb"; } 4653 4653 content: "\e8bb"; }
4654 4654
.mdi-notification-sd-card:before { 4655 4655 .mdi-notification-sd-card:before {
content: "\e8bc"; } 4656 4656 content: "\e8bc"; }
4657 4657
.mdi-notification-sim-card-alert:before { 4658 4658 .mdi-notification-sim-card-alert:before {
content: "\e8bd"; } 4659 4659 content: "\e8bd"; }
4660 4660
.mdi-notification-sms:before { 4661 4661 .mdi-notification-sms:before {
content: "\e8be"; } 4662 4662 content: "\e8be"; }
4663 4663
.mdi-notification-sms-failed:before { 4664 4664 .mdi-notification-sms-failed:before {
content: "\e8bf"; } 4665 4665 content: "\e8bf"; }
4666 4666
.mdi-notification-sync:before { 4667 4667 .mdi-notification-sync:before {
content: "\e8c0"; } 4668 4668 content: "\e8c0"; }
4669 4669
.mdi-notification-sync-disabled:before { 4670 4670 .mdi-notification-sync-disabled:before {
content: "\e8c1"; } 4671 4671 content: "\e8c1"; }
4672 4672
.mdi-notification-sync-problem:before { 4673 4673 .mdi-notification-sync-problem:before {
content: "\e8c2"; } 4674 4674 content: "\e8c2"; }
4675 4675
.mdi-notification-system-update:before { 4676 4676 .mdi-notification-system-update:before {
content: "\e8c3"; } 4677 4677 content: "\e8c3"; }
4678 4678
.mdi-notification-tap-and-play:before { 4679 4679 .mdi-notification-tap-and-play:before {
content: "\e8c4"; } 4680 4680 content: "\e8c4"; }
4681 4681
.mdi-notification-time-to-leave:before { 4682 4682 .mdi-notification-time-to-leave:before {
content: "\e8c5"; } 4683 4683 content: "\e8c5"; }
4684 4684
.mdi-notification-vibration:before { 4685 4685 .mdi-notification-vibration:before {
content: "\e8c6"; } 4686 4686 content: "\e8c6"; }
4687 4687
.mdi-notification-voice-chat:before { 4688 4688 .mdi-notification-voice-chat:before {
content: "\e8c7"; } 4689 4689 content: "\e8c7"; }
4690 4690
.mdi-notification-vpn-lock:before { 4691 4691 .mdi-notification-vpn-lock:before {
content: "\e8c8"; } 4692 4692 content: "\e8c8"; }
4693 4693
.mdi-social-cake:before { 4694 4694 .mdi-social-cake:before {
content: "\e8c9"; } 4695 4695 content: "\e8c9"; }
4696 4696
.mdi-social-domain:before { 4697 4697 .mdi-social-domain:before {
content: "\e8ca"; } 4698 4698 content: "\e8ca"; }
4699 4699
.mdi-social-group:before { 4700 4700 .mdi-social-group:before {
content: "\e8cb"; } 4701 4701 content: "\e8cb"; }
4702 4702
.mdi-social-group-add:before { 4703 4703 .mdi-social-group-add:before {
content: "\e8cc"; } 4704 4704 content: "\e8cc"; }
4705 4705
.mdi-social-location-city:before { 4706 4706 .mdi-social-location-city:before {
content: "\e8cd"; } 4707 4707 content: "\e8cd"; }
4708 4708
.mdi-social-mood:before { 4709 4709 .mdi-social-mood:before {
content: "\e8ce"; } 4710 4710 content: "\e8ce"; }
4711 4711
.mdi-social-notifications:before { 4712 4712 .mdi-social-notifications:before {
content: "\e8cf"; } 4713 4713 content: "\e8cf"; }
4714 4714
.mdi-social-notifications-none:before { 4715 4715 .mdi-social-notifications-none:before {
content: "\e8d0"; } 4716 4716 content: "\e8d0"; }
4717 4717
.mdi-social-notifications-off:before { 4718 4718 .mdi-social-notifications-off:before {
content: "\e8d1"; } 4719 4719 content: "\e8d1"; }
4720 4720
.mdi-social-notifications-on:before { 4721 4721 .mdi-social-notifications-on:before {
content: "\e8d2"; } 4722 4722 content: "\e8d2"; }
4723 4723
.mdi-social-notifications-paused:before { 4724 4724 .mdi-social-notifications-paused:before {
content: "\e8d3"; } 4725 4725 content: "\e8d3"; }
4726 4726
.mdi-social-pages:before { 4727 4727 .mdi-social-pages:before {
content: "\e8d4"; } 4728 4728 content: "\e8d4"; }
4729 4729
.mdi-social-party-mode:before { 4730 4730 .mdi-social-party-mode:before {
content: "\e8d5"; } 4731 4731 content: "\e8d5"; }
4732 4732
.mdi-social-people:before { 4733 4733 .mdi-social-people:before {
content: "\e8d6"; } 4734 4734 content: "\e8d6"; }
4735 4735
.mdi-social-people-outline:before { 4736 4736 .mdi-social-people-outline:before {
content: "\e8d7"; } 4737 4737 content: "\e8d7"; }
4738 4738
.mdi-social-person:before { 4739 4739 .mdi-social-person:before {
content: "\e8d8"; } 4740 4740 content: "\e8d8"; }
4741 4741
.mdi-social-person-add:before { 4742 4742 .mdi-social-person-add:before {
content: "\e8d9"; } 4743 4743 content: "\e8d9"; }
4744 4744
.mdi-social-person-outline:before { 4745 4745 .mdi-social-person-outline:before {
content: "\e8da"; } 4746 4746 content: "\e8da"; }
4747 4747
.mdi-social-plus-one:before { 4748 4748 .mdi-social-plus-one:before {
content: "\e8db"; } 4749 4749 content: "\e8db"; }
4750 4750
.mdi-social-poll:before { 4751 4751 .mdi-social-poll:before {
content: "\e8dc"; } 4752 4752 content: "\e8dc"; }
4753 4753
.mdi-social-public:before { 4754 4754 .mdi-social-public:before {
content: "\e8dd"; } 4755 4755 content: "\e8dd"; }
4756 4756
.mdi-social-school:before { 4757 4757 .mdi-social-school:before {
content: "\e8de"; } 4758 4758 content: "\e8de"; }
4759 4759
.mdi-social-share:before { 4760 4760 .mdi-social-share:before {
content: "\e8df"; } 4761 4761 content: "\e8df"; }
4762 4762
.mdi-social-whatshot:before { 4763 4763 .mdi-social-whatshot:before {
content: "\e8e0"; } 4764 4764 content: "\e8e0"; }
4765 4765
.mdi-toggle-check-box:before { 4766 4766 .mdi-toggle-check-box:before {
content: "\e8e1"; } 4767 4767 content: "\e8e1"; }
4768 4768
.mdi-toggle-check-box-outline-blank:before { 4769 4769 .mdi-toggle-check-box-outline-blank:before {
content: "\e8e2"; } 4770 4770 content: "\e8e2"; }
4771 4771
.mdi-toggle-radio-button-off:before { 4772 4772 .mdi-toggle-radio-button-off:before {
content: "\e8e3"; } 4773 4773 content: "\e8e3"; }
4774 4774
.mdi-toggle-radio-button-on:before { 4775 4775 .mdi-toggle-radio-button-on:before {
content: "\e8e4"; } 4776 4776 content: "\e8e4"; }
4777 4777
.container { 4778 4778 .container {
padding: 0 1.5rem; 4779 4779 padding: 0 1.5rem;
margin: 0 auto; 4780 4780 margin: 0 auto;
max-width: 1280px; 4781 4781 max-width: 1280px;
width: 90%; } 4782 4782 width: 90%; }
4783 4783
@media only screen and (min-width : 601px) { 4784 4784 @media only screen and (min-width : 601px) {
.container { 4785 4785 .container {
width: auto; } 4786 4786 width: auto; }
} 4787 4787 }
4788 4788
@media only screen and (min-width : 993px) { 4789 4789 @media only screen and (min-width : 993px) {
.container { 4790 4790 .container {
width: 70%; } 4791 4791 width: 70%; }
} 4792 4792 }
4793 4793
.container .row { 4794 4794 .container .row {
margin-left: -0.75rem; 4795 4795 margin-left: -0.75rem;
margin-right: -0.75rem; } 4796 4796 margin-right: -0.75rem; }
4797 4797
.section { 4798 4798 .section {
padding-top: 1rem; 4799 4799 padding-top: 1rem;
padding-bottom: 1rem; } 4800 4800 padding-bottom: 1rem; }
.section.no-pad { 4801 4801 .section.no-pad {
padding: 0; } 4802 4802 padding: 0; }
.section.no-pad-bot { 4803 4803 .section.no-pad-bot {
padding-bottom: 0; } 4804 4804 padding-bottom: 0; }
.section.no-pad-top { 4805 4805 .section.no-pad-top {
padding-top: 0; } 4806 4806 padding-top: 0; }
4807 4807
.row { 4808 4808 .row {
margin-left: auto; 4809 4809 margin-left: auto;
margin-right: auto; 4810 4810 margin-right: auto;
margin-bottom: 20px; } 4811 4811 margin-bottom: 20px; }
.row:after { 4812 4812 .row:after {
content: ""; 4813 4813 content: "";
display: table; 4814 4814 display: table;
clear: both; } 4815 4815 clear: both; }
.row .col { 4816 4816 .row .col {
float: left; 4817 4817 float: left;
-webkit-box-sizing: border-box; 4818 4818 -webkit-box-sizing: border-box;
-moz-box-sizing: border-box; 4819 4819 -moz-box-sizing: border-box;
box-sizing: border-box; 4820 4820 box-sizing: border-box;
padding: 0 0.75rem; } 4821 4821 padding: 0 0.75rem; }
.row .col.s1 { 4822 4822 .row .col.s1 {
width: 8.33333%; 4823 4823 width: 8.33333%;
margin-left: 0; } 4824 4824 margin-left: 0; }
.row .col.s2 { 4825 4825 .row .col.s2 {
width: 16.66667%; 4826 4826 width: 16.66667%;
margin-left: 0; } 4827 4827 margin-left: 0; }
.row .col.s3 { 4828 4828 .row .col.s3 {
width: 25%; 4829 4829 width: 25%;
margin-left: 0; } 4830 4830 margin-left: 0; }
.row .col.s4 { 4831 4831 .row .col.s4 {
width: 33.33333%; 4832 4832 width: 33.33333%;
margin-left: 0; } 4833 4833 margin-left: 0; }
.row .col.s5 { 4834 4834 .row .col.s5 {
width: 41.66667%; 4835 4835 width: 41.66667%;
margin-left: 0; } 4836 4836 margin-left: 0; }
.row .col.s6 { 4837 4837 .row .col.s6 {
width: 50%; 4838 4838 width: 50%;
margin-left: 0; } 4839 4839 margin-left: 0; }
.row .col.s7 { 4840 4840 .row .col.s7 {
width: 58.33333%; 4841 4841 width: 58.33333%;
margin-left: 0; } 4842 4842 margin-left: 0; }
.row .col.s8 { 4843 4843 .row .col.s8 {
width: 66.66667%; 4844 4844 width: 66.66667%;
margin-left: 0; } 4845 4845 margin-left: 0; }
.row .col.s9 { 4846 4846 .row .col.s9 {
width: 75%; 4847 4847 width: 75%;
margin-left: 0; } 4848 4848 margin-left: 0; }
.row .col.s10 { 4849 4849 .row .col.s10 {
width: 83.33333%; 4850 4850 width: 83.33333%;
margin-left: 0; } 4851 4851 margin-left: 0; }
.row .col.s11 { 4852 4852 .row .col.s11 {
width: 91.66667%; 4853 4853 width: 91.66667%;
margin-left: 0; } 4854 4854 margin-left: 0; }
.row .col.s12 { 4855 4855 .row .col.s12 {
width: 100%; 4856 4856 width: 100%;
margin-left: 0; } 4857 4857 margin-left: 0; }
.row .col.offset-s1 { 4858 4858 .row .col.offset-s1 {
margin-left: 8.33333%; } 4859 4859 margin-left: 8.33333%; }
.row .col.offset-s2 { 4860 4860 .row .col.offset-s2 {
margin-left: 16.66667%; } 4861 4861 margin-left: 16.66667%; }
.row .col.offset-s3 { 4862 4862 .row .col.offset-s3 {
margin-left: 25%; } 4863 4863 margin-left: 25%; }
.row .col.offset-s4 { 4864 4864 .row .col.offset-s4 {
margin-left: 33.33333%; } 4865 4865 margin-left: 33.33333%; }
.row .col.offset-s5 { 4866 4866 .row .col.offset-s5 {
margin-left: 41.66667%; } 4867 4867 margin-left: 41.66667%; }
.row .col.offset-s6 { 4868 4868 .row .col.offset-s6 {
margin-left: 50%; } 4869 4869 margin-left: 50%; }
.row .col.offset-s7 { 4870 4870 .row .col.offset-s7 {
margin-left: 58.33333%; } 4871 4871 margin-left: 58.33333%; }
.row .col.offset-s8 { 4872 4872 .row .col.offset-s8 {
margin-left: 66.66667%; } 4873 4873 margin-left: 66.66667%; }
.row .col.offset-s9 { 4874 4874 .row .col.offset-s9 {
margin-left: 75%; } 4875 4875 margin-left: 75%; }
.row .col.offset-s10 { 4876 4876 .row .col.offset-s10 {
margin-left: 83.33333%; } 4877 4877 margin-left: 83.33333%; }
.row .col.offset-s11 { 4878 4878 .row .col.offset-s11 {
margin-left: 91.66667%; } 4879 4879 margin-left: 91.66667%; }
.row .col.offset-s12 { 4880 4880 .row .col.offset-s12 {
margin-left: 100%; } 4881 4881 margin-left: 100%; }
@media only screen and (min-width : 601px) { 4882 4882 @media only screen and (min-width : 601px) {
.row .col.m1 { 4883 4883 .row .col.m1 {
width: 8.33333%; 4884 4884 width: 8.33333%;
margin-left: 0; } 4885 4885 margin-left: 0; }
4886 4886
.row .col.m2 { 4887 4887 .row .col.m2 {
width: 16.66667%; 4888 4888 width: 16.66667%;
margin-left: 0; } 4889 4889 margin-left: 0; }
4890 4890
.row .col.m3 { 4891 4891 .row .col.m3 {
width: 25%; 4892 4892 width: 25%;
margin-left: 0; } 4893 4893 margin-left: 0; }
4894 4894
.row .col.m4 { 4895 4895 .row .col.m4 {
width: 33.33333%; 4896 4896 width: 33.33333%;
margin-left: 0; } 4897 4897 margin-left: 0; }
4898 4898
.row .col.m5 { 4899 4899 .row .col.m5 {
width: 41.66667%; 4900 4900 width: 41.66667%;
margin-left: 0; } 4901 4901 margin-left: 0; }
4902 4902
.row .col.m6 { 4903 4903 .row .col.m6 {
width: 50%; 4904 4904 width: 50%;
margin-left: 0; } 4905 4905 margin-left: 0; }
4906 4906
.row .col.m7 { 4907 4907 .row .col.m7 {
width: 58.33333%; 4908 4908 width: 58.33333%;
margin-left: 0; } 4909 4909 margin-left: 0; }
4910 4910
.row .col.m8 { 4911 4911 .row .col.m8 {
width: 66.66667%; 4912 4912 width: 66.66667%;
margin-left: 0; } 4913 4913 margin-left: 0; }
4914 4914
.row .col.m9 { 4915 4915 .row .col.m9 {
width: 75%; 4916 4916 width: 75%;
margin-left: 0; } 4917 4917 margin-left: 0; }
4918 4918
.row .col.m10 { 4919 4919 .row .col.m10 {
width: 83.33333%; 4920 4920 width: 83.33333%;
margin-left: 0; } 4921 4921 margin-left: 0; }
4922 4922
.row .col.m11 { 4923 4923 .row .col.m11 {
width: 91.66667%; 4924 4924 width: 91.66667%;
margin-left: 0; } 4925 4925 margin-left: 0; }
4926 4926
.row .col.m12 { 4927 4927 .row .col.m12 {
width: 100%; 4928 4928 width: 100%;
margin-left: 0; } 4929 4929 margin-left: 0; }
4930 4930
.row .col.offset-m1 { 4931 4931 .row .col.offset-m1 {
margin-left: 8.33333%; } 4932 4932 margin-left: 8.33333%; }
4933 4933
.row .col.offset-m2 { 4934 4934 .row .col.offset-m2 {
margin-left: 16.66667%; } 4935 4935 margin-left: 16.66667%; }
4936 4936
.row .col.offset-m3 { 4937 4937 .row .col.offset-m3 {
margin-left: 25%; } 4938 4938 margin-left: 25%; }
4939 4939
.row .col.offset-m4 { 4940 4940 .row .col.offset-m4 {
margin-left: 33.33333%; } 4941 4941 margin-left: 33.33333%; }
4942 4942
.row .col.offset-m5 { 4943 4943 .row .col.offset-m5 {
margin-left: 41.66667%; } 4944 4944 margin-left: 41.66667%; }
4945 4945
.row .col.offset-m6 { 4946 4946 .row .col.offset-m6 {
margin-left: 50%; } 4947 4947 margin-left: 50%; }
4948 4948
.row .col.offset-m7 { 4949 4949 .row .col.offset-m7 {
margin-left: 58.33333%; } 4950 4950 margin-left: 58.33333%; }
4951 4951
.row .col.offset-m8 { 4952 4952 .row .col.offset-m8 {
margin-left: 66.66667%; } 4953 4953 margin-left: 66.66667%; }
4954 4954
.row .col.offset-m9 { 4955 4955 .row .col.offset-m9 {
margin-left: 75%; } 4956 4956 margin-left: 75%; }
4957 4957
.row .col.offset-m10 { 4958 4958 .row .col.offset-m10 {
margin-left: 83.33333%; } 4959 4959 margin-left: 83.33333%; }
4960 4960
.row .col.offset-m11 { 4961 4961 .row .col.offset-m11 {
margin-left: 91.66667%; } 4962 4962 margin-left: 91.66667%; }
4963 4963
.row .col.offset-m12 { 4964 4964 .row .col.offset-m12 {
margin-left: 100%; } 4965 4965 margin-left: 100%; }
} 4966 4966 }
@media only screen and (min-width : 993px) { 4967 4967 @media only screen and (min-width : 993px) {
.row .col.l1 { 4968 4968 .row .col.l1 {
width: 8.33333%; 4969 4969 width: 8.33333%;
margin-left: 0; } 4970 4970 margin-left: 0; }
4971 4971
.row .col.l2 { 4972 4972 .row .col.l2 {
width: 16.66667%; 4973 4973 width: 16.66667%;
margin-left: 0; } 4974 4974 margin-left: 0; }
4975 4975
.row .col.l3 { 4976 4976 .row .col.l3 {
width: 25%; 4977 4977 width: 25%;
margin-left: 0; } 4978 4978 margin-left: 0; }
4979 4979
.row .col.l4 { 4980 4980 .row .col.l4 {
width: 33.33333%; 4981 4981 width: 33.33333%;
margin-left: 0; } 4982 4982 margin-left: 0; }
4983 4983
.row .col.l5 { 4984 4984 .row .col.l5 {
width: 41.66667%; 4985 4985 width: 41.66667%;
margin-left: 0; } 4986 4986 margin-left: 0; }
4987 4987
.row .col.l6 { 4988 4988 .row .col.l6 {
width: 50%; 4989 4989 width: 50%;
margin-left: 0; } 4990 4990 margin-left: 0; }
4991 4991
.row .col.l7 { 4992 4992 .row .col.l7 {
width: 58.33333%; 4993 4993 width: 58.33333%;
margin-left: 0; } 4994 4994 margin-left: 0; }
4995 4995
.row .col.l8 { 4996 4996 .row .col.l8 {
width: 66.66667%; 4997 4997 width: 66.66667%;
margin-left: 0; } 4998 4998 margin-left: 0; }
4999 4999
.row .col.l9 { 5000 5000 .row .col.l9 {
width: 75%; 5001 5001 width: 75%;
margin-left: 0; } 5002 5002 margin-left: 0; }
5003 5003
.row .col.l10 { 5004 5004 .row .col.l10 {
width: 83.33333%; 5005 5005 width: 83.33333%;
margin-left: 0; } 5006 5006 margin-left: 0; }
5007 5007
.row .col.l11 { 5008 5008 .row .col.l11 {
width: 91.66667%; 5009 5009 width: 91.66667%;
margin-left: 0; } 5010 5010 margin-left: 0; }
5011 5011
.row .col.l12 { 5012 5012 .row .col.l12 {
width: 100%; 5013 5013 width: 100%;
margin-left: 0; } 5014 5014 margin-left: 0; }
5015 5015
.row .col.offset-l1 { 5016 5016 .row .col.offset-l1 {
margin-left: 8.33333%; } 5017 5017 margin-left: 8.33333%; }
5018 5018
.row .col.offset-l2 { 5019 5019 .row .col.offset-l2 {
margin-left: 16.66667%; } 5020 5020 margin-left: 16.66667%; }
5021 5021
.row .col.offset-l3 { 5022 5022 .row .col.offset-l3 {
margin-left: 25%; } 5023 5023 margin-left: 25%; }
5024 5024
.row .col.offset-l4 { 5025 5025 .row .col.offset-l4 {
margin-left: 33.33333%; } 5026 5026 margin-left: 33.33333%; }
5027 5027
.row .col.offset-l5 { 5028 5028 .row .col.offset-l5 {
margin-left: 41.66667%; } 5029 5029 margin-left: 41.66667%; }
5030 5030
.row .col.offset-l6 { 5031 5031 .row .col.offset-l6 {
margin-left: 50%; } 5032 5032 margin-left: 50%; }
5033 5033
.row .col.offset-l7 { 5034 5034 .row .col.offset-l7 {
margin-left: 58.33333%; } 5035 5035 margin-left: 58.33333%; }
5036 5036
.row .col.offset-l8 { 5037 5037 .row .col.offset-l8 {
margin-left: 66.66667%; } 5038 5038 margin-left: 66.66667%; }
5039 5039
.row .col.offset-l9 { 5040 5040 .row .col.offset-l9 {
margin-left: 75%; } 5041 5041 margin-left: 75%; }
5042 5042
.row .col.offset-l10 { 5043 5043 .row .col.offset-l10 {
margin-left: 83.33333%; } 5044 5044 margin-left: 83.33333%; }
5045 5045
.row .col.offset-l11 { 5046 5046 .row .col.offset-l11 {
margin-left: 91.66667%; } 5047 5047 margin-left: 91.66667%; }
5048 5048
.row .col.offset-l12 { 5049 5049 .row .col.offset-l12 {
margin-left: 100%; } 5050 5050 margin-left: 100%; }
} 5051 5051 }
5052 5052
nav { 5053 5053 nav {
color: #fff; 5054 5054 color: #fff;
background-color: #3e1944; 5055 5055 background-color: #3e1944;
width: 100%; 5056 5056 width: 100%;
height: 56px; 5057 5057 height: 56px;
line-height: 56px; } 5058 5058 line-height: 56px; }
nav a { 5059 5059 nav a {
color: #fff; } 5060 5060 color: #fff; }
nav .nav-wrapper { 5061 5061 nav .nav-wrapper {
position: relative; 5062 5062 position: relative;
height: 100%; } 5063 5063 height: 100%; }
nav .nav-wrapper i { 5064 5064 nav .nav-wrapper i {
display: block; 5065 5065 display: block;
font-size: 2rem; } 5066 5066 font-size: 2rem; }
@media only screen and (min-width : 993px) { 5067 5067 @media only screen and (min-width : 993px) {
nav a.button-collapse { 5068 5068 nav a.button-collapse {
display: none; } 5069 5069 display: none; }
} 5070 5070 }
nav .button-collapse { 5071 5071 nav .button-collapse {
float: left; 5072 5072 float: left;
position: relative; 5073 5073 position: relative;
z-index: 1; 5074 5074 z-index: 1;
height: 56px; } 5075 5075 height: 56px; }
nav .button-collapse i { 5076 5076 nav .button-collapse i {
font-size: 2.7rem; 5077 5077 font-size: 2.7rem;
height: 56px; 5078 5078 height: 56px;
line-height: 56px; } 5079 5079 line-height: 56px; }
nav .brand-logo { 5080 5080 nav .brand-logo {
position: absolute; 5081 5081 position: absolute;
color: #fff; 5082 5082 color: #fff;
display: inline-block; 5083 5083 display: inline-block;
font-size: 2.1rem; 5084 5084 font-size: 2.1rem;
padding: 0; } 5085 5085 padding: 0; }
nav .brand-logo.center { 5086 5086 nav .brand-logo.center {
left: 50%; 5087 5087 left: 50%;
-webkit-transform: translateX(-50%); 5088 5088 -webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%); 5089 5089 -moz-transform: translateX(-50%);
-ms-transform: translateX(-50%); 5090 5090 -ms-transform: translateX(-50%);
-o-transform: translateX(-50%); 5091 5091 -o-transform: translateX(-50%);
transform: translateX(-50%); } 5092 5092 transform: translateX(-50%); }
@media only screen and (max-width : 992px) { 5093 5093 @media only screen and (max-width : 992px) {
nav .brand-logo { 5094 5094 nav .brand-logo {
left: 50%; 5095 5095 left: 50%;
-webkit-transform: translateX(-50%); 5096 5096 -webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%); 5097 5097 -moz-transform: translateX(-50%);
-ms-transform: translateX(-50%); 5098 5098 -ms-transform: translateX(-50%);
-o-transform: translateX(-50%); 5099 5099 -o-transform: translateX(-50%);
transform: translateX(-50%); } } 5100 5100 transform: translateX(-50%); } }
nav .brand-logo.right { 5101 5101 nav .brand-logo.right {
right: 0.5rem; 5102 5102 right: 0.5rem;
padding: 0; } 5103 5103 padding: 0; }
nav ul { 5104 5104 nav ul {
margin: 0; } 5105 5105 margin: 0; }
nav ul li { 5106 5106 nav ul li {
-webkit-transition: background-color 0.3s; 5107 5107 -webkit-transition: background-color 0.3s;
-moz-transition: background-color 0.3s; 5108 5108 -moz-transition: background-color 0.3s;
-o-transition: background-color 0.3s; 5109 5109 -o-transition: background-color 0.3s;
-ms-transition: background-color 0.3s; 5110 5110 -ms-transition: background-color 0.3s;
transition: background-color 0.3s; 5111 5111 transition: background-color 0.3s;
float: left; 5112 5112 float: left;
padding: 0; } 5113 5113 padding: 0; }
nav ul li:hover, nav ul li.active { 5114 5114 nav ul li:hover, nav ul li.active {
background-color: rgba(0, 0, 0, 0.1); } 5115 5115 background-color: rgba(0, 0, 0, 0.1); }
nav ul a { 5116 5116 nav ul a {
font-size: 1rem; 5117 5117 font-size: 1rem;
color: #fff; 5118 5118 color: #fff;
display: block; 5119 5119 display: block;
padding: 0 15px; } 5120 5120 padding: 0 15px; }
nav ul.left { 5121 5121 nav ul.left {
float: left; } 5122 5122 float: left; }
nav .input-field { 5123 5123 nav .input-field {
margin: 0; } 5124 5124 margin: 0; }
nav .input-field input { 5125 5125 nav .input-field input {
height: 100%; 5126 5126 height: 100%;
font-size: 1.2rem; 5127 5127 font-size: 1.2rem;
border: none; 5128 5128 border: none;
padding-left: 2rem; } 5129 5129 padding-left: 2rem; }
nav .input-field input:focus, nav .input-field input[type=text]:valid, nav .input-field input[type=password]:valid, nav .input-field input[type=email]:valid, nav .input-field input[type=url]:valid, nav .input-field input[type=date]:valid { 5130 5130 nav .input-field input:focus, nav .input-field input[type=text]:valid, nav .input-field input[type=password]:valid, nav .input-field input[type=email]:valid, nav .input-field input[type=url]:valid, nav .input-field input[type=date]:valid {
border: none; 5131 5131 border: none;
box-shadow: none; } 5132 5132 box-shadow: none; }
nav .input-field label { 5133 5133 nav .input-field label {
top: 0; 5134 5134 top: 0;
left: 0; } 5135 5135 left: 0; }
nav .input-field label i { 5136 5136 nav .input-field label i {
color: rgba(255, 255, 255, 0.7); 5137 5137 color: rgba(255, 255, 255, 0.7);
-webkit-transition: color 0.3s; 5138 5138 -webkit-transition: color 0.3s;
-moz-transition: color 0.3s; 5139 5139 -moz-transition: color 0.3s;
-o-transition: color 0.3s; 5140 5140 -o-transition: color 0.3s;
-ms-transition: color 0.3s; 5141 5141 -ms-transition: color 0.3s;
transition: color 0.3s; } 5142 5142 transition: color 0.3s; }
nav .input-field label.active i { 5143 5143 nav .input-field label.active i {
color: #fff; } 5144 5144 color: #fff; }
nav .input-field label.active { 5145 5145 nav .input-field label.active {
-webkit-transform: translateY(0); 5146 5146 -webkit-transform: translateY(0);
-moz-transform: translateY(0); 5147 5147 -moz-transform: translateY(0);
-ms-transform: translateY(0); 5148 5148 -ms-transform: translateY(0);
-o-transform: translateY(0); 5149 5149 -o-transform: translateY(0);
transform: translateY(0); } 5150 5150 transform: translateY(0); }
5151 5151
.navbar-fixed { 5152 5152 .navbar-fixed {
position: relative; 5153 5153 position: relative;
height: 56px; 5154 5154 height: 56px;
z-index: 998; } 5155 5155 z-index: 998; }
.navbar-fixed nav { 5156 5156 .navbar-fixed nav {
position: fixed; } 5157 5157 position: fixed; }
5158 5158
@media only screen and (min-width : 601px) { 5159 5159 @media only screen and (min-width : 601px) {
nav, nav .nav-wrapper i, nav a.button-collapse, nav a.button-collapse i { 5160 5160 nav, nav .nav-wrapper i, nav a.button-collapse, nav a.button-collapse i {
height: 64px; 5161 5161 height: 64px;
line-height: 64px; } 5162 5162 line-height: 64px; }
5163 5163
.navbar-fixed { 5164 5164 .navbar-fixed {
height: 64px; } 5165 5165 height: 64px; }
} 5166 5166 }
5167 5167
@font-face { 5168 5168 @font-face {
font-family: "Roboto"; 5169 5169 font-family: "Roboto";
src: url("../font/roboto/Roboto-Thin.woff2") format("woff2"), url("../font/roboto/Roboto-Thin.woff") format("woff"), url("../font/roboto/Roboto-Thin.ttf") format("truetype"); 5170 5170 src: url("../font/roboto/Roboto-Thin.woff2") format("woff2"), url("../font/roboto/Roboto-Thin.woff") format("woff"), url("../font/roboto/Roboto-Thin.ttf") format("truetype");
font-weight: 200; } 5171 5171 font-weight: 200; }
5172 5172
@font-face { 5173 5173 @font-face {
font-family: "Roboto"; 5174 5174 font-family: "Roboto";
src: url("../font/roboto/Roboto-Light.woff2") format("woff2"), url("../font/roboto/Roboto-Light.woff") format("woff"), url("../font/roboto/Roboto-Light.ttf") format("truetype"); 5175 5175 src: url("../font/roboto/Roboto-Light.woff2") format("woff2"), url("../font/roboto/Roboto-Light.woff") format("woff"), url("../font/roboto/Roboto-Light.ttf") format("truetype");
font-weight: 300; } 5176 5176 font-weight: 300; }
5177 5177
@font-face { 5178 5178 @font-face {
font-family: "Roboto"; 5179 5179 font-family: "Roboto";
src: url("../font/roboto/Roboto-Regular.woff2") format("woff2"), url("../font/roboto/Roboto-Regular.woff") format("woff"), url("../font/roboto/Roboto-Regular.ttf") format("truetype"); 5180 5180 src: url("../font/roboto/Roboto-Regular.woff2") format("woff2"), url("../font/roboto/Roboto-Regular.woff") format("woff"), url("../font/roboto/Roboto-Regular.ttf") format("truetype");
font-weight: 400; } 5181 5181 font-weight: 400; }
5182 5182
@font-face { 5183 5183 @font-face {
font-family: "Roboto"; 5184 5184 font-family: "Roboto";
src: url("../font/roboto/Roboto-Medium.woff2") format("woff2"), url("../font/roboto/Roboto-Medium.woff") format("woff"), url("../font/roboto/Roboto-Medium.ttf") format("truetype"); 5185 5185 src: url("../font/roboto/Roboto-Medium.woff2") format("woff2"), url("../font/roboto/Roboto-Medium.woff") format("woff"), url("../font/roboto/Roboto-Medium.ttf") format("truetype");
font-weight: 500; } 5186 5186 font-weight: 500; }
5187 5187
@font-face { 5188 5188 @font-face {
font-family: "Roboto"; 5189 5189 font-family: "Roboto";
src: url("../font/roboto/Roboto-Bold.woff2") format("woff2"), url("../font/roboto/Roboto-Bold.woff") format("woff"), url("../font/roboto/Roboto-Bold.ttf") format("truetype"); 5190 5190 src: url("../font/roboto/Roboto-Bold.woff2") format("woff2"), url("../font/roboto/Roboto-Bold.woff") format("woff"), url("../font/roboto/Roboto-Bold.ttf") format("truetype");
font-weight: 700; } 5191 5191 font-weight: 700; }
5192 5192
a { 5193 5193 a {
text-decoration: none; } 5194 5194 text-decoration: none; }
5195 5195
html { 5196 5196 html {
line-height: 1.5; 5197 5197 line-height: 1.5;
font-family: "Roboto", sans-serif; 5198 5198 font-family: "Roboto", sans-serif;
font-weight: normal; 5199 5199 font-weight: normal;
color: rgba(0, 0, 0, 0.87); } 5200 5200 color: rgba(0, 0, 0, 0.87); }
@media only screen and (min-width: 0) { 5201 5201 @media only screen and (min-width: 0) {
html { 5202 5202 html {
font-size: 14px; } } 5203 5203 font-size: 14px; } }
@media only screen and (min-width: 992px) { 5204 5204 @media only screen and (min-width: 992px) {
html { 5205 5205 html {
font-size: 14.5px; } } 5206 5206 font-size: 14.5px; } }
@media only screen and (min-width: 1200px) { 5207 5207 @media only screen and (min-width: 1200px) {
html { 5208 5208 html {
font-size: 15px; } } 5209 5209 font-size: 15px; } }
5210 5210
h1, h2, h3, h4, h5, h6 { 5211 5211 h1, h2, h3, h4, h5, h6 {
font-weight: 400; } 5212 5212 font-weight: 400; }
5213 5213
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { 5214 5214 h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
font-weight: inherit; } 5215 5215 font-weight: inherit; }
5216 5216
h1 { 5217 5217 h1 {
font-size: 4.2rem; 5218 5218 font-size: 4.2rem;
line-height: 4.62rem; 5219 5219 line-height: 4.62rem;
margin: 2.1rem 0 1.68rem 0; } 5220 5220 margin: 2.1rem 0 1.68rem 0; }
5221 5221
h2 { 5222 5222 h2 {
font-size: 3.56rem; 5223 5223 font-size: 3.56rem;
line-height: 3.916rem; 5224 5224 line-height: 3.916rem;
margin: 1.78rem 0 1.424rem 0; } 5225 5225 margin: 1.78rem 0 1.424rem 0; }
5226 5226
h3 { 5227 5227 h3 {
font-size: 2.92rem; 5228 5228 font-size: 2.92rem;
line-height: 3.212rem; 5229 5229 line-height: 3.212rem;
margin: 1.46rem 0 1.168rem 0; } 5230 5230 margin: 1.46rem 0 1.168rem 0; }
5231 5231
h4 { 5232 5232 h4 {
font-size: 2.28rem; 5233 5233 font-size: 2.28rem;
line-height: 2.508rem; 5234 5234 line-height: 2.508rem;
margin: 1.14rem 0 0.912rem 0; } 5235 5235 margin: 1.14rem 0 0.912rem 0; }
5236 5236
h5 { 5237 5237 h5 {
font-size: 1.64rem; 5238 5238 font-size: 1.64rem;
line-height: 1.804rem; 5239 5239 line-height: 1.804rem;
margin: 0.82rem 0 0.656rem 0; } 5240 5240 margin: 0.82rem 0 0.656rem 0; }
5241 5241
h6 { 5242 5242 h6 {
font-size: 1rem; 5243 5243 font-size: 1rem;
line-height: 1.1rem; 5244 5244 line-height: 1.1rem;
margin: 0.5rem 0 0.4rem 0; } 5245 5245 margin: 0.5rem 0 0.4rem 0; }
5246 5246
em { 5247 5247 em {
font-style: italic; } 5248 5248 font-style: italic; }
5249 5249
strong { 5250 5250 strong {
font-weight: 500; } 5251 5251 font-weight: 500; }
5252 5252
small { 5253 5253 small {
font-size: 75%; } 5254 5254 font-size: 75%; }
5255 5255
.light, footer.page-footer .footer-copyright { 5256 5256 .light, footer.page-footer .footer-copyright {
font-weight: 300; } 5257 5257 font-weight: 300; }
5258 5258
.thin { 5259 5259 .thin {
font-weight: 200; } 5260 5260 font-weight: 200; }
5261 5261
.flow-text { 5262 5262 .flow-text {
font-weight: 300; } 5263 5263 font-weight: 300; }
@media only screen and (min-width: 360px) { 5264 5264 @media only screen and (min-width: 360px) {
.flow-text { 5265 5265 .flow-text {
font-size: 1.2rem; } } 5266 5266 font-size: 1.2rem; } }
@media only screen and (min-width: 0px) { 5267 5267 @media only screen and (min-width: 0px) {
.flow-text { 5268 5268 .flow-text {
line-height: 0.8rem; } } 5269 5269 line-height: 0.8rem; } }
@media only screen and (min-width: 390px) { 5270 5270 @media only screen and (min-width: 390px) {
.flow-text { 5271 5271 .flow-text {
font-size: 1.224rem; } } 5272 5272 font-size: 1.224rem; } }
@media only screen and (min-width: 30px) { 5273 5273 @media only screen and (min-width: 30px) {
.flow-text { 5274 5274 .flow-text {
line-height: 0.904rem; } } 5275 5275 line-height: 0.904rem; } }
@media only screen and (min-width: 420px) { 5276 5276 @media only screen and (min-width: 420px) {
.flow-text { 5277 5277 .flow-text {
font-size: 1.248rem; } } 5278 5278 font-size: 1.248rem; } }
@media only screen and (min-width: 60px) { 5279 5279 @media only screen and (min-width: 60px) {
.flow-text { 5280 5280 .flow-text {
line-height: 1.008rem; } } 5281 5281 line-height: 1.008rem; } }
@media only screen and (min-width: 450px) { 5282 5282 @media only screen and (min-width: 450px) {
.flow-text { 5283 5283 .flow-text {
font-size: 1.272rem; } } 5284 5284 font-size: 1.272rem; } }
@media only screen and (min-width: 90px) { 5285 5285 @media only screen and (min-width: 90px) {
.flow-text { 5286 5286 .flow-text {
line-height: 1.112rem; } } 5287 5287 line-height: 1.112rem; } }
@media only screen and (min-width: 480px) { 5288 5288 @media only screen and (min-width: 480px) {
.flow-text { 5289 5289 .flow-text {
font-size: 1.296rem; } } 5290 5290 font-size: 1.296rem; } }
@media only screen and (min-width: 120px) { 5291 5291 @media only screen and (min-width: 120px) {
.flow-text { 5292 5292 .flow-text {
line-height: 1.216rem; } } 5293 5293 line-height: 1.216rem; } }
@media only screen and (min-width: 510px) { 5294 5294 @media only screen and (min-width: 510px) {
.flow-text { 5295 5295 .flow-text {
font-size: 1.32rem; } } 5296 5296 font-size: 1.32rem; } }
@media only screen and (min-width: 150px) { 5297 5297 @media only screen and (min-width: 150px) {
.flow-text { 5298 5298 .flow-text {
line-height: 1.32rem; } } 5299 5299 line-height: 1.32rem; } }
@media only screen and (min-width: 540px) { 5300 5300 @media only screen and (min-width: 540px) {
.flow-text { 5301 5301 .flow-text {
font-size: 1.344rem; } } 5302 5302 font-size: 1.344rem; } }
@media only screen and (min-width: 180px) { 5303 5303 @media only screen and (min-width: 180px) {
.flow-text { 5304 5304 .flow-text {
line-height: 1.424rem; } } 5305 5305 line-height: 1.424rem; } }
@media only screen and (min-width: 570px) { 5306 5306 @media only screen and (min-width: 570px) {
.flow-text { 5307 5307 .flow-text {
font-size: 1.368rem; } } 5308 5308 font-size: 1.368rem; } }
@media only screen and (min-width: 210px) { 5309 5309 @media only screen and (min-width: 210px) {
.flow-text { 5310 5310 .flow-text {
line-height: 1.528rem; } } 5311 5311 line-height: 1.528rem; } }
@media only screen and (min-width: 600px) { 5312 5312 @media only screen and (min-width: 600px) {
.flow-text { 5313 5313 .flow-text {
font-size: 1.392rem; } } 5314 5314 font-size: 1.392rem; } }
@media only screen and (min-width: 240px) { 5315 5315 @media only screen and (min-width: 240px) {
.flow-text { 5316 5316 .flow-text {
line-height: 1.632rem; } } 5317 5317 line-height: 1.632rem; } }
@media only screen and (min-width: 630px) { 5318 5318 @media only screen and (min-width: 630px) {
.flow-text { 5319 5319 .flow-text {
font-size: 1.416rem; } } 5320 5320 font-size: 1.416rem; } }
@media only screen and (min-width: 270px) { 5321 5321 @media only screen and (min-width: 270px) {
.flow-text { 5322 5322 .flow-text {
line-height: 1.736rem; } } 5323 5323 line-height: 1.736rem; } }
@media only screen and (min-width: 660px) { 5324 5324 @media only screen and (min-width: 660px) {
.flow-text { 5325 5325 .flow-text {
font-size: 1.44rem; } } 5326 5326 font-size: 1.44rem; } }
@media only screen and (min-width: 300px) { 5327 5327 @media only screen and (min-width: 300px) {
.flow-text { 5328 5328 .flow-text {
line-height: 1.84rem; } } 5329 5329 line-height: 1.84rem; } }
@media only screen and (min-width: 690px) { 5330 5330 @media only screen and (min-width: 690px) {
.flow-text { 5331 5331 .flow-text {
font-size: 1.464rem; } } 5332 5332 font-size: 1.464rem; } }
@media only screen and (min-width: 330px) { 5333 5333 @media only screen and (min-width: 330px) {
.flow-text { 5334 5334 .flow-text {
line-height: 1.944rem; } } 5335 5335 line-height: 1.944rem; } }
@media only screen and (min-width: 720px) { 5336 5336 @media only screen and (min-width: 720px) {
.flow-text { 5337 5337 .flow-text {
font-size: 1.488rem; } } 5338 5338 font-size: 1.488rem; } }
@media only screen and (min-width: 360px) { 5339 5339 @media only screen and (min-width: 360px) {
.flow-text { 5340 5340 .flow-text {
line-height: 2.048rem; } } 5341 5341 line-height: 2.048rem; } }
@media only screen and (min-width: 750px) { 5342 5342 @media only screen and (min-width: 750px) {
.flow-text { 5343 5343 .flow-text {
font-size: 1.512rem; } } 5344 5344 font-size: 1.512rem; } }
@media only screen and (min-width: 390px) { 5345 5345 @media only screen and (min-width: 390px) {
.flow-text { 5346 5346 .flow-text {
line-height: 2.152rem; } } 5347 5347 line-height: 2.152rem; } }
@media only screen and (min-width: 780px) { 5348 5348 @media only screen and (min-width: 780px) {
.flow-text { 5349 5349 .flow-text {
font-size: 1.536rem; } } 5350 5350 font-size: 1.536rem; } }
@media only screen and (min-width: 420px) { 5351 5351 @media only screen and (min-width: 420px) {
.flow-text { 5352 5352 .flow-text {
line-height: 2.256rem; } } 5353 5353 line-height: 2.256rem; } }
@media only screen and (min-width: 810px) { 5354 5354 @media only screen and (min-width: 810px) {
.flow-text { 5355 5355 .flow-text {
font-size: 1.56rem; } } 5356 5356 font-size: 1.56rem; } }
@media only screen and (min-width: 450px) { 5357 5357 @media only screen and (min-width: 450px) {
.flow-text { 5358 5358 .flow-text {
line-height: 2.36rem; } } 5359 5359 line-height: 2.36rem; } }
@media only screen and (min-width: 840px) { 5360 5360 @media only screen and (min-width: 840px) {
.flow-text { 5361 5361 .flow-text {
font-size: 1.584rem; } } 5362 5362 font-size: 1.584rem; } }
@media only screen and (min-width: 480px) { 5363 5363 @media only screen and (min-width: 480px) {
.flow-text { 5364 5364 .flow-text {
line-height: 2.464rem; } } 5365 5365 line-height: 2.464rem; } }
@media only screen and (min-width: 870px) { 5366 5366 @media only screen and (min-width: 870px) {
.flow-text { 5367 5367 .flow-text {
font-size: 1.608rem; } } 5368 5368 font-size: 1.608rem; } }
@media only screen and (min-width: 510px) { 5369 5369 @media only screen and (min-width: 510px) {
.flow-text { 5370 5370 .flow-text {
line-height: 2.568rem; } } 5371 5371 line-height: 2.568rem; } }
@media only screen and (min-width: 900px) { 5372 5372 @media only screen and (min-width: 900px) {
.flow-text { 5373 5373 .flow-text {
font-size: 1.632rem; } } 5374 5374 font-size: 1.632rem; } }
@media only screen and (min-width: 540px) { 5375 5375 @media only screen and (min-width: 540px) {
.flow-text { 5376 5376 .flow-text {
line-height: 2.672rem; } } 5377 5377 line-height: 2.672rem; } }
@media only screen and (min-width: 930px) { 5378 5378 @media only screen and (min-width: 930px) {
.flow-text { 5379 5379 .flow-text {
font-size: 1.656rem; } } 5380 5380 font-size: 1.656rem; } }
@media only screen and (min-width: 570px) { 5381 5381 @media only screen and (min-width: 570px) {
.flow-text { 5382 5382 .flow-text {
line-height: 2.776rem; } } 5383 5383 line-height: 2.776rem; } }
@media only screen and (min-width: 960px) { 5384 5384 @media only screen and (min-width: 960px) {
.flow-text { 5385 5385 .flow-text {
font-size: 1.68rem; } } 5386 5386 font-size: 1.68rem; } }
@media only screen and (min-width: 600px) { 5387 5387 @media only screen and (min-width: 600px) {
.flow-text { 5388 5388 .flow-text {
line-height: 2.88rem; } } 5389 5389 line-height: 2.88rem; } }
5390 5390
.card-panel { 5391 5391 .card-panel {
padding: 20px; 5392 5392 padding: 20px;
margin: 0.5rem 0 1rem 0; 5393 5393 margin: 0.5rem 0 1rem 0;
border-radius: 2px; 5394 5394 border-radius: 2px;
background-color: #fff; } 5395 5395 background-color: #fff; }
5396 5396
.card { 5397 5397 .card {
position: relative; 5398 5398 position: relative;
overflow: hidden; 5399 5399 overflow: hidden;
margin: 0.5rem 0 1rem 0; 5400 5400 margin: 0.5rem 0 1rem 0;
background-color: #fff; 5401 5401 background-color: #fff;
border-radius: 2px; } 5402 5402 border-radius: 2px; }
.card .card-title { 5403 5403 .card .card-title {
color: #fff; 5404 5404 color: #fff;
font-size: 24px; 5405 5405 font-size: 24px;
font-weight: 300; } 5406 5406 font-weight: 300; }
.card .card-title.activator { 5407 5407 .card .card-title.activator {
cursor: pointer; } 5408 5408 cursor: pointer; }
.card.small, .card.medium, .card.large { 5409 5409 .card.small, .card.medium, .card.large {
position: relative; } 5410 5410 position: relative; }
.card.small .card-image, .card.medium .card-image, .card.large .card-image { 5411 5411 .card.small .card-image, .card.medium .card-image, .card.large .card-image {
overflow: hidden; } 5412 5412 overflow: hidden; }
.card.small .card-content, .card.medium .card-content, .card.large .card-content { 5413 5413 .card.small .card-content, .card.medium .card-content, .card.large .card-content {
overflow: hidden; } 5414 5414 overflow: hidden; }
.card.small .card-action, .card.medium .card-action, .card.large .card-action { 5415 5415 .card.small .card-action, .card.medium .card-action, .card.large .card-action {
position: absolute; 5416 5416 position: absolute;
bottom: 0; 5417 5417 bottom: 0;
left: 0; 5418 5418 left: 0;
right: 0; } 5419 5419 right: 0; }
.card.small { 5420 5420 .card.small {
height: 300px; } 5421 5421 height: 300px; }
.card.small .card-image { 5422 5422 .card.small .card-image {
height: 150px; } 5423 5423 height: 150px; }
.card.small .card-content { 5424 5424 .card.small .card-content {
height: 150px; } 5425 5425 height: 150px; }
.card.medium { 5426 5426 .card.medium {
height: 400px; } 5427 5427 height: 400px; }
.card.medium .card-image { 5428 5428 .card.medium .card-image {
height: 250px; } 5429 5429 height: 250px; }
.card.medium .card-content { 5430 5430 .card.medium .card-content {
height: 150px; } 5431 5431 height: 150px; }
.card.large { 5432 5432 .card.large {
height: 500px; } 5433 5433 height: 500px; }
.card.large .card-image { 5434 5434 .card.large .card-image {
height: 330px; } 5435 5435 height: 330px; }
.card.large .card-content { 5436 5436 .card.large .card-content {
height: 170px; } 5437 5437 height: 170px; }
.card .card-image { 5438 5438 .card .card-image {
position: relative; } 5439 5439 position: relative; }
.card .card-image img { 5440 5440 .card .card-image img {
border-radius: 2px 2px 0 0; 5441 5441 border-radius: 2px 2px 0 0;
position: relative; 5442 5442 position: relative;
left: 0; 5443 5443 left: 0;
right: 0; 5444 5444 right: 0;
top: 0; 5445 5445 top: 0;
bottom: 0; 5446 5446 bottom: 0;
width: 100%; } 5447 5447 width: 100%; }
.card .card-image .card-title { 5448 5448 .card .card-image .card-title {
position: absolute; 5449 5449 position: absolute;
bottom: 0; 5450 5450 bottom: 0;
left: 0; 5451 5451 left: 0;
padding: 20px; } 5452 5452 padding: 20px; }
.card .card-content { 5453 5453 .card .card-content {
padding: 20px; 5454 5454 padding: 20px;
border-radius: 0 0 2px 2px; } 5455 5455 border-radius: 0 0 2px 2px; }
.card .card-content p { 5456 5456 .card .card-content p {
margin: 0; 5457 5457 margin: 0;
color: inherit; } 5458 5458 color: inherit; }
.card .card-content .card-title { 5459 5459 .card .card-content .card-title {
line-height: 48px; } 5460 5460 line-height: 48px; }
.card .card-action { 5461 5461 .card .card-action {
border-top: 1px solid rgba(160, 160, 160, 0.2); 5462 5462 border-top: 1px solid rgba(160, 160, 160, 0.2);
padding: 20px; } 5463 5463 padding: 20px; }
.card .card-action a { 5464 5464 .card .card-action a {
color: #ffab40; 5465 5465 color: #ffab40;
margin-right: 20px; 5466 5466 margin-right: 20px;
-webkit-transition: color 0.3s ease; 5467 5467 -webkit-transition: color 0.3s ease;
-moz-transition: color 0.3s ease; 5468 5468 -moz-transition: color 0.3s ease;
-o-transition: color 0.3s ease; 5469 5469 -o-transition: color 0.3s ease;
-ms-transition: color 0.3s ease; 5470 5470 -ms-transition: color 0.3s ease;
transition: color 0.3s ease; 5471 5471 transition: color 0.3s ease;
text-transform: uppercase; } 5472 5472 text-transform: uppercase; }
.card .card-action a:hover { 5473 5473 .card .card-action a:hover {
color: #ffd8a6; } 5474 5474 color: #ffd8a6; }
.card .card-reveal { 5475 5475 .card .card-reveal {
padding: 20px; 5476 5476 padding: 20px;
position: absolute; 5477 5477 position: absolute;
background-color: #FFF; 5478 5478 background-color: #FFF;
width: 100%; 5479 5479 width: 100%;
overflow-y: auto; 5480 5480 overflow-y: auto;
top: 100%; 5481 5481 top: 100%;
height: 100%; 5482 5482 height: 100%;
z-index: 1; 5483 5483 z-index: 1;
display: none; } 5484 5484 display: none; }
.card .card-reveal .card-title { 5485 5485 .card .card-reveal .card-title {
cursor: pointer; 5486 5486 cursor: pointer;
display: block; } 5487 5487 display: block; }
5488 5488
#toast-container { 5489 5489 #toast-container {
display: block; 5490 5490 display: block;
position: fixed; 5491 5491 position: fixed;
z-index: 1001; } 5492 5492 z-index: 1001; }
@media only screen and (max-width : 600px) { 5493 5493 @media only screen and (max-width : 600px) {
#toast-container { 5494 5494 #toast-container {
min-width: 100%; 5495 5495 min-width: 100%;
bottom: 0%; } } 5496 5496 bottom: 0%; } }
@media only screen and (min-width : 601px) and (max-width : 992px) { 5497 5497 @media only screen and (min-width : 601px) and (max-width : 992px) {
#toast-container { 5498 5498 #toast-container {
min-width: 30%; 5499 5499 min-width: 30%;
left: 5%; 5500 5500 left: 5%;
bottom: 7%; } } 5501 5501 bottom: 7%; } }
@media only screen and (min-width : 993px) { 5502 5502 @media only screen and (min-width : 993px) {
#toast-container { 5503 5503 #toast-container {
min-width: 8%; 5504 5504 min-width: 8%;
top: 10%; 5505 5505 top: 10%;
right: 7%; } } 5506 5506 right: 7%; } }
5507 5507
.toast { 5508 5508 .toast {
border-radius: 2px; 5509 5509 border-radius: 2px;
top: 0; 5510 5510 top: 0;
width: auto; 5511 5511 width: auto;
clear: both; 5512 5512 clear: both;
margin-top: 10px; 5513 5513 margin-top: 10px;
position: relative; 5514 5514 position: relative;
max-width: 100%; 5515 5515 max-width: 100%;
height: 48px; 5516 5516 height: 48px;
line-height: 48px; 5517 5517 line-height: 48px;
background-color: #323232; 5518 5518 background-color: #323232;
padding: 0 25px; 5519 5519 padding: 0 25px;
font-size: 1.1rem; 5520 5520 font-size: 1.1rem;
font-weight: 300; 5521 5521 font-weight: 300;
color: #fff; 5522 5522 color: #fff;
display: -webkit-box; 5523 5523 display: -webkit-box;
display: -moz-box; 5524 5524 display: -moz-box;
display: -ms-flexbox; 5525 5525 display: -ms-flexbox;
display: -webkit-flex; 5526 5526 display: -webkit-flex;
display: flex; 5527 5527 display: flex;
-webkit-flex-align: center; 5528 5528 -webkit-flex-align: center;
-ms-flex-align: center; 5529 5529 -ms-flex-align: center;
-webkit-align-items: center; 5530 5530 -webkit-align-items: center;
align-items: center; 5531 5531 align-items: center;
-webkit-justify-content: space-between; 5532 5532 -webkit-justify-content: space-between;
justify-content: space-between; } 5533 5533 justify-content: space-between; }
.toast .btn, .toast .btn-large, .toast .btn-flat { 5534 5534 .toast .btn, .toast .btn-large, .toast .btn-flat {
margin: 0; 5535 5535 margin: 0;
margin-left: 3rem; } 5536 5536 margin-left: 3rem; }
.toast.rounded { 5537 5537 .toast.rounded {
border-radius: 24px; } 5538 5538 border-radius: 24px; }
@media only screen and (max-width : 600px) { 5539 5539 @media only screen and (max-width : 600px) {
.toast { 5540 5540 .toast {
width: 100%; 5541 5541 width: 100%;
border-radius: 0; } } 5542 5542 border-radius: 0; } }
@media only screen and (min-width : 601px) and (max-width : 992px) { 5543 5543 @media only screen and (min-width : 601px) and (max-width : 992px) {
.toast { 5544 5544 .toast {
float: left; } } 5545 5545 float: left; } }
@media only screen and (min-width : 993px) { 5546 5546 @media only screen and (min-width : 993px) {
.toast { 5547 5547 .toast {
float: right; } } 5548 5548 float: right; } }
5549 5549
.tabs { 5550 5550 .tabs {
position: relative; 5551 5551 position: relative;
height: 48px; 5552 5552 height: 48px;
background-color: #fff; 5553 5553 background-color: #fff;
margin: 0 auto; 5554 5554 margin: 0 auto;
width: 100%; 5555 5555 width: 100%;
white-space: nowrap; } 5556 5556 white-space: nowrap; }
.tabs .tab { 5557 5557 .tabs .tab {
display: block; 5558 5558 display: block;
float: left; 5559 5559 float: left;
text-align: center; 5560 5560 text-align: center;
line-height: 48px; 5561 5561 line-height: 48px;
height: 48px; 5562 5562 height: 48px;
padding: 0 20px; 5563 5563 padding: 0 20px;
margin: 0; 5564 5564 margin: 0;
text-transform: uppercase; 5565 5565 text-transform: uppercase;
letter-spacing: 0.8px; 5566 5566 letter-spacing: 0.8px;
width: 15%; } 5567 5567 width: 15%; }
.tabs .tab a { 5568 5568 .tabs .tab a {
color: #3e1944; 5569 5569 color: #3e1944;
display: block; 5570 5570 display: block;
width: 100%; 5571 5571 width: 100%;
height: 100%; 5572 5572 height: 100%;
-webkit-transition: color 0.28s ease; 5573 5573 -webkit-transition: color 0.28s ease;
-moz-transition: color 0.28s ease; 5574 5574 -moz-transition: color 0.28s ease;
-o-transition: color 0.28s ease; 5575 5575 -o-transition: color 0.28s ease;
-ms-transition: color 0.28s ease; 5576 5576 -ms-transition: color 0.28s ease;
transition: color 0.28s ease; } 5577 5577 transition: color 0.28s ease; }
.tabs .tab a:hover { 5578 5578 .tabs .tab a:hover {
color: #82348f; } 5579 5579 color: #82348f; }
.tabs .indicator { 5580 5580 .tabs .indicator {
position: absolute; 5581 5581 position: absolute;
bottom: 0; 5582 5582 bottom: 0;
height: 2px; 5583 5583 height: 2px;
background-color: #712e7c; 5584 5584 background-color: #712e7c;
will-change: left, right; } 5585 5585 will-change: left, right; }
5586 5586
.tabs .tab { 5587 5587 .tabs .tab {
padding: 0; } 5588 5588 padding: 0; }
5589 5589
.material-tooltip { 5590 5590 .material-tooltip {
padding: 10px 8px; 5591 5591 padding: 10px 8px;
font-size: 1rem; 5592 5592 font-size: 1rem;
z-index: 1000; 5593 5593 z-index: 1000;
background-color: transparent; 5594 5594 background-color: transparent;
border-radius: 2px; 5595 5595 border-radius: 2px;
color: #fff; 5596 5596 color: #fff;
min-height: 36px; 5597 5597 min-height: 36px;
line-height: 1rem; 5598 5598 line-height: 1rem;
opacity: 0; 5599 5599 opacity: 0;
display: none; 5600 5600 display: none;
position: absolute; 5601 5601 position: absolute;
text-align: center; 5602 5602 text-align: center;
overflow: hidden; 5603 5603 overflow: hidden;
left: 0; 5604 5604 left: 0;
top: 0; 5605 5605 top: 0;
will-change: top, left; } 5606 5606 will-change: top, left; }
5607 5607
.backdrop { 5608 5608 .backdrop {
position: absolute; 5609 5609 position: absolute;
opacity: 0; 5610 5610 opacity: 0;
display: none; 5611 5611 display: none;
height: 7px; 5612 5612 height: 7px;
width: 14px; 5613 5613 width: 14px;
border-radius: 0 0 14px 14px; 5614 5614 border-radius: 0 0 14px 14px;
background-color: #323232; 5615 5615 background-color: #323232;
z-index: -1; 5616 5616 z-index: -1;
-webkit-transform-origin: 50% 10%; 5617 5617 -webkit-transform-origin: 50% 10%;
-moz-transform-origin: 50% 10%; 5618 5618 -moz-transform-origin: 50% 10%;
-ms-transform-origin: 50% 10%; 5619 5619 -ms-transform-origin: 50% 10%;
-o-transform-origin: 50% 10%; 5620 5620 -o-transform-origin: 50% 10%;
transform-origin: 50% 10%; 5621 5621 transform-origin: 50% 10%;
will-change: transform, opacity; } 5622 5622 will-change: transform, opacity; }
5623 5623
.btn, .btn-large, .btn-flat { 5624 5624 .btn, .btn-large, .btn-flat {
border: none; 5625 5625 border: none;
border-radius: 2px; 5626 5626 border-radius: 2px;
display: inline-block; 5627 5627 display: inline-block;
height: 36px; 5628 5628 height: 36px;
line-height: 36px; 5629 5629 line-height: 36px;
outline: 0; 5630 5630 outline: 0;
padding: 0 2rem; 5631 5631 padding: 0 2rem;
text-transform: uppercase; 5632 5632 text-transform: uppercase;
vertical-align: middle; 5633 5633 vertical-align: middle;
-webkit-tap-highlight-color: transparent; } 5634 5634 -webkit-tap-highlight-color: transparent; }
5635 5635
.btn.disabled, .disabled.btn-large, .btn-floating.disabled, .btn-large.disabled, .btn:disabled, .btn-large:disabled, .btn-large:disabled, .btn-floating:disabled { 5636 5636 .btn.disabled, .disabled.btn-large, .btn-floating.disabled, .btn-large.disabled, .btn:disabled, .btn-large:disabled, .btn-large:disabled, .btn-floating:disabled {
background-color: #DFDFDF; 5637 5637 background-color: #DFDFDF;
box-shadow: none; 5638 5638 box-shadow: none;
color: #9F9F9F; 5639 5639 color: #9F9F9F;
cursor: default; } 5640 5640 cursor: default; }
.btn.disabled *, .disabled.btn-large *, .btn-floating.disabled *, .btn-large.disabled *, .btn:disabled *, .btn-large:disabled *, .btn-large:disabled *, .btn-floating:disabled * { 5641 5641 .btn.disabled *, .disabled.btn-large *, .btn-floating.disabled *, .btn-large.disabled *, .btn:disabled *, .btn-large:disabled *, .btn-large:disabled *, .btn-floating:disabled * {
pointer-events: none; } 5642 5642 pointer-events: none; }
.btn.disabled:hover, .disabled.btn-large:hover, .btn-floating.disabled:hover, .btn-large.disabled:hover, .btn:disabled:hover, .btn-large:disabled:hover, .btn-large:disabled:hover, .btn-floating:disabled:hover { 5643 5643 .btn.disabled:hover, .disabled.btn-large:hover, .btn-floating.disabled:hover, .btn-large.disabled:hover, .btn:disabled:hover, .btn-large:disabled:hover, .btn-large:disabled:hover, .btn-floating:disabled:hover {
background-color: #DFDFDF; 5644 5644 background-color: #DFDFDF;
color: #9F9F9F; } 5645 5645 color: #9F9F9F; }
5646 5646
.btn i, .btn-large i, .btn-floating i, .btn-large i, .btn-flat i { 5647 5647 .btn i, .btn-large i, .btn-floating i, .btn-large i, .btn-flat i {
font-size: 1.3rem; 5648 5648 font-size: 1.3rem;
line-height: inherit; } 5649 5649 line-height: inherit; }
5650 5650
.btn, .btn-large { 5651 5651 .btn, .btn-large {
text-decoration: none; 5652 5652 text-decoration: none;
color: #FFF; 5653 5653 color: #FFF;
background-color: #26a69a; 5654 5654 background-color: #26a69a;
text-align: center; 5655 5655 text-align: center;
letter-spacing: 0.5px; 5656 5656 letter-spacing: 0.5px;
-webkit-transition: 0.2s ease-out; 5657 5657 -webkit-transition: 0.2s ease-out;
-moz-transition: 0.2s ease-out; 5658 5658 -moz-transition: 0.2s ease-out;
-o-transition: 0.2s ease-out; 5659 5659 -o-transition: 0.2s ease-out;
-ms-transition: 0.2s ease-out; 5660 5660 -ms-transition: 0.2s ease-out;
transition: 0.2s ease-out; 5661 5661 transition: 0.2s ease-out;
cursor: pointer; } 5662 5662 cursor: pointer; }
.btn:hover, .btn-large:hover { 5663 5663 .btn:hover, .btn-large:hover {
background-color: #2bbbad; } 5664 5664 background-color: #2bbbad; }
5665 5665
.btn-floating { 5666 5666 .btn-floating {
display: inline-block; 5667 5667 display: inline-block;
color: #FFF; 5668 5668 color: #FFF;
position: relative; 5669 5669 position: relative;
overflow: hidden; 5670 5670 overflow: hidden;
z-index: 1; 5671 5671 z-index: 1;
width: 37px; 5672 5672 width: 37px;
height: 37px; 5673 5673 height: 37px;
line-height: 37px; 5674 5674 line-height: 37px;
padding: 0; 5675 5675 padding: 0;
background-color: #26a69a; 5676 5676 background-color: #26a69a;
border-radius: 50%; 5677 5677 border-radius: 50%;
transition: 0.3s; 5678 5678 transition: 0.3s;
cursor: pointer; 5679 5679 cursor: pointer;
vertical-align: middle; } 5680 5680 vertical-align: middle; }
.btn-floating i { 5681 5681 .btn-floating i {
width: inherit; 5682 5682 width: inherit;
display: inline-block; 5683 5683 display: inline-block;
text-align: center; 5684 5684 text-align: center;
color: #FFF; 5685 5685 color: #FFF;
font-size: 1.6rem; 5686 5686 font-size: 1.6rem;
line-height: 37px; } 5687 5687 line-height: 37px; }
.btn-floating:before { 5688 5688 .btn-floating:before {
border-radius: 0; } 5689 5689 border-radius: 0; }
.btn-floating.btn-large { 5690 5690 .btn-floating.btn-large {
width: 55.5px; 5691 5691 width: 55.5px;
height: 55.5px; } 5692 5692 height: 55.5px; }
.btn-floating.btn-large i { 5693 5693 .btn-floating.btn-large i {
line-height: 55.5px; } 5694 5694 line-height: 55.5px; }
5695 5695
button.btn-floating { 5696 5696 button.btn-floating {
border: none; } 5697 5697 border: none; }
5698 5698
.fixed-action-btn { 5699 5699 .fixed-action-btn {
position: fixed; 5700 5700 position: fixed;
right: 23px; 5701 5701 right: 23px;
bottom: 23px; 5702 5702 bottom: 23px;
padding-top: 15px; 5703 5703 padding-top: 15px;
margin-bottom: 0; 5704 5704 margin-bottom: 0;
z-index: 998; } 5705 5705 z-index: 998; }
.fixed-action-btn ul { 5706 5706 .fixed-action-btn ul {
left: 0; 5707 5707 left: 0;
right: 0; 5708 5708 right: 0;
text-align: center; 5709 5709 text-align: center;
position: absolute; 5710 5710 position: absolute;
bottom: 64px; } 5711 5711 bottom: 64px; }
.fixed-action-btn ul li { 5712 5712 .fixed-action-btn ul li {
margin-bottom: 15px; } 5713 5713 margin-bottom: 15px; }
.fixed-action-btn ul a.btn-floating { 5714 5714 .fixed-action-btn ul a.btn-floating {
opacity: 0; } 5715 5715 opacity: 0; }
5716 5716
.btn-flat { 5717 5717 .btn-flat {
box-shadow: none; 5718 5718 box-shadow: none;
background-color: transparent; 5719 5719 background-color: transparent;
color: #343434; 5720 5720 color: #343434;
cursor: pointer; } 5721 5721 cursor: pointer; }
.btn-flat.disabled { 5722 5722 .btn-flat.disabled {
color: #b3b3b3; 5723 5723 color: #b3b3b3;
cursor: default; } 5724 5724 cursor: default; }
5725 5725
.btn-large { 5726 5726 .btn-large {
height: 54px; 5727 5727 height: 54px;
line-height: 56px; } 5728 5728 line-height: 56px; }
.btn-large i { 5729 5729 .btn-large i {
font-size: 1.6rem; } 5730 5730 font-size: 1.6rem; }
5731 5731
.dropdown-content { 5732 5732 .dropdown-content {
background-color: #FFFFFF; 5733 5733 background-color: #FFFFFF;
margin: 0; 5734 5734 margin: 0;
display: none; 5735 5735 display: none;
min-width: 100px; 5736 5736 min-width: 100px;
max-height: 650px; 5737 5737 max-height: 650px;
overflow-y: auto; 5738 5738 overflow-y: auto;
opacity: 0; 5739 5739 opacity: 0;
position: absolute; 5740 5740 position: absolute;
white-space: nowrap; 5741 5741 white-space: nowrap;
z-index: 1; 5742 5742 z-index: 1;
will-change: width, height; } 5743 5743 will-change: width, height; }
.dropdown-content li { 5744 5744 .dropdown-content li {
clear: both; 5745 5745 clear: both;
color: rgba(0, 0, 0, 0.87); 5746 5746 color: rgba(0, 0, 0, 0.87);
cursor: pointer; 5747 5747 cursor: pointer;
line-height: 1.5rem; 5748 5748 line-height: 1.5rem;
width: 100%; 5749 5749 width: 100%;
text-align: left; 5750 5750 text-align: left;
text-transform: none; } 5751 5751 text-transform: none; }
.dropdown-content li:hover, .dropdown-content li.active { 5752 5752 .dropdown-content li:hover, .dropdown-content li.active {
background-color: #eee; } 5753 5753 background-color: #eee; }
.dropdown-content li > a, .dropdown-content li > span { 5754 5754 .dropdown-content li > a, .dropdown-content li > span {
font-size: 1.2rem; 5755 5755 font-size: 1.2rem;
color: #26a69a; 5756 5756 color: #26a69a;
display: block; 5757 5757 display: block;
padding: 1rem 1rem; } 5758 5758 padding: 1rem 1rem; }
5759 5759
/*! 5760 5760 /*!
* Waves v0.6.0 5761 5761 * Waves v0.6.0
* http://fian.my.id/Waves 5762 5762 * http://fian.my.id/Waves
* 5763 5763 *
* Copyright 2014 Alfiana E. Sibuea and other contributors 5764 5764 * Copyright 2014 Alfiana E. Sibuea and other contributors
* Released under the MIT license 5765 5765 * Released under the MIT license
* https://github.com/fians/Waves/blob/master/LICENSE 5766 5766 * https://github.com/fians/Waves/blob/master/LICENSE
*/ 5767 5767 */
.waves-effect { 5768 5768 .waves-effect {
position: relative; 5769 5769 position: relative;
cursor: pointer; 5770 5770 cursor: pointer;
display: inline-block; 5771 5771 display: inline-block;
overflow: hidden; 5772 5772 overflow: hidden;
-webkit-user-select: none; 5773 5773 -webkit-user-select: none;
-moz-user-select: none; 5774 5774 -moz-user-select: none;
-ms-user-select: none; 5775 5775 -ms-user-select: none;
user-select: none; 5776 5776 user-select: none;
-webkit-tap-highlight-color: transparent; 5777 5777 -webkit-tap-highlight-color: transparent;
vertical-align: middle; 5778 5778 vertical-align: middle;
z-index: 1; 5779 5779 z-index: 1;
will-change: opacity, transform; 5780 5780 will-change: opacity, transform;
-webkit-transition: all 0.3s ease-out; 5781 5781 -webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out; 5782 5782 -moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out; 5783 5783 -o-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out; 5784 5784 -ms-transition: all 0.3s ease-out;
transition: all 0.3s ease-out; } 5785 5785 transition: all 0.3s ease-out; }
.waves-effect .waves-ripple { 5786 5786 .waves-effect .waves-ripple {
position: absolute; 5787 5787 position: absolute;
border-radius: 50%; 5788 5788 border-radius: 50%;
width: 20px; 5789 5789 width: 20px;
height: 20px; 5790 5790 height: 20px;
margin-top: -10px; 5791 5791 margin-top: -10px;
margin-left: -10px; 5792 5792 margin-left: -10px;
opacity: 0; 5793 5793 opacity: 0;
background: rgba(0, 0, 0, 0.2); 5794 5794 background: rgba(0, 0, 0, 0.2);
-webkit-transition: all 0.7s ease-out; 5795 5795 -webkit-transition: all 0.7s ease-out;
-moz-transition: all 0.7s ease-out; 5796 5796 -moz-transition: all 0.7s ease-out;
-o-transition: all 0.7s ease-out; 5797 5797 -o-transition: all 0.7s ease-out;
-ms-transition: all 0.7s ease-out; 5798 5798 -ms-transition: all 0.7s ease-out;
transition: all 0.7s ease-out; 5799 5799 transition: all 0.7s ease-out;
-webkit-transition-property: -webkit-transform, opacity; 5800 5800 -webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity; 5801 5801 -moz-transition-property: -moz-transform, opacity;
-o-transition-property: -o-transform, opacity; 5802 5802 -o-transition-property: -o-transform, opacity;
transition-property: transform, opacity; 5803 5803 transition-property: transform, opacity;
-webkit-transform: scale(0); 5804 5804 -webkit-transform: scale(0);
-moz-transform: scale(0); 5805 5805 -moz-transform: scale(0);
-ms-transform: scale(0); 5806 5806 -ms-transform: scale(0);
-o-transform: scale(0); 5807 5807 -o-transform: scale(0);
transform: scale(0); 5808 5808 transform: scale(0);
pointer-events: none; } 5809 5809 pointer-events: none; }
.waves-effect.waves-light .waves-ripple { 5810 5810 .waves-effect.waves-light .waves-ripple {
background-color: rgba(255, 255, 255, 0.45); } 5811 5811 background-color: rgba(255, 255, 255, 0.45); }
.waves-effect.waves-red .waves-ripple { 5812 5812 .waves-effect.waves-red .waves-ripple {
background-color: rgba(244, 67, 54, 0.7); } 5813 5813 background-color: rgba(244, 67, 54, 0.7); }
.waves-effect.waves-yellow .waves-ripple { 5814 5814 .waves-effect.waves-yellow .waves-ripple {
background-color: rgba(255, 235, 59, 0.7); } 5815 5815 background-color: rgba(255, 235, 59, 0.7); }
.waves-effect.waves-orange .waves-ripple { 5816 5816 .waves-effect.waves-orange .waves-ripple {
background-color: rgba(255, 152, 0, 0.7); } 5817 5817 background-color: rgba(255, 152, 0, 0.7); }
.waves-effect.waves-purple .waves-ripple { 5818 5818 .waves-effect.waves-purple .waves-ripple {
background-color: rgba(156, 39, 176, 0.7); } 5819 5819 background-color: rgba(156, 39, 176, 0.7); }
.waves-effect.waves-green .waves-ripple { 5820 5820 .waves-effect.waves-green .waves-ripple {
background-color: rgba(76, 175, 80, 0.7); } 5821 5821 background-color: rgba(76, 175, 80, 0.7); }
.waves-effect.waves-teal .waves-ripple { 5822 5822 .waves-effect.waves-teal .waves-ripple {
background-color: rgba(0, 150, 136, 0.7); } 5823 5823 background-color: rgba(0, 150, 136, 0.7); }
5824 5824
.waves-notransition { 5825 5825 .waves-notransition {
-webkit-transition: none !important; 5826 5826 -webkit-transition: none !important;
-moz-transition: none !important; 5827 5827 -moz-transition: none !important;
-o-transition: none !important; 5828 5828 -o-transition: none !important;
-ms-transition: none !important; 5829 5829 -ms-transition: none !important;
transition: none !important; } 5830 5830 transition: none !important; }
5831 5831
.waves-circle { 5832 5832 .waves-circle {
-webkit-transform: translateZ(0); 5833 5833 -webkit-transform: translateZ(0);
-moz-transform: translateZ(0); 5834 5834 -moz-transform: translateZ(0);
-ms-transform: translateZ(0); 5835 5835 -ms-transform: translateZ(0);
-o-transform: translateZ(0); 5836 5836 -o-transform: translateZ(0);
transform: translateZ(0); 5837 5837 transform: translateZ(0);
-webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%); } 5838 5838 -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%); }
5839 5839
.waves-input-wrapper { 5840 5840 .waves-input-wrapper {
border-radius: 0.2em; 5841 5841 border-radius: 0.2em;
vertical-align: bottom; } 5842 5842 vertical-align: bottom; }
.waves-input-wrapper .waves-button-input { 5843 5843 .waves-input-wrapper .waves-button-input {
position: relative; 5844 5844 position: relative;
top: 0; 5845 5845 top: 0;
left: 0; 5846 5846 left: 0;
z-index: 1; } 5847 5847 z-index: 1; }
5848 5848
.waves-circle { 5849 5849 .waves-circle {
text-align: center; 5850 5850 text-align: center;
width: 2.5em; 5851 5851 width: 2.5em;
height: 2.5em; 5852 5852 height: 2.5em;
line-height: 2.5em; 5853 5853 line-height: 2.5em;
border-radius: 50%; 5854 5854 border-radius: 50%;
-webkit-mask-image: none; } 5855 5855 -webkit-mask-image: none; }
5856 5856
.waves-block { 5857 5857 .waves-block {
display: block; } 5858 5858 display: block; }
5859 5859
/* Firefox Bug: link not triggered */ 5860 5860 /* Firefox Bug: link not triggered */
a.waves-effect .waves-ripple { 5861 5861 a.waves-effect .waves-ripple {
z-index: -1; } 5862 5862 z-index: -1; }
5863 5863
.modal { 5864 5864 .modal {
display: none; 5865 5865 display: none;
position: fixed; 5866 5866 position: fixed;
left: 0; 5867 5867 left: 0;
right: 0; 5868 5868 right: 0;
background-color: #fafafa; 5869 5869 background-color: #fafafa;
padding: 0; 5870 5870 padding: 0;
max-height: 70%; 5871 5871 max-height: 70%;
width: 55%; 5872 5872 width: 55%;
margin: auto; 5873 5873 margin: auto;
overflow-y: auto; 5874 5874 overflow-y: auto;
z-index: 1000; 5875 5875 z-index: 1000;
border-radius: 2px; 5876 5876 border-radius: 2px;
-webkit-transform: translate(0); 5877 5877 -webkit-transform: translate(0);
-moz-transform: translate(0); 5878 5878 -moz-transform: translate(0);
-ms-transform: translate(0); 5879 5879 -ms-transform: translate(0);
-o-transform: translate(0); 5880 5880 -o-transform: translate(0);
transform: translate(0); 5881 5881 transform: translate(0);
will-change: top, opacity; } 5882 5882 will-change: top, opacity; }
@media only screen and (max-width : 992px) { 5883 5883 @media only screen and (max-width : 992px) {
.modal { 5884 5884 .modal {
width: 80%; } } 5885 5885 width: 80%; } }
.modal h1, .modal h2, .modal h3, .modal h4 { 5886 5886 .modal h1, .modal h2, .modal h3, .modal h4 {
margin-top: 0; } 5887 5887 margin-top: 0; }
.modal .modal-content { 5888 5888 .modal .modal-content {
padding: 24px; } 5889 5889 padding: 24px; }
.modal .modal-footer { 5890 5890 .modal .modal-footer {
border-radius: 0 0 2px 2px; 5891 5891 border-radius: 0 0 2px 2px;
background-color: #fafafa; 5892 5892 background-color: #fafafa;
padding: 4px 6px; 5893 5893 padding: 4px 6px;
height: 56px; 5894 5894 height: 56px;
width: 100%; } 5895 5895 width: 100%; }
.modal .modal-footer .btn, .modal .modal-footer .btn-large, .modal .modal-footer .btn-flat { 5896 5896 .modal .modal-footer .btn, .modal .modal-footer .btn-large, .modal .modal-footer .btn-flat {
float: right; 5897 5897 float: right;
margin: 6px 0; } 5898 5898 margin: 6px 0; }
5899 5899
#lean-overlay { 5900 5900 #lean-overlay {
position: fixed; 5901 5901 position: fixed;
z-index: 999; 5902 5902 z-index: 999;
top: 0; 5903 5903 top: 0;
left: 0; 5904 5904 left: 0;
bottom: 0; 5905 5905 bottom: 0;
right: 0; 5906 5906 right: 0;
height: 115%; 5907 5907 height: 115%;
width: 100%; 5908 5908 width: 100%;
background: #000; 5909 5909 background: #000;
display: none; 5910 5910 display: none;
will-change: opacity; } 5911 5911 will-change: opacity; }
5912 5912
.modal.modal-fixed-footer { 5913 5913 .modal.modal-fixed-footer {
padding: 0; 5914 5914 padding: 0;
height: 70%; } 5915 5915 height: 70%; }
.modal.modal-fixed-footer .modal-content { 5916 5916 .modal.modal-fixed-footer .modal-content {
position: fixed; 5917 5917 position: fixed;
max-height: 100%; 5918 5918 max-height: 100%;
padding-bottom: 64px; 5919 5919 padding-bottom: 64px;
width: 100%; 5920 5920 width: 100%;
overflow-y: auto; } 5921 5921 overflow-y: auto; }
.modal.modal-fixed-footer .modal-footer { 5922 5922 .modal.modal-fixed-footer .modal-footer {
border-top: 1px solid rgba(0, 0, 0, 0.1); 5923 5923 border-top: 1px solid rgba(0, 0, 0, 0.1);
position: fixed; 5924 5924 position: fixed;
bottom: 0; } 5925 5925 bottom: 0; }
5926 5926
.modal.bottom-sheet { 5927 5927 .modal.bottom-sheet {
top: auto; 5928 5928 top: auto;
bottom: -100%; 5929 5929 bottom: -100%;
margin: 0; 5930 5930 margin: 0;
width: 100%; 5931 5931 width: 100%;
max-height: 45%; 5932 5932 max-height: 45%;
border-radius: 0; 5933 5933 border-radius: 0;
will-change: bottom, opacity; } 5934 5934 will-change: bottom, opacity; }
5935 5935
.collapsible { 5936 5936 .collapsible {
border-top: 1px solid #ddd; 5937 5937 border-top: 1px solid #ddd;
border-right: 1px solid #ddd; 5938 5938 border-right: 1px solid #ddd;
border-left: 1px solid #ddd; 5939 5939 border-left: 1px solid #ddd;
margin: 0.5rem 0 1rem 0; } 5940 5940 margin: 0.5rem 0 1rem 0; }
5941 5941
.collapsible-header { 5942 5942 .collapsible-header {
display: block; 5943 5943 display: block;
cursor: pointer; 5944 5944 cursor: pointer;
height: 3rem; 5945 5945 height: 3rem;
line-height: 3rem; 5946 5946 line-height: 3rem;
padding: 0 1rem; 5947 5947 padding: 0 1rem;
background-color: #fff; 5948 5948 background-color: #fff;
border-bottom: 1px solid #ddd; } 5949 5949 border-bottom: 1px solid #ddd; }
.collapsible-header i { 5950 5950 .collapsible-header i {
width: 2rem; 5951 5951 width: 2rem;
font-size: 1.6rem; 5952 5952 font-size: 1.6rem;
line-height: 3rem; 5953 5953 line-height: 3rem;
display: block; 5954 5954 display: block;
float: left; 5955 5955 float: left;
text-align: center; 5956 5956 text-align: center;
margin-right: 1rem; } 5957 5957 margin-right: 1rem; }
5958 5958
.collapsible-body { 5959 5959 .collapsible-body {
overflow: hidden; 5960 5960 overflow: hidden;
display: none; 5961 5961 display: none;
border-bottom: 1px solid #ddd; 5962 5962 border-bottom: 1px solid #ddd;
-webkit-box-sizing: border-box; 5963 5963 -webkit-box-sizing: border-box;
-moz-box-sizing: border-box; 5964 5964 -moz-box-sizing: border-box;
box-sizing: border-box; } 5965 5965 box-sizing: border-box; }
.collapsible-body p { 5966 5966 .collapsible-body p {
margin: 0; 5967 5967 margin: 0;
padding: 2rem; } 5968 5968 padding: 2rem; }
5969 5969
.side-nav .collapsible { 5970 5970 .side-nav .collapsible {
border: none; 5971 5971 border: none;
box-shadow: none; } 5972 5972 box-shadow: none; }
.side-nav .collapsible li { 5973 5973 .side-nav .collapsible li {
padding: 0; } 5974 5974 padding: 0; }
.side-nav .collapsible-header { 5975 5975 .side-nav .collapsible-header {
background-color: transparent; 5976 5976 background-color: transparent;
border: none; 5977 5977 border: none;
line-height: inherit; 5978 5978 line-height: inherit;
height: inherit; 5979 5979 height: inherit;
margin: 0 1rem; } 5980 5980 margin: 0 1rem; }
.side-nav .collapsible-header i { 5981 5981 .side-nav .collapsible-header i {
line-height: inherit; } 5982 5982 line-height: inherit; }
.side-nav .collapsible-body { 5983 5983 .side-nav .collapsible-body {
border: 0; 5984 5984 border: 0;
background-color: #FFF; } 5985 5985 background-color: #FFF; }
.side-nav .collapsible-body li a { 5986 5986 .side-nav .collapsible-body li a {
margin: 0 1rem 0 2rem; } 5987 5987 margin: 0 1rem 0 2rem; }
5988 5988
.collapsible.popout { 5989 5989 .collapsible.popout {
border: none; 5990 5990 border: none;
box-shadow: none; } 5991 5991 box-shadow: none; }
.collapsible.popout > li { 5992 5992 .collapsible.popout > li {
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); 5993 5993 box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
transform: scaleX(0.92) translate3d(0, 0, 0); 5994 5994 transform: scaleX(0.92) translate3d(0, 0, 0);
transition: margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); } 5995 5995 transition: margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.collapsible.popout > li:hover { 5996 5996 .collapsible.popout > li:hover {
will-change: margin, transform; } 5997 5997 will-change: margin, transform; }
.collapsible.popout > li.active { 5998 5998 .collapsible.popout > li.active {
box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); 5999 5999 box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
margin: 16px 0; 6000 6000 margin: 16px 0;
transform: scaleX(1) translate3d(0, 0, 0); } 6001 6001 transform: scaleX(1) translate3d(0, 0, 0); }
6002 6002
.materialboxed { 6003 6003 .materialboxed {
cursor: zoom-in; 6004 6004 cursor: zoom-in;
position: relative; 6005 6005 position: relative;
-webkit-transition: opacity 0.4s; 6006 6006 -webkit-transition: opacity 0.4s;
-moz-transition: opacity 0.4s; 6007 6007 -moz-transition: opacity 0.4s;
-o-transition: opacity 0.4s; 6008 6008 -o-transition: opacity 0.4s;
-ms-transition: opacity 0.4s; 6009 6009 -ms-transition: opacity 0.4s;
transition: opacity 0.4s; } 6010 6010 transition: opacity 0.4s; }
.materialboxed:hover { 6011 6011 .materialboxed:hover {
will-change: left, top, width, height; } 6012 6012 will-change: left, top, width, height; }
.materialboxed:hover:not(.active) { 6013 6013 .materialboxed:hover:not(.active) {
opacity: 0.8; } 6014 6014 opacity: 0.8; }
6015 6015
.materialboxed.active { 6016 6016 .materialboxed.active {
cursor: zoom-out; } 6017 6017 cursor: zoom-out; }
6018 6018
#materialbox-overlay { 6019 6019 #materialbox-overlay {
position: fixed; 6020 6020 position: fixed;
top: 0; 6021 6021 top: 0;
left: 0; 6022 6022 left: 0;
right: 0; 6023 6023 right: 0;
bottom: 0; 6024 6024 bottom: 0;
background-color: #292929; 6025 6025 background-color: #292929;
z-index: 999; 6026 6026 z-index: 999;
will-change: opacity; } 6027 6027 will-change: opacity; }
6028 6028
.materialbox-caption { 6029 6029 .materialbox-caption {
position: fixed; 6030 6030 position: fixed;
display: none; 6031 6031 display: none;
color: #fff; 6032 6032 color: #fff;
line-height: 50px; 6033 6033 line-height: 50px;
bottom: 0; 6034 6034 bottom: 0;
width: 100%; 6035 6035 width: 100%;
text-align: center; 6036 6036 text-align: center;
padding: 0% 15%; 6037 6037 padding: 0% 15%;
height: 50px; 6038 6038 height: 50px;
z-index: 1000; 6039 6039 z-index: 1000;
-webkit-font-smoothing: antialiased; } 6040 6040 -webkit-font-smoothing: antialiased; }
6041 6041
/* Remove Focus Boxes */ 6042 6042 /* Remove Focus Boxes */
select:focus { 6043 6043 select:focus {
outline: 1px solid #c9f3ef; } 6044 6044 outline: 1px solid #c9f3ef; }
6045 6045
button:focus { 6046 6046 button:focus {
outline: none; 6047 6047 outline: none;
background-color: #2ab7a9; } 6048 6048 background-color: #2ab7a9; }
6049 6049
label { 6050 6050 label {
font-size: 0.8rem; 6051 6051 font-size: 0.8rem;
color: #9e9e9e; } 6052 6052 color: #9e9e9e; }
6053 6053
/*************************** 6054 6054 /***************************
Text Inputs + Textarea 6055 6055 Text Inputs + Textarea
****************************/ 6056 6056 ****************************/
::-webkit-input-placeholder { 6057 6057 ::-webkit-input-placeholder {
color: #d1d1d1; } 6058 6058 color: #d1d1d1; }
6059 6059
:-moz-placeholder { 6060 6060 :-moz-placeholder {
/* Firefox 18- */ 6061 6061 /* Firefox 18- */
color: #d1d1d1; } 6062 6062 color: #d1d1d1; }
6063 6063
::-moz-placeholder { 6064 6064 ::-moz-placeholder {
/* Firefox 19+ */ 6065 6065 /* Firefox 19+ */
color: #d1d1d1; } 6066 6066 color: #d1d1d1; }
6067 6067
:-ms-input-placeholder { 6068 6068 :-ms-input-placeholder {
color: #d1d1d1; } 6069 6069 color: #d1d1d1; }
6070 6070
input[type=text], input[type=password], input[type=email], input[type=url], input[type=time], input[type=date], input[type=datetime-local], input[type=tel], input[type=number], input[type=search], textarea.materialize-textarea { 6071 6071 input[type=text], input[type=password], input[type=email], input[type=url], input[type=time], input[type=date], input[type=datetime-local], input[type=tel], input[type=number], input[type=search], textarea.materialize-textarea {
background-color: transparent; 6072 6072 background-color: transparent;
border: none; 6073 6073 border: none;
border-bottom: 1px solid #9e9e9e; 6074 6074 border-bottom: 1px solid #9e9e9e;
border-radius: 0; 6075 6075 border-radius: 0;
outline: none; 6076 6076 outline: none;
height: 3rem; 6077 6077 height: 3rem;
width: 100%; 6078 6078 width: 100%;
font-size: 1rem; 6079 6079 font-size: 1rem;
margin: 0 0 15px 0; 6080 6080 margin: 0 0 15px 0;
padding: 0; 6081 6081 padding: 0;
box-shadow: none; 6082 6082 box-shadow: none;
-webkit-box-sizing: content-box; 6083 6083 -webkit-box-sizing: content-box;
-moz-box-sizing: content-box; 6084 6084 -moz-box-sizing: content-box;
box-sizing: content-box; 6085 6085 box-sizing: content-box;
transition: all 0.3s; } 6086 6086 transition: all 0.3s; }
input[type=text]:disabled, input[type=text][readonly="readonly"], input[type=password]:disabled, input[type=password][readonly="readonly"], input[type=email]:disabled, input[type=email][readonly="readonly"], input[type=url]:disabled, input[type=url][readonly="readonly"], input[type=time]:disabled, input[type=time][readonly="readonly"], input[type=date]:disabled, input[type=date][readonly="readonly"], input[type=datetime-local]:disabled, input[type=datetime-local][readonly="readonly"], input[type=tel]:disabled, input[type=tel][readonly="readonly"], input[type=number]:disabled, input[type=number][readonly="readonly"], input[type=search]:disabled, input[type=search][readonly="readonly"], textarea.materialize-textarea:disabled, textarea.materialize-textarea[readonly="readonly"] { 6087 6087 input[type=text]:disabled, input[type=text][readonly="readonly"], input[type=password]:disabled, input[type=password][readonly="readonly"], input[type=email]:disabled, input[type=email][readonly="readonly"], input[type=url]:disabled, input[type=url][readonly="readonly"], input[type=time]:disabled, input[type=time][readonly="readonly"], input[type=date]:disabled, input[type=date][readonly="readonly"], input[type=datetime-local]:disabled, input[type=datetime-local][readonly="readonly"], input[type=tel]:disabled, input[type=tel][readonly="readonly"], input[type=number]:disabled, input[type=number][readonly="readonly"], input[type=search]:disabled, input[type=search][readonly="readonly"], textarea.materialize-textarea:disabled, textarea.materialize-textarea[readonly="readonly"] {
color: rgba(0, 0, 0, 0.26); 6088 6088 color: rgba(0, 0, 0, 0.26);
border-bottom: 1px dotted rgba(0, 0, 0, 0.26); } 6089 6089 border-bottom: 1px dotted rgba(0, 0, 0, 0.26); }
input[type=text]:disabled + label, input[type=text][readonly="readonly"] + label, input[type=password]:disabled + label, input[type=password][readonly="readonly"] + label, input[type=email]:disabled + label, input[type=email][readonly="readonly"] + label, input[type=url]:disabled + label, input[type=url][readonly="readonly"] + label, input[type=time]:disabled + label, input[type=time][readonly="readonly"] + label, input[type=date]:disabled + label, input[type=date][readonly="readonly"] + label, input[type=datetime-local]:disabled + label, input[type=datetime-local][readonly="readonly"] + label, input[type=tel]:disabled + label, input[type=tel][readonly="readonly"] + label, input[type=number]:disabled + label, input[type=number][readonly="readonly"] + label, input[type=search]:disabled + label, input[type=search][readonly="readonly"] + label, textarea.materialize-textarea:disabled + label, textarea.materialize-textarea[readonly="readonly"] + label { 6090 6090 input[type=text]:disabled + label, input[type=text][readonly="readonly"] + label, input[type=password]:disabled + label, input[type=password][readonly="readonly"] + label, input[type=email]:disabled + label, input[type=email][readonly="readonly"] + label, input[type=url]:disabled + label, input[type=url][readonly="readonly"] + label, input[type=time]:disabled + label, input[type=time][readonly="readonly"] + label, input[type=date]:disabled + label, input[type=date][readonly="readonly"] + label, input[type=datetime-local]:disabled + label, input[type=datetime-local][readonly="readonly"] + label, input[type=tel]:disabled + label, input[type=tel][readonly="readonly"] + label, input[type=number]:disabled + label, input[type=number][readonly="readonly"] + label, input[type=search]:disabled + label, input[type=search][readonly="readonly"] + label, textarea.materialize-textarea:disabled + label, textarea.materialize-textarea[readonly="readonly"] + label {
color: rgba(0, 0, 0, 0.26); } 6091 6091 color: rgba(0, 0, 0, 0.26); }
input[type=text]:focus:not([readonly]), input[type=password]:focus:not([readonly]), input[type=email]:focus:not([readonly]), input[type=url]:focus:not([readonly]), input[type=time]:focus:not([readonly]), input[type=date]:focus:not([readonly]), input[type=datetime-local]:focus:not([readonly]), input[type=tel]:focus:not([readonly]), input[type=number]:focus:not([readonly]), input[type=search]:focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) { 6092 6092 input[type=text]:focus:not([readonly]), input[type=password]:focus:not([readonly]), input[type=email]:focus:not([readonly]), input[type=url]:focus:not([readonly]), input[type=time]:focus:not([readonly]), input[type=date]:focus:not([readonly]), input[type=datetime-local]:focus:not([readonly]), input[type=tel]:focus:not([readonly]), input[type=number]:focus:not([readonly]), input[type=search]:focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
border-bottom: 1px solid #26a69a; 6093 6093 border-bottom: 1px solid #26a69a;
box-shadow: 0 1px 0 0 #26a69a; } 6094 6094 box-shadow: 0 1px 0 0 #26a69a; }
input[type=text]:focus:not([readonly]) + label, input[type=password]:focus:not([readonly]) + label, input[type=email]:focus:not([readonly]) + label, input[type=url]:focus:not([readonly]) + label, input[type=time]:focus:not([readonly]) + label, input[type=date]:focus:not([readonly]) + label, input[type=datetime-local]:focus:not([readonly]) + label, input[type=tel]:focus:not([readonly]) + label, input[type=number]:focus:not([readonly]) + label, input[type=search]:focus:not([readonly]) + label, textarea.materialize-textarea:focus:not([readonly]) + label { 6095 6095 input[type=text]:focus:not([readonly]) + label, input[type=password]:focus:not([readonly]) + label, input[type=email]:focus:not([readonly]) + label, input[type=url]:focus:not([readonly]) + label, input[type=time]:focus:not([readonly]) + label, input[type=date]:focus:not([readonly]) + label, input[type=datetime-local]:focus:not([readonly]) + label, input[type=tel]:focus:not([readonly]) + label, input[type=number]:focus:not([readonly]) + label, input[type=search]:focus:not([readonly]) + label, textarea.materialize-textarea:focus:not([readonly]) + label {
color: #26a69a; } 6096 6096 color: #26a69a; }
input[type=text].valid, input[type=text]:focus.valid, input[type=password].valid, input[type=password]:focus.valid, input[type=email].valid, input[type=email]:focus.valid, input[type=url].valid, input[type=url]:focus.valid, input[type=time].valid, input[type=time]:focus.valid, input[type=date].valid, input[type=date]:focus.valid, input[type=datetime-local].valid, input[type=datetime-local]:focus.valid, input[type=tel].valid, input[type=tel]:focus.valid, input[type=number].valid, input[type=number]:focus.valid, input[type=search].valid, input[type=search]:focus.valid, textarea.materialize-textarea.valid, textarea.materialize-textarea:focus.valid { 6097 6097 input[type=text].valid, input[type=text]:focus.valid, input[type=password].valid, input[type=password]:focus.valid, input[type=email].valid, input[type=email]:focus.valid, input[type=url].valid, input[type=url]:focus.valid, input[type=time].valid, input[type=time]:focus.valid, input[type=date].valid, input[type=date]:focus.valid, input[type=datetime-local].valid, input[type=datetime-local]:focus.valid, input[type=tel].valid, input[type=tel]:focus.valid, input[type=number].valid, input[type=number]:focus.valid, input[type=search].valid, input[type=search]:focus.valid, textarea.materialize-textarea.valid, textarea.materialize-textarea:focus.valid {
border-bottom: 1px solid #4CAF50; 6098 6098 border-bottom: 1px solid #4CAF50;
box-shadow: 0 1px 0 0 #4CAF50; } 6099 6099 box-shadow: 0 1px 0 0 #4CAF50; }
input[type=text].invalid, input[type=text]:focus.invalid, input[type=password].invalid, input[type=password]:focus.invalid, input[type=email].invalid, input[type=email]:focus.invalid, input[type=url].invalid, input[type=url]:focus.invalid, input[type=time].invalid, input[type=time]:focus.invalid, input[type=date].invalid, input[type=date]:focus.invalid, input[type=datetime-local].invalid, input[type=datetime-local]:focus.invalid, input[type=tel].invalid, input[type=tel]:focus.invalid, input[type=number].invalid, input[type=number]:focus.invalid, input[type=search].invalid, input[type=search]:focus.invalid, textarea.materialize-textarea.invalid, textarea.materialize-textarea:focus.invalid { 6100 6100 input[type=text].invalid, input[type=text]:focus.invalid, input[type=password].invalid, input[type=password]:focus.invalid, input[type=email].invalid, input[type=email]:focus.invalid, input[type=url].invalid, input[type=url]:focus.invalid, input[type=time].invalid, input[type=time]:focus.invalid, input[type=date].invalid, input[type=date]:focus.invalid, input[type=datetime-local].invalid, input[type=datetime-local]:focus.invalid, input[type=tel].invalid, input[type=tel]:focus.invalid, input[type=number].invalid, input[type=number]:focus.invalid, input[type=search].invalid, input[type=search]:focus.invalid, textarea.materialize-textarea.invalid, textarea.materialize-textarea:focus.invalid {
border-bottom: 1px solid #F44336; 6101 6101 border-bottom: 1px solid #F44336;
box-shadow: 0 1px 0 0 #F44336; } 6102 6102 box-shadow: 0 1px 0 0 #F44336; }
6103 6103
.input-field { 6104 6104 .input-field {
position: relative; 6105 6105 position: relative;
margin-top: 1rem; } 6106 6106 margin-top: 1rem; }
.input-field label { 6107 6107 .input-field label {
color: #9e9e9e; 6108 6108 color: #9e9e9e;
position: absolute; 6109 6109 position: absolute;
top: 0.8rem; 6110 6110 top: 0.8rem;
left: 0.75rem; 6111 6111 left: 0.75rem;
font-size: 1rem; 6112 6112 font-size: 1rem;
cursor: text; 6113 6113 cursor: text;
-webkit-transition: 0.2s ease-out; 6114 6114 -webkit-transition: 0.2s ease-out;
-moz-transition: 0.2s ease-out; 6115 6115 -moz-transition: 0.2s ease-out;
-o-transition: 0.2s ease-out; 6116 6116 -o-transition: 0.2s ease-out;
-ms-transition: 0.2s ease-out; 6117 6117 -ms-transition: 0.2s ease-out;
transition: 0.2s ease-out; } 6118 6118 transition: 0.2s ease-out; }
.input-field label.active { 6119 6119 .input-field label.active {
font-size: 0.8rem; 6120 6120 font-size: 0.8rem;
-webkit-transform: translateY(-140%); 6121 6121 -webkit-transform: translateY(-140%);
-moz-transform: translateY(-140%); 6122 6122 -moz-transform: translateY(-140%);
-ms-transform: translateY(-140%); 6123 6123 -ms-transform: translateY(-140%);
-o-transform: translateY(-140%); 6124 6124 -o-transform: translateY(-140%);
transform: translateY(-140%); } 6125 6125 transform: translateY(-140%); }
.input-field .prefix { 6126 6126 .input-field .prefix {
position: absolute; 6127 6127 position: absolute;
width: 3rem; 6128 6128 width: 3rem;
font-size: 2rem; 6129 6129 font-size: 2rem;
-webkit-transition: color 0.2s; 6130 6130 -webkit-transition: color 0.2s;
-moz-transition: color 0.2s; 6131 6131 -moz-transition: color 0.2s;
-o-transition: color 0.2s; 6132 6132 -o-transition: color 0.2s;
-ms-transition: color 0.2s; 6133 6133 -ms-transition: color 0.2s;
transition: color 0.2s; } 6134 6134 transition: color 0.2s; }
.input-field .prefix.active { 6135 6135 .input-field .prefix.active {
color: #26a69a; } 6136 6136 color: #26a69a; }
.input-field .prefix ~ input, .input-field .prefix ~ textarea { 6137 6137 .input-field .prefix ~ input, .input-field .prefix ~ textarea {
margin-left: 3rem; 6138 6138 margin-left: 3rem;
width: 92%; 6139 6139 width: 92%;
width: calc(100% - 3rem); } 6140 6140 width: calc(100% - 3rem); }
.input-field .prefix ~ textarea { 6141 6141 .input-field .prefix ~ textarea {
padding-top: 0.8rem; } 6142 6142 padding-top: 0.8rem; }
.input-field .prefix ~ label { 6143 6143 .input-field .prefix ~ label {
margin-left: 3rem; } 6144 6144 margin-left: 3rem; }
@media only screen and (max-width : 992px) { 6145 6145 @media only screen and (max-width : 992px) {
.input-field .prefix ~ input { 6146 6146 .input-field .prefix ~ input {
width: 86%; 6147 6147 width: 86%;
width: calc(100% - 3rem); } 6148 6148 width: calc(100% - 3rem); }
} 6149 6149 }
@media only screen and (max-width : 600px) { 6150 6150 @media only screen and (max-width : 600px) {
.input-field .prefix ~ input { 6151 6151 .input-field .prefix ~ input {
width: 80%; 6152 6152 width: 80%;
width: calc(100% - 3rem); } 6153 6153 width: calc(100% - 3rem); }
} 6154 6154 }
6155 6155
.input-field input[type=search] { 6156 6156 .input-field input[type=search] {
display: block; 6157 6157 display: block;
line-height: inherit; 6158 6158 line-height: inherit;
padding-left: 4rem; 6159 6159 padding-left: 4rem;
width: calc(100% - 4rem); } 6160 6160 width: calc(100% - 4rem); }
.input-field input[type=search]:focus { 6161 6161 .input-field input[type=search]:focus {
background-color: #FFF; 6162 6162 background-color: #FFF;
border: 0; 6163 6163 border: 0;
box-shadow: none; 6164 6164 box-shadow: none;
color: #444; } 6165 6165 color: #444; }
.input-field input[type=search]:focus + label i, .input-field input[type=search]:focus ~ .mdi-navigation-close { 6166 6166 .input-field input[type=search]:focus + label i, .input-field input[type=search]:focus ~ .mdi-navigation-close {
color: #444; } 6167 6167 color: #444; }
.input-field input[type=search] + label { 6168 6168 .input-field input[type=search] + label {
left: 1rem; } 6169 6169 left: 1rem; }
.input-field input[type=search] ~ .mdi-navigation-close { 6170 6170 .input-field input[type=search] ~ .mdi-navigation-close {
position: absolute; 6171 6171 position: absolute;
top: 0; 6172 6172 top: 0;
right: 1rem; 6173 6173 right: 1rem;
color: transparent; 6174 6174 color: transparent;
cursor: pointer; 6175 6175 cursor: pointer;
font-size: 2rem; 6176 6176 font-size: 2rem;
transition: 0.3s color; } 6177 6177 transition: 0.3s color; }
6178 6178
textarea { 6179 6179 textarea {
width: 100%; 6180 6180 width: 100%;
height: 3rem; 6181 6181 height: 3rem;
background-color: transparent; } 6182 6182 background-color: transparent; }
textarea.materialize-textarea { 6183 6183 textarea.materialize-textarea {
overflow-y: hidden; 6184 6184 overflow-y: hidden;
/* prevents scroll bar flash */ 6185 6185 /* prevents scroll bar flash */
padding: 1.6rem 0; 6186 6186 padding: 1.6rem 0;
/* prevents text jump on Enter keypress */ 6187 6187 /* prevents text jump on Enter keypress */
resize: none; 6188 6188 resize: none;
min-height: 3rem; } 6189 6189 min-height: 3rem; }
6190 6190
.hiddendiv { 6191 6191 .hiddendiv {
display: none; 6192 6192 display: none;
white-space: pre-wrap; 6193 6193 white-space: pre-wrap;
word-wrap: break-word; 6194 6194 word-wrap: break-word;
overflow-wrap: break-word; 6195 6195 overflow-wrap: break-word;
/* future version of deprecated 'word-wrap' */ 6196 6196 /* future version of deprecated 'word-wrap' */
padding-top: 1.2rem; 6197 6197 padding-top: 1.2rem;
/* prevents text jump on Enter keypress */ } 6198 6198 /* prevents text jump on Enter keypress */ }
6199 6199
/*************** 6200 6200 /***************
Radio Buttons 6201 6201 Radio Buttons
***************/ 6202 6202 ***************/
/* Remove default Radio Buttons */ 6203 6203 /* Remove default Radio Buttons */
[type="radio"]:not(:checked), [type="radio"]:checked { 6204 6204 [type="radio"]:not(:checked), [type="radio"]:checked {
position: absolute; 6205 6205 position: absolute;
left: -9999px; 6206 6206 left: -9999px;
visibility: hidden; } 6207 6207 visibility: hidden; }
6208 6208
[type="radio"]:not(:checked) + label, [type="radio"]:checked + label { 6209 6209 [type="radio"]:not(:checked) + label, [type="radio"]:checked + label {
position: relative; 6210 6210 position: relative;
padding-left: 35px; 6211 6211 padding-left: 35px;
cursor: pointer; 6212 6212 cursor: pointer;
display: inline-block; 6213 6213 display: inline-block;
height: 25px; 6214 6214 height: 25px;
line-height: 25px; 6215 6215 line-height: 25px;
font-size: 1rem; 6216 6216 font-size: 1rem;
styles/flashy.css View file @ 4d8fc29
.no-user-select { 1 1 .no-user-select {
-moz-user-select: none; 2 2 -moz-user-select: none;
-webkit-user-select: none; 3 3 -webkit-user-select: none;
-ms-user-select: none; 4 4 -ms-user-select: none;
user-select: none; 5 5 user-select: none;
} 6 6 }
7 7
.angucomplete-dropdown { 8 8 .angucomplete-dropdown {
border-color: #ececec; 9 9 border-color: #ececec;
border-width: 1px; 10 10 border-width: 1px;
border-style: solid; 11 11 border-style: solid;
border-radius: 2px; 12 12 border-radius: 2px;
/*width: 250px;*/ 13 13 /*width: 250px;*/
padding: 6px; 14 14 padding: 6px;
cursor: pointer; 15 15 cursor: pointer;
z-index: 9999; 16 16 z-index: 9999;
position: absolute; 17 17 position: absolute;
/*top: 32px; 18 18 /*top: 32px;
left: 0px; 19 19 left: 0px;
*/ 20 20 */
margin-top: -6px; 21 21 margin-top: -6px;
background-color: #ffffff; 22 22 background-color: #ffffff;
} 23 23 }
24 24
.angucomplete-description { 25 25 .angucomplete-description {
font-size: 14px; 26 26 font-size: 14px;
} 27 27 }
28 28
.angucomplete-row { 29 29 .angucomplete-row {
padding: 5px; 30 30 padding: 5px;
color: #000000; 31 31 color: #000000;
margin-bottom: 4px; 32 32 margin-bottom: 4px;
clear: both; 33 33 clear: both;
} 34 34 }
35 35
.angucomplete-selected-row { 36 36 .angucomplete-selected-row {
background-color: #aaaaff; 37 37 background-color: #aaaaff;
} 38 38 }
39 39
.container .row { 40 40 /*.container .row {*/
margin-left: 0; 41 41 /*margin-left: 0;*/
margin-right: 0; 42 42 /*margin-right: 0;*/
} 43 43 /*}*/
44
/*ul.side-nav.fixed li { 45
font-size: 24px; 46
} 47
48
ul.side-nav.fixed li a.class { 49
height: 28px; 50
font-size: 20px; 51
line-height: normal; 52
font-weight: 600; 53
} 54
55
ul.side-nav.fixed li a { 56
font-size: 24px; 57
}*/ 58
59 44
/* Flashcard directive css */ 60 45 /* Flashcard directive css */
.card { 61 46 .card {
word-wrap: break-word; 62 47 word-wrap: break-word;
} 63 48 }
64 49
.card.flashy { 65 50 .card.flashy {
float: left; 66 51 float: left;
text-align: center; 67 52 text-align: center;
margin: 6px; 68 53 margin: 6px;
transition: all 0.2s cubic-bezier(0, 0, 0.6, 1); 69 54 transition: all 0.2s cubic-bezier(0, 0, 0.6, 1);
font-family: 'Titillium Web', sans-serif; 70 55 font-family: 'Titillium Web', sans-serif;
} 71 56 }
72 57
.card.flashy.shrinky { 73 58 .card.flashy.shrinky {
height: 0; 74 59 height: 0;
opacity: 0; 75 60 opacity: 0;
overflow: hidden; 76 61 overflow: hidden;
} 77 62 }
78 63
.card-overlay { 79 64 .card-overlay {
cursor: pointer; 80 65 cursor: pointer;
left: 0; 81 66 left: 0;
opacity: 0; 82 67 opacity: 0;
position: absolute; 83 68 position: absolute;
top: 0; 84 69 top: 0;
transition: visibility 0s cubic-bezier(0, 0, 0.6, 1) 0.2s, 85 70 transition: visibility 0s cubic-bezier(0, 0, 0.6, 1) 0.2s,
opacity 0.2s cubic-bezier(0, 0, 0.6, 1); 86 71 opacity 0.2s cubic-bezier(0, 0, 0.6, 1);
/* animation effect to appear on off-hover */ 87 72 /* animation effect to appear on off-hover */
visibility: hidden; 88 73 visibility: hidden;
height: 100%; 89 74 height: 100%;
width: 100%; 90 75 width: 100%;
} 91 76 }
92 77
.card-overlay i { 93 78 .card-overlay i {
color: #FFF; 94 79 color: #FFF;
left: 50%; 95 80 left: 50%;
position: absolute; 96 81 position: absolute;
top: 50%; 97 82 top: 50%;
transform: translate(-50%, -50%); 98 83 transform: translate(-50%, -50%);
transition: all 0.2s cubic-bezier(0, 0, 0.6, 1) 0s; 99 84 transition: all 0.2s cubic-bezier(0, 0, 0.6, 1) 0s;
} 100 85 }
101 86
.center-me:hover i { 102 87 .center-me:hover i {
text-shadow: 0 0 15px rgba(255,255,255,0.7); 103 88 text-shadow: 0 0 15px rgba(255,255,255,0.7);
} 104 89 }
105 90
.card:hover .card-overlay { 106 91 .card:hover .card-overlay {
opacity: 0.9; 107 92 opacity: 0.9;
transition-delay: 0s; /* animation effect to appear on hover */ 108 93 transition-delay: 0s; /* animation effect to appear on hover */
visibility: visible; 109 94 visibility: visible;
} 110 95 }
111 96
.top-box { 112 97 .top-box {
background-color: rgba(0, 81, 229, 0.6); 113 98 background-color: rgba(0, 81, 229, 0.6);
height: 65%; 114 99 height: 65%;
position: relative; 115 100 position: relative;
transition: all 0.2s cubic-bezier(0, 0, 0.6, 1) 0s; 116 101 transition: all 0.2s cubic-bezier(0, 0, 0.6, 1) 0s;
width: 100%; 117 102 width: 100%;
} 118 103 }
119 104
.top-box:hover { 120 105 .top-box:hover {
background-color: rgba(0, 81, 229, 0.75); 121 106 background-color: rgba(0, 81, 229, 0.75);
} 122 107 }
123 108
.bottom-box { 124 109 .bottom-box {
height: 35%; 125 110 height: 35%;
width: 100%; 126 111 width: 100%;
} 127 112 }
128 113
.left-box { 129 114 .left-box {
background-color: rgba(15, 0, 155, 0.6); 130 115 background-color: rgba(15, 0, 155, 0.6);
float: left; 131 116 float: left;
position: relative; 132 117 position: relative;
height: 100%; 133 118 height: 100%;
transition: all 0.2s cubic-bezier(0, 0, 0.6, 1) 0s; 134 119 transition: all 0.2s cubic-bezier(0, 0, 0.6, 1) 0s;
width: 50%; 135 120 width: 50%;
} 136 121 }
137 122
.left-box:hover { 138 123 .left-box:hover {
background-color: rgba(15, 0, 155, 0.75); 139 124 background-color: rgba(15, 0, 155, 0.75);
} 140 125 }
141 126
.right-box { 142 127 .right-box {
background-color: rgba(207, 0, 86, 0.6); 143 128 background-color: rgba(207, 0, 86, 0.6);
float: right; 144 129 float: right;
height: 100%; 145 130 height: 100%;
position: relative; 146 131 position: relative;
transition: all 0.2s cubic-bezier(0, 0, 0.6, 1) 0s; 147 132 transition: all 0.2s cubic-bezier(0, 0, 0.6, 1) 0s;
width: 50%; 148 133 width: 50%;
} 149 134 }
150 135
.right-box:hover { 151 136 .right-box:hover {
background-color: rgba(207, 0, 86, 0.75); 152 137 background-color: rgba(207, 0, 86, 0.75);
} 153 138 }
154 139
.center-me { 155 140 .center-me {
height: 100%; 156 141 height: 100%;
margin: 0 auto; 157 142 margin: 0 auto;
text-align: center; 158 143 text-align: center;
vertical-align: middle; 159 144 vertical-align: middle;
width: 100%; 160 145 width: 100%;
} 161 146 }
162 147
.modal.bottom-sheet { 163 148 .modal.bottom-sheet {
width: 40%; 164 149 width: 40%;
margin-left: auto; 165 150 margin-left: auto;
margin-right: auto; 166 151 margin-right: auto;
} 167 152 }
168 153
#newCard input[type=text] { 169 154 #newCard input[type=text] {
height: 3rem !important; 170 155 height: 3rem !important;
} 171 156 }
172 157
.input-field label { 173 158 .input-field label {
color: #673ab7; 174 159 color: #673ab7;
} 175 160 }
176 161
/* label focus color */ 177 162 /* label focus color */
.input-field input[type]:focus + label { 178 163 .input-field input[type]:focus + label {
color: #b388ff; 179 164 color: #b388ff;
} 180 165 }
181 166
/* label underline focus color */ 182 167 /* label underline focus color */
.input-field input[type]:focus { 183 168 .input-field input[type]:focus {
border-bottom: 1px solid #b388ff; 184 169 border-bottom: 1px solid #b388ff;
box-shadow: 0 1px 0 0 #b388ff; 185 170 box-shadow: 0 1px 0 0 #b388ff;
} 186 171 }
187 172
/* valid color */ 188 173 /* valid color */
.input-field input[type].valid { 189 174 .input-field input[type].valid {
border-bottom: 1px solid #673ab7; 190 175 border-bottom: 1px solid #673ab7;
box-shadow: 0 1px 0 0 #673ab7; 191 176 box-shadow: 0 1px 0 0 #673ab7;
} 192 177 }
193 178
/* invalid color */ 194 179 /* invalid color */
.input-field input[type].invalid { 195 180 .input-field input[type].invalid {
border-bottom: 1px solid #673ab7; 196 181 border-bottom: 1px solid #673ab7;
box-shadow: 0 1px 0 0 #673ab7; 197 182 box-shadow: 0 1px 0 0 #673ab7;
} 198 183 }
199 184
/* icon prefix focus color */ 200 185 /* icon prefix focus color */
.input-field .prefix.active { 201 186 .input-field .prefix.active {
color: #b388ff; 202 187 color: #b388ff;
} 203 188 }
204 189
/* label focus color */ 205 190 /* label focus color */
.input-field textarea[type]:focus + label { 206 191 .input-field textarea[type]:focus + label {
color: #b388ff; 207 192 color: #b388ff;
} 208 193 }
209 194
/* label underline focus color */ 210 195 /* label underline focus color */
.input-field textarea[type]:focus { 211 196 .input-field textarea[type]:focus {
border-bottom: 1px solid #b388ff; 212 197 border-bottom: 1px solid #b388ff;
box-shadow: 0 1px 0 0 #b388ff; 213 198 box-shadow: 0 1px 0 0 #b388ff;
} 214 199 }
templates/addclass.html View file @ 4d8fc29
<div> 1 1 <div class="container white">
<div layout="column"> 2 2 <div class="row" style="margin-top:64px;">
<md-content layout-padding="" layout="column" style="overflow:hidden"> 3 3 <div class="offset-m3 col m6">
4 <h2 class="header">Add Class</h2>
5 <md-content layout-padding="" layout="column" style="overflow:hidden">
4 6
<form ng-submit="$event.preventDefault()"> 5 7 <form ng-submit="$event.preventDefault()">
<div layout="row"> 6 8 <div layout="row">
<md-autocomplete flex="" 7 9 <md-autocomplete flex=""
md-autofocus="true" 8 10 md-autofocus="true"
md-selected-item="selectedItem" 9 11 md-selected-item="selectedItem"
md-search-text="searchText" 10 12 md-search-text="searchText"
md-items="item in trySearch(searchText)" 11 13 md-items="item in trySearch(searchText)"
md-item-text="item.short_name" 12 14 md-item-text="item.short_name"
md-selected-item-change="selectObject(event)" 13 15 md-selected-item-change="selectObject(event)"
md-autoselect="true" 14 16 md-autoselect="true"
> 15 17 >
<md-item-template> 16 18 <md-item-template>
<div layout="row"> 17 19 <div layout="row">
<div>{{item.short_name}}: {{item.course_title}} 18 20 <div>{{item.short_name}}: {{item.course_title}}
({{item.instructor}}) 19 21 ({{item.instructor}})
22 </div>
23 <div style="margin-left:auto;text-align:right;padding-left:30px">
24 {{item.lecture_times}}
25 </div>
</div> 20 26 </div>
<div style="margin-left:auto;text-align:right;padding-left:30px"> 21 27 </md-item-template>
{{item.lecture_times}} 22 28 <md-not-found>
</div> 23 29 No classes match "{{searchText}}".
</div> 24 30 </md-not-found>
</md-item-template> 25 31 </md-autocomplete>
<md-not-found> 26 32 <button class="btn waves-effect waves-light" type="submit" name="add" ng-click="submit()">Add
No classes match "{{searchText}}". 27 33 <i class="mdi-content-add right"></i>
</md-not-found> 28 34 </button>
</md-autocomplete> 29 35 </div>
<button class="btn waves-effect waves-light" type="submit" name="add" ng-click="submit()">Add 30
<i class="mdi-content-add right"></i> 31
</button> 32
</div> 33
34 36
</form> 35 37 </form>
</md-content> 36 38 </md-content>
39 </div>
</div> 37 40 </div>
</div> 38 41 </div>
39
templates/login.html View file @ 4d8fc29
<div class="row"> 1 1 <div class="row" style="margin-top:64px;">
2 2 <div class="offset-m4 col m4">
</div> 3
<div class="row"> 4
<div class="offset-s3 col s4"> 5
6
</div> 7
<div class="offset-s3 col s4"> 8
<ul class="tabs"> 9 3 <ul class="tabs">
<li class="tab col s6"><a href="#register-tab">Sign Up</a></li> 10 4 <li class="tab col s6"><a href="#register-tab">Sign Up</a></li>
<li class="tab col s6"><a class="active" href="#login-tab">Login</a></li> 11 5 <li class="tab col s6"><a class="active" href="#login-tab">Login</a></li>
</ul> 12 6 </ul>
<div class="card"> 13 7 <div class="card">
<!--LOGIN TAB--> 14 8 <!--LOGIN TAB-->
<div id="login-tab" class="row col s12"> 15 9 <div id="login-tab" class="row col s12">
<form id="login-form"> 16 10 <form id="login-form">
<div class="card-content"> 17 11 <div class="card-content">
<div class="check-element animate-show" role="alert" ng-show="loginError"> 18 12 <div class="check-element animate-show" role="alert" ng-show="loginError">
<span style="color:#8E2323">Invalid username or password!!</span> 19 13 <span style="color:#8E2323">Invalid username or password!!</span>
</div> 20 14 </div>
21 15
<div class="input-field"> 22 16 <div class="input-field">
<input id="email" type="email" name="login" class="validate" ng-model="loginEmail" required autofocus autocomplete/> 23 17 <input id="email" type="email" name="login" class="validate" ng-model="loginEmail" required autofocus autocomplete/>
<label for="email">Email</label> 24 18 <label for="email">Email</label>
</div> 25 19 </div>
<div class="input-field"> 26 20 <div class="input-field">
<input id="password" type="password" name="password" class="validate" ng-model="loginPassword" required/> 27 21 <input id="password" type="password" name="password" class="validate" ng-model="loginPassword" required/>
<label for="password">Password</label> 28 22 <label for="password">Password</label>
</div> 29 23 </div>
</div> 30 24 </div>
<div class="card-action"> 31 25 <div class="card-action">
<button class="btn waves-effect waves-light col s12" type="submit" name="action" 32 26 <button class="btn waves-effect waves-light col s12" type="submit" name="action"
ng-click="login(loginEmail, loginPassword)">Login 33 27 ng-click="login(loginEmail, loginPassword)">Login
</button> 34 28 </button>
</div> 35 29 </div>
</form> 36 30 </form>
</div> 37 31 </div>
<!--REGISTER TAB--> 38 32 <!--REGISTER TAB-->
<div id="register-tab" class="row col s12"> 39 33 <div id="register-tab" class="row col s12">
<form> 40 34 <form>
<div class="card-content"> 41 35 <div class="card-content">
<div class="check-element animate-show" role="alert" ng-show="uniqueError"> 42 36 <div class="check-element animate-show" role="alert" ng-show="uniqueError">
<span style="color:#8E2323">Invalid username or password!!</span> 43 37 <span style="color:#8E2323">Invalid username or password!!</span>
</div> 44 38 </div>
<div class="input-field"> 45 39 <div class="input-field">
<input id="email" type="email" class="validate" ng-model="loginEmail" required/> 46 40 <input id="email" type="email" class="validate" ng-model="registerEmail" required/>
<label for="email">Email</label> 47 41 <label for="email">Email</label>
</div> 48 42 </div>
<div class="input-field"> 49 43 <div class="input-field">
<input type="password" class="validate" ng-model="registerPassword" required/> 50 44 <input type="password" class="validate" ng-model="registerPassword" required/>
<label for="password">Password</label> 51 45 <label for="password">Password</label>
</div> 52 46 </div>
</div> 53 47 </div>
<div class="card-action"> 54 48 <div class="card-action">
<button class="btn waves-effect waves-light col s12" type="" name="action" 55 49 <button class="btn waves-effect waves-light col s12" type="submit" name="action"
ng-click="signUp(loginEmail, registerPassword)">Register 56 50 ng-click="signUp(registerEmail, registerPassword)">Register
</button> 57 51 </button>
</div> 58 52 </div>
</form> 59 53 </form>
</div> 60 54 </div>
61 55
<div class="row offset-s1 col s12"> 62 56 <div class="row offset-s1 col s12">
<a class="trigger-password-reset" ng-click="triggerPasswordReset()" href="#">Forgot Password?</a> 63 57 <a class="trigger-password-reset" ng-click="triggerPasswordReset()" href="#">Forgot Password?</a>
</div> 64 58 </div>
</div> 65 59 </div>
</div> 66 60 </div>
</div> 67 61 </div>
68 62