bootstrap-material-design 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +0 -0
- data/Gemfile +0 -0
- data/LICENSE +0 -0
- data/README.md +0 -0
- data/Rakefile +0 -0
- data/app/assets/fonts/LICENSE.txt +0 -0
- data/app/assets/fonts/Material-Design-Icons.eot +0 -0
- data/app/assets/fonts/Material-Design-Icons.svg +751 -0
- data/app/assets/fonts/Material-Design-Icons.ttf +0 -0
- data/app/assets/fonts/Material-Design-Icons.woff +0 -0
- data/app/assets/javascripts/bootstrap-material-design/index.js +2 -2
- data/app/assets/javascripts/bootstrap-material-design/{jquery.nouislider.min.js → jquery.nouislider.js} +0 -0
- data/app/assets/javascripts/bootstrap-material-design/material.js +1 -84
- data/app/assets/javascripts/bootstrap-material-design/ripples.js +1 -136
- data/app/assets/javascripts/bootstrap-material-design/{snackbar.min.js → snackbar.js} +0 -0
- data/app/assets/stylesheets/bootstrap-material-design/icons-material-design.css.scss.erb +0 -0
- data/app/assets/stylesheets/bootstrap-material-design/index.css +0 -1
- data/app/assets/stylesheets/bootstrap-material-design/{material-wfont.css → material-wfont.css.erb} +2896 -456
- data/app/assets/stylesheets/bootstrap-material-design/{material.css → material.css.erb} +2816 -523
- data/app/assets/stylesheets/bootstrap-material-design/ripples.css +1 -1
- data/app/assets/stylesheets/bootstrap-material-design/snackbar.css +0 -0
- data/bootstrap-material-design.gemspec +1 -1
- data/lib/bootstrap-material-design.rb +0 -0
- data/lib/bootstrap-material-design/engine.rb +0 -0
- metadata +9 -9
- data/app/assets/fonts/Material-Design.eot +0 -0
- data/app/assets/fonts/Material-Design.svg +0 -515
- data/app/assets/fonts/Material-Design.ttf +0 -0
- data/app/assets/fonts/Material-Design.woff +0 -0
Binary file
|
Binary file
|
File without changes
|
@@ -1,84 +1 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
$(function (){
|
4
|
-
|
5
|
-
if (typeof ripples == "object") {
|
6
|
-
ripples.init(".btn:not(.btn-link), .navbar a:not(.withoutripple), .nav-tabs a:not(.withoutripple), .withripple");
|
7
|
-
}
|
8
|
-
|
9
|
-
var initInputs = function() {
|
10
|
-
// Add fake-checkbox to material checkboxes
|
11
|
-
$(".checkbox > label > input").not(".bs-material").addClass("bs-material").after("<span class=check></span>");
|
12
|
-
|
13
|
-
// Add fake-radio to material radios
|
14
|
-
$(".radio > label > input").not(".bs-material").addClass("bs-material").after("<span class=circle></span><span class=check></span>");
|
15
|
-
|
16
|
-
// Add elements for material inputs
|
17
|
-
$("input.form-control, textarea.form-control, select.form-control").not(".bs-material").each( function() {
|
18
|
-
if ($(this).is(".bs-material")) { return; }
|
19
|
-
$(this).wrap("<div class=form-control-wrapper></div>");
|
20
|
-
$(this).after("<span class=material-input></span>");
|
21
|
-
if ($(this).hasClass("floating-label")) {
|
22
|
-
var placeholder = $(this).attr("placeholder");
|
23
|
-
$(this).attr("placeholder", null).removeClass("floating-label");
|
24
|
-
$(this).after("<div class=floating-label>" + placeholder + "</div>");
|
25
|
-
}
|
26
|
-
if ($(this).is(":empty") || $(this).val() === null || $(this).val() == "undefined" || $(this).val() === "") {
|
27
|
-
$(this).addClass("empty");
|
28
|
-
}
|
29
|
-
|
30
|
-
if ($(this).parent().next().is("[type=file]")) {
|
31
|
-
$(this).parent().addClass("fileinput");
|
32
|
-
var $input = $(this).parent().next().detach();
|
33
|
-
$(this).after($input);
|
34
|
-
}
|
35
|
-
});
|
36
|
-
|
37
|
-
};
|
38
|
-
initInputs();
|
39
|
-
|
40
|
-
// Support for "arrive.js" to dynamically detect creation of elements
|
41
|
-
// include it before this script to take advantage of this feature
|
42
|
-
// https://github.com/uzairfarooq/arrive/
|
43
|
-
if (document.arrive) {
|
44
|
-
document.arrive("input, textarea, select", function() {
|
45
|
-
initInputs();
|
46
|
-
});
|
47
|
-
}
|
48
|
-
|
49
|
-
$(document).on("change", ".checkbox input", function() {
|
50
|
-
$(this).blur();
|
51
|
-
});
|
52
|
-
|
53
|
-
$(document).on("keyup change", ".form-control", function() {
|
54
|
-
var self = $(this);
|
55
|
-
setTimeout(function() {
|
56
|
-
if (self.val() === "") {
|
57
|
-
self.addClass("empty");
|
58
|
-
} else {
|
59
|
-
self.removeClass("empty");
|
60
|
-
}
|
61
|
-
}, 1);
|
62
|
-
});
|
63
|
-
$(document)
|
64
|
-
.on("focus", ".form-control-wrapper.fileinput", function() {
|
65
|
-
$(this).find("input").addClass("focus");
|
66
|
-
})
|
67
|
-
.on("blur", ".form-control-wrapper.fileinput", function() {
|
68
|
-
$(this).find("input").removeClass("focus");
|
69
|
-
})
|
70
|
-
.on("change", ".form-control-wrapper.fileinput [type=file]", function() {
|
71
|
-
var value = "";
|
72
|
-
$.each($(this)[0].files, function(i, file) {
|
73
|
-
console.log(file);
|
74
|
-
value += file.name + ", ";
|
75
|
-
});
|
76
|
-
value = value.substring(0, value.length - 2);
|
77
|
-
if (value) {
|
78
|
-
$(this).prev().removeClass("empty");
|
79
|
-
} else {
|
80
|
-
$(this).prev().addClass("empty");
|
81
|
-
}
|
82
|
-
$(this).prev().val(value);
|
83
|
-
});
|
84
|
-
});
|
1
|
+
$(function(){"object"==typeof ripples&&ripples.init(".btn:not(.btn-link),.card-image,.navbar a:not(.withoutripple),.nav-tabs a:not(.withoutripple),.withripple");var a=function(){$(".checkbox > label > input").not(".bs-material").addClass("bs-material").after("<span class=check></span>"),$(".radio > label > input").not(".bs-material").addClass("bs-material").after("<span class=circle></span><span class=check></span>"),$("input.form-control, textarea.form-control, select.form-control").not(".bs-material").each(function(){if(!$(this).is(".bs-material")){if($(this).wrap("<div class=form-control-wrapper></div>"),$(this).after("<span class=material-input></span>"),$(this).hasClass("floating-label")){var a=$(this).attr("placeholder");$(this).attr("placeholder",null).removeClass("floating-label"),$(this).after("<div class=floating-label>"+a+"</div>")}if(($(this).is(":empty")||null===$(this).val()||"undefined"==$(this).val()||""===$(this).val())&&$(this).addClass("empty"),$(this).parent().next().is("[type=file]")){$(this).parent().addClass("fileinput");var b=$(this).parent().next().detach();$(this).after(b)}}})};a(),document.arrive&&document.arrive("input, textarea, select",function(){a()}),$(document).on("change",".checkbox input",function(){$(this).blur()}),$(document).on("keyup change",".form-control",function(){var a=$(this);setTimeout(function(){""===a.val()?a.addClass("empty"):a.removeClass("empty")},1)}),$(document).on("focus",".form-control-wrapper.fileinput",function(){$(this).find("input").addClass("focus")}).on("blur",".form-control-wrapper.fileinput",function(){$(this).find("input").removeClass("focus")}).on("change",".form-control-wrapper.fileinput [type=file]",function(){var a="";$.each($(this)[0].files,function(b,c){console.log(c),a+=c.name+", "}),a=a.substring(0,a.length-2),a?$(this).prev().removeClass("empty"):$(this).prev().addClass("empty"),$(this).prev().val(a)})});
|
@@ -1,136 +1 @@
|
|
1
|
-
|
2
|
-
/* globals CustomEvent */
|
3
|
-
|
4
|
-
var ripples = {
|
5
|
-
init : function(withRipple) {
|
6
|
-
"use strict";
|
7
|
-
|
8
|
-
// Cross browser matches function
|
9
|
-
function matchesSelector(dom_element, selector) {
|
10
|
-
var matches = dom_element.matches || dom_element.matchesSelector || dom_element.webkitMatchesSelector || dom_element.mozMatchesSelector || dom_element.msMatchesSelector || dom_element.oMatchesSelector;
|
11
|
-
return matches.call(dom_element, selector);
|
12
|
-
}
|
13
|
-
|
14
|
-
// animations time
|
15
|
-
var rippleOutTime = 100,
|
16
|
-
rippleStartTime = 500;
|
17
|
-
|
18
|
-
// Helper to bind events on dynamically created elements
|
19
|
-
var bind = function(event, selector, callback) {
|
20
|
-
document.addEventListener(event, function(e) {
|
21
|
-
var target = (typeof e.detail !== "number") ? e.detail : e.target;
|
22
|
-
|
23
|
-
if (matchesSelector(target, selector)) {
|
24
|
-
callback(e, target);
|
25
|
-
}
|
26
|
-
});
|
27
|
-
};
|
28
|
-
|
29
|
-
var rippleStart = function(e, target) {
|
30
|
-
|
31
|
-
// Init variables
|
32
|
-
var $rippleWrapper = target,
|
33
|
-
$el = $rippleWrapper.parentNode,
|
34
|
-
$ripple = document.createElement("div"),
|
35
|
-
elPos = $el.getBoundingClientRect(),
|
36
|
-
mousePos = {x: e.clientX - elPos.left, y: e.clientY - elPos.top},
|
37
|
-
scale = "transform:scale(" + Math.round($rippleWrapper.offsetWidth / 5) + ")",
|
38
|
-
rippleEnd = new CustomEvent("rippleEnd", {detail: $ripple}),
|
39
|
-
refreshElementStyle;
|
40
|
-
|
41
|
-
$ripplecache = $ripple;
|
42
|
-
|
43
|
-
// Set ripple class
|
44
|
-
$ripple.className = "ripple";
|
45
|
-
|
46
|
-
// Move ripple to the mouse position
|
47
|
-
$ripple.setAttribute("style", "left:" + mousePos.x + "px; top:" + mousePos.y + "px;");
|
48
|
-
|
49
|
-
// Insert new ripple into ripple wrapper
|
50
|
-
$rippleWrapper.appendChild($ripple);
|
51
|
-
|
52
|
-
// Make sure the ripple has the class applied (ugly hack but it works)
|
53
|
-
refreshElementStyle = window.getComputedStyle($ripple).opacity;
|
54
|
-
|
55
|
-
// Let other funtions know that this element is animating
|
56
|
-
$ripple.dataset.animating = 1;
|
57
|
-
|
58
|
-
// Set scale value to ripple and animate it
|
59
|
-
$ripple.className = "ripple ripple-on";
|
60
|
-
$ripple.setAttribute("style", $ripple.getAttribute("style") + ["-ms-" + scale,"-moz-" + scale,"-webkit-" + scale,scale].join(";"));
|
61
|
-
|
62
|
-
// This function is called when the animation is finished
|
63
|
-
setTimeout(function() {
|
64
|
-
|
65
|
-
// Let know to other functions that this element has finished the animation
|
66
|
-
$ripple.dataset.animating = 0;
|
67
|
-
document.dispatchEvent(rippleEnd);
|
68
|
-
|
69
|
-
}, rippleStartTime);
|
70
|
-
|
71
|
-
};
|
72
|
-
|
73
|
-
var rippleOut = function($ripple) {
|
74
|
-
// Clear previous animation
|
75
|
-
$ripple.className = "ripple ripple-on ripple-out";
|
76
|
-
|
77
|
-
// Let ripple fade out (with CSS)
|
78
|
-
setTimeout(function() {
|
79
|
-
$ripple.remove();
|
80
|
-
}, rippleOutTime);
|
81
|
-
};
|
82
|
-
|
83
|
-
// Helper, need to know if mouse is up or down
|
84
|
-
var mouseDown = false;
|
85
|
-
document.body.onmousedown = function() {
|
86
|
-
mouseDown = true;
|
87
|
-
};
|
88
|
-
document.body.onmouseup = function() {
|
89
|
-
mouseDown = false;
|
90
|
-
};
|
91
|
-
|
92
|
-
// Append ripple wrapper if not exists already
|
93
|
-
var rippleInit = function(e, target) {
|
94
|
-
|
95
|
-
if (target.getElementsByClassName("ripple-wrapper").length === 0) {
|
96
|
-
target.className += " withripple";
|
97
|
-
var $rippleWrapper = document.createElement("div");
|
98
|
-
$rippleWrapper.className = "ripple-wrapper";
|
99
|
-
target.appendChild($rippleWrapper);
|
100
|
-
}
|
101
|
-
|
102
|
-
};
|
103
|
-
|
104
|
-
|
105
|
-
var $ripplecache;
|
106
|
-
|
107
|
-
// Events handler
|
108
|
-
// init RippleJS and start ripple effect on mousedown
|
109
|
-
bind("mouseover", withRipple, rippleInit);
|
110
|
-
|
111
|
-
// start ripple effect on mousedown
|
112
|
-
bind("mousedown", ".ripple-wrapper", function(e, $ripple) {
|
113
|
-
// Start ripple only on left or middle mouse click
|
114
|
-
if (e.which === 1 || e.which === 2) {
|
115
|
-
rippleStart(e, $ripple);
|
116
|
-
}
|
117
|
-
});
|
118
|
-
// if animation ends and user is not holding mouse then destroy the ripple
|
119
|
-
bind("rippleEnd", ".ripple-wrapper .ripple", function(e, $ripple) {
|
120
|
-
|
121
|
-
var $ripples = $ripple.parentNode.getElementsByClassName("ripple");
|
122
|
-
|
123
|
-
if (!mouseDown || ( $ripples[0] == $ripple && $ripples.length > 1)) {
|
124
|
-
rippleOut($ripple);
|
125
|
-
}
|
126
|
-
});
|
127
|
-
// Destroy ripple when mouse is not holded anymore if the ripple still exists
|
128
|
-
bind("mouseup", ".ripple-wrapper", function() {
|
129
|
-
var $ripple = $ripplecache;
|
130
|
-
if ($ripple.dataset.animating != 1) {
|
131
|
-
rippleOut($ripple);
|
132
|
-
}
|
133
|
-
});
|
134
|
-
|
135
|
-
}
|
136
|
-
};
|
1
|
+
window.ripples={init:function(a){"use strict";function b(a,b){var c=a.matches||a.matchesSelector||a.webkitMatchesSelector||a.mozMatchesSelector||a.msMatchesSelector||a.oMatchesSelector;return c.call(a,b)}var c=100,d=500,e=function(a,c,d){"string"==typeof a&&(a=[a]),a.forEach(function(a){document.addEventListener(a,function(a){var e="number"!=typeof a.detail?a.detail:a.target;b(e,c)&&d(a,e)})})},f=function(a,b,c){var e,f=b,g=f.parentNode,h=document.createElement("div"),j=g.getBoundingClientRect(),k={x:a.clientX-j.left,y:(window.ontouchstart?a.clientY-window.scrollY:a.clientY)-j.top},l="scale("+Math.round(f.offsetWidth/5)+")",m=new CustomEvent("rippleEnd",{detail:h}),n=.1;a.touches&&(k={x:a.touches[0].clientX-j.left,y:a.touches[0].clientY-j.top}),console.log(k),i=h,h.className="ripple",h.setAttribute("style","left:"+k.x+"px; top:"+k.y+"px;");var o=window.getComputedStyle(g).color;o=o.replace("rgb","rgba").replace(")",", "+n+")"),f.appendChild(h),e=window.getComputedStyle(h).opacity,h.dataset.animating=1,h.className="ripple ripple-on";var p=[h.getAttribute("style"),"background-color: "+o,"-ms-transform: "+l,"-moz-transform"+l,"-webkit-transform"+l,"transform: "+l];h.setAttribute("style",p.join(";")),setTimeout(function(){h.dataset.animating=0,document.dispatchEvent(m),c&&c()},d)},g=function(a){a.className="ripple ripple-on ripple-out",setTimeout(function(){a.remove()},c)},h=!1;e(["mousedown","touchstart"],"*",function(){h=!0}),e(["mouseup","touchend"],"*",function(){h=!1});var i,j=function(a,b){if(0===b.getElementsByClassName("ripple-wrapper").length){b.className+=" withripple";var c=document.createElement("div");c.className="ripple-wrapper",b.appendChild(c),null===window.ontouchstart&&f(a,c,function(){c.getElementsByClassName("ripple")[0].remove()})}};e(["mouseover","touchstart"],a,j),e(["mousedown","touchstart"],".ripple-wrapper",function(a,b){(0===a.which||1===a.which||2===a.which)&&f(a,b)}),e("rippleEnd",".ripple-wrapper .ripple",function(a,b){var c=b.parentNode.getElementsByClassName("ripple");(!h||c[0]==b&&c.length>1)&&g(b)}),e(["mouseup","touchend"],".ripple-wrapper",function(){var a=i;a&&1!=a.dataset.animating&&g(a)})}};
|
File without changes
|
File without changes
|
data/app/assets/stylesheets/bootstrap-material-design/{material-wfont.css → material-wfont.css.erb}
RENAMED
@@ -1,4 +1,2248 @@
|
|
1
1
|
@import url(//fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,400,700,300|Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic);
|
2
|
+
@font-face {
|
3
|
+
font-family: "Material-Design-Icons";
|
4
|
+
src:url('<%= font_path("Material-Design.eot") + "?2u7a7w" %>');
|
5
|
+
src: url("<%= font_path("Material-Design-Icons.eot") + "?-g7cqhn" %>");
|
6
|
+
src: url("<%= font_path("Material-Design-Icons.eot") + "?#iefix-g7cqhn" %>") format("embedded-opentype"), url("<%= font_path("Material-Design-Icons.woff") + "?-g7cqhn" %>") format("woff"), url("<%= font_path("Material-Design-Icons.ttf") + "?-g7cqhn" %>") format("truetype"), url("<%= font_path("Material-Design-Icons.svg") + "?-g7cqhn#Material-Design-Icons" %>") format("svg");
|
7
|
+
font-weight: normal;
|
8
|
+
font-style: normal;
|
9
|
+
}
|
10
|
+
[class^="mdi-"],
|
11
|
+
[class*=" mdi-"] {
|
12
|
+
font-family: "Material-Design-Icons";
|
13
|
+
speak: none;
|
14
|
+
font-style: normal;
|
15
|
+
font-weight: normal;
|
16
|
+
font-variant: normal;
|
17
|
+
text-transform: none;
|
18
|
+
line-height: 1;
|
19
|
+
/* Better Font Rendering =========== */
|
20
|
+
-webkit-font-smoothing: antialiased;
|
21
|
+
-moz-osx-font-smoothing: grayscale;
|
22
|
+
}
|
23
|
+
.mdi-action-3d-rotation:before {
|
24
|
+
content: "\e600";
|
25
|
+
}
|
26
|
+
.mdi-action-accessibility:before {
|
27
|
+
content: "\e601";
|
28
|
+
}
|
29
|
+
.mdi-action-account-balance:before {
|
30
|
+
content: "\e602";
|
31
|
+
}
|
32
|
+
.mdi-action-account-balance-wallet:before {
|
33
|
+
content: "\e603";
|
34
|
+
}
|
35
|
+
.mdi-action-account-box:before {
|
36
|
+
content: "\e604";
|
37
|
+
}
|
38
|
+
.mdi-action-account-child:before {
|
39
|
+
content: "\e605";
|
40
|
+
}
|
41
|
+
.mdi-action-account-circle:before {
|
42
|
+
content: "\e606";
|
43
|
+
}
|
44
|
+
.mdi-action-add-shopping-cart:before {
|
45
|
+
content: "\e607";
|
46
|
+
}
|
47
|
+
.mdi-action-alarm:before {
|
48
|
+
content: "\e608";
|
49
|
+
}
|
50
|
+
.mdi-action-alarm-add:before {
|
51
|
+
content: "\e609";
|
52
|
+
}
|
53
|
+
.mdi-action-alarm-off:before {
|
54
|
+
content: "\e60a";
|
55
|
+
}
|
56
|
+
.mdi-action-alarm-on:before {
|
57
|
+
content: "\e60b";
|
58
|
+
}
|
59
|
+
.mdi-action-android:before {
|
60
|
+
content: "\e60c";
|
61
|
+
}
|
62
|
+
.mdi-action-announcement:before {
|
63
|
+
content: "\e60d";
|
64
|
+
}
|
65
|
+
.mdi-action-aspect-ratio:before {
|
66
|
+
content: "\e60e";
|
67
|
+
}
|
68
|
+
.mdi-action-assessment:before {
|
69
|
+
content: "\e60f";
|
70
|
+
}
|
71
|
+
.mdi-action-assignment:before {
|
72
|
+
content: "\e610";
|
73
|
+
}
|
74
|
+
.mdi-action-assignment-ind:before {
|
75
|
+
content: "\e611";
|
76
|
+
}
|
77
|
+
.mdi-action-assignment-late:before {
|
78
|
+
content: "\e612";
|
79
|
+
}
|
80
|
+
.mdi-action-assignment-return:before {
|
81
|
+
content: "\e613";
|
82
|
+
}
|
83
|
+
.mdi-action-assignment-returned:before {
|
84
|
+
content: "\e614";
|
85
|
+
}
|
86
|
+
.mdi-action-assignment-turned-in:before {
|
87
|
+
content: "\e615";
|
88
|
+
}
|
89
|
+
.mdi-action-autorenew:before {
|
90
|
+
content: "\e616";
|
91
|
+
}
|
92
|
+
.mdi-action-backup:before {
|
93
|
+
content: "\e617";
|
94
|
+
}
|
95
|
+
.mdi-action-book:before {
|
96
|
+
content: "\e618";
|
97
|
+
}
|
98
|
+
.mdi-action-bookmark:before {
|
99
|
+
content: "\e619";
|
100
|
+
}
|
101
|
+
.mdi-action-bookmark-outline:before {
|
102
|
+
content: "\e61a";
|
103
|
+
}
|
104
|
+
.mdi-action-bug-report:before {
|
105
|
+
content: "\e61b";
|
106
|
+
}
|
107
|
+
.mdi-action-cached:before {
|
108
|
+
content: "\e61c";
|
109
|
+
}
|
110
|
+
.mdi-action-class:before {
|
111
|
+
content: "\e61d";
|
112
|
+
}
|
113
|
+
.mdi-action-credit-card:before {
|
114
|
+
content: "\e61e";
|
115
|
+
}
|
116
|
+
.mdi-action-dashboard:before {
|
117
|
+
content: "\e61f";
|
118
|
+
}
|
119
|
+
.mdi-action-delete:before {
|
120
|
+
content: "\e620";
|
121
|
+
}
|
122
|
+
.mdi-action-description:before {
|
123
|
+
content: "\e621";
|
124
|
+
}
|
125
|
+
.mdi-action-dns:before {
|
126
|
+
content: "\e622";
|
127
|
+
}
|
128
|
+
.mdi-action-done:before {
|
129
|
+
content: "\e623";
|
130
|
+
}
|
131
|
+
.mdi-action-done-all:before {
|
132
|
+
content: "\e624";
|
133
|
+
}
|
134
|
+
.mdi-action-event:before {
|
135
|
+
content: "\e625";
|
136
|
+
}
|
137
|
+
.mdi-action-exit-to-app:before {
|
138
|
+
content: "\e626";
|
139
|
+
}
|
140
|
+
.mdi-action-explore:before {
|
141
|
+
content: "\e627";
|
142
|
+
}
|
143
|
+
.mdi-action-extension:before {
|
144
|
+
content: "\e628";
|
145
|
+
}
|
146
|
+
.mdi-action-face-unlock:before {
|
147
|
+
content: "\e629";
|
148
|
+
}
|
149
|
+
.mdi-action-favorite:before {
|
150
|
+
content: "\e62a";
|
151
|
+
}
|
152
|
+
.mdi-action-favorite-outline:before {
|
153
|
+
content: "\e62b";
|
154
|
+
}
|
155
|
+
.mdi-action-find-in-page:before {
|
156
|
+
content: "\e62c";
|
157
|
+
}
|
158
|
+
.mdi-action-find-replace:before {
|
159
|
+
content: "\e62d";
|
160
|
+
}
|
161
|
+
.mdi-action-flip-to-back:before {
|
162
|
+
content: "\e62e";
|
163
|
+
}
|
164
|
+
.mdi-action-flip-to-front:before {
|
165
|
+
content: "\e62f";
|
166
|
+
}
|
167
|
+
.mdi-action-get-app:before {
|
168
|
+
content: "\e630";
|
169
|
+
}
|
170
|
+
.mdi-action-grade:before {
|
171
|
+
content: "\e631";
|
172
|
+
}
|
173
|
+
.mdi-action-group-work:before {
|
174
|
+
content: "\e632";
|
175
|
+
}
|
176
|
+
.mdi-action-help:before {
|
177
|
+
content: "\e633";
|
178
|
+
}
|
179
|
+
.mdi-action-highlight-remove:before {
|
180
|
+
content: "\e634";
|
181
|
+
}
|
182
|
+
.mdi-action-history:before {
|
183
|
+
content: "\e635";
|
184
|
+
}
|
185
|
+
.mdi-action-home:before {
|
186
|
+
content: "\e636";
|
187
|
+
}
|
188
|
+
.mdi-action-https:before {
|
189
|
+
content: "\e637";
|
190
|
+
}
|
191
|
+
.mdi-action-info:before {
|
192
|
+
content: "\e638";
|
193
|
+
}
|
194
|
+
.mdi-action-info-outline:before {
|
195
|
+
content: "\e639";
|
196
|
+
}
|
197
|
+
.mdi-action-input:before {
|
198
|
+
content: "\e63a";
|
199
|
+
}
|
200
|
+
.mdi-action-invert-colors:before {
|
201
|
+
content: "\e63b";
|
202
|
+
}
|
203
|
+
.mdi-action-label:before {
|
204
|
+
content: "\e63c";
|
205
|
+
}
|
206
|
+
.mdi-action-label-outline:before {
|
207
|
+
content: "\e63d";
|
208
|
+
}
|
209
|
+
.mdi-action-language:before {
|
210
|
+
content: "\e63e";
|
211
|
+
}
|
212
|
+
.mdi-action-launch:before {
|
213
|
+
content: "\e63f";
|
214
|
+
}
|
215
|
+
.mdi-action-list:before {
|
216
|
+
content: "\e640";
|
217
|
+
}
|
218
|
+
.mdi-action-lock:before {
|
219
|
+
content: "\e641";
|
220
|
+
}
|
221
|
+
.mdi-action-lock-open:before {
|
222
|
+
content: "\e642";
|
223
|
+
}
|
224
|
+
.mdi-action-lock-outline:before {
|
225
|
+
content: "\e643";
|
226
|
+
}
|
227
|
+
.mdi-action-loyalty:before {
|
228
|
+
content: "\e644";
|
229
|
+
}
|
230
|
+
.mdi-action-markunread-mailbox:before {
|
231
|
+
content: "\e645";
|
232
|
+
}
|
233
|
+
.mdi-action-note-add:before {
|
234
|
+
content: "\e646";
|
235
|
+
}
|
236
|
+
.mdi-action-open-in-browser:before {
|
237
|
+
content: "\e647";
|
238
|
+
}
|
239
|
+
.mdi-action-open-in-new:before {
|
240
|
+
content: "\e648";
|
241
|
+
}
|
242
|
+
.mdi-action-open-with:before {
|
243
|
+
content: "\e649";
|
244
|
+
}
|
245
|
+
.mdi-action-pageview:before {
|
246
|
+
content: "\e64a";
|
247
|
+
}
|
248
|
+
.mdi-action-payment:before {
|
249
|
+
content: "\e64b";
|
250
|
+
}
|
251
|
+
.mdi-action-perm-camera-mic:before {
|
252
|
+
content: "\e64c";
|
253
|
+
}
|
254
|
+
.mdi-action-perm-contact-cal:before {
|
255
|
+
content: "\e64d";
|
256
|
+
}
|
257
|
+
.mdi-action-perm-data-setting:before {
|
258
|
+
content: "\e64e";
|
259
|
+
}
|
260
|
+
.mdi-action-perm-device-info:before {
|
261
|
+
content: "\e64f";
|
262
|
+
}
|
263
|
+
.mdi-action-perm-identity:before {
|
264
|
+
content: "\e650";
|
265
|
+
}
|
266
|
+
.mdi-action-perm-media:before {
|
267
|
+
content: "\e651";
|
268
|
+
}
|
269
|
+
.mdi-action-perm-phone-msg:before {
|
270
|
+
content: "\e652";
|
271
|
+
}
|
272
|
+
.mdi-action-perm-scan-wifi:before {
|
273
|
+
content: "\e653";
|
274
|
+
}
|
275
|
+
.mdi-action-picture-in-picture:before {
|
276
|
+
content: "\e654";
|
277
|
+
}
|
278
|
+
.mdi-action-polymer:before {
|
279
|
+
content: "\e655";
|
280
|
+
}
|
281
|
+
.mdi-action-print:before {
|
282
|
+
content: "\e656";
|
283
|
+
}
|
284
|
+
.mdi-action-query-builder:before {
|
285
|
+
content: "\e657";
|
286
|
+
}
|
287
|
+
.mdi-action-question-answer:before {
|
288
|
+
content: "\e658";
|
289
|
+
}
|
290
|
+
.mdi-action-receipt:before {
|
291
|
+
content: "\e659";
|
292
|
+
}
|
293
|
+
.mdi-action-redeem:before {
|
294
|
+
content: "\e65a";
|
295
|
+
}
|
296
|
+
.mdi-action-report-problem:before {
|
297
|
+
content: "\e65b";
|
298
|
+
}
|
299
|
+
.mdi-action-restore:before {
|
300
|
+
content: "\e65c";
|
301
|
+
}
|
302
|
+
.mdi-action-room:before {
|
303
|
+
content: "\e65d";
|
304
|
+
}
|
305
|
+
.mdi-action-schedule:before {
|
306
|
+
content: "\e65e";
|
307
|
+
}
|
308
|
+
.mdi-action-search:before {
|
309
|
+
content: "\e65f";
|
310
|
+
}
|
311
|
+
.mdi-action-settings:before {
|
312
|
+
content: "\e660";
|
313
|
+
}
|
314
|
+
.mdi-action-settings-applications:before {
|
315
|
+
content: "\e661";
|
316
|
+
}
|
317
|
+
.mdi-action-settings-backup-restore:before {
|
318
|
+
content: "\e662";
|
319
|
+
}
|
320
|
+
.mdi-action-settings-bluetooth:before {
|
321
|
+
content: "\e663";
|
322
|
+
}
|
323
|
+
.mdi-action-settings-cell:before {
|
324
|
+
content: "\e664";
|
325
|
+
}
|
326
|
+
.mdi-action-settings-display:before {
|
327
|
+
content: "\e665";
|
328
|
+
}
|
329
|
+
.mdi-action-settings-ethernet:before {
|
330
|
+
content: "\e666";
|
331
|
+
}
|
332
|
+
.mdi-action-settings-input-antenna:before {
|
333
|
+
content: "\e667";
|
334
|
+
}
|
335
|
+
.mdi-action-settings-input-component:before {
|
336
|
+
content: "\e668";
|
337
|
+
}
|
338
|
+
.mdi-action-settings-input-composite:before {
|
339
|
+
content: "\e669";
|
340
|
+
}
|
341
|
+
.mdi-action-settings-input-hdmi:before {
|
342
|
+
content: "\e66a";
|
343
|
+
}
|
344
|
+
.mdi-action-settings-input-svideo:before {
|
345
|
+
content: "\e66b";
|
346
|
+
}
|
347
|
+
.mdi-action-settings-overscan:before {
|
348
|
+
content: "\e66c";
|
349
|
+
}
|
350
|
+
.mdi-action-settings-phone:before {
|
351
|
+
content: "\e66d";
|
352
|
+
}
|
353
|
+
.mdi-action-settings-power:before {
|
354
|
+
content: "\e66e";
|
355
|
+
}
|
356
|
+
.mdi-action-settings-remote:before {
|
357
|
+
content: "\e66f";
|
358
|
+
}
|
359
|
+
.mdi-action-settings-voice:before {
|
360
|
+
content: "\e670";
|
361
|
+
}
|
362
|
+
.mdi-action-shop:before {
|
363
|
+
content: "\e671";
|
364
|
+
}
|
365
|
+
.mdi-action-shopping-basket:before {
|
366
|
+
content: "\e672";
|
367
|
+
}
|
368
|
+
.mdi-action-shopping-cart:before {
|
369
|
+
content: "\e673";
|
370
|
+
}
|
371
|
+
.mdi-action-shop-two:before {
|
372
|
+
content: "\e674";
|
373
|
+
}
|
374
|
+
.mdi-action-speaker-notes:before {
|
375
|
+
content: "\e675";
|
376
|
+
}
|
377
|
+
.mdi-action-spellcheck:before {
|
378
|
+
content: "\e676";
|
379
|
+
}
|
380
|
+
.mdi-action-star-rate:before {
|
381
|
+
content: "\e677";
|
382
|
+
}
|
383
|
+
.mdi-action-stars:before {
|
384
|
+
content: "\e678";
|
385
|
+
}
|
386
|
+
.mdi-action-store:before {
|
387
|
+
content: "\e679";
|
388
|
+
}
|
389
|
+
.mdi-action-subject:before {
|
390
|
+
content: "\e67a";
|
391
|
+
}
|
392
|
+
.mdi-action-swap-horiz:before {
|
393
|
+
content: "\e67b";
|
394
|
+
}
|
395
|
+
.mdi-action-swap-vert:before {
|
396
|
+
content: "\e67c";
|
397
|
+
}
|
398
|
+
.mdi-action-swap-vert-circle:before {
|
399
|
+
content: "\e67d";
|
400
|
+
}
|
401
|
+
.mdi-action-system-update-tv:before {
|
402
|
+
content: "\e67e";
|
403
|
+
}
|
404
|
+
.mdi-action-tab:before {
|
405
|
+
content: "\e67f";
|
406
|
+
}
|
407
|
+
.mdi-action-tab-unselected:before {
|
408
|
+
content: "\e680";
|
409
|
+
}
|
410
|
+
.mdi-action-theaters:before {
|
411
|
+
content: "\e681";
|
412
|
+
}
|
413
|
+
.mdi-action-thumb-down:before {
|
414
|
+
content: "\e682";
|
415
|
+
}
|
416
|
+
.mdi-action-thumbs-up-down:before {
|
417
|
+
content: "\e683";
|
418
|
+
}
|
419
|
+
.mdi-action-thumb-up:before {
|
420
|
+
content: "\e684";
|
421
|
+
}
|
422
|
+
.mdi-action-toc:before {
|
423
|
+
content: "\e685";
|
424
|
+
}
|
425
|
+
.mdi-action-today:before {
|
426
|
+
content: "\e686";
|
427
|
+
}
|
428
|
+
.mdi-action-track-changes:before {
|
429
|
+
content: "\e687";
|
430
|
+
}
|
431
|
+
.mdi-action-translate:before {
|
432
|
+
content: "\e688";
|
433
|
+
}
|
434
|
+
.mdi-action-trending-down:before {
|
435
|
+
content: "\e689";
|
436
|
+
}
|
437
|
+
.mdi-action-trending-neutral:before {
|
438
|
+
content: "\e68a";
|
439
|
+
}
|
440
|
+
.mdi-action-trending-up:before {
|
441
|
+
content: "\e68b";
|
442
|
+
}
|
443
|
+
.mdi-action-turned-in:before {
|
444
|
+
content: "\e68c";
|
445
|
+
}
|
446
|
+
.mdi-action-turned-in-not:before {
|
447
|
+
content: "\e68d";
|
448
|
+
}
|
449
|
+
.mdi-action-verified-user:before {
|
450
|
+
content: "\e68e";
|
451
|
+
}
|
452
|
+
.mdi-action-view-agenda:before {
|
453
|
+
content: "\e68f";
|
454
|
+
}
|
455
|
+
.mdi-action-view-array:before {
|
456
|
+
content: "\e690";
|
457
|
+
}
|
458
|
+
.mdi-action-view-carousel:before {
|
459
|
+
content: "\e691";
|
460
|
+
}
|
461
|
+
.mdi-action-view-column:before {
|
462
|
+
content: "\e692";
|
463
|
+
}
|
464
|
+
.mdi-action-view-day:before {
|
465
|
+
content: "\e693";
|
466
|
+
}
|
467
|
+
.mdi-action-view-headline:before {
|
468
|
+
content: "\e694";
|
469
|
+
}
|
470
|
+
.mdi-action-view-list:before {
|
471
|
+
content: "\e695";
|
472
|
+
}
|
473
|
+
.mdi-action-view-module:before {
|
474
|
+
content: "\e696";
|
475
|
+
}
|
476
|
+
.mdi-action-view-quilt:before {
|
477
|
+
content: "\e697";
|
478
|
+
}
|
479
|
+
.mdi-action-view-stream:before {
|
480
|
+
content: "\e698";
|
481
|
+
}
|
482
|
+
.mdi-action-view-week:before {
|
483
|
+
content: "\e699";
|
484
|
+
}
|
485
|
+
.mdi-action-visibility:before {
|
486
|
+
content: "\e69a";
|
487
|
+
}
|
488
|
+
.mdi-action-visibility-off:before {
|
489
|
+
content: "\e69b";
|
490
|
+
}
|
491
|
+
.mdi-action-wallet-giftcard:before {
|
492
|
+
content: "\e69c";
|
493
|
+
}
|
494
|
+
.mdi-action-wallet-membership:before {
|
495
|
+
content: "\e69d";
|
496
|
+
}
|
497
|
+
.mdi-action-wallet-travel:before {
|
498
|
+
content: "\e69e";
|
499
|
+
}
|
500
|
+
.mdi-action-work:before {
|
501
|
+
content: "\e69f";
|
502
|
+
}
|
503
|
+
.mdi-alert-error:before {
|
504
|
+
content: "\e6a0";
|
505
|
+
}
|
506
|
+
.mdi-alert-warning:before {
|
507
|
+
content: "\e6a1";
|
508
|
+
}
|
509
|
+
.mdi-av-album:before {
|
510
|
+
content: "\e6a2";
|
511
|
+
}
|
512
|
+
.mdi-av-timer:before {
|
513
|
+
content: "\e6a3";
|
514
|
+
}
|
515
|
+
.mdi-av-closed-caption:before {
|
516
|
+
content: "\e6a4";
|
517
|
+
}
|
518
|
+
.mdi-av-equalizer:before {
|
519
|
+
content: "\e6a5";
|
520
|
+
}
|
521
|
+
.mdi-av-explicit:before {
|
522
|
+
content: "\e6a6";
|
523
|
+
}
|
524
|
+
.mdi-av-fast-forward:before {
|
525
|
+
content: "\e6a7";
|
526
|
+
}
|
527
|
+
.mdi-av-fast-rewind:before {
|
528
|
+
content: "\e6a8";
|
529
|
+
}
|
530
|
+
.mdi-av-games:before {
|
531
|
+
content: "\e6a9";
|
532
|
+
}
|
533
|
+
.mdi-av-hearing:before {
|
534
|
+
content: "\e6aa";
|
535
|
+
}
|
536
|
+
.mdi-av-high-quality:before {
|
537
|
+
content: "\e6ab";
|
538
|
+
}
|
539
|
+
.mdi-av-loop:before {
|
540
|
+
content: "\e6ac";
|
541
|
+
}
|
542
|
+
.mdi-av-mic:before {
|
543
|
+
content: "\e6ad";
|
544
|
+
}
|
545
|
+
.mdi-av-mic-none:before {
|
546
|
+
content: "\e6ae";
|
547
|
+
}
|
548
|
+
.mdi-av-mic-off:before {
|
549
|
+
content: "\e6af";
|
550
|
+
}
|
551
|
+
.mdi-av-movie:before {
|
552
|
+
content: "\e6b0";
|
553
|
+
}
|
554
|
+
.mdi-av-my-library-add:before {
|
555
|
+
content: "\e6b1";
|
556
|
+
}
|
557
|
+
.mdi-av-my-library-books:before {
|
558
|
+
content: "\e6b2";
|
559
|
+
}
|
560
|
+
.mdi-av-my-library-music:before {
|
561
|
+
content: "\e6b3";
|
562
|
+
}
|
563
|
+
.mdi-av-new-releases:before {
|
564
|
+
content: "\e6b4";
|
565
|
+
}
|
566
|
+
.mdi-av-not-interested:before {
|
567
|
+
content: "\e6b5";
|
568
|
+
}
|
569
|
+
.mdi-av-pause:before {
|
570
|
+
content: "\e6b6";
|
571
|
+
}
|
572
|
+
.mdi-av-pause-circle-fill:before {
|
573
|
+
content: "\e6b7";
|
574
|
+
}
|
575
|
+
.mdi-av-pause-circle-outline:before {
|
576
|
+
content: "\e6b8";
|
577
|
+
}
|
578
|
+
.mdi-av-play-arrow:before {
|
579
|
+
content: "\e6b9";
|
580
|
+
}
|
581
|
+
.mdi-av-play-circle-fill:before {
|
582
|
+
content: "\e6ba";
|
583
|
+
}
|
584
|
+
.mdi-av-play-circle-outline:before {
|
585
|
+
content: "\e6bb";
|
586
|
+
}
|
587
|
+
.mdi-av-playlist-add:before {
|
588
|
+
content: "\e6bc";
|
589
|
+
}
|
590
|
+
.mdi-av-play-shopping-bag:before {
|
591
|
+
content: "\e6bd";
|
592
|
+
}
|
593
|
+
.mdi-av-queue:before {
|
594
|
+
content: "\e6be";
|
595
|
+
}
|
596
|
+
.mdi-av-queue-music:before {
|
597
|
+
content: "\e6bf";
|
598
|
+
}
|
599
|
+
.mdi-av-radio:before {
|
600
|
+
content: "\e6c0";
|
601
|
+
}
|
602
|
+
.mdi-av-recent-actors:before {
|
603
|
+
content: "\e6c1";
|
604
|
+
}
|
605
|
+
.mdi-av-repeat:before {
|
606
|
+
content: "\e6c2";
|
607
|
+
}
|
608
|
+
.mdi-av-repeat-one:before {
|
609
|
+
content: "\e6c3";
|
610
|
+
}
|
611
|
+
.mdi-av-replay:before {
|
612
|
+
content: "\e6c4";
|
613
|
+
}
|
614
|
+
.mdi-av-shuffle:before {
|
615
|
+
content: "\e6c5";
|
616
|
+
}
|
617
|
+
.mdi-av-skip-next:before {
|
618
|
+
content: "\e6c6";
|
619
|
+
}
|
620
|
+
.mdi-av-skip-previous:before {
|
621
|
+
content: "\e6c7";
|
622
|
+
}
|
623
|
+
.mdi-av-snooze:before {
|
624
|
+
content: "\e6c8";
|
625
|
+
}
|
626
|
+
.mdi-av-stop:before {
|
627
|
+
content: "\e6c9";
|
628
|
+
}
|
629
|
+
.mdi-av-subtitles:before {
|
630
|
+
content: "\e6ca";
|
631
|
+
}
|
632
|
+
.mdi-av-surround-sound:before {
|
633
|
+
content: "\e6cb";
|
634
|
+
}
|
635
|
+
.mdi-av-videocam:before {
|
636
|
+
content: "\e6cc";
|
637
|
+
}
|
638
|
+
.mdi-av-videocam-off:before {
|
639
|
+
content: "\e6cd";
|
640
|
+
}
|
641
|
+
.mdi-av-video-collection:before {
|
642
|
+
content: "\e6ce";
|
643
|
+
}
|
644
|
+
.mdi-av-volume-down:before {
|
645
|
+
content: "\e6cf";
|
646
|
+
}
|
647
|
+
.mdi-av-volume-mute:before {
|
648
|
+
content: "\e6d0";
|
649
|
+
}
|
650
|
+
.mdi-av-volume-off:before {
|
651
|
+
content: "\e6d1";
|
652
|
+
}
|
653
|
+
.mdi-av-volume-up:before {
|
654
|
+
content: "\e6d2";
|
655
|
+
}
|
656
|
+
.mdi-av-web:before {
|
657
|
+
content: "\e6d3";
|
658
|
+
}
|
659
|
+
.mdi-communication-business:before {
|
660
|
+
content: "\e6d4";
|
661
|
+
}
|
662
|
+
.mdi-communication-call:before {
|
663
|
+
content: "\e6d5";
|
664
|
+
}
|
665
|
+
.mdi-communication-call-end:before {
|
666
|
+
content: "\e6d6";
|
667
|
+
}
|
668
|
+
.mdi-communication-call-made:before {
|
669
|
+
content: "\e6d7";
|
670
|
+
}
|
671
|
+
.mdi-communication-call-merge:before {
|
672
|
+
content: "\e6d8";
|
673
|
+
}
|
674
|
+
.mdi-communication-call-missed:before {
|
675
|
+
content: "\e6d9";
|
676
|
+
}
|
677
|
+
.mdi-communication-call-received:before {
|
678
|
+
content: "\e6da";
|
679
|
+
}
|
680
|
+
.mdi-communication-call-split:before {
|
681
|
+
content: "\e6db";
|
682
|
+
}
|
683
|
+
.mdi-communication-chat:before {
|
684
|
+
content: "\e6dc";
|
685
|
+
}
|
686
|
+
.mdi-communication-clear-all:before {
|
687
|
+
content: "\e6dd";
|
688
|
+
}
|
689
|
+
.mdi-communication-comment:before {
|
690
|
+
content: "\e6de";
|
691
|
+
}
|
692
|
+
.mdi-communication-contacts:before {
|
693
|
+
content: "\e6df";
|
694
|
+
}
|
695
|
+
.mdi-communication-dialer-sip:before {
|
696
|
+
content: "\e6e0";
|
697
|
+
}
|
698
|
+
.mdi-communication-dialpad:before {
|
699
|
+
content: "\e6e1";
|
700
|
+
}
|
701
|
+
.mdi-communication-dnd-on:before {
|
702
|
+
content: "\e6e2";
|
703
|
+
}
|
704
|
+
.mdi-communication-email:before {
|
705
|
+
content: "\e6e3";
|
706
|
+
}
|
707
|
+
.mdi-communication-forum:before {
|
708
|
+
content: "\e6e4";
|
709
|
+
}
|
710
|
+
.mdi-communication-import-export:before {
|
711
|
+
content: "\e6e5";
|
712
|
+
}
|
713
|
+
.mdi-communication-invert-colors-off:before {
|
714
|
+
content: "\e6e6";
|
715
|
+
}
|
716
|
+
.mdi-communication-invert-colors-on:before {
|
717
|
+
content: "\e6e7";
|
718
|
+
}
|
719
|
+
.mdi-communication-live-help:before {
|
720
|
+
content: "\e6e8";
|
721
|
+
}
|
722
|
+
.mdi-communication-location-off:before {
|
723
|
+
content: "\e6e9";
|
724
|
+
}
|
725
|
+
.mdi-communication-location-on:before {
|
726
|
+
content: "\e6ea";
|
727
|
+
}
|
728
|
+
.mdi-communication-message:before {
|
729
|
+
content: "\e6eb";
|
730
|
+
}
|
731
|
+
.mdi-communication-messenger:before {
|
732
|
+
content: "\e6ec";
|
733
|
+
}
|
734
|
+
.mdi-communication-no-sim:before {
|
735
|
+
content: "\e6ed";
|
736
|
+
}
|
737
|
+
.mdi-communication-phone:before {
|
738
|
+
content: "\e6ee";
|
739
|
+
}
|
740
|
+
.mdi-communication-portable-wifi-off:before {
|
741
|
+
content: "\e6ef";
|
742
|
+
}
|
743
|
+
.mdi-communication-quick-contacts-dialer:before {
|
744
|
+
content: "\e6f0";
|
745
|
+
}
|
746
|
+
.mdi-communication-quick-contacts-mail:before {
|
747
|
+
content: "\e6f1";
|
748
|
+
}
|
749
|
+
.mdi-communication-ring-volume:before {
|
750
|
+
content: "\e6f2";
|
751
|
+
}
|
752
|
+
.mdi-communication-stay-current-landscape:before {
|
753
|
+
content: "\e6f3";
|
754
|
+
}
|
755
|
+
.mdi-communication-stay-current-portrait:before {
|
756
|
+
content: "\e6f4";
|
757
|
+
}
|
758
|
+
.mdi-communication-stay-primary-landscape:before {
|
759
|
+
content: "\e6f5";
|
760
|
+
}
|
761
|
+
.mdi-communication-stay-primary-portrait:before {
|
762
|
+
content: "\e6f6";
|
763
|
+
}
|
764
|
+
.mdi-communication-swap-calls:before {
|
765
|
+
content: "\e6f7";
|
766
|
+
}
|
767
|
+
.mdi-communication-textsms:before {
|
768
|
+
content: "\e6f8";
|
769
|
+
}
|
770
|
+
.mdi-communication-voicemail:before {
|
771
|
+
content: "\e6f9";
|
772
|
+
}
|
773
|
+
.mdi-communication-vpn-key:before {
|
774
|
+
content: "\e6fa";
|
775
|
+
}
|
776
|
+
.mdi-content-add:before {
|
777
|
+
content: "\e6fb";
|
778
|
+
}
|
779
|
+
.mdi-content-add-box:before {
|
780
|
+
content: "\e6fc";
|
781
|
+
}
|
782
|
+
.mdi-content-add-circle:before {
|
783
|
+
content: "\e6fd";
|
784
|
+
}
|
785
|
+
.mdi-content-add-circle-outline:before {
|
786
|
+
content: "\e6fe";
|
787
|
+
}
|
788
|
+
.mdi-content-archive:before {
|
789
|
+
content: "\e6ff";
|
790
|
+
}
|
791
|
+
.mdi-content-backspace:before {
|
792
|
+
content: "\e700";
|
793
|
+
}
|
794
|
+
.mdi-content-block:before {
|
795
|
+
content: "\e701";
|
796
|
+
}
|
797
|
+
.mdi-content-clear:before {
|
798
|
+
content: "\e702";
|
799
|
+
}
|
800
|
+
.mdi-content-content-copy:before {
|
801
|
+
content: "\e703";
|
802
|
+
}
|
803
|
+
.mdi-content-content-cut:before {
|
804
|
+
content: "\e704";
|
805
|
+
}
|
806
|
+
.mdi-content-content-paste:before {
|
807
|
+
content: "\e705";
|
808
|
+
}
|
809
|
+
.mdi-content-create:before {
|
810
|
+
content: "\e706";
|
811
|
+
}
|
812
|
+
.mdi-content-drafts:before {
|
813
|
+
content: "\e707";
|
814
|
+
}
|
815
|
+
.mdi-content-filter-list:before {
|
816
|
+
content: "\e708";
|
817
|
+
}
|
818
|
+
.mdi-content-flag:before {
|
819
|
+
content: "\e709";
|
820
|
+
}
|
821
|
+
.mdi-content-forward:before {
|
822
|
+
content: "\e70a";
|
823
|
+
}
|
824
|
+
.mdi-content-gesture:before {
|
825
|
+
content: "\e70b";
|
826
|
+
}
|
827
|
+
.mdi-content-inbox:before {
|
828
|
+
content: "\e70c";
|
829
|
+
}
|
830
|
+
.mdi-content-link:before {
|
831
|
+
content: "\e70d";
|
832
|
+
}
|
833
|
+
.mdi-content-mail:before {
|
834
|
+
content: "\e70e";
|
835
|
+
}
|
836
|
+
.mdi-content-markunread:before {
|
837
|
+
content: "\e70f";
|
838
|
+
}
|
839
|
+
.mdi-content-redo:before {
|
840
|
+
content: "\e710";
|
841
|
+
}
|
842
|
+
.mdi-content-remove:before {
|
843
|
+
content: "\e711";
|
844
|
+
}
|
845
|
+
.mdi-content-remove-circle:before {
|
846
|
+
content: "\e712";
|
847
|
+
}
|
848
|
+
.mdi-content-remove-circle-outline:before {
|
849
|
+
content: "\e713";
|
850
|
+
}
|
851
|
+
.mdi-content-reply:before {
|
852
|
+
content: "\e714";
|
853
|
+
}
|
854
|
+
.mdi-content-reply-all:before {
|
855
|
+
content: "\e715";
|
856
|
+
}
|
857
|
+
.mdi-content-report:before {
|
858
|
+
content: "\e716";
|
859
|
+
}
|
860
|
+
.mdi-content-save:before {
|
861
|
+
content: "\e717";
|
862
|
+
}
|
863
|
+
.mdi-content-select-all:before {
|
864
|
+
content: "\e718";
|
865
|
+
}
|
866
|
+
.mdi-content-send:before {
|
867
|
+
content: "\e719";
|
868
|
+
}
|
869
|
+
.mdi-content-sort:before {
|
870
|
+
content: "\e71a";
|
871
|
+
}
|
872
|
+
.mdi-content-text-format:before {
|
873
|
+
content: "\e71b";
|
874
|
+
}
|
875
|
+
.mdi-content-undo:before {
|
876
|
+
content: "\e71c";
|
877
|
+
}
|
878
|
+
.mdi-device-access-alarm:before {
|
879
|
+
content: "\e71d";
|
880
|
+
}
|
881
|
+
.mdi-device-access-alarms:before {
|
882
|
+
content: "\e71e";
|
883
|
+
}
|
884
|
+
.mdi-device-access-time:before {
|
885
|
+
content: "\e71f";
|
886
|
+
}
|
887
|
+
.mdi-device-add-alarm:before {
|
888
|
+
content: "\e720";
|
889
|
+
}
|
890
|
+
.mdi-device-airplanemode-off:before {
|
891
|
+
content: "\e721";
|
892
|
+
}
|
893
|
+
.mdi-device-airplanemode-on:before {
|
894
|
+
content: "\e722";
|
895
|
+
}
|
896
|
+
.mdi-device-battery-20:before {
|
897
|
+
content: "\e723";
|
898
|
+
}
|
899
|
+
.mdi-device-battery-30:before {
|
900
|
+
content: "\e724";
|
901
|
+
}
|
902
|
+
.mdi-device-battery-50:before {
|
903
|
+
content: "\e725";
|
904
|
+
}
|
905
|
+
.mdi-device-battery-60:before {
|
906
|
+
content: "\e726";
|
907
|
+
}
|
908
|
+
.mdi-device-battery-80:before {
|
909
|
+
content: "\e727";
|
910
|
+
}
|
911
|
+
.mdi-device-battery-90:before {
|
912
|
+
content: "\e728";
|
913
|
+
}
|
914
|
+
.mdi-device-battery-alert:before {
|
915
|
+
content: "\e729";
|
916
|
+
}
|
917
|
+
.mdi-device-battery-charging-20:before {
|
918
|
+
content: "\e72a";
|
919
|
+
}
|
920
|
+
.mdi-device-battery-charging-30:before {
|
921
|
+
content: "\e72b";
|
922
|
+
}
|
923
|
+
.mdi-device-battery-charging-50:before {
|
924
|
+
content: "\e72c";
|
925
|
+
}
|
926
|
+
.mdi-device-battery-charging-60:before {
|
927
|
+
content: "\e72d";
|
928
|
+
}
|
929
|
+
.mdi-device-battery-charging-80:before {
|
930
|
+
content: "\e72e";
|
931
|
+
}
|
932
|
+
.mdi-device-battery-charging-90:before {
|
933
|
+
content: "\e72f";
|
934
|
+
}
|
935
|
+
.mdi-device-battery-charging-full:before {
|
936
|
+
content: "\e730";
|
937
|
+
}
|
938
|
+
.mdi-device-battery-full:before {
|
939
|
+
content: "\e731";
|
940
|
+
}
|
941
|
+
.mdi-device-battery-std:before {
|
942
|
+
content: "\e732";
|
943
|
+
}
|
944
|
+
.mdi-device-battery-unknown:before {
|
945
|
+
content: "\e733";
|
946
|
+
}
|
947
|
+
.mdi-device-bluetooth:before {
|
948
|
+
content: "\e734";
|
949
|
+
}
|
950
|
+
.mdi-device-bluetooth-connected:before {
|
951
|
+
content: "\e735";
|
952
|
+
}
|
953
|
+
.mdi-device-bluetooth-disabled:before {
|
954
|
+
content: "\e736";
|
955
|
+
}
|
956
|
+
.mdi-device-bluetooth-searching:before {
|
957
|
+
content: "\e737";
|
958
|
+
}
|
959
|
+
.mdi-device-brightness-auto:before {
|
960
|
+
content: "\e738";
|
961
|
+
}
|
962
|
+
.mdi-device-brightness-high:before {
|
963
|
+
content: "\e739";
|
964
|
+
}
|
965
|
+
.mdi-device-brightness-low:before {
|
966
|
+
content: "\e73a";
|
967
|
+
}
|
968
|
+
.mdi-device-brightness-medium:before {
|
969
|
+
content: "\e73b";
|
970
|
+
}
|
971
|
+
.mdi-device-data-usage:before {
|
972
|
+
content: "\e73c";
|
973
|
+
}
|
974
|
+
.mdi-device-developer-mode:before {
|
975
|
+
content: "\e73d";
|
976
|
+
}
|
977
|
+
.mdi-device-devices:before {
|
978
|
+
content: "\e73e";
|
979
|
+
}
|
980
|
+
.mdi-device-dvr:before {
|
981
|
+
content: "\e73f";
|
982
|
+
}
|
983
|
+
.mdi-device-gps-fixed:before {
|
984
|
+
content: "\e740";
|
985
|
+
}
|
986
|
+
.mdi-device-gps-not-fixed:before {
|
987
|
+
content: "\e741";
|
988
|
+
}
|
989
|
+
.mdi-device-gps-off:before {
|
990
|
+
content: "\e742";
|
991
|
+
}
|
992
|
+
.mdi-device-location-disabled:before {
|
993
|
+
content: "\e743";
|
994
|
+
}
|
995
|
+
.mdi-device-location-searching:before {
|
996
|
+
content: "\e744";
|
997
|
+
}
|
998
|
+
.mdi-device-multitrack-audio:before {
|
999
|
+
content: "\e745";
|
1000
|
+
}
|
1001
|
+
.mdi-device-network-cell:before {
|
1002
|
+
content: "\e746";
|
1003
|
+
}
|
1004
|
+
.mdi-device-network-wifi:before {
|
1005
|
+
content: "\e747";
|
1006
|
+
}
|
1007
|
+
.mdi-device-nfc:before {
|
1008
|
+
content: "\e748";
|
1009
|
+
}
|
1010
|
+
.mdi-device-now-wallpaper:before {
|
1011
|
+
content: "\e749";
|
1012
|
+
}
|
1013
|
+
.mdi-device-now-widgets:before {
|
1014
|
+
content: "\e74a";
|
1015
|
+
}
|
1016
|
+
.mdi-device-screen-lock-landscape:before {
|
1017
|
+
content: "\e74b";
|
1018
|
+
}
|
1019
|
+
.mdi-device-screen-lock-portrait:before {
|
1020
|
+
content: "\e74c";
|
1021
|
+
}
|
1022
|
+
.mdi-device-screen-lock-rotation:before {
|
1023
|
+
content: "\e74d";
|
1024
|
+
}
|
1025
|
+
.mdi-device-screen-rotation:before {
|
1026
|
+
content: "\e74e";
|
1027
|
+
}
|
1028
|
+
.mdi-device-sd-storage:before {
|
1029
|
+
content: "\e74f";
|
1030
|
+
}
|
1031
|
+
.mdi-device-settings-system-daydream:before {
|
1032
|
+
content: "\e750";
|
1033
|
+
}
|
1034
|
+
.mdi-device-signal-cellular-0-bar:before {
|
1035
|
+
content: "\e751";
|
1036
|
+
}
|
1037
|
+
.mdi-device-signal-cellular-1-bar:before {
|
1038
|
+
content: "\e752";
|
1039
|
+
}
|
1040
|
+
.mdi-device-signal-cellular-2-bar:before {
|
1041
|
+
content: "\e753";
|
1042
|
+
}
|
1043
|
+
.mdi-device-signal-cellular-3-bar:before {
|
1044
|
+
content: "\e754";
|
1045
|
+
}
|
1046
|
+
.mdi-device-signal-cellular-4-bar:before {
|
1047
|
+
content: "\e755";
|
1048
|
+
}
|
1049
|
+
.mdi-device-signal-cellular-connected-no-internet-0-bar:before {
|
1050
|
+
content: "\e756";
|
1051
|
+
}
|
1052
|
+
.mdi-device-signal-cellular-connected-no-internet-1-bar:before {
|
1053
|
+
content: "\e757";
|
1054
|
+
}
|
1055
|
+
.mdi-device-signal-cellular-connected-no-internet-2-bar:before {
|
1056
|
+
content: "\e758";
|
1057
|
+
}
|
1058
|
+
.mdi-device-signal-cellular-connected-no-internet-3-bar:before {
|
1059
|
+
content: "\e759";
|
1060
|
+
}
|
1061
|
+
.mdi-device-signal-cellular-connected-no-internet-4-bar:before {
|
1062
|
+
content: "\e75a";
|
1063
|
+
}
|
1064
|
+
.mdi-device-signal-cellular-no-sim:before {
|
1065
|
+
content: "\e75b";
|
1066
|
+
}
|
1067
|
+
.mdi-device-signal-cellular-null:before {
|
1068
|
+
content: "\e75c";
|
1069
|
+
}
|
1070
|
+
.mdi-device-signal-cellular-off:before {
|
1071
|
+
content: "\e75d";
|
1072
|
+
}
|
1073
|
+
.mdi-device-signal-wifi-0-bar:before {
|
1074
|
+
content: "\e75e";
|
1075
|
+
}
|
1076
|
+
.mdi-device-signal-wifi-1-bar:before {
|
1077
|
+
content: "\e75f";
|
1078
|
+
}
|
1079
|
+
.mdi-device-signal-wifi-2-bar:before {
|
1080
|
+
content: "\e760";
|
1081
|
+
}
|
1082
|
+
.mdi-device-signal-wifi-3-bar:before {
|
1083
|
+
content: "\e761";
|
1084
|
+
}
|
1085
|
+
.mdi-device-signal-wifi-4-bar:before {
|
1086
|
+
content: "\e762";
|
1087
|
+
}
|
1088
|
+
.mdi-device-signal-wifi-off:before {
|
1089
|
+
content: "\e763";
|
1090
|
+
}
|
1091
|
+
.mdi-device-storage:before {
|
1092
|
+
content: "\e764";
|
1093
|
+
}
|
1094
|
+
.mdi-device-usb:before {
|
1095
|
+
content: "\e765";
|
1096
|
+
}
|
1097
|
+
.mdi-device-wifi-lock:before {
|
1098
|
+
content: "\e766";
|
1099
|
+
}
|
1100
|
+
.mdi-device-wifi-tethering:before {
|
1101
|
+
content: "\e767";
|
1102
|
+
}
|
1103
|
+
.mdi-editor-attach-file:before {
|
1104
|
+
content: "\e768";
|
1105
|
+
}
|
1106
|
+
.mdi-editor-attach-money:before {
|
1107
|
+
content: "\e769";
|
1108
|
+
}
|
1109
|
+
.mdi-editor-border-all:before {
|
1110
|
+
content: "\e76a";
|
1111
|
+
}
|
1112
|
+
.mdi-editor-border-bottom:before {
|
1113
|
+
content: "\e76b";
|
1114
|
+
}
|
1115
|
+
.mdi-editor-border-clear:before {
|
1116
|
+
content: "\e76c";
|
1117
|
+
}
|
1118
|
+
.mdi-editor-border-color:before {
|
1119
|
+
content: "\e76d";
|
1120
|
+
}
|
1121
|
+
.mdi-editor-border-horizontal:before {
|
1122
|
+
content: "\e76e";
|
1123
|
+
}
|
1124
|
+
.mdi-editor-border-inner:before {
|
1125
|
+
content: "\e76f";
|
1126
|
+
}
|
1127
|
+
.mdi-editor-border-left:before {
|
1128
|
+
content: "\e770";
|
1129
|
+
}
|
1130
|
+
.mdi-editor-border-outer:before {
|
1131
|
+
content: "\e771";
|
1132
|
+
}
|
1133
|
+
.mdi-editor-border-right:before {
|
1134
|
+
content: "\e772";
|
1135
|
+
}
|
1136
|
+
.mdi-editor-border-style:before {
|
1137
|
+
content: "\e773";
|
1138
|
+
}
|
1139
|
+
.mdi-editor-border-top:before {
|
1140
|
+
content: "\e774";
|
1141
|
+
}
|
1142
|
+
.mdi-editor-border-vertical:before {
|
1143
|
+
content: "\e775";
|
1144
|
+
}
|
1145
|
+
.mdi-editor-format-align-center:before {
|
1146
|
+
content: "\e776";
|
1147
|
+
}
|
1148
|
+
.mdi-editor-format-align-justify:before {
|
1149
|
+
content: "\e777";
|
1150
|
+
}
|
1151
|
+
.mdi-editor-format-align-left:before {
|
1152
|
+
content: "\e778";
|
1153
|
+
}
|
1154
|
+
.mdi-editor-format-align-right:before {
|
1155
|
+
content: "\e779";
|
1156
|
+
}
|
1157
|
+
.mdi-editor-format-bold:before {
|
1158
|
+
content: "\e77a";
|
1159
|
+
}
|
1160
|
+
.mdi-editor-format-clear:before {
|
1161
|
+
content: "\e77b";
|
1162
|
+
}
|
1163
|
+
.mdi-editor-format-color-fill:before {
|
1164
|
+
content: "\e77c";
|
1165
|
+
}
|
1166
|
+
.mdi-editor-format-color-reset:before {
|
1167
|
+
content: "\e77d";
|
1168
|
+
}
|
1169
|
+
.mdi-editor-format-color-text:before {
|
1170
|
+
content: "\e77e";
|
1171
|
+
}
|
1172
|
+
.mdi-editor-format-indent-decrease:before {
|
1173
|
+
content: "\e77f";
|
1174
|
+
}
|
1175
|
+
.mdi-editor-format-indent-increase:before {
|
1176
|
+
content: "\e780";
|
1177
|
+
}
|
1178
|
+
.mdi-editor-format-italic:before {
|
1179
|
+
content: "\e781";
|
1180
|
+
}
|
1181
|
+
.mdi-editor-format-line-spacing:before {
|
1182
|
+
content: "\e782";
|
1183
|
+
}
|
1184
|
+
.mdi-editor-format-list-bulleted:before {
|
1185
|
+
content: "\e783";
|
1186
|
+
}
|
1187
|
+
.mdi-editor-format-list-numbered:before {
|
1188
|
+
content: "\e784";
|
1189
|
+
}
|
1190
|
+
.mdi-editor-format-paint:before {
|
1191
|
+
content: "\e785";
|
1192
|
+
}
|
1193
|
+
.mdi-editor-format-quote:before {
|
1194
|
+
content: "\e786";
|
1195
|
+
}
|
1196
|
+
.mdi-editor-format-size:before {
|
1197
|
+
content: "\e787";
|
1198
|
+
}
|
1199
|
+
.mdi-editor-format-strikethrough:before {
|
1200
|
+
content: "\e788";
|
1201
|
+
}
|
1202
|
+
.mdi-editor-format-textdirection-l-to-r:before {
|
1203
|
+
content: "\e789";
|
1204
|
+
}
|
1205
|
+
.mdi-editor-format-textdirection-r-to-l:before {
|
1206
|
+
content: "\e78a";
|
1207
|
+
}
|
1208
|
+
.mdi-editor-format-underline:before {
|
1209
|
+
content: "\e78b";
|
1210
|
+
}
|
1211
|
+
.mdi-editor-functions:before {
|
1212
|
+
content: "\e78c";
|
1213
|
+
}
|
1214
|
+
.mdi-editor-insert-chart:before {
|
1215
|
+
content: "\e78d";
|
1216
|
+
}
|
1217
|
+
.mdi-editor-insert-comment:before {
|
1218
|
+
content: "\e78e";
|
1219
|
+
}
|
1220
|
+
.mdi-editor-insert-drive-file:before {
|
1221
|
+
content: "\e78f";
|
1222
|
+
}
|
1223
|
+
.mdi-editor-insert-emoticon:before {
|
1224
|
+
content: "\e790";
|
1225
|
+
}
|
1226
|
+
.mdi-editor-insert-invitation:before {
|
1227
|
+
content: "\e791";
|
1228
|
+
}
|
1229
|
+
.mdi-editor-insert-link:before {
|
1230
|
+
content: "\e792";
|
1231
|
+
}
|
1232
|
+
.mdi-editor-insert-photo:before {
|
1233
|
+
content: "\e793";
|
1234
|
+
}
|
1235
|
+
.mdi-editor-merge-type:before {
|
1236
|
+
content: "\e794";
|
1237
|
+
}
|
1238
|
+
.mdi-editor-mode-comment:before {
|
1239
|
+
content: "\e795";
|
1240
|
+
}
|
1241
|
+
.mdi-editor-mode-edit:before {
|
1242
|
+
content: "\e796";
|
1243
|
+
}
|
1244
|
+
.mdi-editor-publish:before {
|
1245
|
+
content: "\e797";
|
1246
|
+
}
|
1247
|
+
.mdi-editor-vertical-align-bottom:before {
|
1248
|
+
content: "\e798";
|
1249
|
+
}
|
1250
|
+
.mdi-editor-vertical-align-center:before {
|
1251
|
+
content: "\e799";
|
1252
|
+
}
|
1253
|
+
.mdi-editor-vertical-align-top:before {
|
1254
|
+
content: "\e79a";
|
1255
|
+
}
|
1256
|
+
.mdi-editor-wrap-text:before {
|
1257
|
+
content: "\e79b";
|
1258
|
+
}
|
1259
|
+
.mdi-file-attachment:before {
|
1260
|
+
content: "\e79c";
|
1261
|
+
}
|
1262
|
+
.mdi-file-cloud:before {
|
1263
|
+
content: "\e79d";
|
1264
|
+
}
|
1265
|
+
.mdi-file-cloud-circle:before {
|
1266
|
+
content: "\e79e";
|
1267
|
+
}
|
1268
|
+
.mdi-file-cloud-done:before {
|
1269
|
+
content: "\e79f";
|
1270
|
+
}
|
1271
|
+
.mdi-file-cloud-download:before {
|
1272
|
+
content: "\e7a0";
|
1273
|
+
}
|
1274
|
+
.mdi-file-cloud-off:before {
|
1275
|
+
content: "\e7a1";
|
1276
|
+
}
|
1277
|
+
.mdi-file-cloud-queue:before {
|
1278
|
+
content: "\e7a2";
|
1279
|
+
}
|
1280
|
+
.mdi-file-cloud-upload:before {
|
1281
|
+
content: "\e7a3";
|
1282
|
+
}
|
1283
|
+
.mdi-file-file-download:before {
|
1284
|
+
content: "\e7a4";
|
1285
|
+
}
|
1286
|
+
.mdi-file-file-upload:before {
|
1287
|
+
content: "\e7a5";
|
1288
|
+
}
|
1289
|
+
.mdi-file-folder:before {
|
1290
|
+
content: "\e7a6";
|
1291
|
+
}
|
1292
|
+
.mdi-file-folder-open:before {
|
1293
|
+
content: "\e7a7";
|
1294
|
+
}
|
1295
|
+
.mdi-file-folder-shared:before {
|
1296
|
+
content: "\e7a8";
|
1297
|
+
}
|
1298
|
+
.mdi-hardware-cast:before {
|
1299
|
+
content: "\e7a9";
|
1300
|
+
}
|
1301
|
+
.mdi-hardware-cast-connected:before {
|
1302
|
+
content: "\e7aa";
|
1303
|
+
}
|
1304
|
+
.mdi-hardware-computer:before {
|
1305
|
+
content: "\e7ab";
|
1306
|
+
}
|
1307
|
+
.mdi-hardware-desktop-mac:before {
|
1308
|
+
content: "\e7ac";
|
1309
|
+
}
|
1310
|
+
.mdi-hardware-desktop-windows:before {
|
1311
|
+
content: "\e7ad";
|
1312
|
+
}
|
1313
|
+
.mdi-hardware-dock:before {
|
1314
|
+
content: "\e7ae";
|
1315
|
+
}
|
1316
|
+
.mdi-hardware-gamepad:before {
|
1317
|
+
content: "\e7af";
|
1318
|
+
}
|
1319
|
+
.mdi-hardware-headset:before {
|
1320
|
+
content: "\e7b0";
|
1321
|
+
}
|
1322
|
+
.mdi-hardware-headset-mic:before {
|
1323
|
+
content: "\e7b1";
|
1324
|
+
}
|
1325
|
+
.mdi-hardware-keyboard:before {
|
1326
|
+
content: "\e7b2";
|
1327
|
+
}
|
1328
|
+
.mdi-hardware-keyboard-alt:before {
|
1329
|
+
content: "\e7b3";
|
1330
|
+
}
|
1331
|
+
.mdi-hardware-keyboard-arrow-down:before {
|
1332
|
+
content: "\e7b4";
|
1333
|
+
}
|
1334
|
+
.mdi-hardware-keyboard-arrow-left:before {
|
1335
|
+
content: "\e7b5";
|
1336
|
+
}
|
1337
|
+
.mdi-hardware-keyboard-arrow-right:before {
|
1338
|
+
content: "\e7b6";
|
1339
|
+
}
|
1340
|
+
.mdi-hardware-keyboard-arrow-up:before {
|
1341
|
+
content: "\e7b7";
|
1342
|
+
}
|
1343
|
+
.mdi-hardware-keyboard-backspace:before {
|
1344
|
+
content: "\e7b8";
|
1345
|
+
}
|
1346
|
+
.mdi-hardware-keyboard-capslock:before {
|
1347
|
+
content: "\e7b9";
|
1348
|
+
}
|
1349
|
+
.mdi-hardware-keyboard-control:before {
|
1350
|
+
content: "\e7ba";
|
1351
|
+
}
|
1352
|
+
.mdi-hardware-keyboard-hide:before {
|
1353
|
+
content: "\e7bb";
|
1354
|
+
}
|
1355
|
+
.mdi-hardware-keyboard-return:before {
|
1356
|
+
content: "\e7bc";
|
1357
|
+
}
|
1358
|
+
.mdi-hardware-keyboard-tab:before {
|
1359
|
+
content: "\e7bd";
|
1360
|
+
}
|
1361
|
+
.mdi-hardware-keyboard-voice:before {
|
1362
|
+
content: "\e7be";
|
1363
|
+
}
|
1364
|
+
.mdi-hardware-laptop:before {
|
1365
|
+
content: "\e7bf";
|
1366
|
+
}
|
1367
|
+
.mdi-hardware-laptop-chromebook:before {
|
1368
|
+
content: "\e7c0";
|
1369
|
+
}
|
1370
|
+
.mdi-hardware-laptop-mac:before {
|
1371
|
+
content: "\e7c1";
|
1372
|
+
}
|
1373
|
+
.mdi-hardware-laptop-windows:before {
|
1374
|
+
content: "\e7c2";
|
1375
|
+
}
|
1376
|
+
.mdi-hardware-memory:before {
|
1377
|
+
content: "\e7c3";
|
1378
|
+
}
|
1379
|
+
.mdi-hardware-mouse:before {
|
1380
|
+
content: "\e7c4";
|
1381
|
+
}
|
1382
|
+
.mdi-hardware-phone-android:before {
|
1383
|
+
content: "\e7c5";
|
1384
|
+
}
|
1385
|
+
.mdi-hardware-phone-iphone:before {
|
1386
|
+
content: "\e7c6";
|
1387
|
+
}
|
1388
|
+
.mdi-hardware-phonelink:before {
|
1389
|
+
content: "\e7c7";
|
1390
|
+
}
|
1391
|
+
.mdi-hardware-phonelink-off:before {
|
1392
|
+
content: "\e7c8";
|
1393
|
+
}
|
1394
|
+
.mdi-hardware-security:before {
|
1395
|
+
content: "\e7c9";
|
1396
|
+
}
|
1397
|
+
.mdi-hardware-sim-card:before {
|
1398
|
+
content: "\e7ca";
|
1399
|
+
}
|
1400
|
+
.mdi-hardware-smartphone:before {
|
1401
|
+
content: "\e7cb";
|
1402
|
+
}
|
1403
|
+
.mdi-hardware-speaker:before {
|
1404
|
+
content: "\e7cc";
|
1405
|
+
}
|
1406
|
+
.mdi-hardware-tablet:before {
|
1407
|
+
content: "\e7cd";
|
1408
|
+
}
|
1409
|
+
.mdi-hardware-tablet-android:before {
|
1410
|
+
content: "\e7ce";
|
1411
|
+
}
|
1412
|
+
.mdi-hardware-tablet-mac:before {
|
1413
|
+
content: "\e7cf";
|
1414
|
+
}
|
1415
|
+
.mdi-hardware-tv:before {
|
1416
|
+
content: "\e7d0";
|
1417
|
+
}
|
1418
|
+
.mdi-hardware-watch:before {
|
1419
|
+
content: "\e7d1";
|
1420
|
+
}
|
1421
|
+
.mdi-image-add-to-photos:before {
|
1422
|
+
content: "\e7d2";
|
1423
|
+
}
|
1424
|
+
.mdi-image-adjust:before {
|
1425
|
+
content: "\e7d3";
|
1426
|
+
}
|
1427
|
+
.mdi-image-assistant-photo:before {
|
1428
|
+
content: "\e7d4";
|
1429
|
+
}
|
1430
|
+
.mdi-image-audiotrack:before {
|
1431
|
+
content: "\e7d5";
|
1432
|
+
}
|
1433
|
+
.mdi-image-blur-circular:before {
|
1434
|
+
content: "\e7d6";
|
1435
|
+
}
|
1436
|
+
.mdi-image-blur-linear:before {
|
1437
|
+
content: "\e7d7";
|
1438
|
+
}
|
1439
|
+
.mdi-image-blur-off:before {
|
1440
|
+
content: "\e7d8";
|
1441
|
+
}
|
1442
|
+
.mdi-image-blur-on:before {
|
1443
|
+
content: "\e7d9";
|
1444
|
+
}
|
1445
|
+
.mdi-image-brightness-1:before {
|
1446
|
+
content: "\e7da";
|
1447
|
+
}
|
1448
|
+
.mdi-image-brightness-2:before {
|
1449
|
+
content: "\e7db";
|
1450
|
+
}
|
1451
|
+
.mdi-image-brightness-3:before {
|
1452
|
+
content: "\e7dc";
|
1453
|
+
}
|
1454
|
+
.mdi-image-brightness-4:before {
|
1455
|
+
content: "\e7dd";
|
1456
|
+
}
|
1457
|
+
.mdi-image-brightness-5:before {
|
1458
|
+
content: "\e7de";
|
1459
|
+
}
|
1460
|
+
.mdi-image-brightness-6:before {
|
1461
|
+
content: "\e7df";
|
1462
|
+
}
|
1463
|
+
.mdi-image-brightness-7:before {
|
1464
|
+
content: "\e7e0";
|
1465
|
+
}
|
1466
|
+
.mdi-image-brush:before {
|
1467
|
+
content: "\e7e1";
|
1468
|
+
}
|
1469
|
+
.mdi-image-camera:before {
|
1470
|
+
content: "\e7e2";
|
1471
|
+
}
|
1472
|
+
.mdi-image-camera-alt:before {
|
1473
|
+
content: "\e7e3";
|
1474
|
+
}
|
1475
|
+
.mdi-image-camera-front:before {
|
1476
|
+
content: "\e7e4";
|
1477
|
+
}
|
1478
|
+
.mdi-image-camera-rear:before {
|
1479
|
+
content: "\e7e5";
|
1480
|
+
}
|
1481
|
+
.mdi-image-camera-roll:before {
|
1482
|
+
content: "\e7e6";
|
1483
|
+
}
|
1484
|
+
.mdi-image-center-focus-strong:before {
|
1485
|
+
content: "\e7e7";
|
1486
|
+
}
|
1487
|
+
.mdi-image-center-focus-weak:before {
|
1488
|
+
content: "\e7e8";
|
1489
|
+
}
|
1490
|
+
.mdi-image-collections:before {
|
1491
|
+
content: "\e7e9";
|
1492
|
+
}
|
1493
|
+
.mdi-image-colorize:before {
|
1494
|
+
content: "\e7ea";
|
1495
|
+
}
|
1496
|
+
.mdi-image-color-lens:before {
|
1497
|
+
content: "\e7eb";
|
1498
|
+
}
|
1499
|
+
.mdi-image-compare:before {
|
1500
|
+
content: "\e7ec";
|
1501
|
+
}
|
1502
|
+
.mdi-image-control-point:before {
|
1503
|
+
content: "\e7ed";
|
1504
|
+
}
|
1505
|
+
.mdi-image-control-point-duplicate:before {
|
1506
|
+
content: "\e7ee";
|
1507
|
+
}
|
1508
|
+
.mdi-image-crop:before {
|
1509
|
+
content: "\e7ef";
|
1510
|
+
}
|
1511
|
+
.mdi-image-crop-3-2:before {
|
1512
|
+
content: "\e7f0";
|
1513
|
+
}
|
1514
|
+
.mdi-image-crop-5-4:before {
|
1515
|
+
content: "\e7f1";
|
1516
|
+
}
|
1517
|
+
.mdi-image-crop-7-5:before {
|
1518
|
+
content: "\e7f2";
|
1519
|
+
}
|
1520
|
+
.mdi-image-crop-16-9:before {
|
1521
|
+
content: "\e7f3";
|
1522
|
+
}
|
1523
|
+
.mdi-image-crop-din:before {
|
1524
|
+
content: "\e7f4";
|
1525
|
+
}
|
1526
|
+
.mdi-image-crop-free:before {
|
1527
|
+
content: "\e7f5";
|
1528
|
+
}
|
1529
|
+
.mdi-image-crop-landscape:before {
|
1530
|
+
content: "\e7f6";
|
1531
|
+
}
|
1532
|
+
.mdi-image-crop-original:before {
|
1533
|
+
content: "\e7f7";
|
1534
|
+
}
|
1535
|
+
.mdi-image-crop-portrait:before {
|
1536
|
+
content: "\e7f8";
|
1537
|
+
}
|
1538
|
+
.mdi-image-crop-square:before {
|
1539
|
+
content: "\e7f9";
|
1540
|
+
}
|
1541
|
+
.mdi-image-dehaze:before {
|
1542
|
+
content: "\e7fa";
|
1543
|
+
}
|
1544
|
+
.mdi-image-details:before {
|
1545
|
+
content: "\e7fb";
|
1546
|
+
}
|
1547
|
+
.mdi-image-edit:before {
|
1548
|
+
content: "\e7fc";
|
1549
|
+
}
|
1550
|
+
.mdi-image-exposure:before {
|
1551
|
+
content: "\e7fd";
|
1552
|
+
}
|
1553
|
+
.mdi-image-exposure-minus-1:before {
|
1554
|
+
content: "\e7fe";
|
1555
|
+
}
|
1556
|
+
.mdi-image-exposure-minus-2:before {
|
1557
|
+
content: "\e7ff";
|
1558
|
+
}
|
1559
|
+
.mdi-image-exposure-plus-1:before {
|
1560
|
+
content: "\e800";
|
1561
|
+
}
|
1562
|
+
.mdi-image-exposure-plus-2:before {
|
1563
|
+
content: "\e801";
|
1564
|
+
}
|
1565
|
+
.mdi-image-exposure-zero:before {
|
1566
|
+
content: "\e802";
|
1567
|
+
}
|
1568
|
+
.mdi-image-filter:before {
|
1569
|
+
content: "\e803";
|
1570
|
+
}
|
1571
|
+
.mdi-image-filter-1:before {
|
1572
|
+
content: "\e804";
|
1573
|
+
}
|
1574
|
+
.mdi-image-filter-2:before {
|
1575
|
+
content: "\e805";
|
1576
|
+
}
|
1577
|
+
.mdi-image-filter-3:before {
|
1578
|
+
content: "\e806";
|
1579
|
+
}
|
1580
|
+
.mdi-image-filter-4:before {
|
1581
|
+
content: "\e807";
|
1582
|
+
}
|
1583
|
+
.mdi-image-filter-5:before {
|
1584
|
+
content: "\e808";
|
1585
|
+
}
|
1586
|
+
.mdi-image-filter-6:before {
|
1587
|
+
content: "\e809";
|
1588
|
+
}
|
1589
|
+
.mdi-image-filter-7:before {
|
1590
|
+
content: "\e80a";
|
1591
|
+
}
|
1592
|
+
.mdi-image-filter-8:before {
|
1593
|
+
content: "\e80b";
|
1594
|
+
}
|
1595
|
+
.mdi-image-filter-9:before {
|
1596
|
+
content: "\e80c";
|
1597
|
+
}
|
1598
|
+
.mdi-image-filter-9-plus:before {
|
1599
|
+
content: "\e80d";
|
1600
|
+
}
|
1601
|
+
.mdi-image-filter-b-and-w:before {
|
1602
|
+
content: "\e80e";
|
1603
|
+
}
|
1604
|
+
.mdi-image-filter-center-focus:before {
|
1605
|
+
content: "\e80f";
|
1606
|
+
}
|
1607
|
+
.mdi-image-filter-drama:before {
|
1608
|
+
content: "\e810";
|
1609
|
+
}
|
1610
|
+
.mdi-image-filter-frames:before {
|
1611
|
+
content: "\e811";
|
1612
|
+
}
|
1613
|
+
.mdi-image-filter-hdr:before {
|
1614
|
+
content: "\e812";
|
1615
|
+
}
|
1616
|
+
.mdi-image-filter-none:before {
|
1617
|
+
content: "\e813";
|
1618
|
+
}
|
1619
|
+
.mdi-image-filter-tilt-shift:before {
|
1620
|
+
content: "\e814";
|
1621
|
+
}
|
1622
|
+
.mdi-image-filter-vintage:before {
|
1623
|
+
content: "\e815";
|
1624
|
+
}
|
1625
|
+
.mdi-image-flare:before {
|
1626
|
+
content: "\e816";
|
1627
|
+
}
|
1628
|
+
.mdi-image-flash-auto:before {
|
1629
|
+
content: "\e817";
|
1630
|
+
}
|
1631
|
+
.mdi-image-flash-off:before {
|
1632
|
+
content: "\e818";
|
1633
|
+
}
|
1634
|
+
.mdi-image-flash-on:before {
|
1635
|
+
content: "\e819";
|
1636
|
+
}
|
1637
|
+
.mdi-image-flip:before {
|
1638
|
+
content: "\e81a";
|
1639
|
+
}
|
1640
|
+
.mdi-image-gradient:before {
|
1641
|
+
content: "\e81b";
|
1642
|
+
}
|
1643
|
+
.mdi-image-grain:before {
|
1644
|
+
content: "\e81c";
|
1645
|
+
}
|
1646
|
+
.mdi-image-grid-off:before {
|
1647
|
+
content: "\e81d";
|
1648
|
+
}
|
1649
|
+
.mdi-image-grid-on:before {
|
1650
|
+
content: "\e81e";
|
1651
|
+
}
|
1652
|
+
.mdi-image-hdr-off:before {
|
1653
|
+
content: "\e81f";
|
1654
|
+
}
|
1655
|
+
.mdi-image-hdr-on:before {
|
1656
|
+
content: "\e820";
|
1657
|
+
}
|
1658
|
+
.mdi-image-hdr-strong:before {
|
1659
|
+
content: "\e821";
|
1660
|
+
}
|
1661
|
+
.mdi-image-hdr-weak:before {
|
1662
|
+
content: "\e822";
|
1663
|
+
}
|
1664
|
+
.mdi-image-healing:before {
|
1665
|
+
content: "\e823";
|
1666
|
+
}
|
1667
|
+
.mdi-image-image:before {
|
1668
|
+
content: "\e824";
|
1669
|
+
}
|
1670
|
+
.mdi-image-image-aspect-ratio:before {
|
1671
|
+
content: "\e825";
|
1672
|
+
}
|
1673
|
+
.mdi-image-iso:before {
|
1674
|
+
content: "\e826";
|
1675
|
+
}
|
1676
|
+
.mdi-image-landscape:before {
|
1677
|
+
content: "\e827";
|
1678
|
+
}
|
1679
|
+
.mdi-image-leak-add:before {
|
1680
|
+
content: "\e828";
|
1681
|
+
}
|
1682
|
+
.mdi-image-leak-remove:before {
|
1683
|
+
content: "\e829";
|
1684
|
+
}
|
1685
|
+
.mdi-image-lens:before {
|
1686
|
+
content: "\e82a";
|
1687
|
+
}
|
1688
|
+
.mdi-image-looks:before {
|
1689
|
+
content: "\e82b";
|
1690
|
+
}
|
1691
|
+
.mdi-image-looks-3:before {
|
1692
|
+
content: "\e82c";
|
1693
|
+
}
|
1694
|
+
.mdi-image-looks-4:before {
|
1695
|
+
content: "\e82d";
|
1696
|
+
}
|
1697
|
+
.mdi-image-looks-5:before {
|
1698
|
+
content: "\e82e";
|
1699
|
+
}
|
1700
|
+
.mdi-image-looks-6:before {
|
1701
|
+
content: "\e82f";
|
1702
|
+
}
|
1703
|
+
.mdi-image-looks-one:before {
|
1704
|
+
content: "\e830";
|
1705
|
+
}
|
1706
|
+
.mdi-image-looks-two:before {
|
1707
|
+
content: "\e831";
|
1708
|
+
}
|
1709
|
+
.mdi-image-loupe:before {
|
1710
|
+
content: "\e832";
|
1711
|
+
}
|
1712
|
+
.mdi-image-movie-creation:before {
|
1713
|
+
content: "\e833";
|
1714
|
+
}
|
1715
|
+
.mdi-image-nature:before {
|
1716
|
+
content: "\e834";
|
1717
|
+
}
|
1718
|
+
.mdi-image-nature-people:before {
|
1719
|
+
content: "\e835";
|
1720
|
+
}
|
1721
|
+
.mdi-image-navigate-before:before {
|
1722
|
+
content: "\e836";
|
1723
|
+
}
|
1724
|
+
.mdi-image-navigate-next:before {
|
1725
|
+
content: "\e837";
|
1726
|
+
}
|
1727
|
+
.mdi-image-palette:before {
|
1728
|
+
content: "\e838";
|
1729
|
+
}
|
1730
|
+
.mdi-image-panorama:before {
|
1731
|
+
content: "\e839";
|
1732
|
+
}
|
1733
|
+
.mdi-image-panorama-fisheye:before {
|
1734
|
+
content: "\e83a";
|
1735
|
+
}
|
1736
|
+
.mdi-image-panorama-horizontal:before {
|
1737
|
+
content: "\e83b";
|
1738
|
+
}
|
1739
|
+
.mdi-image-panorama-vertical:before {
|
1740
|
+
content: "\e83c";
|
1741
|
+
}
|
1742
|
+
.mdi-image-panorama-wide-angle:before {
|
1743
|
+
content: "\e83d";
|
1744
|
+
}
|
1745
|
+
.mdi-image-photo:before {
|
1746
|
+
content: "\e83e";
|
1747
|
+
}
|
1748
|
+
.mdi-image-photo-album:before {
|
1749
|
+
content: "\e83f";
|
1750
|
+
}
|
1751
|
+
.mdi-image-photo-camera:before {
|
1752
|
+
content: "\e840";
|
1753
|
+
}
|
1754
|
+
.mdi-image-photo-library:before {
|
1755
|
+
content: "\e841";
|
1756
|
+
}
|
1757
|
+
.mdi-image-portrait:before {
|
1758
|
+
content: "\e842";
|
1759
|
+
}
|
1760
|
+
.mdi-image-remove-red-eye:before {
|
1761
|
+
content: "\e843";
|
1762
|
+
}
|
1763
|
+
.mdi-image-rotate-left:before {
|
1764
|
+
content: "\e844";
|
1765
|
+
}
|
1766
|
+
.mdi-image-rotate-right:before {
|
1767
|
+
content: "\e845";
|
1768
|
+
}
|
1769
|
+
.mdi-image-slideshow:before {
|
1770
|
+
content: "\e846";
|
1771
|
+
}
|
1772
|
+
.mdi-image-straighten:before {
|
1773
|
+
content: "\e847";
|
1774
|
+
}
|
1775
|
+
.mdi-image-style:before {
|
1776
|
+
content: "\e848";
|
1777
|
+
}
|
1778
|
+
.mdi-image-switch-camera:before {
|
1779
|
+
content: "\e849";
|
1780
|
+
}
|
1781
|
+
.mdi-image-switch-video:before {
|
1782
|
+
content: "\e84a";
|
1783
|
+
}
|
1784
|
+
.mdi-image-tag-faces:before {
|
1785
|
+
content: "\e84b";
|
1786
|
+
}
|
1787
|
+
.mdi-image-texture:before {
|
1788
|
+
content: "\e84c";
|
1789
|
+
}
|
1790
|
+
.mdi-image-timelapse:before {
|
1791
|
+
content: "\e84d";
|
1792
|
+
}
|
1793
|
+
.mdi-image-timer:before {
|
1794
|
+
content: "\e84e";
|
1795
|
+
}
|
1796
|
+
.mdi-image-timer-3:before {
|
1797
|
+
content: "\e84f";
|
1798
|
+
}
|
1799
|
+
.mdi-image-timer-10:before {
|
1800
|
+
content: "\e850";
|
1801
|
+
}
|
1802
|
+
.mdi-image-timer-auto:before {
|
1803
|
+
content: "\e851";
|
1804
|
+
}
|
1805
|
+
.mdi-image-timer-off:before {
|
1806
|
+
content: "\e852";
|
1807
|
+
}
|
1808
|
+
.mdi-image-tonality:before {
|
1809
|
+
content: "\e853";
|
1810
|
+
}
|
1811
|
+
.mdi-image-transform:before {
|
1812
|
+
content: "\e854";
|
1813
|
+
}
|
1814
|
+
.mdi-image-tune:before {
|
1815
|
+
content: "\e855";
|
1816
|
+
}
|
1817
|
+
.mdi-image-wb-auto:before {
|
1818
|
+
content: "\e856";
|
1819
|
+
}
|
1820
|
+
.mdi-image-wb-cloudy:before {
|
1821
|
+
content: "\e857";
|
1822
|
+
}
|
1823
|
+
.mdi-image-wb-incandescent:before {
|
1824
|
+
content: "\e858";
|
1825
|
+
}
|
1826
|
+
.mdi-image-wb-irradescent:before {
|
1827
|
+
content: "\e859";
|
1828
|
+
}
|
1829
|
+
.mdi-image-wb-sunny:before {
|
1830
|
+
content: "\e85a";
|
1831
|
+
}
|
1832
|
+
.mdi-maps-beenhere:before {
|
1833
|
+
content: "\e85b";
|
1834
|
+
}
|
1835
|
+
.mdi-maps-directions:before {
|
1836
|
+
content: "\e85c";
|
1837
|
+
}
|
1838
|
+
.mdi-maps-directions-bike:before {
|
1839
|
+
content: "\e85d";
|
1840
|
+
}
|
1841
|
+
.mdi-maps-directions-bus:before {
|
1842
|
+
content: "\e85e";
|
1843
|
+
}
|
1844
|
+
.mdi-maps-directions-car:before {
|
1845
|
+
content: "\e85f";
|
1846
|
+
}
|
1847
|
+
.mdi-maps-directions-ferry:before {
|
1848
|
+
content: "\e860";
|
1849
|
+
}
|
1850
|
+
.mdi-maps-directions-subway:before {
|
1851
|
+
content: "\e861";
|
1852
|
+
}
|
1853
|
+
.mdi-maps-directions-train:before {
|
1854
|
+
content: "\e862";
|
1855
|
+
}
|
1856
|
+
.mdi-maps-directions-transit:before {
|
1857
|
+
content: "\e863";
|
1858
|
+
}
|
1859
|
+
.mdi-maps-directions-walk:before {
|
1860
|
+
content: "\e864";
|
1861
|
+
}
|
1862
|
+
.mdi-maps-flight:before {
|
1863
|
+
content: "\e865";
|
1864
|
+
}
|
1865
|
+
.mdi-maps-hotel:before {
|
1866
|
+
content: "\e866";
|
1867
|
+
}
|
1868
|
+
.mdi-maps-layers:before {
|
1869
|
+
content: "\e867";
|
1870
|
+
}
|
1871
|
+
.mdi-maps-layers-clear:before {
|
1872
|
+
content: "\e868";
|
1873
|
+
}
|
1874
|
+
.mdi-maps-local-airport:before {
|
1875
|
+
content: "\e869";
|
1876
|
+
}
|
1877
|
+
.mdi-maps-local-atm:before {
|
1878
|
+
content: "\e86a";
|
1879
|
+
}
|
1880
|
+
.mdi-maps-local-attraction:before {
|
1881
|
+
content: "\e86b";
|
1882
|
+
}
|
1883
|
+
.mdi-maps-local-bar:before {
|
1884
|
+
content: "\e86c";
|
1885
|
+
}
|
1886
|
+
.mdi-maps-local-cafe:before {
|
1887
|
+
content: "\e86d";
|
1888
|
+
}
|
1889
|
+
.mdi-maps-local-car-wash:before {
|
1890
|
+
content: "\e86e";
|
1891
|
+
}
|
1892
|
+
.mdi-maps-local-convenience-store:before {
|
1893
|
+
content: "\e86f";
|
1894
|
+
}
|
1895
|
+
.mdi-maps-local-drink:before {
|
1896
|
+
content: "\e870";
|
1897
|
+
}
|
1898
|
+
.mdi-maps-local-florist:before {
|
1899
|
+
content: "\e871";
|
1900
|
+
}
|
1901
|
+
.mdi-maps-local-gas-station:before {
|
1902
|
+
content: "\e872";
|
1903
|
+
}
|
1904
|
+
.mdi-maps-local-grocery-store:before {
|
1905
|
+
content: "\e873";
|
1906
|
+
}
|
1907
|
+
.mdi-maps-local-hospital:before {
|
1908
|
+
content: "\e874";
|
1909
|
+
}
|
1910
|
+
.mdi-maps-local-hotel:before {
|
1911
|
+
content: "\e875";
|
1912
|
+
}
|
1913
|
+
.mdi-maps-local-laundry-service:before {
|
1914
|
+
content: "\e876";
|
1915
|
+
}
|
1916
|
+
.mdi-maps-local-library:before {
|
1917
|
+
content: "\e877";
|
1918
|
+
}
|
1919
|
+
.mdi-maps-local-mall:before {
|
1920
|
+
content: "\e878";
|
1921
|
+
}
|
1922
|
+
.mdi-maps-local-movies:before {
|
1923
|
+
content: "\e879";
|
1924
|
+
}
|
1925
|
+
.mdi-maps-local-offer:before {
|
1926
|
+
content: "\e87a";
|
1927
|
+
}
|
1928
|
+
.mdi-maps-local-parking:before {
|
1929
|
+
content: "\e87b";
|
1930
|
+
}
|
1931
|
+
.mdi-maps-local-pharmacy:before {
|
1932
|
+
content: "\e87c";
|
1933
|
+
}
|
1934
|
+
.mdi-maps-local-phone:before {
|
1935
|
+
content: "\e87d";
|
1936
|
+
}
|
1937
|
+
.mdi-maps-local-pizza:before {
|
1938
|
+
content: "\e87e";
|
1939
|
+
}
|
1940
|
+
.mdi-maps-local-play:before {
|
1941
|
+
content: "\e87f";
|
1942
|
+
}
|
1943
|
+
.mdi-maps-local-post-office:before {
|
1944
|
+
content: "\e880";
|
1945
|
+
}
|
1946
|
+
.mdi-maps-local-print-shop:before {
|
1947
|
+
content: "\e881";
|
1948
|
+
}
|
1949
|
+
.mdi-maps-local-restaurant:before {
|
1950
|
+
content: "\e882";
|
1951
|
+
}
|
1952
|
+
.mdi-maps-local-see:before {
|
1953
|
+
content: "\e883";
|
1954
|
+
}
|
1955
|
+
.mdi-maps-local-shipping:before {
|
1956
|
+
content: "\e884";
|
1957
|
+
}
|
1958
|
+
.mdi-maps-local-taxi:before {
|
1959
|
+
content: "\e885";
|
1960
|
+
}
|
1961
|
+
.mdi-maps-location-history:before {
|
1962
|
+
content: "\e886";
|
1963
|
+
}
|
1964
|
+
.mdi-maps-map:before {
|
1965
|
+
content: "\e887";
|
1966
|
+
}
|
1967
|
+
.mdi-maps-my-location:before {
|
1968
|
+
content: "\e888";
|
1969
|
+
}
|
1970
|
+
.mdi-maps-navigation:before {
|
1971
|
+
content: "\e889";
|
1972
|
+
}
|
1973
|
+
.mdi-maps-pin-drop:before {
|
1974
|
+
content: "\e88a";
|
1975
|
+
}
|
1976
|
+
.mdi-maps-place:before {
|
1977
|
+
content: "\e88b";
|
1978
|
+
}
|
1979
|
+
.mdi-maps-rate-review:before {
|
1980
|
+
content: "\e88c";
|
1981
|
+
}
|
1982
|
+
.mdi-maps-restaurant-menu:before {
|
1983
|
+
content: "\e88d";
|
1984
|
+
}
|
1985
|
+
.mdi-maps-satellite:before {
|
1986
|
+
content: "\e88e";
|
1987
|
+
}
|
1988
|
+
.mdi-maps-store-mall-directory:before {
|
1989
|
+
content: "\e88f";
|
1990
|
+
}
|
1991
|
+
.mdi-maps-terrain:before {
|
1992
|
+
content: "\e890";
|
1993
|
+
}
|
1994
|
+
.mdi-maps-traffic:before {
|
1995
|
+
content: "\e891";
|
1996
|
+
}
|
1997
|
+
.mdi-navigation-apps:before {
|
1998
|
+
content: "\e892";
|
1999
|
+
}
|
2000
|
+
.mdi-navigation-arrow-back:before {
|
2001
|
+
content: "\e893";
|
2002
|
+
}
|
2003
|
+
.mdi-navigation-arrow-drop-down:before {
|
2004
|
+
content: "\e894";
|
2005
|
+
}
|
2006
|
+
.mdi-navigation-arrow-drop-down-circle:before {
|
2007
|
+
content: "\e895";
|
2008
|
+
}
|
2009
|
+
.mdi-navigation-arrow-drop-up:before {
|
2010
|
+
content: "\e896";
|
2011
|
+
}
|
2012
|
+
.mdi-navigation-arrow-forward:before {
|
2013
|
+
content: "\e897";
|
2014
|
+
}
|
2015
|
+
.mdi-navigation-cancel:before {
|
2016
|
+
content: "\e898";
|
2017
|
+
}
|
2018
|
+
.mdi-navigation-check:before {
|
2019
|
+
content: "\e899";
|
2020
|
+
}
|
2021
|
+
.mdi-navigation-chevron-left:before {
|
2022
|
+
content: "\e89a";
|
2023
|
+
}
|
2024
|
+
.mdi-navigation-chevron-right:before {
|
2025
|
+
content: "\e89b";
|
2026
|
+
}
|
2027
|
+
.mdi-navigation-close:before {
|
2028
|
+
content: "\e89c";
|
2029
|
+
}
|
2030
|
+
.mdi-navigation-expand-less:before {
|
2031
|
+
content: "\e89d";
|
2032
|
+
}
|
2033
|
+
.mdi-navigation-expand-more:before {
|
2034
|
+
content: "\e89e";
|
2035
|
+
}
|
2036
|
+
.mdi-navigation-fullscreen:before {
|
2037
|
+
content: "\e89f";
|
2038
|
+
}
|
2039
|
+
.mdi-navigation-fullscreen-exit:before {
|
2040
|
+
content: "\e8a0";
|
2041
|
+
}
|
2042
|
+
.mdi-navigation-menu:before {
|
2043
|
+
content: "\e8a1";
|
2044
|
+
}
|
2045
|
+
.mdi-navigation-more-horiz:before {
|
2046
|
+
content: "\e8a2";
|
2047
|
+
}
|
2048
|
+
.mdi-navigation-more-vert:before {
|
2049
|
+
content: "\e8a3";
|
2050
|
+
}
|
2051
|
+
.mdi-navigation-refresh:before {
|
2052
|
+
content: "\e8a4";
|
2053
|
+
}
|
2054
|
+
.mdi-navigation-unfold-less:before {
|
2055
|
+
content: "\e8a5";
|
2056
|
+
}
|
2057
|
+
.mdi-navigation-unfold-more:before {
|
2058
|
+
content: "\e8a6";
|
2059
|
+
}
|
2060
|
+
.mdi-notification-adb:before {
|
2061
|
+
content: "\e8a7";
|
2062
|
+
}
|
2063
|
+
.mdi-notification-bluetooth-audio:before {
|
2064
|
+
content: "\e8a8";
|
2065
|
+
}
|
2066
|
+
.mdi-notification-disc-full:before {
|
2067
|
+
content: "\e8a9";
|
2068
|
+
}
|
2069
|
+
.mdi-notification-dnd-forwardslash:before {
|
2070
|
+
content: "\e8aa";
|
2071
|
+
}
|
2072
|
+
.mdi-notification-do-not-disturb:before {
|
2073
|
+
content: "\e8ab";
|
2074
|
+
}
|
2075
|
+
.mdi-notification-drive-eta:before {
|
2076
|
+
content: "\e8ac";
|
2077
|
+
}
|
2078
|
+
.mdi-notification-event-available:before {
|
2079
|
+
content: "\e8ad";
|
2080
|
+
}
|
2081
|
+
.mdi-notification-event-busy:before {
|
2082
|
+
content: "\e8ae";
|
2083
|
+
}
|
2084
|
+
.mdi-notification-event-note:before {
|
2085
|
+
content: "\e8af";
|
2086
|
+
}
|
2087
|
+
.mdi-notification-folder-special:before {
|
2088
|
+
content: "\e8b0";
|
2089
|
+
}
|
2090
|
+
.mdi-notification-mms:before {
|
2091
|
+
content: "\e8b1";
|
2092
|
+
}
|
2093
|
+
.mdi-notification-more:before {
|
2094
|
+
content: "\e8b2";
|
2095
|
+
}
|
2096
|
+
.mdi-notification-network-locked:before {
|
2097
|
+
content: "\e8b3";
|
2098
|
+
}
|
2099
|
+
.mdi-notification-phone-bluetooth-speaker:before {
|
2100
|
+
content: "\e8b4";
|
2101
|
+
}
|
2102
|
+
.mdi-notification-phone-forwarded:before {
|
2103
|
+
content: "\e8b5";
|
2104
|
+
}
|
2105
|
+
.mdi-notification-phone-in-talk:before {
|
2106
|
+
content: "\e8b6";
|
2107
|
+
}
|
2108
|
+
.mdi-notification-phone-locked:before {
|
2109
|
+
content: "\e8b7";
|
2110
|
+
}
|
2111
|
+
.mdi-notification-phone-missed:before {
|
2112
|
+
content: "\e8b8";
|
2113
|
+
}
|
2114
|
+
.mdi-notification-phone-paused:before {
|
2115
|
+
content: "\e8b9";
|
2116
|
+
}
|
2117
|
+
.mdi-notification-play-download:before {
|
2118
|
+
content: "\e8ba";
|
2119
|
+
}
|
2120
|
+
.mdi-notification-play-install:before {
|
2121
|
+
content: "\e8bb";
|
2122
|
+
}
|
2123
|
+
.mdi-notification-sd-card:before {
|
2124
|
+
content: "\e8bc";
|
2125
|
+
}
|
2126
|
+
.mdi-notification-sim-card-alert:before {
|
2127
|
+
content: "\e8bd";
|
2128
|
+
}
|
2129
|
+
.mdi-notification-sms:before {
|
2130
|
+
content: "\e8be";
|
2131
|
+
}
|
2132
|
+
.mdi-notification-sms-failed:before {
|
2133
|
+
content: "\e8bf";
|
2134
|
+
}
|
2135
|
+
.mdi-notification-sync:before {
|
2136
|
+
content: "\e8c0";
|
2137
|
+
}
|
2138
|
+
.mdi-notification-sync-disabled:before {
|
2139
|
+
content: "\e8c1";
|
2140
|
+
}
|
2141
|
+
.mdi-notification-sync-problem:before {
|
2142
|
+
content: "\e8c2";
|
2143
|
+
}
|
2144
|
+
.mdi-notification-system-update:before {
|
2145
|
+
content: "\e8c3";
|
2146
|
+
}
|
2147
|
+
.mdi-notification-tap-and-play:before {
|
2148
|
+
content: "\e8c4";
|
2149
|
+
}
|
2150
|
+
.mdi-notification-time-to-leave:before {
|
2151
|
+
content: "\e8c5";
|
2152
|
+
}
|
2153
|
+
.mdi-notification-vibration:before {
|
2154
|
+
content: "\e8c6";
|
2155
|
+
}
|
2156
|
+
.mdi-notification-voice-chat:before {
|
2157
|
+
content: "\e8c7";
|
2158
|
+
}
|
2159
|
+
.mdi-notification-vpn-lock:before {
|
2160
|
+
content: "\e8c8";
|
2161
|
+
}
|
2162
|
+
.mdi-social-cake:before {
|
2163
|
+
content: "\e8c9";
|
2164
|
+
}
|
2165
|
+
.mdi-social-domain:before {
|
2166
|
+
content: "\e8ca";
|
2167
|
+
}
|
2168
|
+
.mdi-social-group:before {
|
2169
|
+
content: "\e8cb";
|
2170
|
+
}
|
2171
|
+
.mdi-social-group-add:before {
|
2172
|
+
content: "\e8cc";
|
2173
|
+
}
|
2174
|
+
.mdi-social-location-city:before {
|
2175
|
+
content: "\e8cd";
|
2176
|
+
}
|
2177
|
+
.mdi-social-mood:before {
|
2178
|
+
content: "\e8ce";
|
2179
|
+
}
|
2180
|
+
.mdi-social-notifications:before {
|
2181
|
+
content: "\e8cf";
|
2182
|
+
}
|
2183
|
+
.mdi-social-notifications-none:before {
|
2184
|
+
content: "\e8d0";
|
2185
|
+
}
|
2186
|
+
.mdi-social-notifications-off:before {
|
2187
|
+
content: "\e8d1";
|
2188
|
+
}
|
2189
|
+
.mdi-social-notifications-on:before {
|
2190
|
+
content: "\e8d2";
|
2191
|
+
}
|
2192
|
+
.mdi-social-notifications-paused:before {
|
2193
|
+
content: "\e8d3";
|
2194
|
+
}
|
2195
|
+
.mdi-social-pages:before {
|
2196
|
+
content: "\e8d4";
|
2197
|
+
}
|
2198
|
+
.mdi-social-party-mode:before {
|
2199
|
+
content: "\e8d5";
|
2200
|
+
}
|
2201
|
+
.mdi-social-people:before {
|
2202
|
+
content: "\e8d6";
|
2203
|
+
}
|
2204
|
+
.mdi-social-people-outline:before {
|
2205
|
+
content: "\e8d7";
|
2206
|
+
}
|
2207
|
+
.mdi-social-person:before {
|
2208
|
+
content: "\e8d8";
|
2209
|
+
}
|
2210
|
+
.mdi-social-person-add:before {
|
2211
|
+
content: "\e8d9";
|
2212
|
+
}
|
2213
|
+
.mdi-social-person-outline:before {
|
2214
|
+
content: "\e8da";
|
2215
|
+
}
|
2216
|
+
.mdi-social-plus-one:before {
|
2217
|
+
content: "\e8db";
|
2218
|
+
}
|
2219
|
+
.mdi-social-poll:before {
|
2220
|
+
content: "\e8dc";
|
2221
|
+
}
|
2222
|
+
.mdi-social-public:before {
|
2223
|
+
content: "\e8dd";
|
2224
|
+
}
|
2225
|
+
.mdi-social-school:before {
|
2226
|
+
content: "\e8de";
|
2227
|
+
}
|
2228
|
+
.mdi-social-share:before {
|
2229
|
+
content: "\e8df";
|
2230
|
+
}
|
2231
|
+
.mdi-social-whatshot:before {
|
2232
|
+
content: "\e8e0";
|
2233
|
+
}
|
2234
|
+
.mdi-toggle-check-box:before {
|
2235
|
+
content: "\e8e1";
|
2236
|
+
}
|
2237
|
+
.mdi-toggle-check-box-outline-blank:before {
|
2238
|
+
content: "\e8e2";
|
2239
|
+
}
|
2240
|
+
.mdi-toggle-radio-button-off:before {
|
2241
|
+
content: "\e8e3";
|
2242
|
+
}
|
2243
|
+
.mdi-toggle-radio-button-on:before {
|
2244
|
+
content: "\e8e4";
|
2245
|
+
}
|
2
2246
|
@-webkit-keyframes input-highlight {
|
3
2247
|
0% {
|
4
2248
|
left: 20%;
|
@@ -65,10 +2309,14 @@ h6,
|
|
65
2309
|
.h1,
|
66
2310
|
.h2,
|
67
2311
|
.h3,
|
68
|
-
.h4
|
69
|
-
.h5,
|
70
|
-
.h6 {
|
2312
|
+
.h4 {
|
71
2313
|
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
2314
|
+
font-weight: 300;
|
2315
|
+
}
|
2316
|
+
h5,
|
2317
|
+
h6 {
|
2318
|
+
font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
2319
|
+
font-weight: 400;
|
72
2320
|
}
|
73
2321
|
body .well,
|
74
2322
|
.container .well,
|
@@ -396,93 +2644,245 @@ body .jumbotron-material-lightgrey,
|
|
396
2644
|
border: 0;
|
397
2645
|
margin: 10px 1px;
|
398
2646
|
cursor: pointer;
|
399
|
-
border-radius:
|
2647
|
+
border-radius: 2px;
|
400
2648
|
text-transform: uppercase;
|
401
2649
|
text-decoration: none;
|
402
2650
|
color: rgba(255, 255, 255, 0.84);
|
403
2651
|
-webkit-transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
404
2652
|
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
405
|
-
outline: none !important;
|
2653
|
+
outline: none !important;
|
2654
|
+
}
|
2655
|
+
.btn:hover:not(.btn-link):not(.btn-flat) {
|
2656
|
+
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.28);
|
2657
|
+
}
|
2658
|
+
.btn:active:not(.btn-link):not(.btn-flat) {
|
2659
|
+
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
|
2660
|
+
}
|
2661
|
+
.btn:disabled:not(.btn-link):not(.btn-flat) {
|
2662
|
+
color: #a8a8a8 !important;
|
2663
|
+
background-color: #eaeaea !important;
|
2664
|
+
box-shadow: none;
|
2665
|
+
}
|
2666
|
+
.btn:not(.btn-link),
|
2667
|
+
.btn-default:not(.btn-link) {
|
2668
|
+
background-color: transparent;
|
2669
|
+
}
|
2670
|
+
.btn-primary:not(.btn-link) {
|
2671
|
+
background-color: #4285f4;
|
2672
|
+
}
|
2673
|
+
.btn-success:not(.btn-link) {
|
2674
|
+
background-color: #0f9d58;
|
2675
|
+
}
|
2676
|
+
.btn-info:not(.btn-link) {
|
2677
|
+
background-color: #03a9f4;
|
2678
|
+
}
|
2679
|
+
.btn-warning:not(.btn-link) {
|
2680
|
+
background-color: #ff5722;
|
2681
|
+
}
|
2682
|
+
.btn-danger:not(.btn-link) {
|
2683
|
+
background-color: #f44336;
|
2684
|
+
}
|
2685
|
+
.btn-material-red:not(.btn-link) {
|
2686
|
+
background-color: #f44336;
|
2687
|
+
}
|
2688
|
+
.btn-material-pink:not(.btn-link) {
|
2689
|
+
background-color: #e91e63;
|
2690
|
+
}
|
2691
|
+
.btn-material-purple:not(.btn-link) {
|
2692
|
+
background-color: #9c27b0;
|
2693
|
+
}
|
2694
|
+
.btn-material-deeppurple:not(.btn-link) {
|
2695
|
+
background-color: #673ab7;
|
2696
|
+
}
|
2697
|
+
.btn-material-indigo:not(.btn-link) {
|
2698
|
+
background-color: #3f51b5;
|
2699
|
+
}
|
2700
|
+
.btn-material-lightblue:not(.btn-link) {
|
2701
|
+
background-color: #03a9f4;
|
2702
|
+
}
|
2703
|
+
.btn-material-cyan:not(.btn-link) {
|
2704
|
+
background-color: #00bcd4;
|
2705
|
+
}
|
2706
|
+
.btn-material-teal:not(.btn-link) {
|
2707
|
+
background-color: #009688;
|
2708
|
+
}
|
2709
|
+
.btn-material-lightgreen:not(.btn-link) {
|
2710
|
+
background-color: #8bc34a;
|
2711
|
+
}
|
2712
|
+
.btn-material-lime:not(.btn-link) {
|
2713
|
+
background-color: #cddc39;
|
2714
|
+
}
|
2715
|
+
.btn-material-lightyellow:not(.btn-link) {
|
2716
|
+
background-color: #ffeb3b;
|
2717
|
+
}
|
2718
|
+
.btn-material-orange:not(.btn-link) {
|
2719
|
+
background-color: #ff9800;
|
2720
|
+
}
|
2721
|
+
.btn-material-deeporange:not(.btn-link) {
|
2722
|
+
background-color: #ff5722;
|
2723
|
+
}
|
2724
|
+
.btn-material-grey:not(.btn-link) {
|
2725
|
+
background-color: #9e9e9e;
|
2726
|
+
}
|
2727
|
+
.btn-material-bluegrey:not(.btn-link) {
|
2728
|
+
background-color: #607d8b;
|
2729
|
+
}
|
2730
|
+
.btn-material-brown:not(.btn-link) {
|
2731
|
+
background-color: #795548;
|
2732
|
+
}
|
2733
|
+
.btn-material-lightgrey:not(.btn-link) {
|
2734
|
+
background-color: #ececec;
|
2735
|
+
}
|
2736
|
+
.btn.btn-flat {
|
2737
|
+
background: none;
|
2738
|
+
box-shadow: none;
|
2739
|
+
font-weight: 500;
|
2740
|
+
}
|
2741
|
+
.btn.btn-flat:disabled {
|
2742
|
+
color: #a8a8a8 !important;
|
2743
|
+
}
|
2744
|
+
.btn.btn-flat.btn-primary {
|
2745
|
+
color: #4285f4;
|
2746
|
+
}
|
2747
|
+
.btn.btn-flat.btn-success {
|
2748
|
+
color: #0f9d58;
|
2749
|
+
}
|
2750
|
+
.btn.btn-flat.btn-info {
|
2751
|
+
color: #03a9f4;
|
2752
|
+
}
|
2753
|
+
.btn.btn-flat.btn-warning {
|
2754
|
+
color: #ff5722;
|
2755
|
+
}
|
2756
|
+
.btn.btn-flat.btn-danger {
|
2757
|
+
color: #f44336;
|
2758
|
+
}
|
2759
|
+
.btn.btn-raised {
|
2760
|
+
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
|
2761
|
+
-webkit-transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
2762
|
+
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
406
2763
|
}
|
407
|
-
.btn:
|
408
|
-
|
2764
|
+
.btn.btn-raised:active:not(.btn-link) {
|
2765
|
+
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
|
409
2766
|
}
|
410
|
-
.btn
|
411
|
-
|
2767
|
+
.btn.btn-fab {
|
2768
|
+
margin: 0;
|
2769
|
+
padding: 15px;
|
2770
|
+
font-size: 26px;
|
2771
|
+
width: 56px;
|
2772
|
+
height: 56px;
|
412
2773
|
}
|
413
|
-
.btn
|
414
|
-
|
2774
|
+
.btn.btn-fab,
|
2775
|
+
.btn.btn-fab:hover {
|
2776
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
|
415
2777
|
}
|
416
|
-
.btn
|
417
|
-
.btn
|
2778
|
+
.btn.btn-fab,
|
2779
|
+
.btn.btn-fab:hover,
|
2780
|
+
.btn.btn-fab-default,
|
2781
|
+
.btn.btn-fab:hover-default {
|
418
2782
|
background-color: transparent;
|
419
2783
|
}
|
420
|
-
.btn
|
2784
|
+
.btn.btn-fab-primary,
|
2785
|
+
.btn.btn-fab:hover-primary {
|
421
2786
|
background-color: #4285f4;
|
422
2787
|
}
|
423
|
-
.btn
|
2788
|
+
.btn.btn-fab-success,
|
2789
|
+
.btn.btn-fab:hover-success {
|
424
2790
|
background-color: #0f9d58;
|
425
2791
|
}
|
426
|
-
.btn
|
2792
|
+
.btn.btn-fab-info,
|
2793
|
+
.btn.btn-fab:hover-info {
|
427
2794
|
background-color: #03a9f4;
|
428
2795
|
}
|
429
|
-
.btn
|
2796
|
+
.btn.btn-fab-warning,
|
2797
|
+
.btn.btn-fab:hover-warning {
|
430
2798
|
background-color: #ff5722;
|
431
2799
|
}
|
432
|
-
.btn
|
2800
|
+
.btn.btn-fab-danger,
|
2801
|
+
.btn.btn-fab:hover-danger {
|
433
2802
|
background-color: #f44336;
|
434
2803
|
}
|
435
|
-
.btn-material-red
|
2804
|
+
.btn.btn-fab-material-red,
|
2805
|
+
.btn.btn-fab:hover-material-red {
|
436
2806
|
background-color: #f44336;
|
437
2807
|
}
|
438
|
-
.btn-material-pink
|
2808
|
+
.btn.btn-fab-material-pink,
|
2809
|
+
.btn.btn-fab:hover-material-pink {
|
439
2810
|
background-color: #e91e63;
|
440
2811
|
}
|
441
|
-
.btn-material-purple
|
2812
|
+
.btn.btn-fab-material-purple,
|
2813
|
+
.btn.btn-fab:hover-material-purple {
|
442
2814
|
background-color: #9c27b0;
|
443
2815
|
}
|
444
|
-
.btn-material-deeppurple
|
2816
|
+
.btn.btn-fab-material-deeppurple,
|
2817
|
+
.btn.btn-fab:hover-material-deeppurple {
|
445
2818
|
background-color: #673ab7;
|
446
2819
|
}
|
447
|
-
.btn-material-indigo
|
2820
|
+
.btn.btn-fab-material-indigo,
|
2821
|
+
.btn.btn-fab:hover-material-indigo {
|
448
2822
|
background-color: #3f51b5;
|
449
2823
|
}
|
450
|
-
.btn-material-lightblue
|
2824
|
+
.btn.btn-fab-material-lightblue,
|
2825
|
+
.btn.btn-fab:hover-material-lightblue {
|
451
2826
|
background-color: #03a9f4;
|
452
2827
|
}
|
453
|
-
.btn-material-cyan
|
2828
|
+
.btn.btn-fab-material-cyan,
|
2829
|
+
.btn.btn-fab:hover-material-cyan {
|
454
2830
|
background-color: #00bcd4;
|
455
2831
|
}
|
456
|
-
.btn-material-teal
|
2832
|
+
.btn.btn-fab-material-teal,
|
2833
|
+
.btn.btn-fab:hover-material-teal {
|
457
2834
|
background-color: #009688;
|
458
2835
|
}
|
459
|
-
.btn-material-lightgreen
|
2836
|
+
.btn.btn-fab-material-lightgreen,
|
2837
|
+
.btn.btn-fab:hover-material-lightgreen {
|
460
2838
|
background-color: #8bc34a;
|
461
2839
|
}
|
462
|
-
.btn-material-lime
|
2840
|
+
.btn.btn-fab-material-lime,
|
2841
|
+
.btn.btn-fab:hover-material-lime {
|
463
2842
|
background-color: #cddc39;
|
464
2843
|
}
|
465
|
-
.btn-material-lightyellow
|
2844
|
+
.btn.btn-fab-material-lightyellow,
|
2845
|
+
.btn.btn-fab:hover-material-lightyellow {
|
466
2846
|
background-color: #ffeb3b;
|
467
2847
|
}
|
468
|
-
.btn-material-orange
|
2848
|
+
.btn.btn-fab-material-orange,
|
2849
|
+
.btn.btn-fab:hover-material-orange {
|
469
2850
|
background-color: #ff9800;
|
470
2851
|
}
|
471
|
-
.btn-material-deeporange
|
2852
|
+
.btn.btn-fab-material-deeporange,
|
2853
|
+
.btn.btn-fab:hover-material-deeporange {
|
472
2854
|
background-color: #ff5722;
|
473
2855
|
}
|
474
|
-
.btn-material-grey
|
2856
|
+
.btn.btn-fab-material-grey,
|
2857
|
+
.btn.btn-fab:hover-material-grey {
|
475
2858
|
background-color: #9e9e9e;
|
476
2859
|
}
|
477
|
-
.btn-material-bluegrey
|
2860
|
+
.btn.btn-fab-material-bluegrey,
|
2861
|
+
.btn.btn-fab:hover-material-bluegrey {
|
478
2862
|
background-color: #607d8b;
|
479
2863
|
}
|
480
|
-
.btn-material-brown
|
2864
|
+
.btn.btn-fab-material-brown,
|
2865
|
+
.btn.btn-fab:hover-material-brown {
|
481
2866
|
background-color: #795548;
|
482
2867
|
}
|
483
|
-
.btn-material-lightgrey
|
2868
|
+
.btn.btn-fab-material-lightgrey,
|
2869
|
+
.btn.btn-fab:hover-material-lightgrey {
|
484
2870
|
background-color: #ececec;
|
485
2871
|
}
|
2872
|
+
.btn.btn-fab,
|
2873
|
+
.btn.btn-fab .ripple-wrapper {
|
2874
|
+
border-radius: 100%;
|
2875
|
+
}
|
2876
|
+
.btn.btn-fab.btn-fab-mini {
|
2877
|
+
width: 40px;
|
2878
|
+
height: 40px;
|
2879
|
+
padding: 13px;
|
2880
|
+
font-size: 15px;
|
2881
|
+
}
|
2882
|
+
.btn.btn-fab i {
|
2883
|
+
position: relative;
|
2884
|
+
top: -5px;
|
2885
|
+
}
|
486
2886
|
.btn-link,
|
487
2887
|
.btn:not([class^="btn btn-"]),
|
488
2888
|
.btn-default {
|
@@ -497,14 +2897,6 @@ body .jumbotron-material-lightgrey,
|
|
497
2897
|
.btn-default:hover {
|
498
2898
|
background-color: rgba(255, 255, 255, 0.5);
|
499
2899
|
}
|
500
|
-
.btn-raised {
|
501
|
-
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
|
502
|
-
-webkit-transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
503
|
-
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
504
|
-
}
|
505
|
-
.btn-raised:active:not(.btn-link) {
|
506
|
-
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
|
507
|
-
}
|
508
2900
|
.open > .dropdown-toggle.btn,
|
509
2901
|
.open > .dropdown-toggle.btn-default {
|
510
2902
|
background-color: transparent;
|
@@ -575,16 +2967,10 @@ body .jumbotron-material-lightgrey,
|
|
575
2967
|
.open > .dropdown-toggle.btn-material-lightgrey {
|
576
2968
|
background-color: #ececec;
|
577
2969
|
}
|
578
|
-
.btn-flat {
|
579
|
-
box-shadow: none !important;
|
580
|
-
}
|
581
|
-
.btn-flat.btn-default:hover {
|
582
|
-
background: none;
|
583
|
-
}
|
584
2970
|
.btn-group,
|
585
2971
|
.btn-group-vertical {
|
586
2972
|
position: relative;
|
587
|
-
border-radius:
|
2973
|
+
border-radius: 2px;
|
588
2974
|
margin: 10px 1px;
|
589
2975
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
|
590
2976
|
-webkit-transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
@@ -624,543 +3010,424 @@ body .jumbotron-material-lightgrey,
|
|
624
3010
|
.btn-group-flat {
|
625
3011
|
box-shadow: none !important;
|
626
3012
|
}
|
627
|
-
.
|
3013
|
+
.form-horizontal .checkbox {
|
3014
|
+
padding-top: 20px;
|
3015
|
+
}
|
3016
|
+
.checkbox label {
|
3017
|
+
padding-left: 10px;
|
3018
|
+
cursor: pointer;
|
3019
|
+
position: relative;
|
3020
|
+
}
|
3021
|
+
.checkbox label span {
|
3022
|
+
display: block;
|
3023
|
+
position: absolute;
|
3024
|
+
left: 0px;
|
3025
|
+
-webkit-transition-duration: 0.2s;
|
3026
|
+
transition-duration: 0.2s;
|
3027
|
+
}
|
3028
|
+
.checkbox label .check {
|
3029
|
+
display: inline-block;
|
3030
|
+
width: 20px;
|
3031
|
+
height: 20px;
|
3032
|
+
border: 2px solid;
|
3033
|
+
border-radius: 2px;
|
3034
|
+
overflow: hidden;
|
3035
|
+
position: relative;
|
3036
|
+
top: 5px;
|
3037
|
+
left: -3px;
|
3038
|
+
}
|
3039
|
+
.checkbox label .check:after {
|
3040
|
+
display: block;
|
3041
|
+
position: absolute;
|
3042
|
+
content: "";
|
3043
|
+
background-color: rgba(0, 0, 0, 0.84);
|
3044
|
+
left: -5px;
|
3045
|
+
top: -15px;
|
3046
|
+
height: 50px;
|
3047
|
+
width: 50px;
|
3048
|
+
border-radius: 100%;
|
3049
|
+
z-index: 1;
|
3050
|
+
opacity: 0;
|
628
3051
|
margin: 0;
|
629
|
-
padding: 15px;
|
630
|
-
font-size: 26px;
|
631
|
-
width: 56px;
|
632
|
-
height: 56px;
|
633
3052
|
}
|
634
|
-
.
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
3053
|
+
.checkbox label .check:before {
|
3054
|
+
position: absolute;
|
3055
|
+
content: "";
|
3056
|
+
-webkit-transform: rotate(45deg);
|
3057
|
+
-ms-transform: rotate(45deg);
|
3058
|
+
transform: rotate(45deg);
|
3059
|
+
display: block;
|
3060
|
+
margin-top: -4px;
|
3061
|
+
margin-left: 6px;
|
3062
|
+
width: 0;
|
3063
|
+
height: 0;
|
3064
|
+
box-shadow: 0 0 0 0,
|
3065
|
+
0 0 0 0,
|
3066
|
+
0 0 0 0,
|
3067
|
+
0 0 0 0,
|
3068
|
+
0 0 0 0,
|
3069
|
+
0 0 0 0,
|
3070
|
+
0px 0px 0 0px inset;
|
3071
|
+
-webkit-animation: checkbox-off 0.3s linear forwards;
|
3072
|
+
animation: checkbox-off 0.3s linear forwards;
|
3073
|
+
}
|
3074
|
+
.checkbox input[type=checkbox] {
|
3075
|
+
opacity: 0;
|
3076
|
+
}
|
3077
|
+
.checkbox input[type=checkbox]:focus ~ .check:after {
|
3078
|
+
opacity: 0.2;
|
3079
|
+
}
|
3080
|
+
.checkbox input[type=checkbox]:checked ~ .check:before {
|
3081
|
+
box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
|
3082
|
+
-webkit-animation: checkbox-on 0.3s linear forwards;
|
3083
|
+
animation: checkbox-on 0.3s linear forwards;
|
3084
|
+
}
|
3085
|
+
.checkbox input[type=checkbox]:not(:checked) ~ .check:after {
|
3086
|
+
-webkit-animation: rippleOff 500ms linear forwards;
|
3087
|
+
animation: rippleOff 500ms linear forwards;
|
3088
|
+
}
|
3089
|
+
.checkbox input[type=checkbox]:checked ~ .check:after {
|
3090
|
+
-webkit-animation: rippleOn 500ms linear forwards;
|
3091
|
+
animation: rippleOn 500ms linear forwards;
|
3092
|
+
}
|
3093
|
+
.checkbox:not(:hover) input[type=checkbox] ~ .check:before,
|
3094
|
+
.checkbox:not(:hover) input[type=checkbox] ~ .check:after {
|
3095
|
+
-webkit-animation-duration: 1ms;
|
3096
|
+
animation-duration: 1ms;
|
3097
|
+
}
|
3098
|
+
.checkbox input[type=checkbox][disabled]:not(:checked) ~ .check:before {
|
3099
|
+
opacity: 0.5;
|
3100
|
+
}
|
3101
|
+
.checkbox input[type=checkbox][disabled] ~ .check:after {
|
3102
|
+
background-color: rgba(0, 0, 0, 0.84);
|
3103
|
+
-webkit-transform: rotate(-45deg);
|
3104
|
+
-ms-transform: rotate(-45deg);
|
3105
|
+
transform: rotate(-45deg);
|
3106
|
+
}
|
3107
|
+
.checkbox input[type=checkbox]:checked ~ .check:after,
|
3108
|
+
.checkbox-default input[type=checkbox]:checked ~ .check:after {
|
3109
|
+
background-color: #0f9d58;
|
639
3110
|
}
|
640
|
-
.
|
641
|
-
.btn-fab:hover-primary {
|
3111
|
+
.checkbox-primary input[type=checkbox]:checked ~ .check:after {
|
642
3112
|
background-color: #4285f4;
|
643
3113
|
}
|
644
|
-
.
|
645
|
-
.btn-fab:hover-success {
|
3114
|
+
.checkbox-success input[type=checkbox]:checked ~ .check:after {
|
646
3115
|
background-color: #0f9d58;
|
647
3116
|
}
|
648
|
-
.
|
649
|
-
.btn-fab:hover-info {
|
3117
|
+
.checkbox-info input[type=checkbox]:checked ~ .check:after {
|
650
3118
|
background-color: #03a9f4;
|
651
3119
|
}
|
652
|
-
.
|
653
|
-
.btn-fab:hover-warning {
|
3120
|
+
.checkbox-warning input[type=checkbox]:checked ~ .check:after {
|
654
3121
|
background-color: #ff5722;
|
655
3122
|
}
|
656
|
-
.
|
657
|
-
.btn-fab:hover-danger {
|
3123
|
+
.checkbox-danger input[type=checkbox]:checked ~ .check:after {
|
658
3124
|
background-color: #f44336;
|
659
3125
|
}
|
660
|
-
.
|
661
|
-
.btn-fab:hover-material-red {
|
3126
|
+
.checkbox-material-red input[type=checkbox]:checked ~ .check:after {
|
662
3127
|
background-color: #f44336;
|
663
3128
|
}
|
664
|
-
.
|
665
|
-
.btn-fab:hover-material-pink {
|
3129
|
+
.checkbox-material-pink input[type=checkbox]:checked ~ .check:after {
|
666
3130
|
background-color: #e91e63;
|
667
3131
|
}
|
668
|
-
.
|
669
|
-
.btn-fab:hover-material-purple {
|
3132
|
+
.checkbox-material-purple input[type=checkbox]:checked ~ .check:after {
|
670
3133
|
background-color: #9c27b0;
|
671
3134
|
}
|
672
|
-
.
|
673
|
-
.btn-fab:hover-material-deeppurple {
|
3135
|
+
.checkbox-material-deeppurple input[type=checkbox]:checked ~ .check:after {
|
674
3136
|
background-color: #673ab7;
|
675
3137
|
}
|
676
|
-
.
|
677
|
-
.btn-fab:hover-material-indigo {
|
3138
|
+
.checkbox-material-indigo input[type=checkbox]:checked ~ .check:after {
|
678
3139
|
background-color: #3f51b5;
|
679
3140
|
}
|
680
|
-
.
|
681
|
-
.btn-fab:hover-material-lightblue {
|
3141
|
+
.checkbox-material-lightblue input[type=checkbox]:checked ~ .check:after {
|
682
3142
|
background-color: #03a9f4;
|
683
3143
|
}
|
684
|
-
.
|
685
|
-
.btn-fab:hover-material-cyan {
|
3144
|
+
.checkbox-material-cyan input[type=checkbox]:checked ~ .check:after {
|
686
3145
|
background-color: #00bcd4;
|
687
3146
|
}
|
688
|
-
.
|
689
|
-
.btn-fab:hover-material-teal {
|
3147
|
+
.checkbox-material-teal input[type=checkbox]:checked ~ .check:after {
|
690
3148
|
background-color: #009688;
|
691
3149
|
}
|
692
|
-
.
|
693
|
-
.btn-fab:hover-material-lightgreen {
|
3150
|
+
.checkbox-material-lightgreen input[type=checkbox]:checked ~ .check:after {
|
694
3151
|
background-color: #8bc34a;
|
695
3152
|
}
|
696
|
-
.
|
697
|
-
.btn-fab:hover-material-lime {
|
3153
|
+
.checkbox-material-lime input[type=checkbox]:checked ~ .check:after {
|
698
3154
|
background-color: #cddc39;
|
699
3155
|
}
|
700
|
-
.
|
701
|
-
.btn-fab:hover-material-lightyellow {
|
3156
|
+
.checkbox-material-lightyellow input[type=checkbox]:checked ~ .check:after {
|
702
3157
|
background-color: #ffeb3b;
|
703
3158
|
}
|
704
|
-
.
|
705
|
-
.btn-fab:hover-material-orange {
|
3159
|
+
.checkbox-material-orange input[type=checkbox]:checked ~ .check:after {
|
706
3160
|
background-color: #ff9800;
|
707
3161
|
}
|
708
|
-
.
|
709
|
-
.btn-fab:hover-material-deeporange {
|
3162
|
+
.checkbox-material-deeporange input[type=checkbox]:checked ~ .check:after {
|
710
3163
|
background-color: #ff5722;
|
711
3164
|
}
|
712
|
-
.
|
713
|
-
.btn-fab:hover-material-grey {
|
3165
|
+
.checkbox-material-grey input[type=checkbox]:checked ~ .check:after {
|
714
3166
|
background-color: #9e9e9e;
|
715
3167
|
}
|
716
|
-
.
|
717
|
-
.btn-fab:hover-material-bluegrey {
|
3168
|
+
.checkbox-material-bluegrey input[type=checkbox]:checked ~ .check:after {
|
718
3169
|
background-color: #607d8b;
|
719
3170
|
}
|
720
|
-
.
|
721
|
-
.btn-fab:hover-material-brown {
|
3171
|
+
.checkbox-material-brown input[type=checkbox]:checked ~ .check:after {
|
722
3172
|
background-color: #795548;
|
723
3173
|
}
|
724
|
-
.
|
725
|
-
.btn-fab:hover-material-lightgrey {
|
3174
|
+
.checkbox-material-lightgrey input[type=checkbox]:checked ~ .check:after {
|
726
3175
|
background-color: #ececec;
|
727
3176
|
}
|
728
|
-
.
|
729
|
-
.
|
730
|
-
|
731
|
-
}
|
732
|
-
.btn-fab.btn-mini {
|
733
|
-
width: 40px;
|
734
|
-
height: 40px;
|
735
|
-
padding: 13px;
|
736
|
-
font-size: 15px;
|
737
|
-
}
|
738
|
-
.form-horizontal .checkbox {
|
739
|
-
padding-top: 15px;
|
740
|
-
}
|
741
|
-
.checkbox {
|
742
|
-
-webkit-transform: rotate(0deg);
|
743
|
-
-ms-transform: rotate(0deg);
|
744
|
-
transform: rotate(0deg);
|
745
|
-
}
|
746
|
-
.checkbox label {
|
747
|
-
cursor: pointer;
|
748
|
-
padding-left: 45px;
|
749
|
-
position: relative;
|
750
|
-
}
|
751
|
-
.checkbox label span {
|
752
|
-
display: block;
|
753
|
-
position: absolute;
|
754
|
-
left: 0px;
|
755
|
-
-webkit-transition-duration: 0.2s;
|
756
|
-
transition-duration: 0.2s;
|
757
|
-
}
|
758
|
-
.checkbox label .check:after {
|
759
|
-
display: block;
|
760
|
-
position: absolute;
|
761
|
-
content: "";
|
762
|
-
background-color: rgba(0, 0, 0, 0.84);
|
763
|
-
left: -5px;
|
764
|
-
top: -15px;
|
765
|
-
height: 50px;
|
766
|
-
width: 50px;
|
767
|
-
border-radius: 100%;
|
768
|
-
z-index: 1;
|
769
|
-
opacity: 0;
|
770
|
-
margin: 0;
|
771
|
-
}
|
772
|
-
.checkbox label .check:before {
|
773
|
-
display: block;
|
774
|
-
content: "";
|
775
|
-
border: 2px solid rgba(0, 0, 0, 0.84);
|
776
|
-
height: 20px;
|
777
|
-
width: 20px;
|
778
|
-
-webkit-transition-delay: 0.2s;
|
779
|
-
transition-delay: 0.2s;
|
780
|
-
}
|
781
|
-
.checkbox .check,
|
782
|
-
.checkbox-default .check {
|
783
|
-
color: #0f9d58;
|
3177
|
+
.checkbox input[type=checkbox]:checked ~ .check:before,
|
3178
|
+
.checkbox-default input[type=checkbox]:checked ~ .check:before {
|
3179
|
+
color: #4caf50;
|
784
3180
|
}
|
785
|
-
.checkbox-primary .check {
|
3181
|
+
.checkbox-primary input[type=checkbox]:checked ~ .check:before {
|
786
3182
|
color: #4285f4;
|
787
3183
|
}
|
788
|
-
.checkbox-success .check {
|
3184
|
+
.checkbox-success input[type=checkbox]:checked ~ .check:before {
|
789
3185
|
color: #0f9d58;
|
790
3186
|
}
|
791
|
-
.checkbox-info .check {
|
3187
|
+
.checkbox-info input[type=checkbox]:checked ~ .check:before {
|
792
3188
|
color: #03a9f4;
|
793
3189
|
}
|
794
|
-
.checkbox-warning .check {
|
3190
|
+
.checkbox-warning input[type=checkbox]:checked ~ .check:before {
|
795
3191
|
color: #ff5722;
|
796
3192
|
}
|
797
|
-
.checkbox-danger .check {
|
3193
|
+
.checkbox-danger input[type=checkbox]:checked ~ .check:before {
|
798
3194
|
color: #f44336;
|
799
3195
|
}
|
800
|
-
.checkbox-material-red .check {
|
3196
|
+
.checkbox-material-red input[type=checkbox]:checked ~ .check:before {
|
801
3197
|
color: #f44336;
|
802
3198
|
}
|
803
|
-
.checkbox-material-pink .check {
|
3199
|
+
.checkbox-material-pink input[type=checkbox]:checked ~ .check:before {
|
804
3200
|
color: #e91e63;
|
805
3201
|
}
|
806
|
-
.checkbox-material-purple .check {
|
3202
|
+
.checkbox-material-purple input[type=checkbox]:checked ~ .check:before {
|
807
3203
|
color: #9c27b0;
|
808
3204
|
}
|
809
|
-
.checkbox-material-deeppurple .check {
|
3205
|
+
.checkbox-material-deeppurple input[type=checkbox]:checked ~ .check:before {
|
810
3206
|
color: #673ab7;
|
811
3207
|
}
|
812
|
-
.checkbox-material-indigo .check {
|
3208
|
+
.checkbox-material-indigo input[type=checkbox]:checked ~ .check:before {
|
813
3209
|
color: #3f51b5;
|
814
3210
|
}
|
815
|
-
.checkbox-material-lightblue .check {
|
3211
|
+
.checkbox-material-lightblue input[type=checkbox]:checked ~ .check:before {
|
816
3212
|
color: #03a9f4;
|
817
3213
|
}
|
818
|
-
.checkbox-material-cyan .check {
|
3214
|
+
.checkbox-material-cyan input[type=checkbox]:checked ~ .check:before {
|
819
3215
|
color: #00bcd4;
|
820
3216
|
}
|
821
|
-
.checkbox-material-teal .check {
|
3217
|
+
.checkbox-material-teal input[type=checkbox]:checked ~ .check:before {
|
822
3218
|
color: #009688;
|
823
3219
|
}
|
824
|
-
.checkbox-material-lightgreen .check {
|
3220
|
+
.checkbox-material-lightgreen input[type=checkbox]:checked ~ .check:before {
|
825
3221
|
color: #8bc34a;
|
826
3222
|
}
|
827
|
-
.checkbox-material-lime .check {
|
3223
|
+
.checkbox-material-lime input[type=checkbox]:checked ~ .check:before {
|
828
3224
|
color: #cddc39;
|
829
3225
|
}
|
830
|
-
.checkbox-material-lightyellow .check {
|
3226
|
+
.checkbox-material-lightyellow input[type=checkbox]:checked ~ .check:before {
|
831
3227
|
color: #ffeb3b;
|
832
3228
|
}
|
833
|
-
.checkbox-material-orange .check {
|
3229
|
+
.checkbox-material-orange input[type=checkbox]:checked ~ .check:before {
|
834
3230
|
color: #ff9800;
|
835
3231
|
}
|
836
|
-
.checkbox-material-deeporange .check {
|
3232
|
+
.checkbox-material-deeporange input[type=checkbox]:checked ~ .check:before {
|
837
3233
|
color: #ff5722;
|
838
3234
|
}
|
839
|
-
.checkbox-material-grey .check {
|
3235
|
+
.checkbox-material-grey input[type=checkbox]:checked ~ .check:before {
|
840
3236
|
color: #9e9e9e;
|
841
3237
|
}
|
842
|
-
.checkbox-material-bluegrey .check {
|
3238
|
+
.checkbox-material-bluegrey input[type=checkbox]:checked ~ .check:before {
|
843
3239
|
color: #607d8b;
|
844
3240
|
}
|
845
|
-
.checkbox-material-brown .check {
|
3241
|
+
.checkbox-material-brown input[type=checkbox]:checked ~ .check:before {
|
846
3242
|
color: #795548;
|
847
3243
|
}
|
848
|
-
.checkbox-material-lightgrey .check {
|
3244
|
+
.checkbox-material-lightgrey input[type=checkbox]:checked ~ .check:before {
|
849
3245
|
color: #ececec;
|
850
3246
|
}
|
851
|
-
.checkbox input[type=checkbox]
|
852
|
-
|
853
|
-
|
854
|
-
.checkbox input[type=checkbox] ~ .check:before {
|
855
|
-
position: absolute;
|
856
|
-
top: 2px;
|
857
|
-
left: 11px;
|
858
|
-
width: 18px;
|
859
|
-
height: 18px;
|
860
|
-
border: solid 2px;
|
861
|
-
border-color: #5a5a5a;
|
862
|
-
-webkit-animation: uncheck 300ms ease-out forwards;
|
863
|
-
animation: uncheck 300ms ease-out forwards;
|
864
|
-
}
|
865
|
-
.checkbox input[type=checkbox]:focus ~ .check:after {
|
866
|
-
opacity: 0.2;
|
867
|
-
}
|
868
|
-
.checkbox input[type=checkbox]:checked ~ .check:before {
|
869
|
-
-webkit-animation: check 300ms ease-out forwards;
|
870
|
-
animation: check 300ms ease-out forwards;
|
871
|
-
}
|
872
|
-
.checkbox input[type=checkbox]:not(:checked) ~ .check:after {
|
873
|
-
-webkit-animation: rippleOff 500ms linear forwards;
|
874
|
-
animation: rippleOff 500ms linear forwards;
|
875
|
-
}
|
876
|
-
.checkbox input[type=checkbox]:checked ~ .check:after {
|
877
|
-
-webkit-animation: rippleOn 500ms linear forwards;
|
878
|
-
animation: rippleOn 500ms linear forwards;
|
879
|
-
}
|
880
|
-
.checkbox:not(:hover) input[type=checkbox] ~ .check:before,
|
881
|
-
.checkbox:not(:hover) input[type=checkbox] ~ .check:after {
|
882
|
-
-webkit-animation-duration: 1ms;
|
883
|
-
animation-duration: 1ms;
|
884
|
-
}
|
885
|
-
.checkbox input[type=checkbox][disabled]:not(:checked) ~ .check:before {
|
886
|
-
opacity: 0.5;
|
887
|
-
}
|
888
|
-
.checkbox input[type=checkbox][disabled] ~ .check:after {
|
889
|
-
background-color: rgba(0, 0, 0, 0.84);
|
890
|
-
-webkit-transform: rotate(-45deg);
|
891
|
-
-ms-transform: rotate(-45deg);
|
892
|
-
transform: rotate(-45deg);
|
893
|
-
}
|
894
|
-
.checkbox input[type=checkbox]:checked ~ .check:after,
|
895
|
-
.checkbox-default input[type=checkbox]:checked ~ .check:after {
|
896
|
-
background-color: #0f9d58;
|
3247
|
+
.checkbox input[type=checkbox]:checked ~ .check,
|
3248
|
+
.checkbox-default input[type=checkbox]:checked ~ .check {
|
3249
|
+
color: #4caf50;
|
897
3250
|
}
|
898
|
-
.checkbox-primary input[type=checkbox]:checked ~ .check
|
899
|
-
|
3251
|
+
.checkbox-primary input[type=checkbox]:checked ~ .check {
|
3252
|
+
color: #4285f4;
|
900
3253
|
}
|
901
|
-
.checkbox-success input[type=checkbox]:checked ~ .check
|
902
|
-
|
3254
|
+
.checkbox-success input[type=checkbox]:checked ~ .check {
|
3255
|
+
color: #0f9d58;
|
903
3256
|
}
|
904
|
-
.checkbox-info input[type=checkbox]:checked ~ .check
|
905
|
-
|
3257
|
+
.checkbox-info input[type=checkbox]:checked ~ .check {
|
3258
|
+
color: #03a9f4;
|
906
3259
|
}
|
907
|
-
.checkbox-warning input[type=checkbox]:checked ~ .check
|
908
|
-
|
3260
|
+
.checkbox-warning input[type=checkbox]:checked ~ .check {
|
3261
|
+
color: #ff5722;
|
909
3262
|
}
|
910
|
-
.checkbox-danger input[type=checkbox]:checked ~ .check
|
911
|
-
|
3263
|
+
.checkbox-danger input[type=checkbox]:checked ~ .check {
|
3264
|
+
color: #f44336;
|
912
3265
|
}
|
913
|
-
.checkbox-material-red input[type=checkbox]:checked ~ .check
|
914
|
-
|
3266
|
+
.checkbox-material-red input[type=checkbox]:checked ~ .check {
|
3267
|
+
color: #f44336;
|
915
3268
|
}
|
916
|
-
.checkbox-material-pink input[type=checkbox]:checked ~ .check
|
917
|
-
|
3269
|
+
.checkbox-material-pink input[type=checkbox]:checked ~ .check {
|
3270
|
+
color: #e91e63;
|
918
3271
|
}
|
919
|
-
.checkbox-material-purple input[type=checkbox]:checked ~ .check
|
920
|
-
|
3272
|
+
.checkbox-material-purple input[type=checkbox]:checked ~ .check {
|
3273
|
+
color: #9c27b0;
|
921
3274
|
}
|
922
|
-
.checkbox-material-deeppurple input[type=checkbox]:checked ~ .check
|
923
|
-
|
3275
|
+
.checkbox-material-deeppurple input[type=checkbox]:checked ~ .check {
|
3276
|
+
color: #673ab7;
|
924
3277
|
}
|
925
|
-
.checkbox-material-indigo input[type=checkbox]:checked ~ .check
|
926
|
-
|
3278
|
+
.checkbox-material-indigo input[type=checkbox]:checked ~ .check {
|
3279
|
+
color: #3f51b5;
|
927
3280
|
}
|
928
|
-
.checkbox-material-lightblue input[type=checkbox]:checked ~ .check
|
929
|
-
|
3281
|
+
.checkbox-material-lightblue input[type=checkbox]:checked ~ .check {
|
3282
|
+
color: #03a9f4;
|
930
3283
|
}
|
931
|
-
.checkbox-material-cyan input[type=checkbox]:checked ~ .check
|
932
|
-
|
3284
|
+
.checkbox-material-cyan input[type=checkbox]:checked ~ .check {
|
3285
|
+
color: #00bcd4;
|
933
3286
|
}
|
934
|
-
.checkbox-material-teal input[type=checkbox]:checked ~ .check
|
935
|
-
|
3287
|
+
.checkbox-material-teal input[type=checkbox]:checked ~ .check {
|
3288
|
+
color: #009688;
|
936
3289
|
}
|
937
|
-
.checkbox-material-lightgreen input[type=checkbox]:checked ~ .check
|
938
|
-
|
3290
|
+
.checkbox-material-lightgreen input[type=checkbox]:checked ~ .check {
|
3291
|
+
color: #8bc34a;
|
939
3292
|
}
|
940
|
-
.checkbox-material-lime input[type=checkbox]:checked ~ .check
|
941
|
-
|
3293
|
+
.checkbox-material-lime input[type=checkbox]:checked ~ .check {
|
3294
|
+
color: #cddc39;
|
942
3295
|
}
|
943
|
-
.checkbox-material-lightyellow input[type=checkbox]:checked ~ .check
|
944
|
-
|
3296
|
+
.checkbox-material-lightyellow input[type=checkbox]:checked ~ .check {
|
3297
|
+
color: #ffeb3b;
|
945
3298
|
}
|
946
|
-
.checkbox-material-orange input[type=checkbox]:checked ~ .check
|
947
|
-
|
3299
|
+
.checkbox-material-orange input[type=checkbox]:checked ~ .check {
|
3300
|
+
color: #ff9800;
|
948
3301
|
}
|
949
|
-
.checkbox-material-deeporange input[type=checkbox]:checked ~ .check
|
950
|
-
|
3302
|
+
.checkbox-material-deeporange input[type=checkbox]:checked ~ .check {
|
3303
|
+
color: #ff5722;
|
951
3304
|
}
|
952
|
-
.checkbox-material-grey input[type=checkbox]:checked ~ .check
|
953
|
-
|
3305
|
+
.checkbox-material-grey input[type=checkbox]:checked ~ .check {
|
3306
|
+
color: #9e9e9e;
|
954
3307
|
}
|
955
|
-
.checkbox-material-bluegrey input[type=checkbox]:checked ~ .check
|
956
|
-
|
3308
|
+
.checkbox-material-bluegrey input[type=checkbox]:checked ~ .check {
|
3309
|
+
color: #607d8b;
|
957
3310
|
}
|
958
|
-
.checkbox-material-brown input[type=checkbox]:checked ~ .check
|
959
|
-
|
3311
|
+
.checkbox-material-brown input[type=checkbox]:checked ~ .check {
|
3312
|
+
color: #795548;
|
960
3313
|
}
|
961
|
-
.checkbox-material-lightgrey input[type=checkbox]:checked ~ .check
|
962
|
-
|
3314
|
+
.checkbox-material-lightgrey input[type=checkbox]:checked ~ .check {
|
3315
|
+
color: #ececec;
|
963
3316
|
}
|
964
|
-
@-webkit-keyframes
|
3317
|
+
@-webkit-keyframes checkbox-on {
|
965
3318
|
0% {
|
966
|
-
|
967
|
-
left: 17px;
|
968
|
-
width: 10px;
|
969
|
-
height: 21px;
|
970
|
-
border-color: #0f9d58;
|
971
|
-
border-left-color: transparent;
|
972
|
-
border-top-color: transparent;
|
973
|
-
-webkit-transform: rotate(45deg);
|
974
|
-
transform: rotate(45deg);
|
3319
|
+
box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
|
975
3320
|
}
|
976
3321
|
50% {
|
977
|
-
|
978
|
-
left: 17px;
|
979
|
-
width: 4px;
|
980
|
-
height: 4px;
|
981
|
-
-webkit-transform: rotate(45deg);
|
982
|
-
transform: rotate(45deg);
|
983
|
-
border-color: #0f9d58;
|
984
|
-
border-left-color: transparent;
|
985
|
-
border-top-color: transparent;
|
986
|
-
}
|
987
|
-
51% {
|
988
|
-
border-color: #5a5a5a;
|
989
|
-
border-left-color: #5a5a5a;
|
990
|
-
border-top-color: #5a5a5a;
|
3322
|
+
box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
|
991
3323
|
}
|
992
3324
|
100% {
|
993
|
-
|
994
|
-
left: 12px;
|
995
|
-
width: 18px;
|
996
|
-
height: 18px;
|
997
|
-
-webkit-transform: rotate(0deg);
|
998
|
-
transform: rotate(0deg);
|
999
|
-
border-color: #5a5a5a;
|
1000
|
-
border-left-color: #5a5a5a;
|
1001
|
-
border-top-color: #5a5a5a;
|
3325
|
+
box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
|
1002
3326
|
}
|
1003
3327
|
}
|
1004
|
-
@keyframes
|
3328
|
+
@keyframes checkbox-on {
|
1005
3329
|
0% {
|
1006
|
-
|
1007
|
-
left: 17px;
|
1008
|
-
width: 10px;
|
1009
|
-
height: 21px;
|
1010
|
-
border-color: #0f9d58;
|
1011
|
-
border-left-color: transparent;
|
1012
|
-
border-top-color: transparent;
|
1013
|
-
-webkit-transform: rotate(45deg);
|
1014
|
-
transform: rotate(45deg);
|
3330
|
+
box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
|
1015
3331
|
}
|
1016
3332
|
50% {
|
1017
|
-
|
1018
|
-
left: 17px;
|
1019
|
-
width: 4px;
|
1020
|
-
height: 4px;
|
1021
|
-
-webkit-transform: rotate(45deg);
|
1022
|
-
transform: rotate(45deg);
|
1023
|
-
border-color: #0f9d58;
|
1024
|
-
border-left-color: transparent;
|
1025
|
-
border-top-color: transparent;
|
1026
|
-
}
|
1027
|
-
51% {
|
1028
|
-
border-color: #5a5a5a;
|
1029
|
-
border-left-color: #5a5a5a;
|
1030
|
-
border-top-color: #5a5a5a;
|
3333
|
+
box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
|
1031
3334
|
}
|
1032
3335
|
100% {
|
1033
|
-
|
1034
|
-
left: 12px;
|
1035
|
-
width: 18px;
|
1036
|
-
height: 18px;
|
1037
|
-
-webkit-transform: rotate(0deg);
|
1038
|
-
transform: rotate(0deg);
|
1039
|
-
border-color: #5a5a5a;
|
1040
|
-
border-left-color: #5a5a5a;
|
1041
|
-
border-top-color: #5a5a5a;
|
3336
|
+
box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
|
1042
3337
|
}
|
1043
3338
|
}
|
1044
|
-
@-webkit-keyframes
|
1045
|
-
|
1046
|
-
|
1047
|
-
left: 17px;
|
1048
|
-
width: 10px;
|
1049
|
-
height: 21px;
|
1050
|
-
-webkit-transform: rotate(45deg);
|
1051
|
-
transform: rotate(45deg);
|
1052
|
-
border-color: #0f9d58;
|
1053
|
-
border-left-color: transparent;
|
1054
|
-
border-top-color: transparent;
|
3339
|
+
@-webkit-keyframes checkbox-off {
|
3340
|
+
0% {
|
3341
|
+
box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
|
1055
3342
|
}
|
1056
|
-
|
1057
|
-
|
1058
|
-
border-top-color: transparent;
|
3343
|
+
25% {
|
3344
|
+
box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
|
1059
3345
|
}
|
1060
3346
|
50% {
|
1061
|
-
top: 14px;
|
1062
|
-
left: 17px;
|
1063
|
-
width: 4px;
|
1064
|
-
height: 4px;
|
1065
3347
|
-webkit-transform: rotate(45deg);
|
1066
3348
|
transform: rotate(45deg);
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
3349
|
+
margin-top: -4px;
|
3350
|
+
margin-left: 6px;
|
3351
|
+
width: 0px;
|
3352
|
+
height: 0px;
|
3353
|
+
box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset;
|
1070
3354
|
}
|
1071
|
-
|
1072
|
-
top: 1px;
|
1073
|
-
left: 12px;
|
1074
|
-
width: 18px;
|
1075
|
-
height: 18px;
|
3355
|
+
51% {
|
1076
3356
|
-webkit-transform: rotate(0deg);
|
1077
3357
|
transform: rotate(0deg);
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
3358
|
+
margin-top: -2px;
|
3359
|
+
margin-left: -2px;
|
3360
|
+
width: 20px;
|
3361
|
+
height: 20px;
|
3362
|
+
box-shadow: 0 0 0 0,
|
3363
|
+
0 0 0 0,
|
3364
|
+
0 0 0 0,
|
3365
|
+
0 0 0 0,
|
3366
|
+
0 0 0 0,
|
3367
|
+
0 0 0 0,
|
3368
|
+
0px 0px 0 10px inset;
|
1081
3369
|
}
|
1082
|
-
}
|
1083
|
-
@keyframes check {
|
1084
3370
|
100% {
|
1085
|
-
top: -3px;
|
1086
|
-
left: 17px;
|
1087
|
-
width: 10px;
|
1088
|
-
height: 21px;
|
1089
|
-
-webkit-transform: rotate(45deg);
|
1090
|
-
transform: rotate(45deg);
|
1091
|
-
border-color: #0f9d58;
|
1092
|
-
border-left-color: transparent;
|
1093
|
-
border-top-color: transparent;
|
1094
|
-
}
|
1095
|
-
51% {
|
1096
|
-
border-left: transparent;
|
1097
|
-
border-top-color: transparent;
|
1098
|
-
}
|
1099
|
-
50% {
|
1100
|
-
top: 14px;
|
1101
|
-
left: 17px;
|
1102
|
-
width: 4px;
|
1103
|
-
height: 4px;
|
1104
|
-
-webkit-transform: rotate(45deg);
|
1105
|
-
transform: rotate(45deg);
|
1106
|
-
border-color: #5a5a5a;
|
1107
|
-
border-left-color: #5a5a5a;
|
1108
|
-
border-top-color: #5a5a5a;
|
1109
|
-
}
|
1110
|
-
0% {
|
1111
|
-
top: 1px;
|
1112
|
-
left: 12px;
|
1113
|
-
width: 18px;
|
1114
|
-
height: 18px;
|
1115
3371
|
-webkit-transform: rotate(0deg);
|
1116
3372
|
transform: rotate(0deg);
|
1117
|
-
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1125
|
-
|
1126
|
-
|
1127
|
-
|
1128
|
-
}
|
1129
|
-
100% {
|
1130
|
-
opacity: 0;
|
3373
|
+
margin-top: -2px;
|
3374
|
+
margin-left: -2px;
|
3375
|
+
width: 20px;
|
3376
|
+
height: 20px;
|
3377
|
+
box-shadow: 0 0 0 0,
|
3378
|
+
0 0 0 0,
|
3379
|
+
0 0 0 0,
|
3380
|
+
0 0 0 0,
|
3381
|
+
0 0 0 0,
|
3382
|
+
0 0 0 0,
|
3383
|
+
0px 0px 0 0px inset;
|
1131
3384
|
}
|
1132
3385
|
}
|
1133
|
-
@keyframes
|
3386
|
+
@keyframes checkbox-off {
|
1134
3387
|
0% {
|
1135
|
-
|
3388
|
+
box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
|
1136
3389
|
}
|
1137
|
-
|
1138
|
-
|
1139
|
-
}
|
1140
|
-
100% {
|
1141
|
-
opacity: 0;
|
1142
|
-
}
|
1143
|
-
}
|
1144
|
-
@-webkit-keyframes rippleOff {
|
1145
|
-
0% {
|
1146
|
-
opacity: 0;
|
3390
|
+
25% {
|
3391
|
+
box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px, 0 0 0 0 inset;
|
1147
3392
|
}
|
1148
3393
|
50% {
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
0% {
|
1157
|
-
opacity: 0;
|
3394
|
+
-webkit-transform: rotate(45deg);
|
3395
|
+
transform: rotate(45deg);
|
3396
|
+
margin-top: -4px;
|
3397
|
+
margin-left: 6px;
|
3398
|
+
width: 0px;
|
3399
|
+
height: 0px;
|
3400
|
+
box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0px 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px, 0 0 0 0 inset;
|
1158
3401
|
}
|
1159
|
-
|
1160
|
-
|
3402
|
+
51% {
|
3403
|
+
-webkit-transform: rotate(0deg);
|
3404
|
+
transform: rotate(0deg);
|
3405
|
+
margin-top: -2px;
|
3406
|
+
margin-left: -2px;
|
3407
|
+
width: 20px;
|
3408
|
+
height: 20px;
|
3409
|
+
box-shadow: 0 0 0 0,
|
3410
|
+
0 0 0 0,
|
3411
|
+
0 0 0 0,
|
3412
|
+
0 0 0 0,
|
3413
|
+
0 0 0 0,
|
3414
|
+
0 0 0 0,
|
3415
|
+
0px 0px 0 10px inset;
|
1161
3416
|
}
|
1162
3417
|
100% {
|
1163
|
-
|
3418
|
+
-webkit-transform: rotate(0deg);
|
3419
|
+
transform: rotate(0deg);
|
3420
|
+
margin-top: -2px;
|
3421
|
+
margin-left: -2px;
|
3422
|
+
width: 20px;
|
3423
|
+
height: 20px;
|
3424
|
+
box-shadow: 0 0 0 0,
|
3425
|
+
0 0 0 0,
|
3426
|
+
0 0 0 0,
|
3427
|
+
0 0 0 0,
|
3428
|
+
0 0 0 0,
|
3429
|
+
0 0 0 0,
|
3430
|
+
0px 0px 0 0px inset;
|
1164
3431
|
}
|
1165
3432
|
}
|
1166
3433
|
.form-horizontal .radio {
|
@@ -1377,6 +3644,17 @@ body .jumbotron-material-lightgrey,
|
|
1377
3644
|
.radio input[type=radio][disabled] ~ .check {
|
1378
3645
|
background-color: rgba(0, 0, 0, 0.84);
|
1379
3646
|
}
|
3647
|
+
@-webkit-keyframes rippleOn {
|
3648
|
+
0% {
|
3649
|
+
opacity: 0;
|
3650
|
+
}
|
3651
|
+
50% {
|
3652
|
+
opacity: 0.2;
|
3653
|
+
}
|
3654
|
+
100% {
|
3655
|
+
opacity: 0;
|
3656
|
+
}
|
3657
|
+
}
|
1380
3658
|
@keyframes rippleOn {
|
1381
3659
|
0% {
|
1382
3660
|
opacity: 0;
|
@@ -1388,6 +3666,17 @@ body .jumbotron-material-lightgrey,
|
|
1388
3666
|
opacity: 0;
|
1389
3667
|
}
|
1390
3668
|
}
|
3669
|
+
@-webkit-keyframes rippleOff {
|
3670
|
+
0% {
|
3671
|
+
opacity: 0;
|
3672
|
+
}
|
3673
|
+
50% {
|
3674
|
+
opacity: 0.2;
|
3675
|
+
}
|
3676
|
+
100% {
|
3677
|
+
opacity: 0;
|
3678
|
+
}
|
3679
|
+
}
|
1391
3680
|
@keyframes rippleOff {
|
1392
3681
|
0% {
|
1393
3682
|
opacity: 0;
|
@@ -1984,20 +4273,6 @@ select.form-control.focus {
|
|
1984
4273
|
legend {
|
1985
4274
|
border-bottom: 0;
|
1986
4275
|
}
|
1987
|
-
.modal-content {
|
1988
|
-
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
|
1989
|
-
border-radius: 0;
|
1990
|
-
border: 0;
|
1991
|
-
}
|
1992
|
-
.modal-content .modal-header {
|
1993
|
-
border-bottom: 0;
|
1994
|
-
}
|
1995
|
-
.modal-content .modal-footer {
|
1996
|
-
border-top: 0;
|
1997
|
-
}
|
1998
|
-
.modal-content .modal-footer .btn + .btn {
|
1999
|
-
margin-bottom: 10px;
|
2000
|
-
}
|
2001
4276
|
.list-group {
|
2002
4277
|
border-radius: 0;
|
2003
4278
|
}
|
@@ -2363,7 +4638,78 @@ fieldset[disabled] .navbar .btn-link:focus {
|
|
2363
4638
|
position: relative;
|
2364
4639
|
}
|
2365
4640
|
.dropdown-menu li a:hover {
|
2366
|
-
background:
|
4641
|
+
background-color: transparent;
|
4642
|
+
color: #4285f4;
|
4643
|
+
}
|
4644
|
+
.dropdown-menu li a:hover,
|
4645
|
+
.dropdown-menu-default li a:hover {
|
4646
|
+
color: #4285f4;
|
4647
|
+
}
|
4648
|
+
.dropdown-menu-primary li a:hover {
|
4649
|
+
color: #4285f4;
|
4650
|
+
}
|
4651
|
+
.dropdown-menu-success li a:hover {
|
4652
|
+
color: #0f9d58;
|
4653
|
+
}
|
4654
|
+
.dropdown-menu-info li a:hover {
|
4655
|
+
color: #03a9f4;
|
4656
|
+
}
|
4657
|
+
.dropdown-menu-warning li a:hover {
|
4658
|
+
color: #ff5722;
|
4659
|
+
}
|
4660
|
+
.dropdown-menu-danger li a:hover {
|
4661
|
+
color: #f44336;
|
4662
|
+
}
|
4663
|
+
.dropdown-menu-material-red li a:hover {
|
4664
|
+
color: #f44336;
|
4665
|
+
}
|
4666
|
+
.dropdown-menu-material-pink li a:hover {
|
4667
|
+
color: #e91e63;
|
4668
|
+
}
|
4669
|
+
.dropdown-menu-material-purple li a:hover {
|
4670
|
+
color: #9c27b0;
|
4671
|
+
}
|
4672
|
+
.dropdown-menu-material-deeppurple li a:hover {
|
4673
|
+
color: #673ab7;
|
4674
|
+
}
|
4675
|
+
.dropdown-menu-material-indigo li a:hover {
|
4676
|
+
color: #3f51b5;
|
4677
|
+
}
|
4678
|
+
.dropdown-menu-material-lightblue li a:hover {
|
4679
|
+
color: #03a9f4;
|
4680
|
+
}
|
4681
|
+
.dropdown-menu-material-cyan li a:hover {
|
4682
|
+
color: #00bcd4;
|
4683
|
+
}
|
4684
|
+
.dropdown-menu-material-teal li a:hover {
|
4685
|
+
color: #009688;
|
4686
|
+
}
|
4687
|
+
.dropdown-menu-material-lightgreen li a:hover {
|
4688
|
+
color: #8bc34a;
|
4689
|
+
}
|
4690
|
+
.dropdown-menu-material-lime li a:hover {
|
4691
|
+
color: #cddc39;
|
4692
|
+
}
|
4693
|
+
.dropdown-menu-material-lightyellow li a:hover {
|
4694
|
+
color: #ffeb3b;
|
4695
|
+
}
|
4696
|
+
.dropdown-menu-material-orange li a:hover {
|
4697
|
+
color: #ff9800;
|
4698
|
+
}
|
4699
|
+
.dropdown-menu-material-deeporange li a:hover {
|
4700
|
+
color: #ff5722;
|
4701
|
+
}
|
4702
|
+
.dropdown-menu-material-grey li a:hover {
|
4703
|
+
color: #9e9e9e;
|
4704
|
+
}
|
4705
|
+
.dropdown-menu-material-bluegrey li a:hover {
|
4706
|
+
color: #607d8b;
|
4707
|
+
}
|
4708
|
+
.dropdown-menu-material-brown li a:hover {
|
4709
|
+
color: #795548;
|
4710
|
+
}
|
4711
|
+
.dropdown-menu-material-lightgrey li a:hover {
|
4712
|
+
color: #ececec;
|
2367
4713
|
}
|
2368
4714
|
.alert {
|
2369
4715
|
border: 0px;
|
@@ -2556,14 +4902,14 @@ fieldset[disabled] .navbar .btn-link:focus {
|
|
2556
4902
|
margin: 0;
|
2557
4903
|
}
|
2558
4904
|
.nav-tabs > li > a:hover {
|
2559
|
-
background: transparent;
|
4905
|
+
background-color: transparent;
|
2560
4906
|
border: 0;
|
2561
4907
|
}
|
2562
4908
|
.nav-tabs > li.active > a,
|
2563
4909
|
.nav-tabs > li.active > a:hover,
|
2564
4910
|
.nav-tabs > li.open > a,
|
2565
|
-
.nav-tabs > li.open >
|
2566
|
-
background: transparent !important;
|
4911
|
+
.nav-tabs > li.open > .nav-tabs > li:hover {
|
4912
|
+
background-color: transparent !important;
|
2567
4913
|
border: 0 !important;
|
2568
4914
|
color: #FFFFFF !important;
|
2569
4915
|
font-weight: 500;
|
@@ -2676,6 +5022,100 @@ fieldset[disabled] .navbar .btn-link:focus {
|
|
2676
5022
|
.icon-material-lightgrey {
|
2677
5023
|
color: #ececec;
|
2678
5024
|
}
|
5025
|
+
.card {
|
5026
|
+
/***** Make height equal to width (http://stackoverflow.com/a/6615994) ****/
|
5027
|
+
display: inline-block;
|
5028
|
+
position: relative;
|
5029
|
+
width: 100%;
|
5030
|
+
/**************************************************************************/
|
5031
|
+
border-radius: 2px;
|
5032
|
+
color: rgba(0, 0, 0, 0.84);
|
5033
|
+
background: #ffffff;
|
5034
|
+
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
|
5035
|
+
}
|
5036
|
+
.card .card-height-indicator {
|
5037
|
+
margin-top: 100%;
|
5038
|
+
}
|
5039
|
+
.card .card-content {
|
5040
|
+
position: absolute;
|
5041
|
+
top: 0;
|
5042
|
+
bottom: 0;
|
5043
|
+
left: 0;
|
5044
|
+
right: 0;
|
5045
|
+
}
|
5046
|
+
.card .card-image {
|
5047
|
+
height: 60%;
|
5048
|
+
position: relative;
|
5049
|
+
overflow: hidden;
|
5050
|
+
}
|
5051
|
+
.card .card-image img {
|
5052
|
+
width: 100%;
|
5053
|
+
height: 100%;
|
5054
|
+
border-top-left-radius: 2px;
|
5055
|
+
border-top-right-radius: 2px;
|
5056
|
+
pointer-events: none;
|
5057
|
+
}
|
5058
|
+
.card .card-image .card-image-headline {
|
5059
|
+
position: absolute;
|
5060
|
+
bottom: 16px;
|
5061
|
+
left: 18px;
|
5062
|
+
color: #ffffff;
|
5063
|
+
font-size: 2em;
|
5064
|
+
}
|
5065
|
+
.card .card-body {
|
5066
|
+
height: 30%;
|
5067
|
+
padding: 18px;
|
5068
|
+
}
|
5069
|
+
.card .card-footer {
|
5070
|
+
height: 10%;
|
5071
|
+
padding: 18px;
|
5072
|
+
}
|
5073
|
+
.card .card-footer button {
|
5074
|
+
margin: 0 !important;
|
5075
|
+
position: relative;
|
5076
|
+
bottom: 25px;
|
5077
|
+
width: auto;
|
5078
|
+
}
|
5079
|
+
.card .card-footer button:first-child {
|
5080
|
+
left: -15px;
|
5081
|
+
}
|
5082
|
+
.modal-content {
|
5083
|
+
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
|
5084
|
+
margin-top: 10em;
|
5085
|
+
border-radius: 2px;
|
5086
|
+
border: none;
|
5087
|
+
}
|
5088
|
+
.modal-content .modal-header {
|
5089
|
+
border-bottom: none;
|
5090
|
+
padding: 24px;
|
5091
|
+
padding-bottom: 0;
|
5092
|
+
}
|
5093
|
+
.modal-content .modal-body {
|
5094
|
+
padding: 24px;
|
5095
|
+
padding-bottom: 0;
|
5096
|
+
}
|
5097
|
+
.modal-content .modal-footer {
|
5098
|
+
border-top: none;
|
5099
|
+
padding: 24px;
|
5100
|
+
}
|
5101
|
+
.modal-content .modal-footer button {
|
5102
|
+
margin: 0;
|
5103
|
+
padding-left: 16px;
|
5104
|
+
padding-right: 16px;
|
5105
|
+
width: auto;
|
5106
|
+
}
|
5107
|
+
.modal-content .modal-footer button.pull-left {
|
5108
|
+
padding-left: 5px;
|
5109
|
+
padding-right: 5px;
|
5110
|
+
position: relative;
|
5111
|
+
left: -5px;
|
5112
|
+
}
|
5113
|
+
.modal-content .modal-footer button + button {
|
5114
|
+
margin-bottom: 16px;
|
5115
|
+
}
|
5116
|
+
.modal-backdrop {
|
5117
|
+
display: none;
|
5118
|
+
}
|
2679
5119
|
.snackbar {
|
2680
5120
|
background-color: #323232;
|
2681
5121
|
color: rgba(255, 255, 255, 0.84);
|
@@ -3223,4 +5663,4 @@ fieldset[disabled] .navbar .btn-link:focus {
|
|
3223
5663
|
.selectize-control.single .dropdown-active ~ .selectize-dropdown,
|
3224
5664
|
.selectize-control.multi .dropdown-active ~ .selectize-dropdown {
|
3225
5665
|
display: block;
|
3226
|
-
}
|
5666
|
+
}
|