8.4 KB
3.7 KB
7.0 KB
8.7 KB
2.7 KB
754 Bytes
776 Bytes
1.3 KB
902 Bytes
848 Bytes
738 Bytes
4.3 KB
696 Bytes
1.5 KB
847 Bytes
886 Bytes
1.3 KB
1 | +/*! | |
2 | + * Datetimepicker for Bootstrap v3 | |
3 | + * https://github.com/Eonasdan/bootstrap-datetimepicker/ | |
4 | + */ | |
5 | +.bootstrap-datetimepicker-widget { | |
6 | + top: 0; | |
7 | + left: 0; | |
8 | + width: 250px; | |
9 | + padding: 4px; | |
10 | + margin-top: 1px; | |
11 | + z-index: 99999 !important; | |
12 | + border-radius: 4px; | |
13 | +} | |
14 | +.bootstrap-datetimepicker-widget.timepicker-sbs { | |
15 | + width: 600px; | |
16 | +} | |
17 | +.bootstrap-datetimepicker-widget.bottom:before { | |
18 | + content: ''; | |
19 | + display: inline-block; | |
20 | + border-left: 7px solid transparent; | |
21 | + border-right: 7px solid transparent; | |
22 | + border-bottom: 7px solid #ccc; | |
23 | + border-bottom-color: rgba(0, 0, 0, 0.2); | |
24 | + position: absolute; | |
25 | + top: -7px; | |
26 | + left: 7px; | |
27 | +} | |
28 | +.bootstrap-datetimepicker-widget.bottom:after { | |
29 | + content: ''; | |
30 | + display: inline-block; | |
31 | + border-left: 6px solid transparent; | |
32 | + border-right: 6px solid transparent; | |
33 | + border-bottom: 6px solid white; | |
34 | + position: absolute; | |
35 | + top: -6px; | |
36 | + left: 8px; | |
37 | +} | |
38 | +.bootstrap-datetimepicker-widget.top:before { | |
39 | + content: ''; | |
40 | + display: inline-block; | |
41 | + border-left: 7px solid transparent; | |
42 | + border-right: 7px solid transparent; | |
43 | + border-top: 7px solid #ccc; | |
44 | + border-top-color: rgba(0, 0, 0, 0.2); | |
45 | + position: absolute; | |
46 | + bottom: -7px; | |
47 | + left: 6px; | |
48 | +} | |
49 | +.bootstrap-datetimepicker-widget.top:after { | |
50 | + content: ''; | |
51 | + display: inline-block; | |
52 | + border-left: 6px solid transparent; | |
53 | + border-right: 6px solid transparent; | |
54 | + border-top: 6px solid white; | |
55 | + position: absolute; | |
56 | + bottom: -6px; | |
57 | + left: 7px; | |
58 | +} | |
59 | +.bootstrap-datetimepicker-widget .dow { | |
60 | + width: 14.2857%; | |
61 | +} | |
62 | +.bootstrap-datetimepicker-widget.pull-right:before { | |
63 | + left: auto; | |
64 | + right: 6px; | |
65 | +} | |
66 | +.bootstrap-datetimepicker-widget.pull-right:after { | |
67 | + left: auto; | |
68 | + right: 7px; | |
69 | +} | |
70 | +.bootstrap-datetimepicker-widget > ul { | |
71 | + list-style-type: none; | |
72 | + margin: 0; | |
73 | +} | |
74 | +.bootstrap-datetimepicker-widget .timepicker-hour, | |
75 | +.bootstrap-datetimepicker-widget .timepicker-minute, | |
76 | +.bootstrap-datetimepicker-widget .timepicker-second { | |
77 | + width: 100%; | |
78 | + font-weight: bold; | |
79 | + font-size: 1.2em; | |
80 | +} | |
81 | +.bootstrap-datetimepicker-widget table[data-hour-format="12"] .separator { | |
82 | + width: 4px; | |
83 | + padding: 0; | |
84 | + margin: 0; | |
85 | +} | |
86 | +.bootstrap-datetimepicker-widget .datepicker > div { | |
87 | + display: none; | |
88 | +} | |
89 | +.bootstrap-datetimepicker-widget .picker-switch { | |
90 | + text-align: center; | |
91 | +} | |
92 | +.bootstrap-datetimepicker-widget table { | |
93 | + width: 100%; | |
94 | + margin: 0; | |
95 | +} | |
96 | +.bootstrap-datetimepicker-widget td, | |
97 | +.bootstrap-datetimepicker-widget th { | |
98 | + text-align: center; | |
99 | + width: 20px; | |
100 | + height: 20px; | |
101 | + border-radius: 4px; | |
102 | +} | |
103 | +.bootstrap-datetimepicker-widget td.day:hover, | |
104 | +.bootstrap-datetimepicker-widget td.hour:hover, | |
105 | +.bootstrap-datetimepicker-widget td.minute:hover, | |
106 | +.bootstrap-datetimepicker-widget td.second:hover { | |
107 | + background: #eeeeee; | |
108 | + cursor: pointer; | |
109 | +} | |
110 | +.bootstrap-datetimepicker-widget td.old, | |
111 | +.bootstrap-datetimepicker-widget td.new { | |
112 | + color: #999999; | |
113 | +} | |
114 | +.bootstrap-datetimepicker-widget td.today { | |
115 | + position: relative; | |
116 | +} | |
117 | +.bootstrap-datetimepicker-widget td.today:before { | |
118 | + content: ''; | |
119 | + display: inline-block; | |
120 | + border-left: 7px solid transparent; | |
121 | + border-bottom: 7px solid #428bca; | |
122 | + border-top-color: rgba(0, 0, 0, 0.2); | |
123 | + position: absolute; | |
124 | + bottom: 4px; | |
125 | + right: 4px; | |
126 | +} | |
127 | +.bootstrap-datetimepicker-widget td.active, | |
128 | +.bootstrap-datetimepicker-widget td.active:hover { | |
129 | + background-color: #428bca; | |
130 | + color: #fff; | |
131 | + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); | |
132 | +} | |
133 | +.bootstrap-datetimepicker-widget td.active.today:before { | |
134 | + border-bottom-color: #fff; | |
135 | +} | |
136 | +.bootstrap-datetimepicker-widget td.disabled, | |
137 | +.bootstrap-datetimepicker-widget td.disabled:hover { | |
138 | + background: none; | |
139 | + color: #999999; | |
140 | + cursor: not-allowed; | |
141 | +} | |
142 | +.bootstrap-datetimepicker-widget td span { | |
143 | + display: block; | |
144 | + width: 47px; | |
145 | + height: 54px; | |
146 | + line-height: 54px; | |
147 | + float: left; | |
148 | + margin: 2px; | |
149 | + cursor: pointer; | |
150 | + border-radius: 4px; | |
151 | +} | |
152 | +.bootstrap-datetimepicker-widget td span:hover { | |
153 | + background: #eeeeee; | |
154 | +} | |
155 | +.bootstrap-datetimepicker-widget td span.active { | |
156 | + background-color: #428bca; | |
157 | + color: #fff; | |
158 | + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); | |
159 | +} | |
160 | +.bootstrap-datetimepicker-widget td span.old { | |
161 | + color: #999999; | |
162 | +} | |
163 | +.bootstrap-datetimepicker-widget td span.disabled, | |
164 | +.bootstrap-datetimepicker-widget td span.disabled:hover { | |
165 | + background: none; | |
166 | + color: #999999; | |
167 | + cursor: not-allowed; | |
168 | +} | |
169 | +.bootstrap-datetimepicker-widget th.switch { | |
170 | + width: 145px; | |
171 | +} | |
172 | +.bootstrap-datetimepicker-widget th.next, | |
173 | +.bootstrap-datetimepicker-widget th.prev { | |
174 | + font-size: 21px; | |
175 | +} | |
176 | +.bootstrap-datetimepicker-widget th.disabled, | |
177 | +.bootstrap-datetimepicker-widget th.disabled:hover { | |
178 | + background: none; | |
179 | + color: #999999; | |
180 | + cursor: not-allowed; | |
181 | +} | |
182 | +.bootstrap-datetimepicker-widget thead tr:first-child th { | |
183 | + cursor: pointer; | |
184 | +} | |
185 | +.bootstrap-datetimepicker-widget thead tr:first-child th:hover { | |
186 | + background: #eeeeee; | |
187 | +} | |
188 | +.input-group.date .input-group-addon span { | |
189 | + display: block; | |
190 | + cursor: pointer; | |
191 | + width: 16px; | |
192 | + height: 16px; | |
193 | +} | |
194 | +.bootstrap-datetimepicker-widget.left-oriented:before { | |
195 | + left: auto; | |
196 | + right: 6px; | |
197 | +} | |
198 | +.bootstrap-datetimepicker-widget.left-oriented:after { | |
199 | + left: auto; | |
200 | + right: 7px; | |
201 | +} | |
202 | +.bootstrap-datetimepicker-widget ul.list-unstyled li div.timepicker div.timepicker-picker table.table-condensed tbody > tr > td { | |
203 | + padding: 0px !important; | |
204 | +} | |
\ No newline at end of file | ... | ... |
1 | +/*! | |
2 | + * Datetimepicker for Bootstrap v3 | |
3 | + * https://github.com/Eonasdan/bootstrap-datetimepicker/ | |
4 | + */ | |
5 | +.bootstrap-datetimepicker-widget{top:0;left:0;width:250px;padding:4px;margin-top:1px;z-index:99999!important;border-radius:4px}.bootstrap-datetimepicker-widget.timepicker-sbs{width:600px}.bootstrap-datetimepicker-widget.bottom:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);position:absolute;top:-7px;left:7px}.bootstrap-datetimepicker-widget.bottom:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:8px}.bootstrap-datetimepicker-widget.top:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.top:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;position:absolute;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget .dow{width:14.2857%}.bootstrap-datetimepicker-widget.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget>ul{list-style-type:none;margin:0}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:100%;font-weight:bold;font-size:1.2em}.bootstrap-datetimepicker-widget table[data-hour-format="12"] .separator{width:4px;padding:0;margin:0}.bootstrap-datetimepicker-widget .datepicker>div{display:none}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget td,.bootstrap-datetimepicker-widget th{text-align:center;width:20px;height:20px;border-radius:4px}.bootstrap-datetimepicker-widget td.day:hover,.bootstrap-datetimepicker-widget td.hour:hover,.bootstrap-datetimepicker-widget td.minute:hover,.bootstrap-datetimepicker-widget td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget td.old,.bootstrap-datetimepicker-widget td.new{color:#999}.bootstrap-datetimepicker-widget td.today{position:relative}.bootstrap-datetimepicker-widget td.today:before{content:'';display:inline-block;border-left:7px solid transparent;border-bottom:7px solid #428bca;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget td.active,.bootstrap-datetimepicker-widget td.active:hover{background-color:#428bca;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget td.disabled,.bootstrap-datetimepicker-widget td.disabled:hover{background:none;color:#999;cursor:not-allowed}.bootstrap-datetimepicker-widget td span{display:block;width:47px;height:54px;line-height:54px;float:left;margin:2px;cursor:pointer;border-radius:4px}.bootstrap-datetimepicker-widget td span:hover{background:#eee}.bootstrap-datetimepicker-widget td span.active{background-color:#428bca;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget td span.old{color:#999}.bootstrap-datetimepicker-widget td span.disabled,.bootstrap-datetimepicker-widget td span.disabled:hover{background:none;color:#999;cursor:not-allowed}.bootstrap-datetimepicker-widget th.switch{width:145px}.bootstrap-datetimepicker-widget th.next,.bootstrap-datetimepicker-widget th.prev{font-size:21px}.bootstrap-datetimepicker-widget th.disabled,.bootstrap-datetimepicker-widget th.disabled:hover{background:none;color:#999;cursor:not-allowed}.bootstrap-datetimepicker-widget thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget thead tr:first-child th:hover{background:#eee}.input-group.date .input-group-addon span{display:block;cursor:pointer;width:16px;height:16px}.bootstrap-datetimepicker-widget.left-oriented:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.left-oriented:after{left:auto;right:7px}.bootstrap-datetimepicker-widget ul.list-unstyled li div.timepicker div.timepicker-picker table.table-condensed tbody>tr>td{padding:0!important} | |
\ No newline at end of file | ... | ... |
1 | +/*! | |
2 | + * Bootstrap v3.3.5 (http://getbootstrap.com) | |
3 | + * Copyright 2011-2015 Twitter, Inc. | |
4 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | |
5 | + */ | |
6 | +.btn-default, | |
7 | +.btn-primary, | |
8 | +.btn-success, | |
9 | +.btn-info, | |
10 | +.btn-warning, | |
11 | +.btn-danger { | |
12 | + text-shadow: 0 -1px 0 rgba(0, 0, 0, .2); | |
13 | + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); | |
14 | + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); | |
15 | +} | |
16 | +.btn-default:active, | |
17 | +.btn-primary:active, | |
18 | +.btn-success:active, | |
19 | +.btn-info:active, | |
20 | +.btn-warning:active, | |
21 | +.btn-danger:active, | |
22 | +.btn-default.active, | |
23 | +.btn-primary.active, | |
24 | +.btn-success.active, | |
25 | +.btn-info.active, | |
26 | +.btn-warning.active, | |
27 | +.btn-danger.active { | |
28 | + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); | |
29 | + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); | |
30 | +} | |
31 | +.btn-default.disabled, | |
32 | +.btn-primary.disabled, | |
33 | +.btn-success.disabled, | |
34 | +.btn-info.disabled, | |
35 | +.btn-warning.disabled, | |
36 | +.btn-danger.disabled, | |
37 | +.btn-default[disabled], | |
38 | +.btn-primary[disabled], | |
39 | +.btn-success[disabled], | |
40 | +.btn-info[disabled], | |
41 | +.btn-warning[disabled], | |
42 | +.btn-danger[disabled], | |
43 | +fieldset[disabled] .btn-default, | |
44 | +fieldset[disabled] .btn-primary, | |
45 | +fieldset[disabled] .btn-success, | |
46 | +fieldset[disabled] .btn-info, | |
47 | +fieldset[disabled] .btn-warning, | |
48 | +fieldset[disabled] .btn-danger { | |
49 | + -webkit-box-shadow: none; | |
50 | + box-shadow: none; | |
51 | +} | |
52 | +.btn-default .badge, | |
53 | +.btn-primary .badge, | |
54 | +.btn-success .badge, | |
55 | +.btn-info .badge, | |
56 | +.btn-warning .badge, | |
57 | +.btn-danger .badge { | |
58 | + text-shadow: none; | |
59 | +} | |
60 | +.btn:active, | |
61 | +.btn.active { | |
62 | + background-image: none; | |
63 | +} | |
64 | +.btn-default { | |
65 | + text-shadow: 0 1px 0 #fff; | |
66 | + background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%); | |
67 | + background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%); | |
68 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0)); | |
69 | + background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%); | |
70 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0); | |
71 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); | |
72 | + background-repeat: repeat-x; | |
73 | + border-color: #dbdbdb; | |
74 | + border-color: #ccc; | |
75 | +} | |
76 | +.btn-default:hover, | |
77 | +.btn-default:focus { | |
78 | + background-color: #e0e0e0; | |
79 | + background-position: 0 -15px; | |
80 | +} | |
81 | +.btn-default:active, | |
82 | +.btn-default.active { | |
83 | + background-color: #e0e0e0; | |
84 | + border-color: #dbdbdb; | |
85 | +} | |
86 | +.btn-default.disabled, | |
87 | +.btn-default[disabled], | |
88 | +fieldset[disabled] .btn-default, | |
89 | +.btn-default.disabled:hover, | |
90 | +.btn-default[disabled]:hover, | |
91 | +fieldset[disabled] .btn-default:hover, | |
92 | +.btn-default.disabled:focus, | |
93 | +.btn-default[disabled]:focus, | |
94 | +fieldset[disabled] .btn-default:focus, | |
95 | +.btn-default.disabled.focus, | |
96 | +.btn-default[disabled].focus, | |
97 | +fieldset[disabled] .btn-default.focus, | |
98 | +.btn-default.disabled:active, | |
99 | +.btn-default[disabled]:active, | |
100 | +fieldset[disabled] .btn-default:active, | |
101 | +.btn-default.disabled.active, | |
102 | +.btn-default[disabled].active, | |
103 | +fieldset[disabled] .btn-default.active { | |
104 | + background-color: #e0e0e0; | |
105 | + background-image: none; | |
106 | +} | |
107 | +.btn-primary { | |
108 | + background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%); | |
109 | + background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%); | |
110 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88)); | |
111 | + background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%); | |
112 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0); | |
113 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); | |
114 | + background-repeat: repeat-x; | |
115 | + border-color: #245580; | |
116 | +} | |
117 | +.btn-primary:hover, | |
118 | +.btn-primary:focus { | |
119 | + background-color: #265a88; | |
120 | + background-position: 0 -15px; | |
121 | +} | |
122 | +.btn-primary:active, | |
123 | +.btn-primary.active { | |
124 | + background-color: #265a88; | |
125 | + border-color: #245580; | |
126 | +} | |
127 | +.btn-primary.disabled, | |
128 | +.btn-primary[disabled], | |
129 | +fieldset[disabled] .btn-primary, | |
130 | +.btn-primary.disabled:hover, | |
131 | +.btn-primary[disabled]:hover, | |
132 | +fieldset[disabled] .btn-primary:hover, | |
133 | +.btn-primary.disabled:focus, | |
134 | +.btn-primary[disabled]:focus, | |
135 | +fieldset[disabled] .btn-primary:focus, | |
136 | +.btn-primary.disabled.focus, | |
137 | +.btn-primary[disabled].focus, | |
138 | +fieldset[disabled] .btn-primary.focus, | |
139 | +.btn-primary.disabled:active, | |
140 | +.btn-primary[disabled]:active, | |
141 | +fieldset[disabled] .btn-primary:active, | |
142 | +.btn-primary.disabled.active, | |
143 | +.btn-primary[disabled].active, | |
144 | +fieldset[disabled] .btn-primary.active { | |
145 | + background-color: #265a88; | |
146 | + background-image: none; | |
147 | +} | |
148 | +.btn-success { | |
149 | + background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%); | |
150 | + background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%); | |
151 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641)); | |
152 | + background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%); | |
153 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0); | |
154 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); | |
155 | + background-repeat: repeat-x; | |
156 | + border-color: #3e8f3e; | |
157 | +} | |
158 | +.btn-success:hover, | |
159 | +.btn-success:focus { | |
160 | + background-color: #419641; | |
161 | + background-position: 0 -15px; | |
162 | +} | |
163 | +.btn-success:active, | |
164 | +.btn-success.active { | |
165 | + background-color: #419641; | |
166 | + border-color: #3e8f3e; | |
167 | +} | |
168 | +.btn-success.disabled, | |
169 | +.btn-success[disabled], | |
170 | +fieldset[disabled] .btn-success, | |
171 | +.btn-success.disabled:hover, | |
172 | +.btn-success[disabled]:hover, | |
173 | +fieldset[disabled] .btn-success:hover, | |
174 | +.btn-success.disabled:focus, | |
175 | +.btn-success[disabled]:focus, | |
176 | +fieldset[disabled] .btn-success:focus, | |
177 | +.btn-success.disabled.focus, | |
178 | +.btn-success[disabled].focus, | |
179 | +fieldset[disabled] .btn-success.focus, | |
180 | +.btn-success.disabled:active, | |
181 | +.btn-success[disabled]:active, | |
182 | +fieldset[disabled] .btn-success:active, | |
183 | +.btn-success.disabled.active, | |
184 | +.btn-success[disabled].active, | |
185 | +fieldset[disabled] .btn-success.active { | |
186 | + background-color: #419641; | |
187 | + background-image: none; | |
188 | +} | |
189 | +.btn-info { | |
190 | + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); | |
191 | + background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); | |
192 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2)); | |
193 | + background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); | |
194 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); | |
195 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); | |
196 | + background-repeat: repeat-x; | |
197 | + border-color: #28a4c9; | |
198 | +} | |
199 | +.btn-info:hover, | |
200 | +.btn-info:focus { | |
201 | + background-color: #2aabd2; | |
202 | + background-position: 0 -15px; | |
203 | +} | |
204 | +.btn-info:active, | |
205 | +.btn-info.active { | |
206 | + background-color: #2aabd2; | |
207 | + border-color: #28a4c9; | |
208 | +} | |
209 | +.btn-info.disabled, | |
210 | +.btn-info[disabled], | |
211 | +fieldset[disabled] .btn-info, | |
212 | +.btn-info.disabled:hover, | |
213 | +.btn-info[disabled]:hover, | |
214 | +fieldset[disabled] .btn-info:hover, | |
215 | +.btn-info.disabled:focus, | |
216 | +.btn-info[disabled]:focus, | |
217 | +fieldset[disabled] .btn-info:focus, | |
218 | +.btn-info.disabled.focus, | |
219 | +.btn-info[disabled].focus, | |
220 | +fieldset[disabled] .btn-info.focus, | |
221 | +.btn-info.disabled:active, | |
222 | +.btn-info[disabled]:active, | |
223 | +fieldset[disabled] .btn-info:active, | |
224 | +.btn-info.disabled.active, | |
225 | +.btn-info[disabled].active, | |
226 | +fieldset[disabled] .btn-info.active { | |
227 | + background-color: #2aabd2; | |
228 | + background-image: none; | |
229 | +} | |
230 | +.btn-warning { | |
231 | + background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); | |
232 | + background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); | |
233 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316)); | |
234 | + background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%); | |
235 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0); | |
236 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); | |
237 | + background-repeat: repeat-x; | |
238 | + border-color: #e38d13; | |
239 | +} | |
240 | +.btn-warning:hover, | |
241 | +.btn-warning:focus { | |
242 | + background-color: #eb9316; | |
243 | + background-position: 0 -15px; | |
244 | +} | |
245 | +.btn-warning:active, | |
246 | +.btn-warning.active { | |
247 | + background-color: #eb9316; | |
248 | + border-color: #e38d13; | |
249 | +} | |
250 | +.btn-warning.disabled, | |
251 | +.btn-warning[disabled], | |
252 | +fieldset[disabled] .btn-warning, | |
253 | +.btn-warning.disabled:hover, | |
254 | +.btn-warning[disabled]:hover, | |
255 | +fieldset[disabled] .btn-warning:hover, | |
256 | +.btn-warning.disabled:focus, | |
257 | +.btn-warning[disabled]:focus, | |
258 | +fieldset[disabled] .btn-warning:focus, | |
259 | +.btn-warning.disabled.focus, | |
260 | +.btn-warning[disabled].focus, | |
261 | +fieldset[disabled] .btn-warning.focus, | |
262 | +.btn-warning.disabled:active, | |
263 | +.btn-warning[disabled]:active, | |
264 | +fieldset[disabled] .btn-warning:active, | |
265 | +.btn-warning.disabled.active, | |
266 | +.btn-warning[disabled].active, | |
267 | +fieldset[disabled] .btn-warning.active { | |
268 | + background-color: #eb9316; | |
269 | + background-image: none; | |
270 | +} | |
271 | +.btn-danger { | |
272 | + background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%); | |
273 | + background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%); | |
274 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a)); | |
275 | + background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%); | |
276 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0); | |
277 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); | |
278 | + background-repeat: repeat-x; | |
279 | + border-color: #b92c28; | |
280 | +} | |
281 | +.btn-danger:hover, | |
282 | +.btn-danger:focus { | |
283 | + background-color: #c12e2a; | |
284 | + background-position: 0 -15px; | |
285 | +} | |
286 | +.btn-danger:active, | |
287 | +.btn-danger.active { | |
288 | + background-color: #c12e2a; | |
289 | + border-color: #b92c28; | |
290 | +} | |
291 | +.btn-danger.disabled, | |
292 | +.btn-danger[disabled], | |
293 | +fieldset[disabled] .btn-danger, | |
294 | +.btn-danger.disabled:hover, | |
295 | +.btn-danger[disabled]:hover, | |
296 | +fieldset[disabled] .btn-danger:hover, | |
297 | +.btn-danger.disabled:focus, | |
298 | +.btn-danger[disabled]:focus, | |
299 | +fieldset[disabled] .btn-danger:focus, | |
300 | +.btn-danger.disabled.focus, | |
301 | +.btn-danger[disabled].focus, | |
302 | +fieldset[disabled] .btn-danger.focus, | |
303 | +.btn-danger.disabled:active, | |
304 | +.btn-danger[disabled]:active, | |
305 | +fieldset[disabled] .btn-danger:active, | |
306 | +.btn-danger.disabled.active, | |
307 | +.btn-danger[disabled].active, | |
308 | +fieldset[disabled] .btn-danger.active { | |
309 | + background-color: #c12e2a; | |
310 | + background-image: none; | |
311 | +} | |
312 | +.thumbnail, | |
313 | +.img-thumbnail { | |
314 | + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); | |
315 | + box-shadow: 0 1px 2px rgba(0, 0, 0, .075); | |
316 | +} | |
317 | +.dropdown-menu > li > a:hover, | |
318 | +.dropdown-menu > li > a:focus { | |
319 | + background-color: #e8e8e8; | |
320 | + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); | |
321 | + background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); | |
322 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); | |
323 | + background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); | |
324 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); | |
325 | + background-repeat: repeat-x; | |
326 | +} | |
327 | +.dropdown-menu > .active > a, | |
328 | +.dropdown-menu > .active > a:hover, | |
329 | +.dropdown-menu > .active > a:focus { | |
330 | + background-color: #2e6da4; | |
331 | + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); | |
332 | + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); | |
333 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); | |
334 | + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); | |
335 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); | |
336 | + background-repeat: repeat-x; | |
337 | +} | |
338 | +.navbar-default { | |
339 | + background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%); | |
340 | + background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%); | |
341 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8)); | |
342 | + background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%); | |
343 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); | |
344 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); | |
345 | + background-repeat: repeat-x; | |
346 | + border-radius: 4px; | |
347 | + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); | |
348 | + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); | |
349 | +} | |
350 | +.navbar-default .navbar-nav > .open > a, | |
351 | +.navbar-default .navbar-nav > .active > a { | |
352 | + background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); | |
353 | + background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); | |
354 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2)); | |
355 | + background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%); | |
356 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0); | |
357 | + background-repeat: repeat-x; | |
358 | + -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); | |
359 | + box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); | |
360 | +} | |
361 | +.navbar-brand, | |
362 | +.navbar-nav > li > a { | |
363 | + text-shadow: 0 1px 0 rgba(255, 255, 255, .25); | |
364 | +} | |
365 | +.navbar-inverse { | |
366 | + background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%); | |
367 | + background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%); | |
368 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222)); | |
369 | + background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%); | |
370 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0); | |
371 | + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); | |
372 | + background-repeat: repeat-x; | |
373 | + border-radius: 4px; | |
374 | +} | |
375 | +.navbar-inverse .navbar-nav > .open > a, | |
376 | +.navbar-inverse .navbar-nav > .active > a { | |
377 | + background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%); | |
378 | + background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%); | |
379 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f)); | |
380 | + background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%); | |
381 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0); | |
382 | + background-repeat: repeat-x; | |
383 | + -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); | |
384 | + box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); | |
385 | +} | |
386 | +.navbar-inverse .navbar-brand, | |
387 | +.navbar-inverse .navbar-nav > li > a { | |
388 | + text-shadow: 0 -1px 0 rgba(0, 0, 0, .25); | |
389 | +} | |
390 | +.navbar-static-top, | |
391 | +.navbar-fixed-top, | |
392 | +.navbar-fixed-bottom { | |
393 | + border-radius: 0; | |
394 | +} | |
395 | +@media (max-width: 767px) { | |
396 | + .navbar .navbar-nav .open .dropdown-menu > .active > a, | |
397 | + .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, | |
398 | + .navbar .navbar-nav .open .dropdown-menu > .active > a:focus { | |
399 | + color: #fff; | |
400 | + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); | |
401 | + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); | |
402 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); | |
403 | + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); | |
404 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); | |
405 | + background-repeat: repeat-x; | |
406 | + } | |
407 | +} | |
408 | +.alert { | |
409 | + text-shadow: 0 1px 0 rgba(255, 255, 255, .2); | |
410 | + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); | |
411 | + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); | |
412 | +} | |
413 | +.alert-success { | |
414 | + background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); | |
415 | + background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); | |
416 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc)); | |
417 | + background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); | |
418 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); | |
419 | + background-repeat: repeat-x; | |
420 | + border-color: #b2dba1; | |
421 | +} | |
422 | +.alert-info { | |
423 | + background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%); | |
424 | + background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%); | |
425 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0)); | |
426 | + background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); | |
427 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); | |
428 | + background-repeat: repeat-x; | |
429 | + border-color: #9acfea; | |
430 | +} | |
431 | +.alert-warning { | |
432 | + background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); | |
433 | + background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); | |
434 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0)); | |
435 | + background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); | |
436 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); | |
437 | + background-repeat: repeat-x; | |
438 | + border-color: #f5e79e; | |
439 | +} | |
440 | +.alert-danger { | |
441 | + background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); | |
442 | + background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); | |
443 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3)); | |
444 | + background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); | |
445 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); | |
446 | + background-repeat: repeat-x; | |
447 | + border-color: #dca7a7; | |
448 | +} | |
449 | +.progress { | |
450 | + background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); | |
451 | + background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); | |
452 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5)); | |
453 | + background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); | |
454 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0); | |
455 | + background-repeat: repeat-x; | |
456 | +} | |
457 | +.progress-bar { | |
458 | + background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%); | |
459 | + background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%); | |
460 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090)); | |
461 | + background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%); | |
462 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0); | |
463 | + background-repeat: repeat-x; | |
464 | +} | |
465 | +.progress-bar-success { | |
466 | + background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%); | |
467 | + background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%); | |
468 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44)); | |
469 | + background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); | |
470 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); | |
471 | + background-repeat: repeat-x; | |
472 | +} | |
473 | +.progress-bar-info { | |
474 | + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); | |
475 | + background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); | |
476 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5)); | |
477 | + background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); | |
478 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); | |
479 | + background-repeat: repeat-x; | |
480 | +} | |
481 | +.progress-bar-warning { | |
482 | + background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); | |
483 | + background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); | |
484 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f)); | |
485 | + background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); | |
486 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); | |
487 | + background-repeat: repeat-x; | |
488 | +} | |
489 | +.progress-bar-danger { | |
490 | + background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%); | |
491 | + background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%); | |
492 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c)); | |
493 | + background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); | |
494 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); | |
495 | + background-repeat: repeat-x; | |
496 | +} | |
497 | +.progress-bar-striped { | |
498 | + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | |
499 | + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | |
500 | + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | |
501 | +} | |
502 | +.list-group { | |
503 | + border-radius: 4px; | |
504 | + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); | |
505 | + box-shadow: 0 1px 2px rgba(0, 0, 0, .075); | |
506 | +} | |
507 | +.list-group-item.active, | |
508 | +.list-group-item.active:hover, | |
509 | +.list-group-item.active:focus { | |
510 | + text-shadow: 0 -1px 0 #286090; | |
511 | + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%); | |
512 | + background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%); | |
513 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a)); | |
514 | + background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%); | |
515 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0); | |
516 | + background-repeat: repeat-x; | |
517 | + border-color: #2b669a; | |
518 | +} | |
519 | +.list-group-item.active .badge, | |
520 | +.list-group-item.active:hover .badge, | |
521 | +.list-group-item.active:focus .badge { | |
522 | + text-shadow: none; | |
523 | +} | |
524 | +.panel { | |
525 | + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05); | |
526 | + box-shadow: 0 1px 2px rgba(0, 0, 0, .05); | |
527 | +} | |
528 | +.panel-default > .panel-heading { | |
529 | + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); | |
530 | + background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); | |
531 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); | |
532 | + background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); | |
533 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); | |
534 | + background-repeat: repeat-x; | |
535 | +} | |
536 | +.panel-primary > .panel-heading { | |
537 | + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); | |
538 | + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); | |
539 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); | |
540 | + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); | |
541 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); | |
542 | + background-repeat: repeat-x; | |
543 | +} | |
544 | +.panel-success > .panel-heading { | |
545 | + background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); | |
546 | + background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); | |
547 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6)); | |
548 | + background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); | |
549 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0); | |
550 | + background-repeat: repeat-x; | |
551 | +} | |
552 | +.panel-info > .panel-heading { | |
553 | + background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); | |
554 | + background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); | |
555 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3)); | |
556 | + background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); | |
557 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0); | |
558 | + background-repeat: repeat-x; | |
559 | +} | |
560 | +.panel-warning > .panel-heading { | |
561 | + background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); | |
562 | + background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); | |
563 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc)); | |
564 | + background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); | |
565 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); | |
566 | + background-repeat: repeat-x; | |
567 | +} | |
568 | +.panel-danger > .panel-heading { | |
569 | + background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); | |
570 | + background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%); | |
571 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc)); | |
572 | + background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); | |
573 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); | |
574 | + background-repeat: repeat-x; | |
575 | +} | |
576 | +.well { | |
577 | + background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); | |
578 | + background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); | |
579 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5)); | |
580 | + background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); | |
581 | + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); | |
582 | + background-repeat: repeat-x; | |
583 | + border-color: #dcdcdc; | |
584 | + -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); | |
585 | + box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); | |
586 | +} | |
587 | +/*# sourceMappingURL=bootstrap-theme.css.map */ | ... | ... |
1 | +{"version":3,"sources":["bootstrap-theme.css","less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"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","file":"bootstrap-theme.css","sourcesContent":["/*!\n * Bootstrap v3.3.5 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-default.disabled,\n.btn-primary.disabled,\n.btn-success.disabled,\n.btn-info.disabled,\n.btn-warning.disabled,\n.btn-danger.disabled,\n.btn-default[disabled],\n.btn-primary[disabled],\n.btn-success[disabled],\n.btn-info[disabled],\n.btn-warning[disabled],\n.btn-danger[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-danger {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n text-shadow: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n}\n.btn-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #dbdbdb;\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n background-color: #e0e0e0;\n background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n background-color: #e0e0e0;\n border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #e0e0e0;\n background-image: none;\n}\n.btn-primary {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n background-color: #265a88;\n background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n background-color: #265a88;\n border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #265a88;\n background-image: none;\n}\n.btn-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n background-color: #419641;\n background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n background-color: #419641;\n border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #419641;\n background-image: none;\n}\n.btn-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n background-color: #2aabd2;\n background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n background-color: #2aabd2;\n border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #2aabd2;\n background-image: none;\n}\n.btn-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n background-color: #eb9316;\n background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n background-color: #eb9316;\n border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #eb9316;\n background-image: none;\n}\n.btn-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n background-color: #c12e2a;\n background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n background-color: #c12e2a;\n border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #c12e2a;\n background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-color: #e8e8e8;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-color: #2e6da4;\n}\n.navbar-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);\n}\n.navbar-inverse {\n background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);\n background-image: -o-linear-gradient(top, #3c3c3c 0%, #222222 100%);\n background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n@media (max-width: 767px) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n }\n}\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.alert-success {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n border-color: #b2dba1;\n}\n.alert-info {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n border-color: #9acfea;\n}\n.alert-warning {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n border-color: #f5e79e;\n}\n.alert-danger {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n border-color: #dca7a7;\n}\n.progress {\n background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n}\n.progress-bar {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n}\n.progress-bar-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n}\n.progress-bar-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n}\n.progress-bar-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n}\n.progress-bar-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n}\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.list-group {\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 #286090;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n text-shadow: none;\n}\n.panel {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.panel-default > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n}\n.panel-primary > .panel-heading {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n}\n.panel-success > .panel-heading {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n}\n.panel-info > .panel-heading {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n}\n.panel-warning > .panel-heading {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n}\n.panel-danger > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n}\n.well {\n background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n border-color: #dcdcdc;\n -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */","/*!\n * Bootstrap v3.3.5 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0,0,0,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n // Reset the shadow\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n .box-shadow(none);\n }\n\n .badge {\n text-shadow: none;\n }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620\n background-repeat: repeat-x;\n border-color: darken(@btn-color, 14%);\n\n &:hover,\n &:focus {\n background-color: darken(@btn-color, 12%);\n background-position: 0 -15px;\n }\n\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n border-color: darken(@btn-color, 14%);\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n background-image: none;\n }\n }\n}\n\n// Common styles\n.btn {\n // Remove the gradient for the pressed/active state\n &:active,\n &.active {\n background-image: none;\n }\n}\n\n// Apply the mixin to the buttons\n.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger { .btn-styles(@btn-danger-bg); }\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n border-radius: @navbar-border-radius;\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));\n }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255,255,255,.25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257\n border-radius: @navbar-border-radius;\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));\n }\n\n .navbar-brand,\n .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0,0,0,.25);\n }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n\n// Fix active state of dropdown items in collapsed mode\n@media (max-width: @grid-float-breakpoint-max) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: #fff;\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n }\n }\n}\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n text-shadow: 0 1px 0 rgba(255,255,255,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);\n .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success { .alert-styles(@alert-success-bg); }\n.alert-info { .alert-styles(@alert-info-bg); }\n.alert-warning { .alert-styles(@alert-warning-bg); }\n.alert-danger { .alert-styles(@alert-danger-bg); }\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }\n\n// Reset the striped class because our mixins don't do multiple gradients and\n// the above custom styles override the new `.progress-bar-striped` in v3.2.0.\n.progress-bar-striped {\n #gradient > .striped();\n}\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n border-radius: @border-radius-base;\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n border-color: darken(@list-group-active-border, 7.5%);\n\n .badge {\n text-shadow: none;\n }\n}\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n .box-shadow(0 1px 2px rgba(0,0,0,.05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n border-color: darken(@well-bg, 10%);\n @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They will be removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// Gradients\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n"]} | |
\ No newline at end of file | ... | ... |
1 | +/*! | |
2 | + * Bootstrap v3.3.5 (http://getbootstrap.com) | |
3 | + * Copyright 2011-2015 Twitter, Inc. | |
4 | + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | |
5 | + */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)} | |
\ No newline at end of file | ... | ... |
1 | +/*! | |
2 | + * https://github.com/arqex/react-datetime | |
3 | + */ | |
4 | + | |
5 | +.rdt { | |
6 | + position: relative; | |
7 | +} | |
8 | +.rdtPicker { | |
9 | + display: none; | |
10 | + position: absolute; | |
11 | + width: 250px; | |
12 | + padding: 4px; | |
13 | + margin-top: 1px; | |
14 | + z-index: 99999 !important; | |
15 | + background: #fff; | |
16 | + box-shadow: 0 1px 3px rgba(0,0,0,.1); | |
17 | + border: 1px solid #f9f9f9; | |
18 | +} | |
19 | +.rdtOpen .rdtPicker { | |
20 | + display: block; | |
21 | +} | |
22 | +.rdtStatic .rdtPicker { | |
23 | + box-shadow: none; | |
24 | + position: static; | |
25 | +} | |
26 | + | |
27 | +.rdtPicker .rdtTimeToggle { | |
28 | + text-align: center; | |
29 | +} | |
30 | + | |
31 | +.rdtPicker table { | |
32 | + width: 100%; | |
33 | + margin: 0; | |
34 | +} | |
35 | +.rdtPicker td, | |
36 | +.rdtPicker th { | |
37 | + text-align: center; | |
38 | + height: 28px; | |
39 | +} | |
40 | +.rdtPicker td.rdtToday:hover, | |
41 | +.rdtPicker td.rdtHour:hover, | |
42 | +.rdtPicker td.rdtMinute:hover, | |
43 | +.rdtPicker td.rdtSecond:hover, | |
44 | +.rdtPicker .rdtTimeToggle:hover { | |
45 | + background: #eeeeee; | |
46 | + cursor: pointer; | |
47 | +} | |
48 | +.rdtPicker td.rdtOld, | |
49 | +.rdtPicker td.rdtNew { | |
50 | + color: #999999; | |
51 | +} | |
52 | +.rdtPicker td.rdtToday { | |
53 | + position: relative; | |
54 | +} | |
55 | +.rdtPicker td.rdtToday:before { | |
56 | + content: ''; | |
57 | + display: inline-block; | |
58 | + border-left: 7px solid transparent; | |
59 | + border-bottom: 7px solid #428bca; | |
60 | + border-top-color: rgba(0, 0, 0, 0.2); | |
61 | + position: absolute; | |
62 | + bottom: 4px; | |
63 | + right: 4px; | |
64 | +} | |
65 | +.rdtPicker td.rdtActive, | |
66 | +.rdtPicker td.rdtActive:hover { | |
67 | + background-color: #428bca; | |
68 | + color: #fff; | |
69 | + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); | |
70 | +} | |
71 | +.rdtPicker td.rdtActive.rdtToday:before { | |
72 | + border-bottom-color: #fff; | |
73 | +} | |
74 | +.rdtPicker td.rdtDisabled, | |
75 | +.rdtPicker td.rdtDisabled:hover { | |
76 | + background: none; | |
77 | + color: #999999; | |
78 | + cursor: not-allowed; | |
79 | +} | |
80 | + | |
81 | +.rdtPicker td span.rdtOld { | |
82 | + color: #999999; | |
83 | +} | |
84 | +.rdtPicker td span.rdtDisabled, | |
85 | +.rdtPicker td span.rdtDisabled:hover { | |
86 | + background: none; | |
87 | + color: #999999; | |
88 | + cursor: not-allowed; | |
89 | +} | |
90 | +.rdtPicker th { | |
91 | + border-bottom: 1px solid #f9f9f9; | |
92 | +} | |
93 | +.rdtPicker .dow { | |
94 | + width: 14.2857%; | |
95 | + border-bottom: none; | |
96 | +} | |
97 | +.rdtPicker th.rdtSwitch { | |
98 | + width: 100px; | |
99 | +} | |
100 | +.rdtPicker th.rdtNext, | |
101 | +.rdtPicker th.rdtPrev { | |
102 | + font-size: 21px; | |
103 | + vertical-align: top; | |
104 | +} | |
105 | +.rdtPicker th.rdtDisabled, | |
106 | +.rdtPicker th.rdtDisabled:hover { | |
107 | + background: none; | |
108 | + color: #999999; | |
109 | + cursor: not-allowed; | |
110 | +} | |
111 | +.rdtPicker thead tr:first-child th { | |
112 | + cursor: pointer; | |
113 | +} | |
114 | +.rdtPicker thead tr:first-child th:hover { | |
115 | + background: #eeeeee; | |
116 | +} | |
117 | + | |
118 | +.rdtPicker tfoot{ | |
119 | + border-top: 1px solid #f9f9f9; | |
120 | +} | |
121 | + | |
122 | +.rdtPicker button { | |
123 | + border: none; | |
124 | + background: none; | |
125 | + cursor: pointer; | |
126 | +} | |
127 | +.rdtPicker button:hover { | |
128 | + background-color: #eee; | |
129 | +} | |
130 | + | |
131 | +.rdtPicker thead button { | |
132 | + width: 100%; | |
133 | + height: 100%; | |
134 | +} | |
135 | + | |
136 | +td.rdtMonth, | |
137 | +td.rdtYear { | |
138 | + height: 50px; | |
139 | + width: 25%; | |
140 | + cursor: pointer; | |
141 | +} | |
142 | +td.rdtMonth:hover, | |
143 | +td.rdtYear:hover { | |
144 | + background: #eee; | |
145 | +} | |
146 | + | |
147 | +.rdtCounters { | |
148 | + display: inline-block; | |
149 | +} | |
150 | + | |
151 | +.rdtCounters > div{ | |
152 | + float: left; | |
153 | +} | |
154 | + | |
155 | +.rdtCounter { | |
156 | + height: 100px; | |
157 | +} | |
158 | + | |
159 | +.rdtCounter { | |
160 | + width: 40px; | |
161 | +} | |
162 | + | |
163 | +.rdtCounterSeparator { | |
164 | + line-height: 100px; | |
165 | +} | |
166 | + | |
167 | +.rdtCounter .rdtBtn { | |
168 | + height: 40%; | |
169 | + line-height: 40px; | |
170 | + cursor: pointer; | |
171 | +} | |
172 | +.rdtCounter .rdtBtn:hover { | |
173 | + background: #eee; | |
174 | +} | |
175 | +.rdtCounter .rdtCount { | |
176 | + height: 20%; | |
177 | + font-size: 1.2em; | |
178 | +} | |
179 | + | |
180 | +.rdtMilli { | |
181 | + vertical-align: middle; | |
182 | + padding-left: 8px; | |
183 | + width: 48px; | |
184 | +} | |
185 | + | |
186 | +.rdtMilli input { | |
187 | + width: 100%; | |
188 | + font-size: 1.2em; | |
189 | + margin-top: 37px; | |
190 | +} | |
\ No newline at end of file | ... | ... |
1.7 KB
178 Bytes
104 Bytes
125 Bytes
105 Bytes
3.7 KB
90 Bytes
129 Bytes
6.8 KB
6.8 KB
4.4 KB
6.8 KB
4.4 KB
6.2 KB
1 | +/*! jQuery UI - v1.10.4 - 2016-07-22 | |
2 | +* http://jqueryui.com | |
3 | +* Includes: jquery.ui.core.css, jquery.ui.datepicker.css, jquery.ui.theme.css | |
4 | +* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px | |
5 | +* Copyright jQuery Foundation and other contributors; Licensed MIT */ | |
6 | + | |
7 | +.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#454545;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#2b2b2b;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_777777_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_555555_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_777620_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cc0000_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:0 0 0 0;padding:5px;background:#666;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px} | |
\ No newline at end of file | ... | ... |
1 | +@-webkit-keyframes medium-editor-image-loading { | |
2 | + 0% { | |
3 | + -webkit-transform: scale(0); | |
4 | + transform: scale(0); } | |
5 | + 100% { | |
6 | + -webkit-transform: scale(1); | |
7 | + transform: scale(1); } } | |
8 | + | |
9 | +@keyframes medium-editor-image-loading { | |
10 | + 0% { | |
11 | + -webkit-transform: scale(0); | |
12 | + transform: scale(0); } | |
13 | + 100% { | |
14 | + -webkit-transform: scale(1); | |
15 | + transform: scale(1); } } | |
16 | + | |
17 | +@-webkit-keyframes medium-editor-pop-upwards { | |
18 | + 0% { | |
19 | + opacity: 0; | |
20 | + -webkit-transform: matrix(0.97, 0, 0, 1, 0, 12); | |
21 | + transform: matrix(0.97, 0, 0, 1, 0, 12); } | |
22 | + 20% { | |
23 | + opacity: .7; | |
24 | + -webkit-transform: matrix(0.99, 0, 0, 1, 0, 2); | |
25 | + transform: matrix(0.99, 0, 0, 1, 0, 2); } | |
26 | + 40% { | |
27 | + opacity: 1; | |
28 | + -webkit-transform: matrix(1, 0, 0, 1, 0, -1); | |
29 | + transform: matrix(1, 0, 0, 1, 0, -1); } | |
30 | + 100% { | |
31 | + -webkit-transform: matrix(1, 0, 0, 1, 0, 0); | |
32 | + transform: matrix(1, 0, 0, 1, 0, 0); } } | |
33 | + | |
34 | +@keyframes medium-editor-pop-upwards { | |
35 | + 0% { | |
36 | + opacity: 0; | |
37 | + -webkit-transform: matrix(0.97, 0, 0, 1, 0, 12); | |
38 | + transform: matrix(0.97, 0, 0, 1, 0, 12); } | |
39 | + 20% { | |
40 | + opacity: .7; | |
41 | + -webkit-transform: matrix(0.99, 0, 0, 1, 0, 2); | |
42 | + transform: matrix(0.99, 0, 0, 1, 0, 2); } | |
43 | + 40% { | |
44 | + opacity: 1; | |
45 | + -webkit-transform: matrix(1, 0, 0, 1, 0, -1); | |
46 | + transform: matrix(1, 0, 0, 1, 0, -1); } | |
47 | + 100% { | |
48 | + -webkit-transform: matrix(1, 0, 0, 1, 0, 0); | |
49 | + transform: matrix(1, 0, 0, 1, 0, 0); } } | |
50 | + | |
51 | +.medium-editor-anchor-preview { | |
52 | + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
53 | + font-size: 16px; | |
54 | + left: 0; | |
55 | + line-height: 1.4; | |
56 | + max-width: 280px; | |
57 | + position: absolute; | |
58 | + text-align: center; | |
59 | + top: 0; | |
60 | + word-break: break-all; | |
61 | + word-wrap: break-word; | |
62 | + visibility: hidden; | |
63 | + z-index: 2000; } | |
64 | + .medium-editor-anchor-preview a { | |
65 | + color: #fff; | |
66 | + display: inline-block; | |
67 | + margin: 5px 5px 10px; } | |
68 | + | |
69 | +.medium-editor-anchor-preview-active { | |
70 | + visibility: visible; } | |
71 | + | |
72 | +.medium-editor-dragover { | |
73 | + background: #ddd; } | |
74 | + | |
75 | +.medium-editor-image-loading { | |
76 | + -webkit-animation: medium-editor-image-loading 1s infinite ease-in-out; | |
77 | + animation: medium-editor-image-loading 1s infinite ease-in-out; | |
78 | + background-color: #333; | |
79 | + border-radius: 100%; | |
80 | + display: inline-block; | |
81 | + height: 40px; | |
82 | + width: 40px; } | |
83 | + | |
84 | +.medium-editor-placeholder { | |
85 | + position: relative; } | |
86 | + .medium-editor-placeholder:after { | |
87 | + content: attr(data-placeholder) !important; | |
88 | + font-style: italic; | |
89 | + position: absolute; | |
90 | + left: 0; | |
91 | + top: 0; | |
92 | + white-space: pre; | |
93 | + padding: inherit; | |
94 | + margin: inherit; } | |
95 | + | |
96 | +.medium-editor-placeholder-relative { | |
97 | + position: relative; } | |
98 | + .medium-editor-placeholder-relative:after { | |
99 | + content: attr(data-placeholder) !important; | |
100 | + font-style: italic; | |
101 | + position: relative; | |
102 | + white-space: pre; | |
103 | + padding: inherit; | |
104 | + margin: inherit; } | |
105 | + | |
106 | +.medium-toolbar-arrow-under:after, .medium-toolbar-arrow-over:before { | |
107 | + border-style: solid; | |
108 | + content: ''; | |
109 | + display: block; | |
110 | + height: 0; | |
111 | + left: 50%; | |
112 | + margin-left: -8px; | |
113 | + position: absolute; | |
114 | + width: 0; } | |
115 | + | |
116 | +.medium-toolbar-arrow-under:after { | |
117 | + border-width: 8px 8px 0 8px; } | |
118 | + | |
119 | +.medium-editor-toolbar-form-active.medium-toolbar-arrow-under:after { | |
120 | + top: auto; } | |
121 | + | |
122 | +.medium-toolbar-arrow-over:before { | |
123 | + border-width: 0 8px 8px 8px; | |
124 | + top: -8px; } | |
125 | + | |
126 | +.medium-editor-toolbar { | |
127 | + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
128 | + font-size: 16px; | |
129 | + left: 0; | |
130 | + position: absolute; | |
131 | + top: 0; | |
132 | + visibility: hidden; | |
133 | + z-index: 2000; } | |
134 | + .medium-editor-toolbar ul { | |
135 | + margin: 0; | |
136 | + padding: 0; } | |
137 | + .medium-editor-toolbar li { | |
138 | + float: left; | |
139 | + list-style: none; | |
140 | + margin: 0; | |
141 | + padding: 0; } | |
142 | + .medium-editor-toolbar li button { | |
143 | + box-sizing: border-box; | |
144 | + cursor: pointer; | |
145 | + display: block; | |
146 | + font-size: 14px; | |
147 | + line-height: 1.33; | |
148 | + margin: 0; | |
149 | + padding: 15px; | |
150 | + text-decoration: none; } | |
151 | + .medium-editor-toolbar li button:focus { | |
152 | + outline: none; } | |
153 | + .medium-editor-toolbar li .medium-editor-action-underline { | |
154 | + text-decoration: underline; } | |
155 | + .medium-editor-toolbar li .medium-editor-action-pre { | |
156 | + font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; | |
157 | + font-size: 12px; | |
158 | + font-weight: 100; | |
159 | + padding: 15px 0; } | |
160 | + | |
161 | +.medium-editor-toolbar-active { | |
162 | + visibility: visible; } | |
163 | + | |
164 | +.medium-editor-sticky-toolbar { | |
165 | + position: fixed; | |
166 | + top: 1px; } | |
167 | + | |
168 | +.medium-editor-relative-toolbar { | |
169 | + position: relative; } | |
170 | + | |
171 | +.medium-editor-toolbar-active.medium-editor-stalker-toolbar { | |
172 | + -webkit-animation: medium-editor-pop-upwards 160ms forwards linear; | |
173 | + animation: medium-editor-pop-upwards 160ms forwards linear; } | |
174 | + | |
175 | +.medium-editor-action-bold { | |
176 | + font-weight: bolder; } | |
177 | + | |
178 | +.medium-editor-action-italic { | |
179 | + font-style: italic; } | |
180 | + | |
181 | +.medium-editor-toolbar-form { | |
182 | + display: none; } | |
183 | + .medium-editor-toolbar-form input, | |
184 | + .medium-editor-toolbar-form a { | |
185 | + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } | |
186 | + .medium-editor-toolbar-form input, .medium-editor-toolbar-form select { | |
187 | + position: relative; | |
188 | + display: inline-block; | |
189 | + padding: 4px 7px; | |
190 | + height: 28px; | |
191 | + cursor: text; | |
192 | + font-size: 12px; | |
193 | + line-height: 1.5; | |
194 | + color: rgba(0, 0, 0, 0.65); | |
195 | + background-color: #fff; | |
196 | + background-image: none; | |
197 | + border: 1px solid #d9d9d9; | |
198 | + border-radius: 4px; } | |
199 | + .medium-editor-toolbar-form .medium-editor-toolbar-form-row { | |
200 | + line-height: 14px; | |
201 | + margin-left: 5px; | |
202 | + padding-bottom: 5px; } | |
203 | + .medium-editor-toolbar-form .medium-editor-toolbar-input, | |
204 | + .medium-editor-toolbar-form label { | |
205 | + border: none; | |
206 | + box-sizing: border-box; | |
207 | + font-size: 14px; | |
208 | + margin: 0; | |
209 | + padding: 6px; | |
210 | + width: 316px; | |
211 | + display: inline-block; } | |
212 | + .medium-editor-toolbar-form .medium-editor-toolbar-input:focus, | |
213 | + .medium-editor-toolbar-form label:focus { | |
214 | + -webkit-appearance: none; | |
215 | + -moz-appearance: none; | |
216 | + appearance: none; | |
217 | + border: none; | |
218 | + box-shadow: none; | |
219 | + outline: 0; } | |
220 | + .medium-editor-toolbar-form a { | |
221 | + display: inline-block; | |
222 | + font-size: 24px; | |
223 | + font-weight: bolder; | |
224 | + margin: 0 10px; | |
225 | + text-decoration: none; } | |
226 | + | |
227 | +.medium-editor-toolbar-form-active { | |
228 | + display: block; } | |
229 | + | |
230 | +.medium-editor-toolbar-actions:after { | |
231 | + clear: both; | |
232 | + content: ""; | |
233 | + display: table; } | |
234 | + | |
235 | +.medium-editor-element { | |
236 | + word-wrap: break-word; | |
237 | + min-height: 30px; } | |
238 | + .medium-editor-element img { | |
239 | + max-width: 100%; } | |
240 | + .medium-editor-element sub { | |
241 | + vertical-align: sub; } | |
242 | + .medium-editor-element sup { | |
243 | + vertical-align: super; } | |
244 | + | |
245 | +.medium-editor-hidden { | |
246 | + display: none; } | |
247 | + | |
248 | +.custom_field { | |
249 | + padding: 0px 10px 0px 10px; } | ... | ... |
1 | +.medium-editor-anchor-preview,.medium-editor-toolbar{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:16px;z-index:2000}@-webkit-keyframes medium-editor-image-loading{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes medium-editor-image-loading{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes medium-editor-pop-upwards{0%{opacity:0;-webkit-transform:matrix(.97,0,0,1,0,12);transform:matrix(.97,0,0,1,0,12)}20%{opacity:.7;-webkit-transform:matrix(.99,0,0,1,0,2);transform:matrix(.99,0,0,1,0,2)}40%{opacity:1;-webkit-transform:matrix(1,0,0,1,0,-1);transform:matrix(1,0,0,1,0,-1)}100%{-webkit-transform:matrix(1,0,0,1,0,0);transform:matrix(1,0,0,1,0,0)}}@keyframes medium-editor-pop-upwards{0%{opacity:0;-webkit-transform:matrix(.97,0,0,1,0,12);transform:matrix(.97,0,0,1,0,12)}20%{opacity:.7;-webkit-transform:matrix(.99,0,0,1,0,2);transform:matrix(.99,0,0,1,0,2)}40%{opacity:1;-webkit-transform:matrix(1,0,0,1,0,-1);transform:matrix(1,0,0,1,0,-1)}100%{-webkit-transform:matrix(1,0,0,1,0,0);transform:matrix(1,0,0,1,0,0)}}.medium-editor-anchor-preview{left:0;line-height:1.4;max-width:280px;position:absolute;text-align:center;top:0;word-break:break-all;word-wrap:break-word;visibility:hidden}.medium-editor-anchor-preview a{color:#fff;display:inline-block;margin:5px 5px 10px}.medium-editor-placeholder-relative:after,.medium-editor-placeholder:after{content:attr(data-placeholder)!important;white-space:pre;padding:inherit;margin:inherit;font-style:italic}.medium-editor-anchor-preview-active{visibility:visible}.medium-editor-dragover{background:#ddd}.medium-editor-image-loading{-webkit-animation:medium-editor-image-loading 1s infinite ease-in-out;animation:medium-editor-image-loading 1s infinite ease-in-out;background-color:#333;border-radius:100%;display:inline-block;height:40px;width:40px}.medium-editor-placeholder{position:relative}.medium-editor-placeholder:after{position:absolute;left:0;top:0}.medium-editor-placeholder-relative,.medium-editor-placeholder-relative:after{position:relative}.medium-toolbar-arrow-over:before,.medium-toolbar-arrow-under:after{border-style:solid;content:'';display:block;height:0;left:50%;margin-left:-8px;position:absolute;width:0}.medium-toolbar-arrow-under:after{border-width:8px 8px 0}.medium-editor-toolbar-form-active.medium-toolbar-arrow-under:after{top:auto}.medium-toolbar-arrow-over:before{border-width:0 8px 8px;top:-8px}.medium-editor-toolbar{left:0;position:absolute;top:0;visibility:hidden}.medium-editor-toolbar ul{margin:0;padding:0}.medium-editor-toolbar li{float:left;list-style:none;margin:0;padding:0}.medium-editor-toolbar li button{box-sizing:border-box;cursor:pointer;display:block;font-size:14px;line-height:1.33;margin:0;padding:15px;text-decoration:none}.medium-editor-toolbar li button:focus{outline:0}.medium-editor-toolbar li .medium-editor-action-underline{text-decoration:underline}.medium-editor-toolbar li .medium-editor-action-pre{font-family:Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:12px;font-weight:100;padding:15px 0}.medium-editor-toolbar-active{visibility:visible}.medium-editor-sticky-toolbar{position:fixed;top:1px}.medium-editor-relative-toolbar{position:relative}.medium-editor-toolbar-active.medium-editor-stalker-toolbar{-webkit-animation:medium-editor-pop-upwards 160ms forwards linear;animation:medium-editor-pop-upwards 160ms forwards linear}.medium-editor-action-bold{font-weight:bolder}.medium-editor-action-italic{font-style:italic}.medium-editor-toolbar-form{display:none}.medium-editor-toolbar-form a,.medium-editor-toolbar-form input{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}.medium-editor-toolbar-form input,.medium-editor-toolbar-form select{position:relative;display:inline-block;padding:4px 7px;height:28px;cursor:text;font-size:12px;line-height:1.5;color:rgba(0,0,0,.65);background-color:#fff;background-image:none;border:1px solid #d9d9d9;border-radius:4px}.medium-editor-toolbar-form .medium-editor-toolbar-form-row{line-height:14px;margin-left:5px;padding-bottom:5px}.medium-editor-toolbar-form .medium-editor-toolbar-input,.medium-editor-toolbar-form label{border:none;box-sizing:border-box;font-size:14px;margin:0;padding:6px;width:316px;display:inline-block}.medium-editor-toolbar-form .medium-editor-toolbar-input:focus,.medium-editor-toolbar-form label:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;box-shadow:none;outline:0}.medium-editor-toolbar-form a{display:inline-block;font-size:24px;font-weight:bolder;margin:0 10px;text-decoration:none}.medium-editor-toolbar-form-active{display:block}.medium-editor-toolbar-actions:after{clear:both;content:"";display:table}.medium-editor-element{word-wrap:break-word;min-height:30px}.medium-editor-element img{max-width:100%}.medium-editor-element sub{vertical-align:sub}.medium-editor-element sup{vertical-align:super}.medium-editor-hidden{display:none}.custom_field{padding:0 10px} | |
\ No newline at end of file | ... | ... |
1 | +/* Copyright 2014 Mozilla Foundation | |
2 | + * | |
3 | + * Licensed under the Apache License, Version 2.0 (the "License"); | |
4 | + * you may not use this file except in compliance with the License. | |
5 | + * You may obtain a copy of the License at | |
6 | + * | |
7 | + * http://www.apache.org/licenses/LICENSE-2.0 | |
8 | + * | |
9 | + * Unless required by applicable law or agreed to in writing, software | |
10 | + * distributed under the License is distributed on an "AS IS" BASIS, | |
11 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
12 | + * See the License for the specific language governing permissions and | |
13 | + * limitations under the License. | |
14 | + */ | |
15 | + | |
16 | +.annotationLayer section { | |
17 | + position: absolute; | |
18 | +} | |
19 | + | |
20 | +.annotationLayer .linkAnnotation > a { | |
21 | + position: absolute; | |
22 | + font-size: 1em; | |
23 | + top: 0; | |
24 | + left: 0; | |
25 | + width: 100%; | |
26 | + height: 100%; | |
27 | +} | |
28 | + | |
29 | +.annotationLayer .linkAnnotation > a /* -ms-a */ { | |
30 | + background: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7") 0 0 repeat; | |
31 | +} | |
32 | + | |
33 | +.annotationLayer .linkAnnotation > a:hover { | |
34 | + opacity: 0.2; | |
35 | + background: #ff0; | |
36 | + box-shadow: 0px 2px 10px #ff0; | |
37 | +} | |
38 | + | |
39 | +.annotationLayer .textAnnotation img { | |
40 | + position: absolute; | |
41 | + cursor: pointer; | |
42 | +} | |
43 | + | |
44 | +.annotationLayer .textWidgetAnnotation input, | |
45 | +.annotationLayer .textWidgetAnnotation textarea, | |
46 | +.annotationLayer .choiceWidgetAnnotation select, | |
47 | +.annotationLayer .buttonWidgetAnnotation.checkBox input, | |
48 | +.annotationLayer .buttonWidgetAnnotation.radioButton input { | |
49 | + background-color: rgba(0, 54, 255, 0.13); | |
50 | + border: 1px solid transparent; | |
51 | + box-sizing: border-box; | |
52 | + font-size: 9px; | |
53 | + height: 100%; | |
54 | + padding: 0 3px; | |
55 | + vertical-align: top; | |
56 | + width: 100%; | |
57 | +} | |
58 | + | |
59 | +.annotationLayer .textWidgetAnnotation textarea { | |
60 | + font: message-box; | |
61 | + font-size: 9px; | |
62 | + resize: none; | |
63 | +} | |
64 | + | |
65 | +.annotationLayer .textWidgetAnnotation input[disabled], | |
66 | +.annotationLayer .textWidgetAnnotation textarea[disabled], | |
67 | +.annotationLayer .choiceWidgetAnnotation select[disabled], | |
68 | +.annotationLayer .buttonWidgetAnnotation.checkBox input[disabled], | |
69 | +.annotationLayer .buttonWidgetAnnotation.radioButton input[disabled] { | |
70 | + background: none; | |
71 | + border: 1px solid transparent; | |
72 | + cursor: not-allowed; | |
73 | +} | |
74 | + | |
75 | +.annotationLayer .textWidgetAnnotation input:hover, | |
76 | +.annotationLayer .textWidgetAnnotation textarea:hover, | |
77 | +.annotationLayer .choiceWidgetAnnotation select:hover, | |
78 | +.annotationLayer .buttonWidgetAnnotation.checkBox input:hover, | |
79 | +.annotationLayer .buttonWidgetAnnotation.radioButton input:hover { | |
80 | + border: 1px solid #000; | |
81 | +} | |
82 | + | |
83 | +.annotationLayer .textWidgetAnnotation input:focus, | |
84 | +.annotationLayer .textWidgetAnnotation textarea:focus, | |
85 | +.annotationLayer .choiceWidgetAnnotation select:focus { | |
86 | + background: none; | |
87 | + border: 1px solid transparent; | |
88 | +} | |
89 | + | |
90 | +.annotationLayer .textWidgetAnnotation input.comb { | |
91 | + font-family: monospace; | |
92 | + padding-left: 2px; | |
93 | + padding-right: 0; | |
94 | +} | |
95 | + | |
96 | +.annotationLayer .textWidgetAnnotation input.comb:focus { | |
97 | + /* | |
98 | + * Letter spacing is placed on the right side of each character. Hence, the | |
99 | + * letter spacing of the last character may be placed outside the visible | |
100 | + * area, causing horizontal scrolling. We avoid this by extending the width | |
101 | + * when the element has focus and revert this when it loses focus. | |
102 | + */ | |
103 | + width: 115%; | |
104 | +} | |
105 | + | |
106 | +.annotationLayer .buttonWidgetAnnotation.checkBox input, | |
107 | +.annotationLayer .buttonWidgetAnnotation.radioButton input { | |
108 | + -webkit-appearance: none; | |
109 | + -moz-appearance: none; | |
110 | + -ms-appearance: none; | |
111 | + appearance: none; | |
112 | +} | |
113 | + | |
114 | +.annotationLayer .popupWrapper { | |
115 | + position: absolute; | |
116 | + width: 20em; | |
117 | +} | |
118 | + | |
119 | +.annotationLayer .popup { | |
120 | + position: absolute; | |
121 | + z-index: 200; | |
122 | + max-width: 20em; | |
123 | + background-color: #FFFF99; | |
124 | + box-shadow: 0px 2px 5px #333; | |
125 | + border-radius: 2px; | |
126 | + padding: 0.6em; | |
127 | + margin-left: 5px; | |
128 | + cursor: pointer; | |
129 | + word-wrap: break-word; | |
130 | +} | |
131 | + | |
132 | +.annotationLayer .popup h1 { | |
133 | + font-size: 1em; | |
134 | + border-bottom: 1px solid #000000; | |
135 | + padding-bottom: 0.2em; | |
136 | +} | |
137 | + | |
138 | +.annotationLayer .popup p { | |
139 | + padding-top: 0.2em; | |
140 | +} | |
141 | + | |
142 | +.annotationLayer .highlightAnnotation, | |
143 | +.annotationLayer .underlineAnnotation, | |
144 | +.annotationLayer .squigglyAnnotation, | |
145 | +.annotationLayer .strikeoutAnnotation, | |
146 | +.annotationLayer .fileAttachmentAnnotation { | |
147 | + cursor: pointer; | |
148 | +} | ... | ... |
1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
2 | +<svg | |
3 | + xmlns="http://www.w3.org/2000/svg" | |
4 | + width="40" | |
5 | + height="40" | |
6 | + viewBox="0 0 40 40"> | |
7 | + <path | |
8 | + d="M 1.5006714,23.536225 6.8925879,18.994244 14.585721,26.037937 34.019683,4.5410479 38.499329,9.2235032 14.585721,35.458952 z" | |
9 | + id="path4" | |
10 | + style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.25402856;stroke-opacity:1" /> | |
11 | +</svg> | ... | ... |
1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
2 | +<svg | |
3 | + xmlns="http://www.w3.org/2000/svg" | |
4 | + height="40" | |
5 | + width="40" | |
6 | + viewBox="0 0 40 40"> | |
7 | + <rect | |
8 | + style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" | |
9 | + width="33.76017" | |
10 | + height="33.76017" | |
11 | + x="3.119915" | |
12 | + y="3.119915" /> | |
13 | + <path | |
14 | + d="m 20.677967,8.54499 c -7.342801,0 -13.295293,4.954293 -13.295293,11.065751 0,2.088793 0.3647173,3.484376 1.575539,5.150563 L 6.0267418,31.45501 13.560595,29.011117 c 2.221262,1.387962 4.125932,1.665377 7.117372,1.665377 7.3428,0 13.295291,-4.954295 13.295291,-11.065753 0,-6.111458 -5.952491,-11.065751 -13.295291,-11.065751 z" | |
15 | + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.93031836;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"/> | |
16 | +</svg> | ... | ... |
1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
2 | +<svg | |
3 | + xmlns="http://www.w3.org/2000/svg" | |
4 | + width="40" | |
5 | + height="40" | |
6 | + viewBox="0 0 40 40"> | |
7 | + <g | |
8 | + transform="translate(0,-60)" | |
9 | + id="layer1"> | |
10 | + <rect | |
11 | + width="36.460953" | |
12 | + height="34.805603" | |
13 | + x="1.7695236" | |
14 | + y="62.597198" | |
15 | + style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.30826771;stroke-opacity:1" /> | |
16 | + <g | |
17 | + transform="matrix(0.88763677,0,0,0.88763677,2.2472646,8.9890584)"> | |
18 | + <path | |
19 | + d="M 20,64.526342 C 11.454135,64.526342 4.5263421,71.454135 4.5263421,80 4.5263421,88.545865 11.454135,95.473658 20,95.473658 28.545865,95.473658 35.473658,88.545865 35.473658,80 35.473658,71.454135 28.545865,64.526342 20,64.526342 z m -0.408738,9.488564 c 3.527079,0 6.393832,2.84061 6.393832,6.335441 0,3.494831 -2.866753,6.335441 -6.393832,6.335441 -3.527079,0 -6.393832,-2.84061 -6.393832,-6.335441 0,-3.494831 2.866753,-6.335441 6.393832,-6.335441 z" | |
20 | + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.02768445;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> | |
21 | + <path | |
22 | + d="m 7.2335209,71.819938 4.9702591,4.161823 c -1.679956,2.581606 -1.443939,6.069592 0.159325,8.677725 l -5.1263071,3.424463 c 0.67516,1.231452 3.0166401,3.547686 4.2331971,4.194757 l 3.907728,-4.567277 c 2.541952,1.45975 5.730694,1.392161 8.438683,-0.12614 l 3.469517,6.108336 c 1.129779,-0.44367 4.742234,-3.449633 5.416358,-5.003859 l -5.46204,-4.415541 c 1.44319,-2.424098 1.651175,-5.267515 0.557303,-7.748623 l 5.903195,-3.833951 C 33.14257,71.704996 30.616217,69.018606 29.02952,67.99296 l -4.118813,4.981678 C 22.411934,71.205099 18.900853,70.937534 16.041319,72.32916 l -3.595408,-5.322091 c -1.345962,0.579488 -4.1293881,2.921233 -5.2123901,4.812869 z m 8.1010311,3.426672 c 2.75284,-2.446266 6.769149,-2.144694 9.048998,0.420874 2.279848,2.56557 2.113919,6.596919 -0.638924,9.043185 -2.752841,2.446267 -6.775754,2.13726 -9.055604,-0.428308 -2.279851,-2.565568 -2.107313,-6.589485 0.64553,-9.035751 z" | |
23 | + style="fill:#000000;fill-opacity:1;stroke:none" /> | |
24 | + </g> | |
25 | + </g> | |
26 | +</svg> | ... | ... |
1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
2 | +<svg | |
3 | + xmlns="http://www.w3.org/2000/svg" | |
4 | + width="64" | |
5 | + height="64" | |
6 | + viewBox="0 0 64 64"> | |
7 | + <path | |
8 | + d="M 32.003143,1.4044602 57.432701,62.632577 6.5672991,62.627924 z" | |
9 | + style="fill:#ffff00;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#000000;stroke-width:1.00493038;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> | |
10 | +</svg> | ... | ... |
1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
2 | +<svg | |
3 | + xmlns="http://www.w3.org/2000/svg" | |
4 | + width="64" | |
5 | + height="64" | |
6 | + viewBox="0 0 64 64"> | |
7 | + <path | |
8 | + d="M 25.470843,9.4933766 C 25.30219,12.141818 30.139101,14.445969 34.704831,13.529144 40.62635,12.541995 41.398833,7.3856498 35.97505,5.777863 31.400921,4.1549155 25.157674,6.5445892 25.470843,9.4933766 z M 4.5246282,17.652051 C 4.068249,11.832873 9.2742983,5.9270407 18.437379,3.0977088 29.751911,-0.87185184 45.495663,1.4008022 53.603953,7.1104009 c 9.275765,6.1889221 7.158128,16.2079421 -3.171076,21.5939521 -1.784316,1.635815 -6.380222,1.21421 -7.068351,3.186186 -1.04003,0.972427 -1.288046,2.050158 -1.232864,3.168203 1.015111,2.000108 -3.831548,1.633216 -3.270553,3.759574 0.589477,5.264544 -0.179276,10.53738 -0.362842,15.806257 -0.492006,2.184998 1.163456,4.574232 -0.734888,6.610642 -2.482919,2.325184 -7.30604,2.189143 -9.193497,-0.274767 -2.733688,-1.740626 -8.254447,-3.615254 -6.104247,-6.339626 3.468112,-1.708686 -2.116197,-3.449897 0.431242,-5.080274 5.058402,-1.39256 -2.393215,-2.304318 -0.146889,-4.334645 3.069198,-0.977415 2.056986,-2.518352 -0.219121,-3.540397 1.876567,-1.807151 1.484149,-4.868919 -2.565455,-5.942205 0.150866,-1.805474 2.905737,-4.136876 -1.679967,-5.20493 C 10.260902,27.882167 4.6872697,22.95045 4.5245945,17.652051 z" | |
9 | + id="path604" | |
10 | + style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.72665179;stroke-opacity:1" /> | |
11 | +</svg> | ... | ... |
1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
2 | +<svg | |
3 | + xmlns="http://www.w3.org/2000/svg" | |
4 | + width="64" | |
5 | + height="64" | |
6 | + viewBox="0 0 64 64"> | |
7 | + <path | |
8 | + d="M 32.003143,10.913072 57.432701,53.086929 6.567299,53.083723 z" | |
9 | + id="path2985" | |
10 | + style="fill:#ffff00;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#000000;stroke-width:0.83403099;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> | |
11 | +</svg> | ... | ... |
1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
2 | +<svg | |
3 | + xmlns="http://www.w3.org/2000/svg" | |
4 | + width="40" | |
5 | + height="40" | |
6 | + viewBox="0 0 40 40"> | |
7 | + <rect | |
8 | + width="36.075428" | |
9 | + height="31.096582" | |
10 | + x="1.962286" | |
11 | + y="4.4517088" | |
12 | + id="rect4" | |
13 | + style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.23004246;stroke-opacity:1" /> | |
14 | + <rect | |
15 | + width="27.96859" | |
16 | + height="1.5012145" | |
17 | + x="6.0157046" | |
18 | + y="10.285" | |
19 | + id="rect6" | |
20 | + style="fill:#000000;fill-opacity:1;stroke:none" /> | |
21 | + <rect | |
22 | + width="27.96859" | |
23 | + height="0.85783684" | |
24 | + x="6.0157056" | |
25 | + y="23.21689" | |
26 | + id="rect8" | |
27 | + style="fill:#000000;fill-opacity:1;stroke:none" /> | |
28 | + <rect | |
29 | + width="27.96859" | |
30 | + height="0.85783684" | |
31 | + x="5.8130345" | |
32 | + y="28.964394" | |
33 | + id="rect10" | |
34 | + style="fill:#000000;fill-opacity:1;stroke:none" /> | |
35 | + <rect | |
36 | + width="27.96859" | |
37 | + height="0.85783684" | |
38 | + x="6.0157046" | |
39 | + y="17.426493" | |
40 | + id="rect12" | |
41 | + style="fill:#000000;fill-opacity:1;stroke:none" /> | |
42 | +</svg> | ... | ... |
1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
2 | +<svg | |
3 | + xmlns="http://www.w3.org/2000/svg" | |
4 | + width="40" | |
5 | + height="40" | |
6 | + viewBox="0 0 40 40"> | |
7 | + <rect | |
8 | + width="33.76017" | |
9 | + height="33.76017" | |
10 | + x="3.119915" | |
11 | + y="3.119915" | |
12 | + style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> | |
13 | + <path | |
14 | + d="m 17.692678,34.50206 0,-16.182224 c -1.930515,-0.103225 -3.455824,-0.730383 -4.57593,-1.881473 -1.12011,-1.151067 -1.680164,-2.619596 -1.680164,-4.405591 0,-1.992435 0.621995,-3.5796849 1.865988,-4.7617553 1.243989,-1.1820288 3.06352,-1.7730536 5.458598,-1.7730764 l 9.802246,0 0,2.6789711 -2.229895,0 0,26.3251486 -2.632515,0 0,-26.3251486 -3.45324,0 0,26.3251486 z" | |
15 | + style="font-size:29.42051125px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.07795751;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial" /> | |
16 | +</svg> | ... | ... |
199 Bytes
304 Bytes
193 Bytes
296 Bytes
193 Bytes
296 Bytes
199 Bytes
304 Bytes
2.5 KB
7.2 KB
15.8 KB
403 Bytes
933 Bytes
179 Bytes
266 Bytes
301 Bytes
583 Bytes
175 Bytes
276 Bytes
360 Bytes
731 Bytes
359 Bytes
714 Bytes
290 Bytes
2.4 KB
174 Bytes
260 Bytes
259 Bytes
425 Bytes
107 Bytes
152 Bytes
295 Bytes
550 Bytes
242 Bytes
398 Bytes
238 Bytes
396 Bytes
245 Bytes
405 Bytes
246 Bytes
403 Bytes
321 Bytes
586 Bytes
257 Bytes
464 Bytes
309 Bytes
653 Bytes
246 Bytes
456 Bytes
243 Bytes
458 Bytes
225 Bytes
344 Bytes
225 Bytes
331 Bytes
384 Bytes
859 Bytes
177 Bytes
394 Bytes
178 Bytes
331 Bytes
185 Bytes
219 Bytes
136 Bytes
160 Bytes
88 Bytes
109 Bytes
143 Bytes
167 Bytes
128 Bytes
149 Bytes
125 Bytes
172 Bytes
1 | +/* Copyright 2014 Mozilla Foundation | |
2 | + * | |
3 | + * Licensed under the Apache License, Version 2.0 (the "License"); | |
4 | + * you may not use this file except in compliance with the License. | |
5 | + * You may obtain a copy of the License at | |
6 | + * | |
7 | + * http://www.apache.org/licenses/LICENSE-2.0 | |
8 | + * | |
9 | + * Unless required by applicable law or agreed to in writing, software | |
10 | + * distributed under the License is distributed on an "AS IS" BASIS, | |
11 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
12 | + * See the License for the specific language governing permissions and | |
13 | + * limitations under the License. | |
14 | + */ | |
15 | +@import url(text_layer_builder.css); | |
16 | +@import url(annotation_layer_builder.css); | |
17 | + | |
18 | +.pdfViewer .canvasWrapper { | |
19 | + overflow: hidden; | |
20 | +} | |
21 | + | |
22 | +.pdfViewer .page { | |
23 | + direction: ltr; | |
24 | + width: 816px; | |
25 | + height: 1056px; | |
26 | + margin: 1px auto -8px auto; | |
27 | + position: relative; | |
28 | + overflow: visible; | |
29 | + border: 9px solid transparent; | |
30 | + background-clip: content-box; | |
31 | + border-image: url(images/shadow.png) 9 9 repeat; | |
32 | + background-color: white; | |
33 | +} | |
34 | + | |
35 | +.pdfViewer.removePageBorders .page { | |
36 | + margin: 0px auto 10px auto; | |
37 | + border: none; | |
38 | +} | |
39 | + | |
40 | +.pdfViewer.singlePageView { | |
41 | + display: inline-block; | |
42 | +} | |
43 | + | |
44 | +.pdfViewer.singlePageView .page { | |
45 | + margin: 0; | |
46 | + border: none; | |
47 | +} | |
48 | + | |
49 | +.pdfViewer .page canvas { | |
50 | + margin: 0; | |
51 | + display: block; | |
52 | +} | |
53 | + | |
54 | +.pdfViewer .page .loadingIcon { | |
55 | + position: absolute; | |
56 | + display: block; | |
57 | + left: 0; | |
58 | + top: 0; | |
59 | + right: 0; | |
60 | + bottom: 0; | |
61 | + background: url('images/loading-icon.gif') center no-repeat; | |
62 | +} | |
63 | + | |
64 | +.pdfPresentationMode:-webkit-full-screen .pdfViewer .page { | |
65 | + margin-bottom: 100%; | |
66 | + border: 0; | |
67 | +} | |
68 | + | |
69 | +.pdfPresentationMode:-moz-full-screen .pdfViewer .page { | |
70 | + margin-bottom: 100%; | |
71 | + border: 0; | |
72 | +} | |
73 | + | |
74 | +.pdfPresentationMode:-ms-fullscreen .pdfViewer .page { | |
75 | + margin-bottom: 100% !important; | |
76 | + border: 0; | |
77 | +} | |
78 | + | |
79 | +.pdfPresentationMode:fullscreen .pdfViewer .page { | |
80 | + margin-bottom: 100%; | |
81 | + border: 0; | |
82 | +} | ... | ... |
1 | +/* Copyright 2014 Mozilla Foundation | |
2 | + * | |
3 | + * Licensed under the Apache License, Version 2.0 (the "License"); | |
4 | + * you may not use this file except in compliance with the License. | |
5 | + * You may obtain a copy of the License at | |
6 | + * | |
7 | + * http://www.apache.org/licenses/LICENSE-2.0 | |
8 | + * | |
9 | + * Unless required by applicable law or agreed to in writing, software | |
10 | + * distributed under the License is distributed on an "AS IS" BASIS, | |
11 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
12 | + * See the License for the specific language governing permissions and | |
13 | + * limitations under the License. | |
14 | + */ | |
15 | + | |
16 | +.textLayer { | |
17 | + position: absolute; | |
18 | + left: 0; | |
19 | + top: 0; | |
20 | + right: 0; | |
21 | + bottom: 0; | |
22 | + overflow: hidden; | |
23 | + opacity: 0.2; | |
24 | + line-height: 1.0; | |
25 | +} | |
26 | + | |
27 | +.textLayer > div { | |
28 | + color: transparent; | |
29 | + position: absolute; | |
30 | + white-space: pre; | |
31 | + cursor: text; | |
32 | + -webkit-transform-origin: 0% 0%; | |
33 | + -moz-transform-origin: 0% 0%; | |
34 | + -o-transform-origin: 0% 0%; | |
35 | + -ms-transform-origin: 0% 0%; | |
36 | + transform-origin: 0% 0%; | |
37 | +} | |
38 | + | |
39 | +.textLayer .highlight { | |
40 | + margin: -1px; | |
41 | + padding: 1px; | |
42 | + | |
43 | + background-color: rgb(180, 0, 170); | |
44 | + border-radius: 4px; | |
45 | +} | |
46 | + | |
47 | +.textLayer .highlight.begin { | |
48 | + border-radius: 4px 0px 0px 4px; | |
49 | +} | |
50 | + | |
51 | +.textLayer .highlight.end { | |
52 | + border-radius: 0px 4px 4px 0px; | |
53 | +} | |
54 | + | |
55 | +.textLayer .highlight.middle { | |
56 | + border-radius: 0px; | |
57 | +} | |
58 | + | |
59 | +.textLayer .highlight.selected { | |
60 | + background-color: rgb(0, 100, 0); | |
61 | +} | |
62 | + | |
63 | +.textLayer ::selection { background: rgb(0,0,255); } | |
64 | +.textLayer ::-moz-selection { background: rgb(0,0,255); } | |
65 | + | |
66 | +.textLayer .endOfContent { | |
67 | + display: block; | |
68 | + position: absolute; | |
69 | + left: 0px; | |
70 | + top: 100%; | |
71 | + right: 0px; | |
72 | + bottom: 0px; | |
73 | + z-index: -1; | |
74 | + cursor: default; | |
75 | + -webkit-user-select: none; | |
76 | + -ms-user-select: none; | |
77 | + -moz-user-select: none; | |
78 | +} | |
79 | + | |
80 | +.textLayer .endOfContent.active { | |
81 | + top: 0px; | |
82 | +} | ... | ... |
1 | +/* Copyright 2014 Mozilla Foundation | |
2 | + * | |
3 | + * Licensed under the Apache License, Version 2.0 (the "License"); | |
4 | + * you may not use this file except in compliance with the License. | |
5 | + * You may obtain a copy of the License at | |
6 | + * | |
7 | + * http://www.apache.org/licenses/LICENSE-2.0 | |
8 | + * | |
9 | + * Unless required by applicable law or agreed to in writing, software | |
10 | + * distributed under the License is distributed on an "AS IS" BASIS, | |
11 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
12 | + * See the License for the specific language governing permissions and | |
13 | + * limitations under the License. | |
14 | + */ | |
15 | + | |
16 | +@import url(pdf_viewer.css); | |
17 | + | |
18 | +* { | |
19 | + padding: 0; | |
20 | + margin: 0; | |
21 | +} | |
22 | + | |
23 | +html { | |
24 | + height: 100%; | |
25 | + width: 100%; | |
26 | + /* Font size is needed to make the activity bar the correct size. */ | |
27 | + font-size: 10px; | |
28 | +} | |
29 | + | |
30 | +body { | |
31 | + height: 100%; | |
32 | + width: 100%; | |
33 | + background-color: #404040; | |
34 | + background-image: url(images/texture.png); | |
35 | +} | |
36 | + | |
37 | +body, | |
38 | +input, | |
39 | +button, | |
40 | +select { | |
41 | + font: message-box; | |
42 | + outline: none; | |
43 | +} | |
44 | + | |
45 | +.hidden { | |
46 | + display: none !important; | |
47 | +} | |
48 | +[hidden] { | |
49 | + display: none !important; | |
50 | +} | |
51 | + | |
52 | +#viewerContainer.pdfPresentationMode:-webkit-full-screen { | |
53 | + top: 0px; | |
54 | + border-top: 2px solid transparent; | |
55 | + background-color: #000; | |
56 | + width: 100%; | |
57 | + height: 100%; | |
58 | + overflow: hidden; | |
59 | + cursor: none; | |
60 | + -webkit-user-select: none; | |
61 | +} | |
62 | + | |
63 | +#viewerContainer.pdfPresentationMode:-moz-full-screen { | |
64 | + top: 0px; | |
65 | + border-top: 2px solid transparent; | |
66 | + background-color: #000; | |
67 | + width: 100%; | |
68 | + height: 100%; | |
69 | + overflow: hidden; | |
70 | + cursor: none; | |
71 | + -moz-user-select: none; | |
72 | +} | |
73 | + | |
74 | +#viewerContainer.pdfPresentationMode:-ms-fullscreen { | |
75 | + top: 0px !important; | |
76 | + border-top: 2px solid transparent; | |
77 | + width: 100%; | |
78 | + height: 100%; | |
79 | + overflow: hidden !important; | |
80 | + cursor: none; | |
81 | + -ms-user-select: none; | |
82 | +} | |
83 | + | |
84 | +#viewerContainer.pdfPresentationMode:-ms-fullscreen::-ms-backdrop { | |
85 | + background-color: #000; | |
86 | +} | |
87 | + | |
88 | +#viewerContainer.pdfPresentationMode:fullscreen { | |
89 | + top: 0px; | |
90 | + border-top: 2px solid transparent; | |
91 | + background-color: #000; | |
92 | + width: 100%; | |
93 | + height: 100%; | |
94 | + overflow: hidden; | |
95 | + cursor: none; | |
96 | + -webkit-user-select: none; | |
97 | + -moz-user-select: none; | |
98 | + -ms-user-select: none; | |
99 | +} | |
100 | + | |
101 | +.pdfPresentationMode:-webkit-full-screen a:not(.internalLink) { | |
102 | + display: none; | |
103 | +} | |
104 | + | |
105 | +.pdfPresentationMode:-moz-full-screen a:not(.internalLink) { | |
106 | + display: none; | |
107 | +} | |
108 | + | |
109 | +.pdfPresentationMode:-ms-fullscreen a:not(.internalLink) { | |
110 | + display: none !important; | |
111 | +} | |
112 | + | |
113 | +.pdfPresentationMode:fullscreen a:not(.internalLink) { | |
114 | + display: none; | |
115 | +} | |
116 | + | |
117 | +.pdfPresentationMode:-webkit-full-screen .textLayer > div { | |
118 | + cursor: none; | |
119 | +} | |
120 | + | |
121 | +.pdfPresentationMode:-moz-full-screen .textLayer > div { | |
122 | + cursor: none; | |
123 | +} | |
124 | + | |
125 | +.pdfPresentationMode:-ms-fullscreen .textLayer > div { | |
126 | + cursor: none; | |
127 | +} | |
128 | + | |
129 | +.pdfPresentationMode:fullscreen .textLayer > div { | |
130 | + cursor: none; | |
131 | +} | |
132 | + | |
133 | +.pdfPresentationMode.pdfPresentationModeControls > *, | |
134 | +.pdfPresentationMode.pdfPresentationModeControls .textLayer > div { | |
135 | + cursor: default; | |
136 | +} | |
137 | + | |
138 | +#outerContainer { | |
139 | + width: 100%; | |
140 | + height: 100%; | |
141 | + position: relative; | |
142 | +} | |
143 | + | |
144 | +#sidebarContainer { | |
145 | + position: absolute; | |
146 | + top: 0; | |
147 | + bottom: 0; | |
148 | + width: 200px; | |
149 | + visibility: hidden; | |
150 | + -webkit-transition-duration: 200ms; | |
151 | + -webkit-transition-timing-function: ease; | |
152 | + transition-duration: 200ms; | |
153 | + transition-timing-function: ease; | |
154 | + | |
155 | +} | |
156 | +html[dir='ltr'] #sidebarContainer { | |
157 | + -webkit-transition-property: left; | |
158 | + transition-property: left; | |
159 | + left: -200px; | |
160 | +} | |
161 | +html[dir='rtl'] #sidebarContainer { | |
162 | + -webkit-transition-property: right; | |
163 | + transition-property: right; | |
164 | + right: -200px; | |
165 | +} | |
166 | + | |
167 | +#outerContainer.sidebarMoving > #sidebarContainer, | |
168 | +#outerContainer.sidebarOpen > #sidebarContainer { | |
169 | + visibility: visible; | |
170 | +} | |
171 | +html[dir='ltr'] #outerContainer.sidebarOpen > #sidebarContainer { | |
172 | + left: 0px; | |
173 | +} | |
174 | +html[dir='rtl'] #outerContainer.sidebarOpen > #sidebarContainer { | |
175 | + right: 0px; | |
176 | +} | |
177 | + | |
178 | +#mainContainer { | |
179 | + position: absolute; | |
180 | + top: 0; | |
181 | + right: 0; | |
182 | + bottom: 0; | |
183 | + left: 0; | |
184 | + min-width: 320px; | |
185 | + -webkit-transition-duration: 200ms; | |
186 | + -webkit-transition-timing-function: ease; | |
187 | + transition-duration: 200ms; | |
188 | + transition-timing-function: ease; | |
189 | +} | |
190 | +html[dir='ltr'] #outerContainer.sidebarOpen > #mainContainer { | |
191 | + -webkit-transition-property: left; | |
192 | + transition-property: left; | |
193 | + left: 200px; | |
194 | +} | |
195 | +html[dir='rtl'] #outerContainer.sidebarOpen > #mainContainer { | |
196 | + -webkit-transition-property: right; | |
197 | + transition-property: right; | |
198 | + right: 200px; | |
199 | +} | |
200 | + | |
201 | +#sidebarContent { | |
202 | + top: 32px; | |
203 | + bottom: 0; | |
204 | + overflow: auto; | |
205 | + -webkit-overflow-scrolling: touch; | |
206 | + position: absolute; | |
207 | + width: 200px; | |
208 | + background-color: hsla(0,0%,0%,.1); | |
209 | +} | |
210 | +html[dir='ltr'] #sidebarContent { | |
211 | + left: 0; | |
212 | + box-shadow: inset -1px 0 0 hsla(0,0%,0%,.25); | |
213 | +} | |
214 | +html[dir='rtl'] #sidebarContent { | |
215 | + right: 0; | |
216 | + box-shadow: inset 1px 0 0 hsla(0,0%,0%,.25); | |
217 | +} | |
218 | + | |
219 | +#viewerContainer { | |
220 | + overflow: auto; | |
221 | + -webkit-overflow-scrolling: touch; | |
222 | + position: absolute; | |
223 | + top: 32px; | |
224 | + right: 0; | |
225 | + bottom: 0; | |
226 | + left: 0; | |
227 | + outline: none; | |
228 | +} | |
229 | +html[dir='ltr'] #viewerContainer { | |
230 | + box-shadow: inset 1px 0 0 hsla(0,0%,100%,.05); | |
231 | +} | |
232 | +html[dir='rtl'] #viewerContainer { | |
233 | + box-shadow: inset -1px 0 0 hsla(0,0%,100%,.05); | |
234 | +} | |
235 | + | |
236 | +.toolbar { | |
237 | + position: relative; | |
238 | + left: 0; | |
239 | + right: 0; | |
240 | + z-index: 9999; | |
241 | + cursor: default; | |
242 | +} | |
243 | + | |
244 | +#toolbarContainer { | |
245 | + width: 100%; | |
246 | +} | |
247 | + | |
248 | +#toolbarSidebar { | |
249 | + width: 200px; | |
250 | + height: 32px; | |
251 | + background-color: #424242; /* fallback */ | |
252 | + background-image: url(images/texture.png), | |
253 | + linear-gradient(hsla(0,0%,30%,.99), hsla(0,0%,25%,.95)); | |
254 | +} | |
255 | +html[dir='ltr'] #toolbarSidebar { | |
256 | + box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.25), | |
257 | + inset 0 -1px 0 hsla(0,0%,100%,.05), | |
258 | + 0 1px 0 hsla(0,0%,0%,.15), | |
259 | + 0 0 1px hsla(0,0%,0%,.1); | |
260 | +} | |
261 | +html[dir='rtl'] #toolbarSidebar { | |
262 | + box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.25), | |
263 | + inset 0 1px 0 hsla(0,0%,100%,.05), | |
264 | + 0 1px 0 hsla(0,0%,0%,.15), | |
265 | + 0 0 1px hsla(0,0%,0%,.1); | |
266 | +} | |
267 | + | |
268 | +#toolbarContainer, .findbar, .secondaryToolbar { | |
269 | + position: relative; | |
270 | + height: 32px; | |
271 | + background-color: #474747; /* fallback */ | |
272 | + background-image: url(images/texture.png), | |
273 | + linear-gradient(hsla(0,0%,32%,.99), hsla(0,0%,27%,.95)); | |
274 | +} | |
275 | +html[dir='ltr'] #toolbarContainer, .findbar, .secondaryToolbar { | |
276 | + box-shadow: inset 1px 0 0 hsla(0,0%,100%,.08), | |
277 | + inset 0 1px 1px hsla(0,0%,0%,.15), | |
278 | + inset 0 -1px 0 hsla(0,0%,100%,.05), | |
279 | + 0 1px 0 hsla(0,0%,0%,.15), | |
280 | + 0 1px 1px hsla(0,0%,0%,.1); | |
281 | +} | |
282 | +html[dir='rtl'] #toolbarContainer, .findbar, .secondaryToolbar { | |
283 | + box-shadow: inset -1px 0 0 hsla(0,0%,100%,.08), | |
284 | + inset 0 1px 1px hsla(0,0%,0%,.15), | |
285 | + inset 0 -1px 0 hsla(0,0%,100%,.05), | |
286 | + 0 1px 0 hsla(0,0%,0%,.15), | |
287 | + 0 1px 1px hsla(0,0%,0%,.1); | |
288 | +} | |
289 | + | |
290 | +#toolbarViewer { | |
291 | + height: 32px; | |
292 | +} | |
293 | + | |
294 | +#loadingBar { | |
295 | + position: relative; | |
296 | + width: 100%; | |
297 | + height: 4px; | |
298 | + background-color: #333; | |
299 | + border-bottom: 1px solid #333; | |
300 | +} | |
301 | + | |
302 | +#loadingBar .progress { | |
303 | + position: absolute; | |
304 | + top: 0; | |
305 | + left: 0; | |
306 | + width: 0%; | |
307 | + height: 100%; | |
308 | + background-color: #ddd; | |
309 | + overflow: hidden; | |
310 | + -webkit-transition: width 200ms; | |
311 | + transition: width 200ms; | |
312 | +} | |
313 | + | |
314 | +@-webkit-keyframes progressIndeterminate { | |
315 | + 0% { left: -142px; } | |
316 | + 100% { left: 0; } | |
317 | +} | |
318 | + | |
319 | +@keyframes progressIndeterminate { | |
320 | + 0% { left: -142px; } | |
321 | + 100% { left: 0; } | |
322 | +} | |
323 | + | |
324 | +#loadingBar .progress.indeterminate { | |
325 | + background-color: #999; | |
326 | + -webkit-transition: none; | |
327 | + transition: none; | |
328 | +} | |
329 | + | |
330 | +#loadingBar .progress.indeterminate .glimmer { | |
331 | + position: absolute; | |
332 | + top: 0; | |
333 | + left: 0; | |
334 | + height: 100%; | |
335 | + width: calc(100% + 150px); | |
336 | + | |
337 | + background: repeating-linear-gradient(135deg, | |
338 | + #bbb 0, #999 5px, | |
339 | + #999 45px, #ddd 55px, | |
340 | + #ddd 95px, #bbb 100px); | |
341 | + | |
342 | + -webkit-animation: progressIndeterminate 950ms linear infinite; | |
343 | + animation: progressIndeterminate 950ms linear infinite; | |
344 | +} | |
345 | + | |
346 | +.findbar, .secondaryToolbar { | |
347 | + top: 32px; | |
348 | + position: absolute; | |
349 | + z-index: 10000; | |
350 | + height: 32px; | |
351 | + | |
352 | + min-width: 16px; | |
353 | + padding: 0px 6px 0px 6px; | |
354 | + margin: 4px 2px 4px 2px; | |
355 | + color: hsl(0,0%,85%); | |
356 | + font-size: 12px; | |
357 | + line-height: 14px; | |
358 | + text-align: left; | |
359 | + cursor: default; | |
360 | +} | |
361 | + | |
362 | +html[dir='ltr'] .findbar { | |
363 | + left: 68px; | |
364 | +} | |
365 | + | |
366 | +html[dir='rtl'] .findbar { | |
367 | + right: 68px; | |
368 | +} | |
369 | + | |
370 | +.findbar label { | |
371 | + -webkit-user-select: none; | |
372 | + -moz-user-select: none; | |
373 | +} | |
374 | + | |
375 | +#findInput[data-status="pending"] { | |
376 | + background-image: url(images/loading-small.png); | |
377 | + background-repeat: no-repeat; | |
378 | + background-position: right; | |
379 | +} | |
380 | +html[dir='rtl'] #findInput[data-status="pending"] { | |
381 | + background-position: left; | |
382 | +} | |
383 | + | |
384 | +.secondaryToolbar { | |
385 | + padding: 6px; | |
386 | + height: auto; | |
387 | + z-index: 30000; | |
388 | +} | |
389 | +html[dir='ltr'] .secondaryToolbar { | |
390 | + right: 4px; | |
391 | +} | |
392 | +html[dir='rtl'] .secondaryToolbar { | |
393 | + left: 4px; | |
394 | +} | |
395 | + | |
396 | +#secondaryToolbarButtonContainer { | |
397 | + max-width: 200px; | |
398 | + max-height: 400px; | |
399 | + overflow-y: auto; | |
400 | + -webkit-overflow-scrolling: touch; | |
401 | + margin-bottom: -4px; | |
402 | +} | |
403 | + | |
404 | +.doorHanger, | |
405 | +.doorHangerRight { | |
406 | + border: 1px solid hsla(0,0%,0%,.5); | |
407 | + border-radius: 2px; | |
408 | + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); | |
409 | +} | |
410 | +.doorHanger:after, .doorHanger:before, | |
411 | +.doorHangerRight:after, .doorHangerRight:before { | |
412 | + bottom: 100%; | |
413 | + border: solid transparent; | |
414 | + content: " "; | |
415 | + height: 0; | |
416 | + width: 0; | |
417 | + position: absolute; | |
418 | + pointer-events: none; | |
419 | +} | |
420 | +.doorHanger:after, | |
421 | +.doorHangerRight:after { | |
422 | + border-bottom-color: hsla(0,0%,32%,.99); | |
423 | + border-width: 8px; | |
424 | +} | |
425 | +.doorHanger:before, | |
426 | +.doorHangerRight:before { | |
427 | + border-bottom-color: hsla(0,0%,0%,.5); | |
428 | + border-width: 9px; | |
429 | +} | |
430 | + | |
431 | +html[dir='ltr'] .doorHanger:after, | |
432 | +html[dir='rtl'] .doorHangerRight:after { | |
433 | + left: 13px; | |
434 | + margin-left: -8px; | |
435 | +} | |
436 | + | |
437 | +html[dir='ltr'] .doorHanger:before, | |
438 | +html[dir='rtl'] .doorHangerRight:before { | |
439 | + left: 13px; | |
440 | + margin-left: -9px; | |
441 | +} | |
442 | + | |
443 | +html[dir='rtl'] .doorHanger:after, | |
444 | +html[dir='ltr'] .doorHangerRight:after { | |
445 | + right: 13px; | |
446 | + margin-right: -8px; | |
447 | +} | |
448 | + | |
449 | +html[dir='rtl'] .doorHanger:before, | |
450 | +html[dir='ltr'] .doorHangerRight:before { | |
451 | + right: 13px; | |
452 | + margin-right: -9px; | |
453 | +} | |
454 | + | |
455 | +#findResultsCount { | |
456 | + background-color: hsl(0, 0%, 85%); | |
457 | + color: hsl(0, 0%, 32%); | |
458 | + text-align: center; | |
459 | + padding: 3px 4px; | |
460 | +} | |
461 | + | |
462 | +#findMsg { | |
463 | + font-style: italic; | |
464 | + color: #A6B7D0; | |
465 | +} | |
466 | + | |
467 | +#findInput.notFound { | |
468 | + background-color: rgb(255, 102, 102); | |
469 | +} | |
470 | + | |
471 | +#toolbarViewerMiddle { | |
472 | + position: absolute; | |
473 | + left: 50%; | |
474 | + transform: translateX(-50%); | |
475 | +} | |
476 | + | |
477 | +html[dir='ltr'] #toolbarViewerLeft, | |
478 | +html[dir='rtl'] #toolbarViewerRight { | |
479 | + float: left; | |
480 | +} | |
481 | +html[dir='ltr'] #toolbarViewerRight, | |
482 | +html[dir='rtl'] #toolbarViewerLeft { | |
483 | + float: right; | |
484 | +} | |
485 | +html[dir='ltr'] #toolbarViewerLeft > *, | |
486 | +html[dir='ltr'] #toolbarViewerMiddle > *, | |
487 | +html[dir='ltr'] #toolbarViewerRight > *, | |
488 | +html[dir='ltr'] .findbar > * { | |
489 | + position: relative; | |
490 | + float: left; | |
491 | +} | |
492 | +html[dir='rtl'] #toolbarViewerLeft > *, | |
493 | +html[dir='rtl'] #toolbarViewerMiddle > *, | |
494 | +html[dir='rtl'] #toolbarViewerRight > *, | |
495 | +html[dir='rtl'] .findbar > * { | |
496 | + position: relative; | |
497 | + float: right; | |
498 | +} | |
499 | + | |
500 | +html[dir='ltr'] .splitToolbarButton { | |
501 | + margin: 3px 2px 4px 0; | |
502 | + display: inline-block; | |
503 | +} | |
504 | +html[dir='rtl'] .splitToolbarButton { | |
505 | + margin: 3px 0 4px 2px; | |
506 | + display: inline-block; | |
507 | +} | |
508 | +html[dir='ltr'] .splitToolbarButton > .toolbarButton { | |
509 | + border-radius: 0; | |
510 | + float: left; | |
511 | +} | |
512 | +html[dir='rtl'] .splitToolbarButton > .toolbarButton { | |
513 | + border-radius: 0; | |
514 | + float: right; | |
515 | +} | |
516 | + | |
517 | +.toolbarButton, | |
518 | +.secondaryToolbarButton, | |
519 | +.overlayButton { | |
520 | + border: 0 none; | |
521 | + background: none; | |
522 | + width: 32px; | |
523 | + height: 25px; | |
524 | +} | |
525 | + | |
526 | +.toolbarButton > span { | |
527 | + display: inline-block; | |
528 | + width: 0; | |
529 | + height: 0; | |
530 | + overflow: hidden; | |
531 | +} | |
532 | + | |
533 | +.toolbarButton[disabled], | |
534 | +.secondaryToolbarButton[disabled], | |
535 | +.overlayButton[disabled] { | |
536 | + opacity: .5; | |
537 | +} | |
538 | + | |
539 | +.toolbarButton.group { | |
540 | + margin-right: 0; | |
541 | +} | |
542 | + | |
543 | +.splitToolbarButton.toggled .toolbarButton { | |
544 | + margin: 0; | |
545 | +} | |
546 | + | |
547 | +.splitToolbarButton:hover > .toolbarButton, | |
548 | +.splitToolbarButton:focus > .toolbarButton, | |
549 | +.splitToolbarButton.toggled > .toolbarButton, | |
550 | +.toolbarButton.textButton { | |
551 | + background-color: hsla(0,0%,0%,.12); | |
552 | + background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); | |
553 | + background-clip: padding-box; | |
554 | + border: 1px solid hsla(0,0%,0%,.35); | |
555 | + border-color: hsla(0,0%,0%,.32) hsla(0,0%,0%,.38) hsla(0,0%,0%,.42); | |
556 | + box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset, | |
557 | + 0 0 1px hsla(0,0%,100%,.15) inset, | |
558 | + 0 1px 0 hsla(0,0%,100%,.05); | |
559 | + -webkit-transition-property: background-color, border-color, box-shadow; | |
560 | + -webkit-transition-duration: 150ms; | |
561 | + -webkit-transition-timing-function: ease; | |
562 | + transition-property: background-color, border-color, box-shadow; | |
563 | + transition-duration: 150ms; | |
564 | + transition-timing-function: ease; | |
565 | + | |
566 | +} | |
567 | +.splitToolbarButton > .toolbarButton:hover, | |
568 | +.splitToolbarButton > .toolbarButton:focus, | |
569 | +.dropdownToolbarButton:hover, | |
570 | +.overlayButton:hover, | |
571 | +.overlayButton:focus, | |
572 | +.toolbarButton.textButton:hover, | |
573 | +.toolbarButton.textButton:focus { | |
574 | + background-color: hsla(0,0%,0%,.2); | |
575 | + box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset, | |
576 | + 0 0 1px hsla(0,0%,100%,.15) inset, | |
577 | + 0 0 1px hsla(0,0%,0%,.05); | |
578 | + z-index: 199; | |
579 | +} | |
580 | +.splitToolbarButton > .toolbarButton { | |
581 | + position: relative; | |
582 | +} | |
583 | +html[dir='ltr'] .splitToolbarButton > .toolbarButton:first-child, | |
584 | +html[dir='rtl'] .splitToolbarButton > .toolbarButton:last-child { | |
585 | + position: relative; | |
586 | + margin: 0; | |
587 | + margin-right: -1px; | |
588 | + border-top-left-radius: 2px; | |
589 | + border-bottom-left-radius: 2px; | |
590 | + border-right-color: transparent; | |
591 | +} | |
592 | +html[dir='ltr'] .splitToolbarButton > .toolbarButton:last-child, | |
593 | +html[dir='rtl'] .splitToolbarButton > .toolbarButton:first-child { | |
594 | + position: relative; | |
595 | + margin: 0; | |
596 | + margin-left: -1px; | |
597 | + border-top-right-radius: 2px; | |
598 | + border-bottom-right-radius: 2px; | |
599 | + border-left-color: transparent; | |
600 | +} | |
601 | +.splitToolbarButtonSeparator { | |
602 | + padding: 8px 0; | |
603 | + width: 1px; | |
604 | + background-color: hsla(0,0%,0%,.5); | |
605 | + z-index: 99; | |
606 | + box-shadow: 0 0 0 1px hsla(0,0%,100%,.08); | |
607 | + display: inline-block; | |
608 | + margin: 5px 0; | |
609 | +} | |
610 | +html[dir='ltr'] .splitToolbarButtonSeparator { | |
611 | + float: left; | |
612 | +} | |
613 | +html[dir='rtl'] .splitToolbarButtonSeparator { | |
614 | + float: right; | |
615 | +} | |
616 | +.splitToolbarButton:hover > .splitToolbarButtonSeparator, | |
617 | +.splitToolbarButton.toggled > .splitToolbarButtonSeparator { | |
618 | + padding: 12px 0; | |
619 | + margin: 1px 0; | |
620 | + box-shadow: 0 0 0 1px hsla(0,0%,100%,.03); | |
621 | + -webkit-transition-property: padding; | |
622 | + -webkit-transition-duration: 10ms; | |
623 | + -webkit-transition-timing-function: ease; | |
624 | + transition-property: padding; | |
625 | + transition-duration: 10ms; | |
626 | + transition-timing-function: ease; | |
627 | +} | |
628 | + | |
629 | +.toolbarButton, | |
630 | +.dropdownToolbarButton, | |
631 | +.secondaryToolbarButton, | |
632 | +.overlayButton { | |
633 | + min-width: 16px; | |
634 | + padding: 2px 6px 0; | |
635 | + border: 1px solid transparent; | |
636 | + border-radius: 2px; | |
637 | + color: hsla(0,0%,100%,.8); | |
638 | + font-size: 12px; | |
639 | + line-height: 14px; | |
640 | + -webkit-user-select: none; | |
641 | + -moz-user-select: none; | |
642 | + -ms-user-select: none; | |
643 | + /* Opera does not support user-select, use <... unselectable="on"> instead */ | |
644 | + cursor: default; | |
645 | + -webkit-transition-property: background-color, border-color, box-shadow; | |
646 | + -webkit-transition-duration: 150ms; | |
647 | + -webkit-transition-timing-function: ease; | |
648 | + transition-property: background-color, border-color, box-shadow; | |
649 | + transition-duration: 150ms; | |
650 | + transition-timing-function: ease; | |
651 | +} | |
652 | + | |
653 | +html[dir='ltr'] .toolbarButton, | |
654 | +html[dir='ltr'] .overlayButton, | |
655 | +html[dir='ltr'] .dropdownToolbarButton { | |
656 | + margin: 3px 2px 4px 0; | |
657 | +} | |
658 | +html[dir='rtl'] .toolbarButton, | |
659 | +html[dir='rtl'] .overlayButton, | |
660 | +html[dir='rtl'] .dropdownToolbarButton { | |
661 | + margin: 3px 0 4px 2px; | |
662 | +} | |
663 | + | |
664 | +.toolbarButton:hover, | |
665 | +.toolbarButton:focus, | |
666 | +.dropdownToolbarButton, | |
667 | +.overlayButton, | |
668 | +.secondaryToolbarButton:hover, | |
669 | +.secondaryToolbarButton:focus { | |
670 | + background-color: hsla(0,0%,0%,.12); | |
671 | + background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); | |
672 | + background-clip: padding-box; | |
673 | + border: 1px solid hsla(0,0%,0%,.35); | |
674 | + border-color: hsla(0,0%,0%,.32) hsla(0,0%,0%,.38) hsla(0,0%,0%,.42); | |
675 | + box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset, | |
676 | + 0 0 1px hsla(0,0%,100%,.15) inset, | |
677 | + 0 1px 0 hsla(0,0%,100%,.05); | |
678 | +} | |
679 | + | |
680 | +.toolbarButton:hover:active, | |
681 | +.overlayButton:hover:active, | |
682 | +.dropdownToolbarButton:hover:active, | |
683 | +.secondaryToolbarButton:hover:active { | |
684 | + background-color: hsla(0,0%,0%,.2); | |
685 | + background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); | |
686 | + border-color: hsla(0,0%,0%,.35) hsla(0,0%,0%,.4) hsla(0,0%,0%,.45); | |
687 | + box-shadow: 0 1px 1px hsla(0,0%,0%,.1) inset, | |
688 | + 0 0 1px hsla(0,0%,0%,.2) inset, | |
689 | + 0 1px 0 hsla(0,0%,100%,.05); | |
690 | + -webkit-transition-property: background-color, border-color, box-shadow; | |
691 | + -webkit-transition-duration: 10ms; | |
692 | + -webkit-transition-timing-function: linear; | |
693 | + transition-property: background-color, border-color, box-shadow; | |
694 | + transition-duration: 10ms; | |
695 | + transition-timing-function: linear; | |
696 | +} | |
697 | + | |
698 | +.toolbarButton.toggled, | |
699 | +.splitToolbarButton.toggled > .toolbarButton.toggled, | |
700 | +.secondaryToolbarButton.toggled { | |
701 | + background-color: hsla(0,0%,0%,.3); | |
702 | + background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); | |
703 | + border-color: hsla(0,0%,0%,.4) hsla(0,0%,0%,.45) hsla(0,0%,0%,.5); | |
704 | + box-shadow: 0 1px 1px hsla(0,0%,0%,.1) inset, | |
705 | + 0 0 1px hsla(0,0%,0%,.2) inset, | |
706 | + 0 1px 0 hsla(0,0%,100%,.05); | |
707 | + -webkit-transition-property: background-color, border-color, box-shadow; | |
708 | + -webkit-transition-duration: 10ms; | |
709 | + -webkit-transition-timing-function: linear; | |
710 | + transition-property: background-color, border-color, box-shadow; | |
711 | + transition-duration: 10ms; | |
712 | + transition-timing-function: linear; | |
713 | +} | |
714 | + | |
715 | +.toolbarButton.toggled:hover:active, | |
716 | +.splitToolbarButton.toggled > .toolbarButton.toggled:hover:active, | |
717 | +.secondaryToolbarButton.toggled:hover:active { | |
718 | + background-color: hsla(0,0%,0%,.4); | |
719 | + border-color: hsla(0,0%,0%,.4) hsla(0,0%,0%,.5) hsla(0,0%,0%,.55); | |
720 | + box-shadow: 0 1px 1px hsla(0,0%,0%,.2) inset, | |
721 | + 0 0 1px hsla(0,0%,0%,.3) inset, | |
722 | + 0 1px 0 hsla(0,0%,100%,.05); | |
723 | +} | |
724 | + | |
725 | +.dropdownToolbarButton { | |
726 | + width: 120px; | |
727 | + max-width: 120px; | |
728 | + padding: 0; | |
729 | + overflow: hidden; | |
730 | + background: url(images/toolbarButton-menuArrows.png) no-repeat; | |
731 | +} | |
732 | +html[dir='ltr'] .dropdownToolbarButton { | |
733 | + background-position: 95%; | |
734 | +} | |
735 | +html[dir='rtl'] .dropdownToolbarButton { | |
736 | + background-position: 5%; | |
737 | +} | |
738 | + | |
739 | +.dropdownToolbarButton > select { | |
740 | + min-width: 140px; | |
741 | + font-size: 12px; | |
742 | + color: hsl(0,0%,95%); | |
743 | + margin: 0; | |
744 | + padding: 3px 2px 2px; | |
745 | + border: none; | |
746 | + background: rgba(0,0,0,0); /* Opera does not support 'transparent' <select> background */ | |
747 | +} | |
748 | + | |
749 | +.dropdownToolbarButton > select > option { | |
750 | + background: hsl(0,0%,24%); | |
751 | +} | |
752 | + | |
753 | +#customScaleOption { | |
754 | + display: none; | |
755 | +} | |
756 | + | |
757 | +#pageWidthOption { | |
758 | + border-bottom: 1px rgba(255, 255, 255, .5) solid; | |
759 | +} | |
760 | + | |
761 | +html[dir='ltr'] .splitToolbarButton:first-child, | |
762 | +html[dir='ltr'] .toolbarButton:first-child, | |
763 | +html[dir='rtl'] .splitToolbarButton:last-child, | |
764 | +html[dir='rtl'] .toolbarButton:last-child { | |
765 | + margin-left: 4px; | |
766 | +} | |
767 | +html[dir='ltr'] .splitToolbarButton:last-child, | |
768 | +html[dir='ltr'] .toolbarButton:last-child, | |
769 | +html[dir='rtl'] .splitToolbarButton:first-child, | |
770 | +html[dir='rtl'] .toolbarButton:first-child { | |
771 | + margin-right: 4px; | |
772 | +} | |
773 | + | |
774 | +.toolbarButtonSpacer { | |
775 | + width: 30px; | |
776 | + display: inline-block; | |
777 | + height: 1px; | |
778 | +} | |
779 | + | |
780 | +html[dir='ltr'] #findPrevious { | |
781 | + margin-left: 3px; | |
782 | +} | |
783 | +html[dir='ltr'] #findNext { | |
784 | + margin-right: 3px; | |
785 | +} | |
786 | + | |
787 | +html[dir='rtl'] #findPrevious { | |
788 | + margin-right: 3px; | |
789 | +} | |
790 | +html[dir='rtl'] #findNext { | |
791 | + margin-left: 3px; | |
792 | +} | |
793 | + | |
794 | +.toolbarButton::before, | |
795 | +.secondaryToolbarButton::before { | |
796 | + /* All matching images have a size of 16x16 | |
797 | + * All relevant containers have a size of 32x25 */ | |
798 | + position: absolute; | |
799 | + display: inline-block; | |
800 | + top: 4px; | |
801 | + left: 7px; | |
802 | +} | |
803 | + | |
804 | +html[dir="ltr"] .secondaryToolbarButton::before { | |
805 | + left: 4px; | |
806 | +} | |
807 | +html[dir="rtl"] .secondaryToolbarButton::before { | |
808 | + right: 4px; | |
809 | +} | |
810 | + | |
811 | +html[dir='ltr'] .toolbarButton#sidebarToggle::before { | |
812 | + content: url(images/toolbarButton-sidebarToggle.png); | |
813 | +} | |
814 | +html[dir='rtl'] .toolbarButton#sidebarToggle::before { | |
815 | + content: url(images/toolbarButton-sidebarToggle-rtl.png); | |
816 | +} | |
817 | + | |
818 | +html[dir='ltr'] .toolbarButton#secondaryToolbarToggle::before { | |
819 | + content: url(images/toolbarButton-secondaryToolbarToggle.png); | |
820 | +} | |
821 | +html[dir='rtl'] .toolbarButton#secondaryToolbarToggle::before { | |
822 | + content: url(images/toolbarButton-secondaryToolbarToggle-rtl.png); | |
823 | +} | |
824 | + | |
825 | +html[dir='ltr'] .toolbarButton.findPrevious::before { | |
826 | + content: url(images/findbarButton-previous.png); | |
827 | +} | |
828 | +html[dir='rtl'] .toolbarButton.findPrevious::before { | |
829 | + content: url(images/findbarButton-previous-rtl.png); | |
830 | +} | |
831 | + | |
832 | +html[dir='ltr'] .toolbarButton.findNext::before { | |
833 | + content: url(images/findbarButton-next.png); | |
834 | +} | |
835 | +html[dir='rtl'] .toolbarButton.findNext::before { | |
836 | + content: url(images/findbarButton-next-rtl.png); | |
837 | +} | |
838 | + | |
839 | +html[dir='ltr'] .toolbarButton.pageUp::before { | |
840 | + content: url(images/toolbarButton-pageUp.png); | |
841 | +} | |
842 | +html[dir='rtl'] .toolbarButton.pageUp::before { | |
843 | + content: url(images/toolbarButton-pageUp-rtl.png); | |
844 | +} | |
845 | + | |
846 | +html[dir='ltr'] .toolbarButton.pageDown::before { | |
847 | + content: url(images/toolbarButton-pageDown.png); | |
848 | +} | |
849 | +html[dir='rtl'] .toolbarButton.pageDown::before { | |
850 | + content: url(images/toolbarButton-pageDown-rtl.png); | |
851 | +} | |
852 | + | |
853 | +.toolbarButton.zoomOut::before { | |
854 | + content: url(images/toolbarButton-zoomOut.png); | |
855 | +} | |
856 | + | |
857 | +.toolbarButton.zoomIn::before { | |
858 | + content: url(images/toolbarButton-zoomIn.png); | |
859 | +} | |
860 | + | |
861 | +.toolbarButton.presentationMode::before, | |
862 | +.secondaryToolbarButton.presentationMode::before { | |
863 | + content: url(images/toolbarButton-presentationMode.png); | |
864 | +} | |
865 | + | |
866 | +.toolbarButton.print::before, | |
867 | +.secondaryToolbarButton.print::before { | |
868 | + content: url(images/toolbarButton-print.png); | |
869 | +} | |
870 | + | |
871 | +.toolbarButton.openFile::before, | |
872 | +.secondaryToolbarButton.openFile::before { | |
873 | + content: url(images/toolbarButton-openFile.png); | |
874 | +} | |
875 | + | |
876 | +.toolbarButton.download::before, | |
877 | +.secondaryToolbarButton.download::before { | |
878 | + content: url(images/toolbarButton-download.png); | |
879 | +} | |
880 | + | |
881 | +.toolbarButton.bookmark, | |
882 | +.secondaryToolbarButton.bookmark { | |
883 | + -webkit-box-sizing: border-box; | |
884 | + -moz-box-sizing: border-box; | |
885 | + box-sizing: border-box; | |
886 | + outline: none; | |
887 | + padding-top: 4px; | |
888 | + text-decoration: none; | |
889 | +} | |
890 | +.secondaryToolbarButton.bookmark { | |
891 | + padding-top: 5px; | |
892 | +} | |
893 | + | |
894 | +.bookmark[href='#'] { | |
895 | + opacity: .5; | |
896 | + pointer-events: none; | |
897 | +} | |
898 | + | |
899 | +.toolbarButton.bookmark::before, | |
900 | +.secondaryToolbarButton.bookmark::before { | |
901 | + content: url(images/toolbarButton-bookmark.png); | |
902 | +} | |
903 | + | |
904 | +#viewThumbnail.toolbarButton::before { | |
905 | + content: url(images/toolbarButton-viewThumbnail.png); | |
906 | +} | |
907 | + | |
908 | +html[dir="ltr"] #viewOutline.toolbarButton::before { | |
909 | + content: url(images/toolbarButton-viewOutline.png); | |
910 | +} | |
911 | +html[dir="rtl"] #viewOutline.toolbarButton::before { | |
912 | + content: url(images/toolbarButton-viewOutline-rtl.png); | |
913 | +} | |
914 | + | |
915 | +#viewAttachments.toolbarButton::before { | |
916 | + content: url(images/toolbarButton-viewAttachments.png); | |
917 | +} | |
918 | + | |
919 | +#viewFind.toolbarButton::before { | |
920 | + content: url(images/toolbarButton-search.png); | |
921 | +} | |
922 | + | |
923 | +.secondaryToolbarButton { | |
924 | + position: relative; | |
925 | + margin: 0 0 4px 0; | |
926 | + padding: 3px 0 1px 0; | |
927 | + height: auto; | |
928 | + min-height: 25px; | |
929 | + width: auto; | |
930 | + min-width: 100%; | |
931 | + white-space: normal; | |
932 | +} | |
933 | +html[dir="ltr"] .secondaryToolbarButton { | |
934 | + padding-left: 24px; | |
935 | + text-align: left; | |
936 | +} | |
937 | +html[dir="rtl"] .secondaryToolbarButton { | |
938 | + padding-right: 24px; | |
939 | + text-align: right; | |
940 | +} | |
941 | +html[dir="ltr"] .secondaryToolbarButton.bookmark { | |
942 | + padding-left: 27px; | |
943 | +} | |
944 | +html[dir="rtl"] .secondaryToolbarButton.bookmark { | |
945 | + padding-right: 27px; | |
946 | +} | |
947 | + | |
948 | +html[dir="ltr"] .secondaryToolbarButton > span { | |
949 | + padding-right: 4px; | |
950 | +} | |
951 | +html[dir="rtl"] .secondaryToolbarButton > span { | |
952 | + padding-left: 4px; | |
953 | +} | |
954 | + | |
955 | +.secondaryToolbarButton.firstPage::before { | |
956 | + content: url(images/secondaryToolbarButton-firstPage.png); | |
957 | +} | |
958 | + | |
959 | +.secondaryToolbarButton.lastPage::before { | |
960 | + content: url(images/secondaryToolbarButton-lastPage.png); | |
961 | +} | |
962 | + | |
963 | +.secondaryToolbarButton.rotateCcw::before { | |
964 | + content: url(images/secondaryToolbarButton-rotateCcw.png); | |
965 | +} | |
966 | + | |
967 | +.secondaryToolbarButton.rotateCw::before { | |
968 | + content: url(images/secondaryToolbarButton-rotateCw.png); | |
969 | +} | |
970 | + | |
971 | +.secondaryToolbarButton.handTool::before { | |
972 | + content: url(images/secondaryToolbarButton-handTool.png); | |
973 | +} | |
974 | + | |
975 | +.secondaryToolbarButton.documentProperties::before { | |
976 | + content: url(images/secondaryToolbarButton-documentProperties.png); | |
977 | +} | |
978 | + | |
979 | +.verticalToolbarSeparator { | |
980 | + display: block; | |
981 | + padding: 8px 0; | |
982 | + margin: 8px 4px; | |
983 | + width: 1px; | |
984 | + background-color: hsla(0,0%,0%,.5); | |
985 | + box-shadow: 0 0 0 1px hsla(0,0%,100%,.08); | |
986 | +} | |
987 | +html[dir='ltr'] .verticalToolbarSeparator { | |
988 | + margin-left: 2px; | |
989 | +} | |
990 | +html[dir='rtl'] .verticalToolbarSeparator { | |
991 | + margin-right: 2px; | |
992 | +} | |
993 | + | |
994 | +.horizontalToolbarSeparator { | |
995 | + display: block; | |
996 | + margin: 0 0 4px 0; | |
997 | + height: 1px; | |
998 | + width: 100%; | |
999 | + background-color: hsla(0,0%,0%,.5); | |
1000 | + box-shadow: 0 0 0 1px hsla(0,0%,100%,.08); | |
1001 | +} | |
1002 | + | |
1003 | +.toolbarField { | |
1004 | + padding: 3px 6px; | |
1005 | + margin: 4px 0 4px 0; | |
1006 | + border: 1px solid transparent; | |
1007 | + border-radius: 2px; | |
1008 | + background-color: hsla(0,0%,100%,.09); | |
1009 | + background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); | |
1010 | + background-clip: padding-box; | |
1011 | + border: 1px solid hsla(0,0%,0%,.35); | |
1012 | + border-color: hsla(0,0%,0%,.32) hsla(0,0%,0%,.38) hsla(0,0%,0%,.42); | |
1013 | + box-shadow: 0 1px 0 hsla(0,0%,0%,.05) inset, | |
1014 | + 0 1px 0 hsla(0,0%,100%,.05); | |
1015 | + color: hsl(0,0%,95%); | |
1016 | + font-size: 12px; | |
1017 | + line-height: 14px; | |
1018 | + outline-style: none; | |
1019 | + transition-property: background-color, border-color, box-shadow; | |
1020 | + transition-duration: 150ms; | |
1021 | + transition-timing-function: ease; | |
1022 | +} | |
1023 | + | |
1024 | +.toolbarField[type=checkbox] { | |
1025 | + display: inline-block; | |
1026 | + margin: 8px 0px; | |
1027 | +} | |
1028 | + | |
1029 | +.toolbarField.pageNumber { | |
1030 | + -moz-appearance: textfield; /* hides the spinner in moz */ | |
1031 | + min-width: 16px; | |
1032 | + text-align: right; | |
1033 | + width: 40px; | |
1034 | +} | |
1035 | + | |
1036 | +.toolbarField.pageNumber.visiblePageIsLoading { | |
1037 | + background-image: url(images/loading-small.png); | |
1038 | + background-repeat: no-repeat; | |
1039 | + background-position: 1px; | |
1040 | +} | |
1041 | + | |
1042 | +.toolbarField.pageNumber::-webkit-inner-spin-button, | |
1043 | +.toolbarField.pageNumber::-webkit-outer-spin-button { | |
1044 | + -webkit-appearance: none; | |
1045 | + margin: 0; | |
1046 | +} | |
1047 | + | |
1048 | +.toolbarField:hover { | |
1049 | + background-color: hsla(0,0%,100%,.11); | |
1050 | + border-color: hsla(0,0%,0%,.4) hsla(0,0%,0%,.43) hsla(0,0%,0%,.45); | |
1051 | +} | |
1052 | + | |
1053 | +.toolbarField:focus { | |
1054 | + background-color: hsla(0,0%,100%,.15); | |
1055 | + border-color: hsla(204,100%,65%,.8) hsla(204,100%,65%,.85) hsla(204,100%,65%,.9); | |
1056 | +} | |
1057 | + | |
1058 | +.toolbarLabel { | |
1059 | + min-width: 16px; | |
1060 | + padding: 3px 6px 3px 2px; | |
1061 | + margin: 4px 2px 4px 0; | |
1062 | + border: 1px solid transparent; | |
1063 | + border-radius: 2px; | |
1064 | + color: hsl(0,0%,85%); | |
1065 | + font-size: 12px; | |
1066 | + line-height: 14px; | |
1067 | + text-align: left; | |
1068 | + -webkit-user-select: none; | |
1069 | + -moz-user-select: none; | |
1070 | + cursor: default; | |
1071 | +} | |
1072 | + | |
1073 | +#thumbnailView { | |
1074 | + position: absolute; | |
1075 | + width: 120px; | |
1076 | + top: 0; | |
1077 | + bottom: 0; | |
1078 | + padding: 10px 40px 0; | |
1079 | + overflow: auto; | |
1080 | + -webkit-overflow-scrolling: touch; | |
1081 | +} | |
1082 | + | |
1083 | +.thumbnail { | |
1084 | + float: left; | |
1085 | + margin-bottom: 5px; | |
1086 | +} | |
1087 | + | |
1088 | +#thumbnailView > a:last-of-type > .thumbnail { | |
1089 | + margin-bottom: 10px; | |
1090 | +} | |
1091 | + | |
1092 | +#thumbnailView > a:last-of-type > .thumbnail:not([data-loaded]) { | |
1093 | + margin-bottom: 9px; | |
1094 | +} | |
1095 | + | |
1096 | +.thumbnail:not([data-loaded]) { | |
1097 | + border: 1px dashed rgba(255, 255, 255, 0.5); | |
1098 | + margin: -1px -1px 4px -1px; | |
1099 | +} | |
1100 | + | |
1101 | +.thumbnailImage { | |
1102 | + border: 1px solid transparent; | |
1103 | + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3); | |
1104 | + opacity: 0.8; | |
1105 | + z-index: 99; | |
1106 | + background-color: white; | |
1107 | + background-clip: content-box; | |
1108 | +} | |
1109 | + | |
1110 | +.thumbnailSelectionRing { | |
1111 | + border-radius: 2px; | |
1112 | + padding: 7px; | |
1113 | +} | |
1114 | + | |
1115 | +a:focus > .thumbnail > .thumbnailSelectionRing > .thumbnailImage, | |
1116 | +.thumbnail:hover > .thumbnailSelectionRing > .thumbnailImage { | |
1117 | + opacity: .9; | |
1118 | +} | |
1119 | + | |
1120 | +a:focus > .thumbnail > .thumbnailSelectionRing, | |
1121 | +.thumbnail:hover > .thumbnailSelectionRing { | |
1122 | + background-color: hsla(0,0%,100%,.15); | |
1123 | + background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); | |
1124 | + background-clip: padding-box; | |
1125 | + box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset, | |
1126 | + 0 0 1px hsla(0,0%,100%,.2) inset, | |
1127 | + 0 0 1px hsla(0,0%,0%,.2); | |
1128 | + color: hsla(0,0%,100%,.9); | |
1129 | +} | |
1130 | + | |
1131 | +.thumbnail.selected > .thumbnailSelectionRing > .thumbnailImage { | |
1132 | + box-shadow: 0 0 0 1px hsla(0,0%,0%,.5); | |
1133 | + opacity: 1; | |
1134 | +} | |
1135 | + | |
1136 | +.thumbnail.selected > .thumbnailSelectionRing { | |
1137 | + background-color: hsla(0,0%,100%,.3); | |
1138 | + background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); | |
1139 | + background-clip: padding-box; | |
1140 | + box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset, | |
1141 | + 0 0 1px hsla(0,0%,100%,.1) inset, | |
1142 | + 0 0 1px hsla(0,0%,0%,.2); | |
1143 | + color: hsla(0,0%,100%,1); | |
1144 | +} | |
1145 | + | |
1146 | +#outlineView, | |
1147 | +#attachmentsView { | |
1148 | + position: absolute; | |
1149 | + width: 192px; | |
1150 | + top: 0; | |
1151 | + bottom: 0; | |
1152 | + overflow: auto; | |
1153 | + -webkit-overflow-scrolling: touch; | |
1154 | + -webkit-user-select: none; | |
1155 | + -moz-user-select: none; | |
1156 | +} | |
1157 | + | |
1158 | +#outlineView { | |
1159 | + padding: 4px 4px 0; | |
1160 | +} | |
1161 | +#attachmentsView { | |
1162 | + padding: 3px 4px 0; | |
1163 | +} | |
1164 | + | |
1165 | +html[dir='ltr'] .outlineWithDeepNesting > .outlineItem, | |
1166 | +html[dir='ltr'] .outlineItem > .outlineItems { | |
1167 | + margin-left: 20px; | |
1168 | +} | |
1169 | + | |
1170 | +html[dir='rtl'] .outlineWithDeepNesting > .outlineItem, | |
1171 | +html[dir='rtl'] .outlineItem > .outlineItems { | |
1172 | + margin-right: 20px; | |
1173 | +} | |
1174 | + | |
1175 | +.outlineItem > a, | |
1176 | +.attachmentsItem > button { | |
1177 | + text-decoration: none; | |
1178 | + display: inline-block; | |
1179 | + min-width: 95%; | |
1180 | + min-width: calc(100% - 4px); /* Subtract the right padding (left, in RTL mode) | |
1181 | + of the container. */ | |
1182 | + height: auto; | |
1183 | + margin-bottom: 1px; | |
1184 | + border-radius: 2px; | |
1185 | + color: hsla(0,0%,100%,.8); | |
1186 | + font-size: 13px; | |
1187 | + line-height: 15px; | |
1188 | + -moz-user-select: none; | |
1189 | + white-space: normal; | |
1190 | +} | |
1191 | + | |
1192 | +.attachmentsItem > button { | |
1193 | + border: 0 none; | |
1194 | + background: none; | |
1195 | + cursor: pointer; | |
1196 | + width: 100%; | |
1197 | +} | |
1198 | + | |
1199 | +html[dir='ltr'] .outlineItem > a { | |
1200 | + padding: 2px 0 5px 4px; | |
1201 | +} | |
1202 | +html[dir='ltr'] .attachmentsItem > button { | |
1203 | + padding: 2px 0 3px 7px; | |
1204 | + text-align: left; | |
1205 | +} | |
1206 | + | |
1207 | +html[dir='rtl'] .outlineItem > a { | |
1208 | + padding: 2px 4px 5px 0; | |
1209 | +} | |
1210 | +html[dir='rtl'] .attachmentsItem > button { | |
1211 | + padding: 2px 7px 3px 0; | |
1212 | + text-align: right; | |
1213 | +} | |
1214 | + | |
1215 | +.outlineItemToggler { | |
1216 | + position: relative; | |
1217 | + height: 0; | |
1218 | + width: 0; | |
1219 | + color: hsla(0,0%,100%,.5); | |
1220 | +} | |
1221 | +.outlineItemToggler::before { | |
1222 | + content: url(images/treeitem-expanded.png); | |
1223 | + display: inline-block; | |
1224 | + position: absolute; | |
1225 | +} | |
1226 | +html[dir='ltr'] .outlineItemToggler.outlineItemsHidden::before { | |
1227 | + content: url(images/treeitem-collapsed.png); | |
1228 | +} | |
1229 | +html[dir='rtl'] .outlineItemToggler.outlineItemsHidden::before { | |
1230 | + content: url(images/treeitem-collapsed-rtl.png); | |
1231 | +} | |
1232 | +.outlineItemToggler.outlineItemsHidden ~ .outlineItems { | |
1233 | + display: none; | |
1234 | +} | |
1235 | +html[dir='ltr'] .outlineItemToggler { | |
1236 | + float: left; | |
1237 | +} | |
1238 | +html[dir='rtl'] .outlineItemToggler { | |
1239 | + float: right; | |
1240 | +} | |
1241 | +html[dir='ltr'] .outlineItemToggler::before { | |
1242 | + right: 4px; | |
1243 | +} | |
1244 | +html[dir='rtl'] .outlineItemToggler::before { | |
1245 | + left: 4px; | |
1246 | +} | |
1247 | + | |
1248 | +.outlineItemToggler:hover, | |
1249 | +.outlineItemToggler:hover + a, | |
1250 | +.outlineItemToggler:hover ~ .outlineItems, | |
1251 | +.outlineItem > a:hover, | |
1252 | +.attachmentsItem > button:hover { | |
1253 | + background-color: hsla(0,0%,100%,.02); | |
1254 | + background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); | |
1255 | + background-clip: padding-box; | |
1256 | + box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset, | |
1257 | + 0 0 1px hsla(0,0%,100%,.2) inset, | |
1258 | + 0 0 1px hsla(0,0%,0%,.2); | |
1259 | + border-radius: 2px; | |
1260 | + color: hsla(0,0%,100%,.9); | |
1261 | +} | |
1262 | + | |
1263 | +.outlineItem.selected { | |
1264 | + background-color: hsla(0,0%,100%,.08); | |
1265 | + background-image: linear-gradient(hsla(0,0%,100%,.05), hsla(0,0%,100%,0)); | |
1266 | + background-clip: padding-box; | |
1267 | + box-shadow: 0 1px 0 hsla(0,0%,100%,.05) inset, | |
1268 | + 0 0 1px hsla(0,0%,100%,.1) inset, | |
1269 | + 0 0 1px hsla(0,0%,0%,.2); | |
1270 | + color: hsla(0,0%,100%,1); | |
1271 | +} | |
1272 | + | |
1273 | +.noResults { | |
1274 | + font-size: 12px; | |
1275 | + color: hsla(0,0%,100%,.8); | |
1276 | + font-style: italic; | |
1277 | + cursor: default; | |
1278 | +} | |
1279 | + | |
1280 | +/* TODO: file FF bug to support ::-moz-selection:window-inactive | |
1281 | + so we can override the opaque grey background when the window is inactive; | |
1282 | + see https://bugzilla.mozilla.org/show_bug.cgi?id=706209 */ | |
1283 | +::selection { background: rgba(0,0,255,0.3); } | |
1284 | +::-moz-selection { background: rgba(0,0,255,0.3); } | |
1285 | + | |
1286 | +#errorWrapper { | |
1287 | + background: none repeat scroll 0 0 #FF5555; | |
1288 | + color: white; | |
1289 | + left: 0; | |
1290 | + position: absolute; | |
1291 | + right: 0; | |
1292 | + z-index: 1000; | |
1293 | + padding: 3px; | |
1294 | + font-size: 0.8em; | |
1295 | +} | |
1296 | +.loadingInProgress #errorWrapper { | |
1297 | + top: 37px; | |
1298 | +} | |
1299 | + | |
1300 | +#errorMessageLeft { | |
1301 | + float: left; | |
1302 | +} | |
1303 | + | |
1304 | +#errorMessageRight { | |
1305 | + float: right; | |
1306 | +} | |
1307 | + | |
1308 | +#errorMoreInfo { | |
1309 | + background-color: #FFFFFF; | |
1310 | + color: black; | |
1311 | + padding: 3px; | |
1312 | + margin: 3px; | |
1313 | + width: 98%; | |
1314 | +} | |
1315 | + | |
1316 | +.overlayButton { | |
1317 | + width: auto; | |
1318 | + margin: 3px 4px 2px 4px !important; | |
1319 | + padding: 2px 6px 3px 6px; | |
1320 | +} | |
1321 | + | |
1322 | +#overlayContainer { | |
1323 | + display: table; | |
1324 | + position: absolute; | |
1325 | + width: 100%; | |
1326 | + height: 100%; | |
1327 | + background-color: hsla(0,0%,0%,.2); | |
1328 | + z-index: 40000; | |
1329 | +} | |
1330 | +#overlayContainer > * { | |
1331 | + overflow: auto; | |
1332 | + -webkit-overflow-scrolling: touch; | |
1333 | +} | |
1334 | + | |
1335 | +#overlayContainer > .container { | |
1336 | + display: table-cell; | |
1337 | + vertical-align: middle; | |
1338 | + text-align: center; | |
1339 | +} | |
1340 | + | |
1341 | +#overlayContainer > .container > .dialog { | |
1342 | + display: inline-block; | |
1343 | + padding: 15px; | |
1344 | + border-spacing: 4px; | |
1345 | + color: hsl(0,0%,85%); | |
1346 | + font-size: 12px; | |
1347 | + line-height: 14px; | |
1348 | + background-color: #474747; /* fallback */ | |
1349 | + background-image: url(images/texture.png), | |
1350 | + linear-gradient(hsla(0,0%,32%,.99), hsla(0,0%,27%,.95)); | |
1351 | + box-shadow: inset 1px 0 0 hsla(0,0%,100%,.08), | |
1352 | + inset 0 1px 1px hsla(0,0%,0%,.15), | |
1353 | + inset 0 -1px 0 hsla(0,0%,100%,.05), | |
1354 | + 0 1px 0 hsla(0,0%,0%,.15), | |
1355 | + 0 1px 1px hsla(0,0%,0%,.1); | |
1356 | + border: 1px solid hsla(0,0%,0%,.5); | |
1357 | + border-radius: 4px; | |
1358 | + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); | |
1359 | +} | |
1360 | + | |
1361 | +.dialog > .row { | |
1362 | + display: table-row; | |
1363 | +} | |
1364 | + | |
1365 | +.dialog > .row > * { | |
1366 | + display: table-cell; | |
1367 | +} | |
1368 | + | |
1369 | +.dialog .toolbarField { | |
1370 | + margin: 5px 0; | |
1371 | +} | |
1372 | + | |
1373 | +.dialog .separator { | |
1374 | + display: block; | |
1375 | + margin: 4px 0 4px 0; | |
1376 | + height: 1px; | |
1377 | + width: 100%; | |
1378 | + background-color: hsla(0,0%,0%,.5); | |
1379 | + box-shadow: 0 0 0 1px hsla(0,0%,100%,.08); | |
1380 | +} | |
1381 | + | |
1382 | +.dialog .buttonRow { | |
1383 | + text-align: center; | |
1384 | + vertical-align: middle; | |
1385 | +} | |
1386 | + | |
1387 | +.dialog :link { | |
1388 | + color: white; | |
1389 | +} | |
1390 | + | |
1391 | +#passwordOverlay > .dialog { | |
1392 | + text-align: center; | |
1393 | +} | |
1394 | +#passwordOverlay .toolbarField { | |
1395 | + width: 200px; | |
1396 | +} | |
1397 | + | |
1398 | +#documentPropertiesOverlay > .dialog { | |
1399 | + text-align: left; | |
1400 | +} | |
1401 | +#documentPropertiesOverlay .row > * { | |
1402 | + min-width: 100px; | |
1403 | +} | |
1404 | +html[dir='ltr'] #documentPropertiesOverlay .row > * { | |
1405 | + text-align: left; | |
1406 | +} | |
1407 | +html[dir='rtl'] #documentPropertiesOverlay .row > * { | |
1408 | + text-align: right; | |
1409 | +} | |
1410 | +#documentPropertiesOverlay .row > span { | |
1411 | + width: 125px; | |
1412 | + word-wrap: break-word; | |
1413 | +} | |
1414 | +#documentPropertiesOverlay .row > p { | |
1415 | + max-width: 225px; | |
1416 | + word-wrap: break-word; | |
1417 | +} | |
1418 | +#documentPropertiesOverlay .buttonRow { | |
1419 | + margin-top: 10px; | |
1420 | +} | |
1421 | + | |
1422 | +.clearBoth { | |
1423 | + clear: both; | |
1424 | +} | |
1425 | + | |
1426 | +.fileInput { | |
1427 | + background: white; | |
1428 | + color: black; | |
1429 | + margin-top: 5px; | |
1430 | + visibility: hidden; | |
1431 | + position: fixed; | |
1432 | + right: 0; | |
1433 | + top: 0; | |
1434 | +} | |
1435 | + | |
1436 | +#PDFBug { | |
1437 | + background: none repeat scroll 0 0 white; | |
1438 | + border: 1px solid #666666; | |
1439 | + position: fixed; | |
1440 | + top: 32px; | |
1441 | + right: 0; | |
1442 | + bottom: 0; | |
1443 | + font-size: 10px; | |
1444 | + padding: 0; | |
1445 | + width: 300px; | |
1446 | +} | |
1447 | +#PDFBug .controls { | |
1448 | + background:#EEEEEE; | |
1449 | + border-bottom: 1px solid #666666; | |
1450 | + padding: 3px; | |
1451 | +} | |
1452 | +#PDFBug .panels { | |
1453 | + bottom: 0; | |
1454 | + left: 0; | |
1455 | + overflow: auto; | |
1456 | + -webkit-overflow-scrolling: touch; | |
1457 | + position: absolute; | |
1458 | + right: 0; | |
1459 | + top: 27px; | |
1460 | +} | |
1461 | +#PDFBug button.active { | |
1462 | + font-weight: bold; | |
1463 | +} | |
1464 | +.debuggerShowText { | |
1465 | + background: none repeat scroll 0 0 yellow; | |
1466 | + color: blue; | |
1467 | +} | |
1468 | +.debuggerHideText:hover { | |
1469 | + background: none repeat scroll 0 0 yellow; | |
1470 | +} | |
1471 | +#PDFBug .stats { | |
1472 | + font-family: courier; | |
1473 | + font-size: 10px; | |
1474 | + white-space: pre; | |
1475 | +} | |
1476 | +#PDFBug .stats .title { | |
1477 | + font-weight: bold; | |
1478 | +} | |
1479 | +#PDFBug table { | |
1480 | + font-size: 10px; | |
1481 | +} | |
1482 | + | |
1483 | +#viewer.textLayer-visible .textLayer { | |
1484 | + opacity: 1.0; | |
1485 | +} | |
1486 | + | |
1487 | +#viewer.textLayer-visible .canvasWrapper { | |
1488 | + background-color: rgb(128,255,128); | |
1489 | +} | |
1490 | + | |
1491 | +#viewer.textLayer-visible .canvasWrapper canvas { | |
1492 | + mix-blend-mode: screen; | |
1493 | +} | |
1494 | + | |
1495 | +#viewer.textLayer-visible .textLayer > div { | |
1496 | + background-color: rgba(255, 255, 0, 0.1); | |
1497 | + color: black; | |
1498 | + border: solid 1px rgba(255, 0, 0, 0.5); | |
1499 | + -webkit-box-sizing: border-box; | |
1500 | + -moz-box-sizing: border-box; | |
1501 | + box-sizing: border-box; | |
1502 | +} | |
1503 | + | |
1504 | +#viewer.textLayer-hover .textLayer > div:hover { | |
1505 | + background-color: white; | |
1506 | + color: black; | |
1507 | +} | |
1508 | + | |
1509 | +#viewer.textLayer-shadow .textLayer > div { | |
1510 | + background-color: rgba(255,255,255, .6); | |
1511 | + color: black; | |
1512 | +} | |
1513 | + | |
1514 | +.grab-to-pan-grab { | |
1515 | + cursor: url("images/grab.cur"), move !important; | |
1516 | + cursor: -webkit-grab !important; | |
1517 | + cursor: -moz-grab !important; | |
1518 | + cursor: grab !important; | |
1519 | +} | |
1520 | +.grab-to-pan-grab *:not(input):not(textarea):not(button):not(select):not(:link) { | |
1521 | + cursor: inherit !important; | |
1522 | +} | |
1523 | +.grab-to-pan-grab:active, | |
1524 | +.grab-to-pan-grabbing { | |
1525 | + cursor: url("images/grabbing.cur"), move !important; | |
1526 | + cursor: -webkit-grabbing !important; | |
1527 | + cursor: -moz-grabbing !important; | |
1528 | + cursor: grabbing !important; | |
1529 | + | |
1530 | + position: fixed; | |
1531 | + background: transparent; | |
1532 | + display: block; | |
1533 | + top: 0; | |
1534 | + left: 0; | |
1535 | + right: 0; | |
1536 | + bottom: 0; | |
1537 | + overflow: hidden; | |
1538 | + z-index: 50000; /* should be higher than anything else in PDF.js! */ | |
1539 | +} | |
1540 | + | |
1541 | +@page { | |
1542 | + margin: 0; | |
1543 | +} | |
1544 | + | |
1545 | +#printContainer { | |
1546 | + display: none; | |
1547 | +} | |
1548 | + | |
1549 | +@media screen and (min-resolution: 2dppx) { | |
1550 | + /* Rules for Retina screens */ | |
1551 | + .toolbarButton::before { | |
1552 | + -webkit-transform: scale(0.5); | |
1553 | + transform: scale(0.5); | |
1554 | + top: -5px; | |
1555 | + } | |
1556 | + | |
1557 | + .secondaryToolbarButton::before { | |
1558 | + -webkit-transform: scale(0.5); | |
1559 | + transform: scale(0.5); | |
1560 | + top: -4px; | |
1561 | + } | |
1562 | + | |
1563 | + html[dir='ltr'] .toolbarButton::before, | |
1564 | + html[dir='rtl'] .toolbarButton::before { | |
1565 | + left: -1px; | |
1566 | + } | |
1567 | + | |
1568 | + html[dir='ltr'] .secondaryToolbarButton::before { | |
1569 | + left: -2px; | |
1570 | + } | |
1571 | + html[dir='rtl'] .secondaryToolbarButton::before { | |
1572 | + left: 186px; | |
1573 | + } | |
1574 | + | |
1575 | + .toolbarField.pageNumber.visiblePageIsLoading, | |
1576 | + #findInput[data-status="pending"] { | |
1577 | + background-image: url(images/loading-small@2x.png); | |
1578 | + background-size: 16px 17px; | |
1579 | + } | |
1580 | + | |
1581 | + .dropdownToolbarButton { | |
1582 | + background: url(images/toolbarButton-menuArrows@2x.png) no-repeat; | |
1583 | + background-size: 7px 16px; | |
1584 | + } | |
1585 | + | |
1586 | + html[dir='ltr'] .toolbarButton#sidebarToggle::before { | |
1587 | + content: url(images/toolbarButton-sidebarToggle@2x.png); | |
1588 | + } | |
1589 | + html[dir='rtl'] .toolbarButton#sidebarToggle::before { | |
1590 | + content: url(images/toolbarButton-sidebarToggle-rtl@2x.png); | |
1591 | + } | |
1592 | + | |
1593 | + html[dir='ltr'] .toolbarButton#secondaryToolbarToggle::before { | |
1594 | + content: url(images/toolbarButton-secondaryToolbarToggle@2x.png); | |
1595 | + } | |
1596 | + html[dir='rtl'] .toolbarButton#secondaryToolbarToggle::before { | |
1597 | + content: url(images/toolbarButton-secondaryToolbarToggle-rtl@2x.png); | |
1598 | + } | |
1599 | + | |
1600 | + html[dir='ltr'] .toolbarButton.findPrevious::before { | |
1601 | + content: url(images/findbarButton-previous@2x.png); | |
1602 | + } | |
1603 | + html[dir='rtl'] .toolbarButton.findPrevious::before { | |
1604 | + content: url(images/findbarButton-previous-rtl@2x.png); | |
1605 | + } | |
1606 | + | |
1607 | + html[dir='ltr'] .toolbarButton.findNext::before { | |
1608 | + content: url(images/findbarButton-next@2x.png); | |
1609 | + } | |
1610 | + html[dir='rtl'] .toolbarButton.findNext::before { | |
1611 | + content: url(images/findbarButton-next-rtl@2x.png); | |
1612 | + } | |
1613 | + | |
1614 | + html[dir='ltr'] .toolbarButton.pageUp::before { | |
1615 | + content: url(images/toolbarButton-pageUp@2x.png); | |
1616 | + } | |
1617 | + html[dir='rtl'] .toolbarButton.pageUp::before { | |
1618 | + content: url(images/toolbarButton-pageUp-rtl@2x.png); | |
1619 | + } | |
1620 | + | |
1621 | + html[dir='ltr'] .toolbarButton.pageDown::before { | |
1622 | + content: url(images/toolbarButton-pageDown@2x.png); | |
1623 | + } | |
1624 | + html[dir='rtl'] .toolbarButton.pageDown::before { | |
1625 | + content: url(images/toolbarButton-pageDown-rtl@2x.png); | |
1626 | + } | |
1627 | + | |
1628 | + .toolbarButton.zoomIn::before { | |
1629 | + content: url(images/toolbarButton-zoomIn@2x.png); | |
1630 | + } | |
1631 | + | |
1632 | + .toolbarButton.zoomOut::before { | |
1633 | + content: url(images/toolbarButton-zoomOut@2x.png); | |
1634 | + } | |
1635 | + | |
1636 | + .toolbarButton.presentationMode::before, | |
1637 | + .secondaryToolbarButton.presentationMode::before { | |
1638 | + content: url(images/toolbarButton-presentationMode@2x.png); | |
1639 | + } | |
1640 | + | |
1641 | + .toolbarButton.print::before, | |
1642 | + .secondaryToolbarButton.print::before { | |
1643 | + content: url(images/toolbarButton-print@2x.png); | |
1644 | + } | |
1645 | + | |
1646 | + .toolbarButton.openFile::before, | |
1647 | + .secondaryToolbarButton.openFile::before { | |
1648 | + content: url(images/toolbarButton-openFile@2x.png); | |
1649 | + } | |
1650 | + | |
1651 | + .toolbarButton.download::before, | |
1652 | + .secondaryToolbarButton.download::before { | |
1653 | + content: url(images/toolbarButton-download@2x.png); | |
1654 | + } | |
1655 | + | |
1656 | + .toolbarButton.bookmark::before, | |
1657 | + .secondaryToolbarButton.bookmark::before { | |
1658 | + content: url(images/toolbarButton-bookmark@2x.png); | |
1659 | + } | |
1660 | + | |
1661 | + #viewThumbnail.toolbarButton::before { | |
1662 | + content: url(images/toolbarButton-viewThumbnail@2x.png); | |
1663 | + } | |
1664 | + | |
1665 | + html[dir="ltr"] #viewOutline.toolbarButton::before { | |
1666 | + content: url(images/toolbarButton-viewOutline@2x.png); | |
1667 | + } | |
1668 | + html[dir="rtl"] #viewOutline.toolbarButton::before { | |
1669 | + content: url(images/toolbarButton-viewOutline-rtl@2x.png); | |
1670 | + } | |
1671 | + | |
1672 | + #viewAttachments.toolbarButton::before { | |
1673 | + content: url(images/toolbarButton-viewAttachments@2x.png); | |
1674 | + } | |
1675 | + | |
1676 | + #viewFind.toolbarButton::before { | |
1677 | + content: url(images/toolbarButton-search@2x.png); | |
1678 | + } | |
1679 | + | |
1680 | + .secondaryToolbarButton.firstPage::before { | |
1681 | + content: url(images/secondaryToolbarButton-firstPage@2x.png); | |
1682 | + } | |
1683 | + | |
1684 | + .secondaryToolbarButton.lastPage::before { | |
1685 | + content: url(images/secondaryToolbarButton-lastPage@2x.png); | |
1686 | + } | |
1687 | + | |
1688 | + .secondaryToolbarButton.rotateCcw::before { | |
1689 | + content: url(images/secondaryToolbarButton-rotateCcw@2x.png); | |
1690 | + } | |
1691 | + | |
1692 | + .secondaryToolbarButton.rotateCw::before { | |
1693 | + content: url(images/secondaryToolbarButton-rotateCw@2x.png); | |
1694 | + } | |
1695 | + | |
1696 | + .secondaryToolbarButton.handTool::before { | |
1697 | + content: url(images/secondaryToolbarButton-handTool@2x.png); | |
1698 | + } | |
1699 | + | |
1700 | + .secondaryToolbarButton.documentProperties::before { | |
1701 | + content: url(images/secondaryToolbarButton-documentProperties@2x.png); | |
1702 | + } | |
1703 | + | |
1704 | + .outlineItemToggler::before { | |
1705 | + -webkit-transform: scale(0.5); | |
1706 | + transform: scale(0.5); | |
1707 | + top: -1px; | |
1708 | + content: url(images/treeitem-expanded@2x.png); | |
1709 | + } | |
1710 | + html[dir='ltr'] .outlineItemToggler.outlineItemsHidden::before { | |
1711 | + content: url(images/treeitem-collapsed@2x.png); | |
1712 | + } | |
1713 | + html[dir='rtl'] .outlineItemToggler.outlineItemsHidden::before { | |
1714 | + content: url(images/treeitem-collapsed-rtl@2x.png); | |
1715 | + } | |
1716 | + html[dir='ltr'] .outlineItemToggler::before { | |
1717 | + right: 0; | |
1718 | + } | |
1719 | + html[dir='rtl'] .outlineItemToggler::before { | |
1720 | + left: 0; | |
1721 | + } | |
1722 | +} | |
1723 | + | |
1724 | +@media print { | |
1725 | + /* General rules for printing. */ | |
1726 | + body { | |
1727 | + background: transparent none; | |
1728 | + } | |
1729 | + | |
1730 | + /* Rules for browsers that don't support mozPrintCallback. */ | |
1731 | + #sidebarContainer, #secondaryToolbar, .toolbar, #loadingBox, #errorWrapper, .textLayer { | |
1732 | + display: none; | |
1733 | + } | |
1734 | + #viewerContainer { | |
1735 | + overflow: visible; | |
1736 | + } | |
1737 | + | |
1738 | + #mainContainer, #viewerContainer, .page, .page canvas { | |
1739 | + position: static; | |
1740 | + padding: 0; | |
1741 | + margin: 0; | |
1742 | + } | |
1743 | + | |
1744 | + .page { | |
1745 | + float: left; | |
1746 | + display: none; | |
1747 | + border: none; | |
1748 | + box-shadow: none; | |
1749 | + background-clip: content-box; | |
1750 | + background-color: white; | |
1751 | + } | |
1752 | + | |
1753 | + .page[data-loaded] { | |
1754 | + display: block; | |
1755 | + } | |
1756 | + | |
1757 | + .fileInput { | |
1758 | + display: none; | |
1759 | + } | |
1760 | + | |
1761 | + /* Rules for browsers that support PDF.js printing */ | |
1762 | + body[data-pdfjsprinting] #outerContainer { | |
1763 | + display: none; | |
1764 | + } | |
1765 | + body[data-pdfjsprinting] #printContainer { | |
1766 | + display: block; | |
1767 | + } | |
1768 | + #printContainer { | |
1769 | + height: 100%; | |
1770 | + } | |
1771 | + /* wrapper around (scaled) print canvas elements */ | |
1772 | + #printContainer > div { | |
1773 | + position: relative; | |
1774 | + top: 0; | |
1775 | + left: 0; | |
1776 | + width: 1px; | |
1777 | + height: 1px; | |
1778 | + overflow: visible; | |
1779 | + page-break-after: always; | |
1780 | + page-break-inside: avoid; | |
1781 | + } | |
1782 | + #printContainer canvas, | |
1783 | + #printContainer img { | |
1784 | + display: block; | |
1785 | + } | |
1786 | +} | |
1787 | + | |
1788 | +.visibleLargeView, | |
1789 | +.visibleMediumView, | |
1790 | +.visibleSmallView { | |
1791 | + display: none; | |
1792 | +} | |
1793 | + | |
1794 | +@media all and (max-width: 1040px) { | |
1795 | + #outerContainer.sidebarMoving #toolbarViewerMiddle, | |
1796 | + #outerContainer.sidebarOpen #toolbarViewerMiddle { | |
1797 | + display: table; | |
1798 | + margin: auto; | |
1799 | + left: auto; | |
1800 | + position: inherit; | |
1801 | + transform: none; | |
1802 | + } | |
1803 | +} | |
1804 | + | |
1805 | +@media all and (max-width: 980px) { | |
1806 | + .sidebarMoving .hiddenLargeView, | |
1807 | + .sidebarOpen .hiddenLargeView { | |
1808 | + display: none; | |
1809 | + } | |
1810 | + .sidebarMoving .visibleLargeView, | |
1811 | + .sidebarOpen .visibleLargeView { | |
1812 | + display: inherit; | |
1813 | + } | |
1814 | +} | |
1815 | + | |
1816 | +@media all and (max-width: 900px) { | |
1817 | + #toolbarViewerMiddle { | |
1818 | + display: table; | |
1819 | + margin: auto; | |
1820 | + left: auto; | |
1821 | + position: inherit; | |
1822 | + transform: none; | |
1823 | + } | |
1824 | + .sidebarMoving .hiddenMediumView, | |
1825 | + .sidebarOpen .hiddenMediumView { | |
1826 | + display: none; | |
1827 | + } | |
1828 | + .sidebarMoving .visibleMediumView, | |
1829 | + .sidebarOpen .visibleMediumView { | |
1830 | + display: inherit; | |
1831 | + } | |
1832 | +} | |
1833 | + | |
1834 | +@media all and (max-width: 840px) { | |
1835 | + #sidebarContainer { | |
1836 | + top: 32px; | |
1837 | + z-index: 100; | |
1838 | + } | |
1839 | + .loadingInProgress #sidebarContainer { | |
1840 | + top: 37px; | |
1841 | + } | |
1842 | + #sidebarContent { | |
1843 | + top: 32px; | |
1844 | + background-color: hsla(0,0%,0%,.7); | |
1845 | + } | |
1846 | + | |
1847 | + html[dir='ltr'] #outerContainer.sidebarOpen > #mainContainer { | |
1848 | + left: 0px; | |
1849 | + } | |
1850 | + html[dir='rtl'] #outerContainer.sidebarOpen > #mainContainer { | |
1851 | + right: 0px; | |
1852 | + } | |
1853 | + | |
1854 | + #outerContainer .hiddenLargeView, | |
1855 | + #outerContainer .hiddenMediumView { | |
1856 | + display: inherit; | |
1857 | + } | |
1858 | + #outerContainer .visibleLargeView, | |
1859 | + #outerContainer .visibleMediumView { | |
1860 | + display: none; | |
1861 | + } | |
1862 | +} | |
1863 | + | |
1864 | +@media all and (max-width: 770px) { | |
1865 | + #outerContainer .hiddenLargeView { | |
1866 | + display: none; | |
1867 | + } | |
1868 | + #outerContainer .visibleLargeView { | |
1869 | + display: inherit; | |
1870 | + } | |
1871 | +} | |
1872 | + | |
1873 | +@media all and (max-width: 700px) { | |
1874 | + #outerContainer .hiddenMediumView { | |
1875 | + display: none; | |
1876 | + } | |
1877 | + #outerContainer .visibleMediumView { | |
1878 | + display: inherit; | |
1879 | + } | |
1880 | +} | |
1881 | + | |
1882 | +@media all and (max-width: 640px) { | |
1883 | + .hiddenSmallView { | |
1884 | + display: none; | |
1885 | + } | |
1886 | + .visibleSmallView { | |
1887 | + display: inherit; | |
1888 | + } | |
1889 | + .toolbarButtonSpacer { | |
1890 | + width: 0; | |
1891 | + } | |
1892 | +} | |
1893 | + | |
1894 | +@media all and (max-width: 535px) { | |
1895 | + #scaleSelectContainer { | |
1896 | + display: none; | |
1897 | + } | |
1898 | +} | ... | ... |
1 | +.bp-item { | |
2 | + position: absolute; | |
3 | + overflow: hidden; | |
4 | + font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif; | |
5 | + -webkit-tap-highlight-color: rgba(0,0,0,0); | |
6 | + -webkit-user-select: none; | |
7 | + -webkit-touch-callout: none; | |
8 | + -khtml-user-select: none; | |
9 | + -moz-user-select: none; | |
10 | + -ms-user-select: none; | |
11 | + user-select: none; | |
12 | + box-sizing:content-box; | |
13 | +} | |
14 | + | |
15 | +.bp-corner-all { | |
16 | + -moz-border-radius: 4px; | |
17 | + -webkit-border-radius: 4px; | |
18 | + -khtml-border-radius: 4px; | |
19 | + border-radius: 4px; | |
20 | +} | |
21 | + | |
22 | +.bt-item-frame { | |
23 | + border: 1px solid #dddddd; | |
24 | + background: #eeeeee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x; | |
25 | + color: #333333; | |
26 | +} | |
27 | + | |
28 | +.bp-title { | |
29 | + text-overflow: ellipsis; | |
30 | + -o-text-overflow: ellipsis; | |
31 | + white-space: nowrap; | |
32 | + font-size: 14px; | |
33 | + line-height: 16px; | |
34 | + color: white; | |
35 | + padding: 0; | |
36 | +} | |
37 | + | |
38 | +.bp-title-frame { | |
39 | + background: #0000ff; | |
40 | + border-width: 0; | |
41 | + color: white; | |
42 | + padding: 0; | |
43 | +} | |
44 | + | |
45 | +.bp-photo-frame { | |
46 | + border: 1px solid #cccccc; | |
47 | + background: #f6f6f6 url(images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x; | |
48 | + color: #1c94c4; | |
49 | +} | |
50 | + | |
51 | +.bp-description { | |
52 | + font-size: 10px; | |
53 | + line-height: 12px; | |
54 | +} | |
55 | + | |
56 | +.bp-cursor-frame { | |
57 | + border: 2px solid #fbd850; | |
58 | + background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; | |
59 | + color: #eb8f00; | |
60 | +} | |
61 | + | |
62 | +.bp-highlight-frame { | |
63 | + border: 1px solid #fbcb09; | |
64 | + background: #fdf5ce url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x; | |
65 | + color: #c77405; | |
66 | +} | |
67 | + | |
68 | +.bp-highlight-dot-frame { | |
69 | + border: 1px solid #fbcb09; | |
70 | + background: #fdf5ce; | |
71 | + color: #c77405; | |
72 | +} | |
73 | + | |
74 | +.bp-grouptitle-frame { | |
75 | + background: #0000ff; | |
76 | + border-width: 0; | |
77 | + color: white; | |
78 | + padding: 0; | |
79 | +} | |
80 | + | |
81 | +.bp-selectioncheckbox-frame { | |
82 | + font-size: 12px; | |
83 | + line-height: 14px; | |
84 | +} | |
85 | + | |
86 | +.bp-selectioncheckbox { | |
87 | + font-size: 12px; | |
88 | + line-height: 14px; | |
89 | + vertical-align: middle; | |
90 | +} | |
91 | + | |
92 | +.bp-selectiontext { | |
93 | + font-size: 12px; | |
94 | + line-height: 14px; | |
95 | + vertical-align: middle; | |
96 | +} | |
97 | + | |
98 | +.bp-readmore | |
99 | +{ | |
100 | + font-size: 10px; | |
101 | + line-height: 12px; | |
102 | + text-align: right; | |
103 | + text-decoration: none; | |
104 | +} | |
105 | + | |
106 | +.bp-label { | |
107 | + font-size: 10px; | |
108 | + line-height: 12px; | |
109 | + vertical-align: middle; | |
110 | +} | |
111 | + | |
112 | +.bp-connector-label | |
113 | +{ | |
114 | + font-size: 12px; | |
115 | + line-height: 14px; | |
116 | + text-align: center; | |
117 | + text-decoration: none; | |
118 | + vertical-align: middle; | |
119 | + color: black; | |
120 | + font-weight:bold; | |
121 | +} | |
122 | + | |
123 | +.bp-label-annotation | |
124 | +{ | |
125 | + font-size: 16px; | |
126 | + text-align:center; | |
127 | +} | |
128 | + | |
129 | +.bp-badge | |
130 | +{ | |
131 | + -moz-border-radius: 10px; | |
132 | + -webkit-border-radius: 10px; | |
133 | + -khtml-border-radius: 10px; | |
134 | + border-radius: 10px; | |
135 | + font-size: 12px; | |
136 | + line-height: 12px; | |
137 | + text-align: center; | |
138 | + text-decoration: none; | |
139 | + vertical-align: middle; | |
140 | + font-weight: bold; | |
141 | + font-family: Arial; | |
142 | + padding: 4px; | |
143 | + float:left; | |
144 | +} | |
145 | + | |
146 | +.bp-printpreview { | |
147 | + position: absolute; | |
148 | + overflow: hidden; | |
149 | + border-right: 1px; | |
150 | + border-bottom: 1px; | |
151 | + border-right-style:dotted; | |
152 | + border-bottom-style:dotted; | |
153 | + border-right-color:#cccccc; | |
154 | + border-bottom-color:#cccccc; | |
155 | +} | |
\ No newline at end of file | ... | ... |
1 | +{ | |
2 | +"version": 3, | |
3 | +"mappings": "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", | |
4 | +"sources": ["../../scss/vendor/_normalize.scss","../../scss/_bootstrap.scss","../../scss/bootstrap/_normalize.scss","../../scss/bootstrap/_print.scss","../../scss/bootstrap/_glyphicons.scss","../../scss/bootstrap/_scaffolding.scss","../../scss/bootstrap/mixins/_vendor-prefixes.scss","../../scss/bootstrap/_variables.scss","../../scss/bootstrap/mixins/_tab-focus.scss","../../scss/bootstrap/mixins/_image.scss","../../scss/bootstrap/_type.scss","../../scss/bootstrap/mixins/_text-emphasis.scss","../../scss/bootstrap/mixins/_background-variant.scss","../../scss/bootstrap/mixins/_clearfix.scss","../../scss/bootstrap/mixins/_text-overflow.scss","../../scss/bootstrap/_code.scss","../../scss/bootstrap/_grid.scss","../../scss/bootstrap/mixins/_grid.scss","../../scss/bootstrap/mixins/_grid-framework.scss","../../scss/bootstrap/_tables.scss","../../scss/bootstrap/mixins/_table-row.scss","../../scss/bootstrap/_forms.scss","../../scss/bootstrap/mixins/_forms.scss","../../scss/bootstrap/_buttons.scss","../../scss/bootstrap/mixins/_buttons.scss","../../scss/bootstrap/mixins/_opacity.scss","../../scss/bootstrap/_component-animations.scss","../../scss/bootstrap/_dropdowns.scss","../../scss/bootstrap/mixins/_nav-divider.scss","../../scss/bootstrap/mixins/_reset-filter.scss","../../scss/bootstrap/_button-groups.scss","../../scss/bootstrap/mixins/_border-radius.scss","../../scss/bootstrap/_input-groups.scss","../../scss/bootstrap/_navs.scss","../../scss/bootstrap/_navbar.scss","../../scss/bootstrap/mixins/_nav-vertical-align.scss","../../scss/bootstrap/_breadcrumbs.scss","../../scss/bootstrap/_pagination.scss","../../scss/bootstrap/mixins/_pagination.scss","../../scss/bootstrap/_pager.scss","../../scss/bootstrap/_labels.scss","../../scss/bootstrap/mixins/_labels.scss","../../scss/bootstrap/_badges.scss","../../scss/bootstrap/_jumbotron.scss","../../scss/bootstrap/_thumbnails.scss","../../scss/bootstrap/_alerts.scss","../../scss/bootstrap/mixins/_alerts.scss","../../scss/bootstrap/_progress-bars.scss","../../scss/bootstrap/mixins/_gradients.scss","../../scss/bootstrap/mixins/_progress-bar.scss","../../scss/bootstrap/_media.scss","../../scss/bootstrap/_list-group.scss","../../scss/bootstrap/mixins/_list-group.scss","../../scss/bootstrap/_panels.scss","../../scss/bootstrap/mixins/_panels.scss","../../scss/bootstrap/_responsive-embed.scss","../../scss/bootstrap/_wells.scss","../../scss/bootstrap/_close.scss","../../scss/bootstrap/_modals.scss","../../scss/bootstrap/_tooltip.scss","../../scss/bootstrap/mixins/_reset-text.scss","../../scss/bootstrap/_popovers.scss","../../scss/bootstrap/_carousel.scss","../../scss/bootstrap/_utilities.scss","../../scss/bootstrap/mixins/_center-block.scss","../../scss/bootstrap/mixins/_hide-text.scss","../../scss/bootstrap/_responsive-utilities.scss","../../scss/bootstrap/mixins/_responsive-visibility.scss","../../scss/server-side-core.scss"], | |
5 | +"names": [], | |
6 | +"file": "server-side-core.css" | |
7 | +} | |
\ No newline at end of file | ... | ... |
1 | +.medium-toolbar-arrow-under:after { | |
2 | + border-color: #000 transparent transparent transparent; | |
3 | + top: 40px; } | |
4 | + | |
5 | +.medium-toolbar-arrow-over:before { | |
6 | + border-color: transparent transparent #000 transparent; } | |
7 | + | |
8 | +.medium-editor-toolbar { | |
9 | + background-color: #000; | |
10 | + border: none; | |
11 | + border-radius: 50px; } | |
12 | + .medium-editor-toolbar li button { | |
13 | + background-color: transparent; | |
14 | + border: none; | |
15 | + box-sizing: border-box; | |
16 | + color: #ccc; | |
17 | + height: 40px; | |
18 | + min-width: 40px; | |
19 | + padding: 5px 12px; | |
20 | + -webkit-transition: background-color .2s ease-in, color .2s ease-in; | |
21 | + transition: background-color .2s ease-in, color .2s ease-in; } | |
22 | + .medium-editor-toolbar li button:hover { | |
23 | + background-color: #000; | |
24 | + color: #a2d7c7; } | |
25 | + .medium-editor-toolbar li .medium-editor-button-first { | |
26 | + border-bottom-left-radius: 50px; | |
27 | + border-top-left-radius: 50px; | |
28 | + padding-left: 24px; } | |
29 | + .medium-editor-toolbar li .medium-editor-button-last { | |
30 | + border-bottom-right-radius: 50px; | |
31 | + border-right: none; | |
32 | + border-top-right-radius: 50px; | |
33 | + padding-right: 24px; } | |
34 | + .medium-editor-toolbar li .medium-editor-button-active { | |
35 | + background-color: #000; | |
36 | + color: #a2d7c7; } | |
37 | + | |
38 | +.medium-editor-toolbar-form { | |
39 | + background: #000; | |
40 | + border-radius: 50px; | |
41 | + color: #ccc; | |
42 | + overflow: hidden; } | |
43 | + .medium-editor-toolbar-form .medium-editor-toolbar-input { | |
44 | + background: #000; | |
45 | + box-sizing: border-box; | |
46 | + color: #ccc; | |
47 | + height: 40px; | |
48 | + padding-left: 16px; | |
49 | + width: 220px; } | |
50 | + .medium-editor-toolbar-form .medium-editor-toolbar-input::-webkit-input-placeholder { | |
51 | + color: #f8f5f3; | |
52 | + color: rgba(248, 245, 243, 0.8); } | |
53 | + .medium-editor-toolbar-form .medium-editor-toolbar-input:-moz-placeholder { | |
54 | + /* Firefox 18- */ | |
55 | + color: #f8f5f3; | |
56 | + color: rgba(248, 245, 243, 0.8); } | |
57 | + .medium-editor-toolbar-form .medium-editor-toolbar-input::-moz-placeholder { | |
58 | + /* Firefox 19+ */ | |
59 | + color: #f8f5f3; | |
60 | + color: rgba(248, 245, 243, 0.8); } | |
61 | + .medium-editor-toolbar-form .medium-editor-toolbar-input:-ms-input-placeholder { | |
62 | + color: #f8f5f3; | |
63 | + color: rgba(248, 245, 243, 0.8); } | |
64 | + .medium-editor-toolbar-form a { | |
65 | + color: #ccc; | |
66 | + -webkit-transform: translateY(2px); | |
67 | + transform: translateY(2px); } | |
68 | + .medium-editor-toolbar-form .medium-editor-toolbar-close { | |
69 | + margin-right: 16px; } | |
70 | + | |
71 | +.medium-editor-toolbar-anchor-preview { | |
72 | + background: #000; | |
73 | + border-radius: 50px; | |
74 | + padding: 5px 12px; } | |
75 | + | |
76 | +.medium-editor-anchor-preview a { | |
77 | + color: #ccc; | |
78 | + text-decoration: none; } | ... | ... |
1 | +.medium-toolbar-arrow-under:after{border-color:#000 transparent transparent;top:40px}.medium-toolbar-arrow-over:before{border-color:transparent transparent #000}.medium-editor-toolbar{background-color:#000;border:none;border-radius:50px}.medium-editor-toolbar li button{background-color:transparent;border:none;box-sizing:border-box;color:#ccc;height:40px;min-width:40px;padding:5px 12px;-webkit-transition:background-color .2s ease-in,color .2s ease-in;transition:background-color .2s ease-in,color .2s ease-in}.medium-editor-toolbar li .medium-editor-button-active,.medium-editor-toolbar li button:hover{background-color:#000;color:#a2d7c7}.medium-editor-toolbar li .medium-editor-button-first{border-bottom-left-radius:50px;border-top-left-radius:50px;padding-left:24px}.medium-editor-toolbar li .medium-editor-button-last{border-bottom-right-radius:50px;border-right:none;border-top-right-radius:50px;padding-right:24px}.medium-editor-toolbar-form{background:#000;border-radius:50px;color:#ccc;overflow:hidden}.medium-editor-toolbar-form .medium-editor-toolbar-input{background:#000;box-sizing:border-box;color:#ccc;height:40px;padding-left:16px;width:220px}.medium-editor-toolbar-form .medium-editor-toolbar-input::-webkit-input-placeholder{color:#f8f5f3;color:rgba(248,245,243,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input:-moz-placeholder{color:#f8f5f3;color:rgba(248,245,243,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input::-moz-placeholder{color:#f8f5f3;color:rgba(248,245,243,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input:-ms-input-placeholder{color:#f8f5f3;color:rgba(248,245,243,.8)}.medium-editor-toolbar-form a{color:#ccc;-webkit-transform:translateY(2px);transform:translateY(2px)}.medium-editor-toolbar-form .medium-editor-toolbar-close{margin-right:16px}.medium-editor-toolbar-anchor-preview{background:#000;border-radius:50px;padding:5px 12px}.medium-editor-anchor-preview a{color:#ccc;text-decoration:none} | |
\ No newline at end of file | ... | ... |
1 | +.medium-toolbar-arrow-under:after { | |
2 | + border-color: #428bca transparent transparent transparent; | |
3 | + top: 60px; } | |
4 | + | |
5 | +.medium-toolbar-arrow-over:before { | |
6 | + border-color: transparent transparent #428bca transparent; } | |
7 | + | |
8 | +.medium-editor-toolbar { | |
9 | + background-color: #428bca; | |
10 | + border: 1px solid #357ebd; | |
11 | + border-radius: 4px; } | |
12 | + .medium-editor-toolbar li button { | |
13 | + background-color: transparent; | |
14 | + border: none; | |
15 | + border-right: 1px solid #357ebd; | |
16 | + box-sizing: border-box; | |
17 | + color: #fff; | |
18 | + height: 60px; | |
19 | + min-width: 60px; | |
20 | + -webkit-transition: background-color .2s ease-in, color .2s ease-in; | |
21 | + transition: background-color .2s ease-in, color .2s ease-in; } | |
22 | + .medium-editor-toolbar li button:hover { | |
23 | + background-color: #3276b1; | |
24 | + color: #fff; } | |
25 | + .medium-editor-toolbar li .medium-editor-button-first { | |
26 | + border-bottom-left-radius: 4px; | |
27 | + border-top-left-radius: 4px; } | |
28 | + .medium-editor-toolbar li .medium-editor-button-last { | |
29 | + border-bottom-right-radius: 4px; | |
30 | + border-right: none; | |
31 | + border-top-right-radius: 4px; } | |
32 | + .medium-editor-toolbar li .medium-editor-button-active { | |
33 | + background-color: #3276b1; | |
34 | + color: #fff; } | |
35 | + | |
36 | +.medium-editor-toolbar-form { | |
37 | + background: #428bca; | |
38 | + border-radius: 4px; | |
39 | + color: #fff; } | |
40 | + .medium-editor-toolbar-form .medium-editor-toolbar-input { | |
41 | + background: #428bca; | |
42 | + color: #fff; | |
43 | + height: 60px; } | |
44 | + .medium-editor-toolbar-form .medium-editor-toolbar-input::-webkit-input-placeholder { | |
45 | + color: #fff; | |
46 | + color: rgba(255, 255, 255, 0.8); } | |
47 | + .medium-editor-toolbar-form .medium-editor-toolbar-input:-moz-placeholder { | |
48 | + /* Firefox 18- */ | |
49 | + color: #fff; | |
50 | + color: rgba(255, 255, 255, 0.8); } | |
51 | + .medium-editor-toolbar-form .medium-editor-toolbar-input::-moz-placeholder { | |
52 | + /* Firefox 19+ */ | |
53 | + color: #fff; | |
54 | + color: rgba(255, 255, 255, 0.8); } | |
55 | + .medium-editor-toolbar-form .medium-editor-toolbar-input:-ms-input-placeholder { | |
56 | + color: #fff; | |
57 | + color: rgba(255, 255, 255, 0.8); } | |
58 | + .medium-editor-toolbar-form a { | |
59 | + color: #fff; } | |
60 | + | |
61 | +.medium-editor-toolbar-anchor-preview { | |
62 | + background: #428bca; | |
63 | + border-radius: 4px; | |
64 | + color: #fff; } | |
65 | + | |
66 | +.medium-editor-placeholder:after { | |
67 | + color: #357ebd; } | ... | ... |
1 | +.medium-toolbar-arrow-under:after{border-color:#428bca transparent transparent;top:60px}.medium-toolbar-arrow-over:before{border-color:transparent transparent #428bca}.medium-editor-toolbar{background-color:#428bca;border:1px solid #357ebd;border-radius:4px}.medium-editor-toolbar li button{background-color:transparent;border:none;border-right:1px solid #357ebd;box-sizing:border-box;color:#fff;height:60px;min-width:60px;-webkit-transition:background-color .2s ease-in,color .2s ease-in;transition:background-color .2s ease-in,color .2s ease-in}.medium-editor-toolbar li .medium-editor-button-active,.medium-editor-toolbar li button:hover{background-color:#3276b1;color:#fff}.medium-editor-toolbar li .medium-editor-button-first{border-bottom-left-radius:4px;border-top-left-radius:4px}.medium-editor-toolbar li .medium-editor-button-last{border-bottom-right-radius:4px;border-right:none;border-top-right-radius:4px}.medium-editor-toolbar-form{background:#428bca;border-radius:4px;color:#fff}.medium-editor-toolbar-form .medium-editor-toolbar-input{background:#428bca;color:#fff;height:60px}.medium-editor-toolbar-form .medium-editor-toolbar-input::-webkit-input-placeholder{color:#fff;color:rgba(255,255,255,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input:-moz-placeholder{color:#fff;color:rgba(255,255,255,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input::-moz-placeholder{color:#fff;color:rgba(255,255,255,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input:-ms-input-placeholder{color:#fff;color:rgba(255,255,255,.8)}.medium-editor-toolbar-form a{color:#fff}.medium-editor-toolbar-anchor-preview{background:#428bca;border-radius:4px;color:#fff}.medium-editor-placeholder:after{color:#357ebd} | |
\ No newline at end of file | ... | ... |
1 | +.medium-toolbar-arrow-under:after { | |
2 | + border-color: #242424 transparent transparent transparent; | |
3 | + top: auto; } | |
4 | + | |
5 | +.medium-toolbar-arrow-over:before { | |
6 | + border-color: transparent transparent #242424 transparent; | |
7 | + top: -8px; } | |
8 | + | |
9 | +.medium-editor-toolbar { | |
10 | + background-color: #242424; | |
11 | + background: -webkit-linear-gradient(top, #242424, rgba(36, 36, 36, 0.75)); | |
12 | + background: linear-gradient(to bottom, #242424, rgba(36, 36, 36, 0.75)); | |
13 | + border: 1px solid #000; | |
14 | + border-radius: 5px; | |
15 | + box-shadow: 0 0 3px #000; } | |
16 | + .medium-editor-toolbar li button { | |
17 | + background-color: #242424; | |
18 | + background: -webkit-linear-gradient(top, #242424, rgba(36, 36, 36, 0.89)); | |
19 | + background: linear-gradient(to bottom, #242424, rgba(36, 36, 36, 0.89)); | |
20 | + border: 0; | |
21 | + border-right: 1px solid #000; | |
22 | + border-left: 1px solid #333; | |
23 | + border-left: 1px solid rgba(255, 255, 255, 0.1); | |
24 | + box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3); | |
25 | + color: #fff; | |
26 | + height: 50px; | |
27 | + min-width: 50px; | |
28 | + -webkit-transition: background-color .2s ease-in; | |
29 | + transition: background-color .2s ease-in; } | |
30 | + .medium-editor-toolbar li button:hover { | |
31 | + background-color: #000; | |
32 | + color: yellow; } | |
33 | + .medium-editor-toolbar li .medium-editor-button-first { | |
34 | + border-bottom-left-radius: 5px; | |
35 | + border-top-left-radius: 5px; } | |
36 | + .medium-editor-toolbar li .medium-editor-button-last { | |
37 | + border-bottom-right-radius: 5px; | |
38 | + border-top-right-radius: 5px; } | |
39 | + .medium-editor-toolbar li .medium-editor-button-active { | |
40 | + background-color: #000; | |
41 | + background: -webkit-linear-gradient(top, #242424, rgba(0, 0, 0, 0.89)); | |
42 | + background: linear-gradient(to bottom, #242424, rgba(0, 0, 0, 0.89)); | |
43 | + color: #fff; } | |
44 | + | |
45 | +.medium-editor-toolbar-form { | |
46 | + background: #242424; | |
47 | + border-radius: 5px; | |
48 | + color: #999; | |
49 | + padding: 8px; } | |
50 | + .medium-editor-toolbar-form .medium-editor-toolbar-input { | |
51 | + background: #242424; | |
52 | + box-sizing: border-box; | |
53 | + color: #ccc; | |
54 | + height: 50px; } | |
55 | + .medium-editor-toolbar-form a { | |
56 | + color: #fff; } | |
57 | + | |
58 | +.medium-editor-toolbar-anchor-preview { | |
59 | + background: #242424; | |
60 | + border-radius: 5px; | |
61 | + color: #fff; } | |
62 | + | |
63 | +.medium-editor-placeholder:after { | |
64 | + color: #b3b3b1; } | ... | ... |
1 | +.medium-toolbar-arrow-under:after{border-color:#242424 transparent transparent;top:auto}.medium-toolbar-arrow-over:before{border-color:transparent transparent #242424;top:-8px}.medium-editor-toolbar{background-color:#242424;background:-webkit-linear-gradient(top,#242424,rgba(36,36,36,.75));background:linear-gradient(to bottom,#242424,rgba(36,36,36,.75));border:1px solid #000;border-radius:5px;box-shadow:0 0 3px #000}.medium-editor-toolbar li button{background-color:#242424;background:-webkit-linear-gradient(top,#242424,rgba(36,36,36,.89));background:linear-gradient(to bottom,#242424,rgba(36,36,36,.89));border:0;border-right:1px solid #000;border-left:1px solid #333;border-left:1px solid rgba(255,255,255,.1);box-shadow:0 2px 2px rgba(0,0,0,.3);color:#fff;height:50px;min-width:50px;-webkit-transition:background-color .2s ease-in;transition:background-color .2s ease-in}.medium-editor-toolbar li button:hover{background-color:#000;color:#ff0}.medium-editor-toolbar li .medium-editor-button-first{border-bottom-left-radius:5px;border-top-left-radius:5px}.medium-editor-toolbar li .medium-editor-button-last{border-bottom-right-radius:5px;border-top-right-radius:5px}.medium-editor-toolbar li .medium-editor-button-active{background-color:#000;background:-webkit-linear-gradient(top,#242424,rgba(0,0,0,.89));background:linear-gradient(to bottom,#242424,rgba(0,0,0,.89));color:#fff}.medium-editor-toolbar-form{background:#242424;border-radius:5px;color:#999;padding:8px}.medium-editor-toolbar-form .medium-editor-toolbar-input{background:#242424;box-sizing:border-box;color:#ccc;height:50px}.medium-editor-toolbar-form a{color:#fff}.medium-editor-toolbar-anchor-preview{background:#242424;border-radius:5px;color:#fff}.medium-editor-placeholder:after{color:#b3b3b1} | |
\ No newline at end of file | ... | ... |
1 | +.medium-toolbar-arrow-under:after { | |
2 | + top: 60px; | |
3 | + border-color: #57ad68 transparent transparent transparent; } | |
4 | + | |
5 | +.medium-toolbar-arrow-over:before { | |
6 | + top: -8px; | |
7 | + border-color: transparent transparent #57ad68 transparent; } | |
8 | + | |
9 | +.medium-editor-toolbar { | |
10 | + background-color: #57ad68; } | |
11 | + .medium-editor-toolbar li { | |
12 | + padding: 0; } | |
13 | + .medium-editor-toolbar li button { | |
14 | + min-width: 60px; | |
15 | + height: 60px; | |
16 | + border: none; | |
17 | + border-right: 1px solid #9ccea6; | |
18 | + background-color: transparent; | |
19 | + color: #fff; | |
20 | + -webkit-transition: background-color .2s ease-in, color .2s ease-in; | |
21 | + transition: background-color .2s ease-in, color .2s ease-in; } | |
22 | + .medium-editor-toolbar li button:hover { | |
23 | + background-color: #346a3f; | |
24 | + color: #fff; } | |
25 | + .medium-editor-toolbar li .medium-editor-button-active { | |
26 | + background-color: #23482a; | |
27 | + color: #fff; } | |
28 | + .medium-editor-toolbar li .medium-editor-button-last { | |
29 | + border-right: none; } | |
30 | + | |
31 | +.medium-editor-toolbar-form .medium-editor-toolbar-input { | |
32 | + height: 60px; | |
33 | + background: #57ad68; | |
34 | + color: #fff; } | |
35 | + .medium-editor-toolbar-form .medium-editor-toolbar-input::-webkit-input-placeholder { | |
36 | + color: #fff; | |
37 | + color: rgba(255, 255, 255, 0.8); } | |
38 | + .medium-editor-toolbar-form .medium-editor-toolbar-input:-moz-placeholder { | |
39 | + /* Firefox 18- */ | |
40 | + color: #fff; | |
41 | + color: rgba(255, 255, 255, 0.8); } | |
42 | + .medium-editor-toolbar-form .medium-editor-toolbar-input::-moz-placeholder { | |
43 | + /* Firefox 19+ */ | |
44 | + color: #fff; | |
45 | + color: rgba(255, 255, 255, 0.8); } | |
46 | + .medium-editor-toolbar-form .medium-editor-toolbar-input:-ms-input-placeholder { | |
47 | + color: #fff; | |
48 | + color: rgba(255, 255, 255, 0.8); } | |
49 | + | |
50 | +.medium-editor-toolbar-form a { | |
51 | + color: #fff; } | |
52 | + | |
53 | +.medium-editor-toolbar-anchor-preview { | |
54 | + background: #57ad68; | |
55 | + color: #fff; } | |
56 | + | |
57 | +.medium-editor-placeholder:after { | |
58 | + color: #9ccea6; } | ... | ... |
1 | +.medium-toolbar-arrow-under:after{top:60px;border-color:#57ad68 transparent transparent}.medium-toolbar-arrow-over:before{top:-8px;border-color:transparent transparent #57ad68}.medium-editor-toolbar{background-color:#57ad68}.medium-editor-toolbar li{padding:0}.medium-editor-toolbar li button{min-width:60px;height:60px;border:none;border-right:1px solid #9ccea6;background-color:transparent;color:#fff;-webkit-transition:background-color .2s ease-in,color .2s ease-in;transition:background-color .2s ease-in,color .2s ease-in}.medium-editor-toolbar li button:hover{background-color:#346a3f;color:#fff}.medium-editor-toolbar li .medium-editor-button-active{background-color:#23482a;color:#fff}.medium-editor-toolbar li .medium-editor-button-last{border-right:none}.medium-editor-toolbar-form .medium-editor-toolbar-input{height:60px;background:#57ad68;color:#fff}.medium-editor-toolbar-form .medium-editor-toolbar-input::-webkit-input-placeholder{color:#fff;color:rgba(255,255,255,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input:-moz-placeholder{color:#fff;color:rgba(255,255,255,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input::-moz-placeholder{color:#fff;color:rgba(255,255,255,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input:-ms-input-placeholder{color:#fff;color:rgba(255,255,255,.8)}.medium-editor-toolbar-form a{color:#fff}.medium-editor-toolbar-anchor-preview{background:#57ad68;color:#fff}.medium-editor-placeholder:after{color:#9ccea6} | |
\ No newline at end of file | ... | ... |
1 | +.medium-toolbar-arrow-under:after, | |
2 | +.medium-toolbar-arrow-over:before { | |
3 | + display: none; } | |
4 | + | |
5 | +.medium-editor-toolbar { | |
6 | + border: 1px solid #cdd6e0; | |
7 | + background-color: #dee7f0; | |
8 | + background-color: rgba(222, 231, 240, 0.95); | |
9 | + background: -webkit-linear-gradient(bottom, #dee7f0, white); | |
10 | + background: linear-gradient(to top, #dee7f0, white); | |
11 | + border-radius: 2px; | |
12 | + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.45); } | |
13 | + .medium-editor-toolbar li button { | |
14 | + min-width: 50px; | |
15 | + height: 50px; | |
16 | + border: none; | |
17 | + border-right: 1px solid #cdd6e0; | |
18 | + background-color: transparent; | |
19 | + color: #40648a; | |
20 | + -webkit-transition: background-color .2s ease-in, color .2s ease-in; | |
21 | + transition: background-color .2s ease-in, color .2s ease-in; } | |
22 | + .medium-editor-toolbar li button:hover { | |
23 | + background-color: #5c90c7; | |
24 | + background-color: rgba(92, 144, 199, 0.45); | |
25 | + color: #fff; } | |
26 | + .medium-editor-toolbar li .medium-editor-button-first { | |
27 | + border-top-left-radius: 2px; | |
28 | + border-bottom-left-radius: 2px; } | |
29 | + .medium-editor-toolbar li .medium-editor-button-last { | |
30 | + border-top-right-radius: 2px; | |
31 | + border-bottom-right-radius: 2px; } | |
32 | + .medium-editor-toolbar li .medium-editor-button-active { | |
33 | + background-color: #5c90c7; | |
34 | + background-color: rgba(92, 144, 199, 0.45); | |
35 | + color: #000; | |
36 | + background: -webkit-linear-gradient(top, #dee7f0, rgba(0, 0, 0, 0.1)); | |
37 | + background: linear-gradient(to bottom, #dee7f0, rgba(0, 0, 0, 0.1)); } | |
38 | + | |
39 | +.medium-editor-toolbar-form { | |
40 | + background: #dee7f0; | |
41 | + color: #999; | |
42 | + border-radius: 2px; } | |
43 | + .medium-editor-toolbar-form .medium-editor-toolbar-input { | |
44 | + height: 50px; | |
45 | + background: #dee7f0; | |
46 | + color: #40648a; | |
47 | + box-sizing: border-box; } | |
48 | + .medium-editor-toolbar-form a { | |
49 | + color: #40648a; } | |
50 | + | |
51 | +.medium-editor-toolbar-anchor-preview { | |
52 | + background: #dee7f0; | |
53 | + color: #40648a; | |
54 | + border-radius: 2px; } | |
55 | + | |
56 | +.medium-editor-placeholder:after { | |
57 | + color: #cdd6e0; } | ... | ... |
1 | +.medium-toolbar-arrow-over:before,.medium-toolbar-arrow-under:after{display:none}.medium-editor-toolbar{border:1px solid #cdd6e0;background-color:#dee7f0;background-color:rgba(222,231,240,.95);background:-webkit-linear-gradient(bottom,#dee7f0,#fff);background:linear-gradient(to top,#dee7f0,#fff);border-radius:2px;box-shadow:0 2px 6px rgba(0,0,0,.45)}.medium-editor-toolbar li button{min-width:50px;height:50px;border:none;border-right:1px solid #cdd6e0;background-color:transparent;color:#40648a;-webkit-transition:background-color .2s ease-in,color .2s ease-in;transition:background-color .2s ease-in,color .2s ease-in}.medium-editor-toolbar li button:hover{background-color:#5c90c7;background-color:rgba(92,144,199,.45);color:#fff}.medium-editor-toolbar li .medium-editor-button-first{border-top-left-radius:2px;border-bottom-left-radius:2px}.medium-editor-toolbar li .medium-editor-button-last{border-top-right-radius:2px;border-bottom-right-radius:2px}.medium-editor-toolbar li .medium-editor-button-active{background-color:#5c90c7;background-color:rgba(92,144,199,.45);color:#000;background:-webkit-linear-gradient(top,#dee7f0,rgba(0,0,0,.1));background:linear-gradient(to bottom,#dee7f0,rgba(0,0,0,.1))}.medium-editor-toolbar-form{background:#dee7f0;color:#999;border-radius:2px}.medium-editor-toolbar-form .medium-editor-toolbar-input{height:50px;background:#dee7f0;color:#40648a;box-sizing:border-box}.medium-editor-toolbar-form a{color:#40648a}.medium-editor-toolbar-anchor-preview{background:#dee7f0;color:#40648a;border-radius:2px}.medium-editor-placeholder:after{color:#cdd6e0} | |
\ No newline at end of file | ... | ... |
1 | +.medium-toolbar-arrow-under:after, | |
2 | +.medium-toolbar-arrow-over:before { | |
3 | + display: none; } | |
4 | + | |
5 | +.medium-editor-toolbar { | |
6 | + background-color: #fff; | |
7 | + background-color: rgba(255, 255, 255, 0.95); | |
8 | + border-radius: 5px; | |
9 | + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.45); } | |
10 | + .medium-editor-toolbar li button { | |
11 | + min-width: 50px; | |
12 | + height: 50px; | |
13 | + border: none; | |
14 | + border-right: 1px solid #a8a8a8; | |
15 | + background-color: transparent; | |
16 | + color: #889aac; | |
17 | + box-shadow: inset 0 0 3px #f8f8e6; | |
18 | + background: -webkit-linear-gradient(top, #fff, rgba(0, 0, 0, 0.2)); | |
19 | + background: linear-gradient(to bottom, #fff, rgba(0, 0, 0, 0.2)); | |
20 | + text-shadow: 1px 4px 6px #def, 0 0 0 #000, 1px 4px 6px #def; | |
21 | + -webkit-transition: background-color .2s ease-in; | |
22 | + transition: background-color .2s ease-in; } | |
23 | + .medium-editor-toolbar li button:hover { | |
24 | + background-color: #fff; | |
25 | + color: #fff; | |
26 | + color: rgba(0, 0, 0, 0.8); } | |
27 | + .medium-editor-toolbar li .medium-editor-button-first { | |
28 | + border-top-left-radius: 5px; | |
29 | + border-bottom-left-radius: 5px; } | |
30 | + .medium-editor-toolbar li .medium-editor-button-last { | |
31 | + border-top-right-radius: 5px; | |
32 | + border-bottom-right-radius: 5px; } | |
33 | + .medium-editor-toolbar li .medium-editor-button-active { | |
34 | + background-color: #ccc; | |
35 | + color: #000; | |
36 | + color: rgba(0, 0, 0, 0.8); | |
37 | + background: -webkit-linear-gradient(bottom, #fff, rgba(0, 0, 0, 0.1)); | |
38 | + background: linear-gradient(to top, #fff, rgba(0, 0, 0, 0.1)); } | |
39 | + | |
40 | +.medium-editor-toolbar-form { | |
41 | + background: #fff; | |
42 | + color: #999; | |
43 | + border-radius: 5px; } | |
44 | + .medium-editor-toolbar-form .medium-editor-toolbar-input { | |
45 | + margin: 0; | |
46 | + height: 50px; | |
47 | + background: #fff; | |
48 | + color: #a8a8a8; } | |
49 | + .medium-editor-toolbar-form a { | |
50 | + color: #889aac; } | |
51 | + | |
52 | +.medium-editor-toolbar-anchor-preview { | |
53 | + background: #fff; | |
54 | + color: #889aac; | |
55 | + border-radius: 5px; } | |
56 | + | |
57 | +.medium-editor-placeholder:after { | |
58 | + color: #a8a8a8; } | ... | ... |
1 | +.medium-toolbar-arrow-over:before,.medium-toolbar-arrow-under:after{display:none}.medium-editor-toolbar{background-color:#fff;background-color:rgba(255,255,255,.95);border-radius:5px;box-shadow:0 2px 6px rgba(0,0,0,.45)}.medium-editor-toolbar li button{min-width:50px;height:50px;border:none;border-right:1px solid #a8a8a8;background-color:transparent;color:#889aac;box-shadow:inset 0 0 3px #f8f8e6;background:-webkit-linear-gradient(top,#fff,rgba(0,0,0,.2));background:linear-gradient(to bottom,#fff,rgba(0,0,0,.2));text-shadow:1px 4px 6px #def,0 0 0 #000,1px 4px 6px #def;-webkit-transition:background-color .2s ease-in;transition:background-color .2s ease-in}.medium-editor-toolbar li button:hover{background-color:#fff;color:#fff;color:rgba(0,0,0,.8)}.medium-editor-toolbar li .medium-editor-button-first{border-top-left-radius:5px;border-bottom-left-radius:5px}.medium-editor-toolbar li .medium-editor-button-last{border-top-right-radius:5px;border-bottom-right-radius:5px}.medium-editor-toolbar li .medium-editor-button-active{background-color:#ccc;color:#000;color:rgba(0,0,0,.8);background:-webkit-linear-gradient(bottom,#fff,rgba(0,0,0,.1));background:linear-gradient(to top,#fff,rgba(0,0,0,.1))}.medium-editor-toolbar-form{background:#fff;color:#999;border-radius:5px}.medium-editor-toolbar-form .medium-editor-toolbar-input{margin:0;height:50px;background:#fff;color:#a8a8a8}.medium-editor-toolbar-form a{color:#889aac}.medium-editor-toolbar-anchor-preview{background:#fff;color:#889aac;border-radius:5px}.medium-editor-placeholder:after{color:#a8a8a8} | |
\ No newline at end of file | ... | ... |
1 | +.medium-toolbar-arrow-under:after { | |
2 | + border-color: #2f1e07 transparent transparent transparent; | |
3 | + top: 60px; } | |
4 | + | |
5 | +.medium-toolbar-arrow-over:before { | |
6 | + border-color: transparent transparent #2f1e07 transparent; } | |
7 | + | |
8 | +.medium-editor-toolbar { | |
9 | + background-color: #2f1e07; | |
10 | + border: 1px solid #5b3a0e; | |
11 | + border-radius: 6px; } | |
12 | + .medium-editor-toolbar li button { | |
13 | + background-color: transparent; | |
14 | + border: none; | |
15 | + border-right: 1px solid #5b3a0e; | |
16 | + box-sizing: border-box; | |
17 | + color: #ffedd5; | |
18 | + height: 60px; | |
19 | + min-width: 60px; | |
20 | + -webkit-transition: background-color .2s ease-in, color .2s ease-in; | |
21 | + transition: background-color .2s ease-in, color .2s ease-in; } | |
22 | + .medium-editor-toolbar li button:hover { | |
23 | + background-color: #030200; | |
24 | + color: #ffedd5; } | |
25 | + .medium-editor-toolbar li .medium-editor-button-first { | |
26 | + border-bottom-left-radius: 6px; | |
27 | + border-top-left-radius: 6px; } | |
28 | + .medium-editor-toolbar li .medium-editor-button-last { | |
29 | + border-bottom-right-radius: 6px; | |
30 | + border-right: none; | |
31 | + border-top-right-radius: 6px; } | |
32 | + .medium-editor-toolbar li .medium-editor-button-active { | |
33 | + background-color: #030200; | |
34 | + color: #ffedd5; } | |
35 | + | |
36 | +.medium-editor-toolbar-form { | |
37 | + background: #2f1e07; | |
38 | + border-radius: 6px; | |
39 | + color: #ffedd5; } | |
40 | + .medium-editor-toolbar-form .medium-editor-toolbar-input { | |
41 | + background: #2f1e07; | |
42 | + color: #ffedd5; | |
43 | + height: 60px; } | |
44 | + .medium-editor-toolbar-form .medium-editor-toolbar-input::-webkit-input-placeholder { | |
45 | + color: #ffedd5; | |
46 | + color: rgba(255, 237, 213, 0.8); } | |
47 | + .medium-editor-toolbar-form .medium-editor-toolbar-input:-moz-placeholder { | |
48 | + /* Firefox 18- */ | |
49 | + color: #ffedd5; | |
50 | + color: rgba(255, 237, 213, 0.8); } | |
51 | + .medium-editor-toolbar-form .medium-editor-toolbar-input::-moz-placeholder { | |
52 | + /* Firefox 19+ */ | |
53 | + color: #ffedd5; | |
54 | + color: rgba(255, 237, 213, 0.8); } | |
55 | + .medium-editor-toolbar-form .medium-editor-toolbar-input:-ms-input-placeholder { | |
56 | + color: #ffedd5; | |
57 | + color: rgba(255, 237, 213, 0.8); } | |
58 | + .medium-editor-toolbar-form a { | |
59 | + color: #ffedd5; } | |
60 | + | |
61 | +.medium-editor-toolbar-anchor-preview { | |
62 | + background: #2f1e07; | |
63 | + border-radius: 6px; | |
64 | + color: #ffedd5; } | |
65 | + | |
66 | +.medium-editor-placeholder:after { | |
67 | + color: #5b3a0e; } | ... | ... |
1 | +.medium-toolbar-arrow-under:after{border-color:#2f1e07 transparent transparent;top:60px}.medium-toolbar-arrow-over:before{border-color:transparent transparent #2f1e07}.medium-editor-toolbar{background-color:#2f1e07;border:1px solid #5b3a0e;border-radius:6px}.medium-editor-toolbar li button{background-color:transparent;border:none;border-right:1px solid #5b3a0e;box-sizing:border-box;color:#ffedd5;height:60px;min-width:60px;-webkit-transition:background-color .2s ease-in,color .2s ease-in;transition:background-color .2s ease-in,color .2s ease-in}.medium-editor-toolbar li .medium-editor-button-active,.medium-editor-toolbar li button:hover{background-color:#030200;color:#ffedd5}.medium-editor-toolbar li .medium-editor-button-first{border-bottom-left-radius:6px;border-top-left-radius:6px}.medium-editor-toolbar li .medium-editor-button-last{border-bottom-right-radius:6px;border-right:none;border-top-right-radius:6px}.medium-editor-toolbar-form{background:#2f1e07;border-radius:6px;color:#ffedd5}.medium-editor-toolbar-form .medium-editor-toolbar-input{background:#2f1e07;color:#ffedd5;height:60px}.medium-editor-toolbar-form .medium-editor-toolbar-input::-webkit-input-placeholder{color:#ffedd5;color:rgba(255,237,213,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input:-moz-placeholder{color:#ffedd5;color:rgba(255,237,213,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input::-moz-placeholder{color:#ffedd5;color:rgba(255,237,213,.8)}.medium-editor-toolbar-form .medium-editor-toolbar-input:-ms-input-placeholder{color:#ffedd5;color:rgba(255,237,213,.8)}.medium-editor-toolbar-form a{color:#ffedd5}.medium-editor-toolbar-anchor-preview{background:#2f1e07;border-radius:6px;color:#ffedd5}.medium-editor-placeholder:after{color:#5b3a0e} | |
\ No newline at end of file | ... | ... |
1 | +<?xml version="1.0" standalone="no"?> | |
2 | +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > | |
3 | +<svg xmlns="http://www.w3.org/2000/svg"> | |
4 | +<metadata> | |
5 | +Created by FontForge 20120731 at Sat Mar 26 15:06:07 2016 | |
6 | + By Ads | |
7 | +</metadata> | |
8 | +<defs> | |
9 | +<font id="iconfont" horiz-adv-x="1024" > | |
10 | + <font-face | |
11 | + font-family="iconfont" | |
12 | + font-weight="500" | |
13 | + font-stretch="normal" | |
14 | + units-per-em="1024" | |
15 | + panose-1="2 0 6 3 0 0 0 0 0 0" | |
16 | + ascent="896" | |
17 | + descent="-128" | |
18 | + x-height="792" | |
19 | + bbox="0 -212 1215 896" | |
20 | + underline-thickness="50" | |
21 | + underline-position="-100" | |
22 | + unicode-range="U+0078-E63C" | |
23 | + /> | |
24 | +<missing-glyph horiz-adv-x="374" | |
25 | +d="M34 0v682h272v-682h-272zM68 34h204v614h-204v-614z" /> | |
26 | + <glyph glyph-name=".notdef" horiz-adv-x="374" | |
27 | +d="M34 0v682h272v-682h-272zM68 34h204v614h-204v-614z" /> | |
28 | + <glyph glyph-name=".null" horiz-adv-x="0" | |
29 | + /> | |
30 | + <glyph glyph-name="nonmarkingreturn" horiz-adv-x="341" | |
31 | + /> | |
32 | + <glyph glyph-name="x" unicode="x" horiz-adv-x="1001" | |
33 | +d="M281 543q-27 -1 -53 -1h-83q-18 0 -36.5 -6t-32.5 -18.5t-23 -32t-9 -45.5v-76h912v41q0 16 -0.5 30t-0.5 18q0 13 -5 29t-17 29.5t-31.5 22.5t-49.5 9h-133v-97h-438v97zM955 310v-52q0 -23 0.5 -52t0.5 -58t-10.5 -47.5t-26 -30t-33 -16t-31.5 -4.5q-14 -1 -29.5 -0.5 | |
34 | +t-29.5 0.5h-32l-45 128h-439l-44 -128h-29h-34q-20 0 -45 1q-25 0 -41 9.5t-25.5 23t-13.5 29.5t-4 30v167h911zM163 247q-12 0 -21 -8.5t-9 -21.5t9 -21.5t21 -8.5q13 0 22 8.5t9 21.5t-9 21.5t-22 8.5zM316 123q-8 -26 -14 -48q-5 -19 -10.5 -37t-7.5 -25t-3 -15t1 -14.5 | |
35 | +t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-5 19 -11 39h-368zM336 498v228q0 11 2.5 23t10 21.5t20.5 15.5t34 6h188q31 0 51.5 -14.5t20.5 -52.5v-227h-327z" /> | |
36 | + <glyph glyph-name="uniE600" unicode="" horiz-adv-x="1025" | |
37 | +d="M735 189q-21 0 -33 -17q-35 -44 -84.5 -69.5t-105.5 -25.5t-105 25t-83 68q-12 19 -35 19q-17 0 -29 -12t-12 -29t11 -29q43 -60 109.5 -95.5t143.5 -35.5q78 0 145 36t110 98q9 12 9 26q0 17 -12 29t-29 12zM690 478q-37 0 -63 -26t-26 -63t26 -63t63 -26t63 26t26 63 | |
38 | +t-26 63t-63 26zM512 812q-139 0 -257 -68.5t-186.5 -186.5t-68.5 -257t68.5 -257t186.5 -186.5t257 -68.5t257 68.5t186.5 186.5t68.5 257t-68.5 257t-186.5 186.5t-257 68.5zM512 -123q-115 0 -212.5 56.5t-154 154t-56.5 212.5t56.5 212.5t154 154t212.5 56.5t212.5 -56.5 | |
39 | +t154 -154t56.5 -212.5t-56.5 -212.5t-154 -154t-212.5 -56.5zM334 300q37 0 63 26t26 63t-26 63t-63 26t-63 -26t-26 -63t26 -63t63 -26z" /> | |
40 | + <glyph glyph-name="uniE601" unicode="" | |
41 | +d="M870 239q13 17 34 13q14 -3 23 -15t6 -26q-4 -24 -10 -47q-17 -60 -51 -113q-76 -116 -209 -162t-268 -2q-35 11 -67 28q-76 39 -131.5 103t-82.5 145q-34 98 -19 198t76 183q80 110 213.5 149t264.5 -9q105 -38 178.5 -120t99.5 -188q3 -15 -4.5 -27t-22 -15t-27 5 | |
42 | +t-15.5 22q-22 89 -83 157t-149 100q-109 40 -220 7.5t-178 -123.5q-51 -70 -63.5 -153t15.5 -165.5t89.5 -142.5t145.5 -87q106 -35 214 -0.5t173 122.5zM802 76q-23 -9 -47 -9q-41 0 -74 23.5t-48 60.5h-11v-13q-29 -28 -58.5 -40.5t-64.5 -12.5q-77 0 -133 61t-56 151 | |
43 | +q0 94 54.5 154t131.5 60q36 0 67.5 -14t58.5 -41v44h12q10 11 24.5 11t25.5 -11h10v-23v-1v-1v-1v-272v-1v-1q0 -25 18 -43.5t43 -18.5t43 18.5t18 43.5q0 19 19.5 33t34.5 6zM593 395.5q-36 37.5 -92 37.5q-54 0 -89.5 -38.5t-35.5 -97.5q0 -61 36 -99.5t90 -38.5 | |
44 | +q55 0 91 38t36 100q0 61 -36 98.5z" /> | |
45 | + <glyph glyph-name="uniE602" unicode="" | |
46 | +d="M861 218h-279v-279q0 -30 -20.5 -51.5t-49.5 -21.5t-49.5 21.5t-20.5 51.5v279h-279q-30 0 -51.5 20.5t-21.5 49.5t21.5 49.5t51.5 20.5h279v279q0 30 20.5 51.5t49.5 21.5t49.5 -21.5t20.5 -51.5v-279h279q30 0 51.5 -20.5t21.5 -49.5t-21.5 -49.5t-51.5 -20.5z" /> | |
47 | + <glyph glyph-name="uniE603" unicode="" | |
48 | +d="M512 -162q-186 0 -318 132t-132 318t132 318t318 132t318 -132t132 -318t-132 -318t-318 -132zM512 667q-103 0 -190.5 -50.5t-138 -138t-50.5 -190.5t50.5 -190.5t138 -138t190.5 -50.5t190.5 50.5t138 138t50.5 190.5t-50.5 190.5t-138 138t-190.5 50.5zM709 248h-157 | |
49 | +v-157q0 -18 -12 -30t-28.5 -12t-28 12t-11.5 30v157h-157q-18 0 -30 12t-12 28t12 28t30 12h157v157q0 18 11.5 30t28 12t28.5 -12t12 -30v-157h157q18 0 30 -12t12 -28t-12 -28t-30 -12z" /> | |
50 | + <glyph glyph-name="uniE604" unicode="" horiz-adv-x="1093" | |
51 | +d="M902 -162h-720q-50 0 -85 35t-35 85v540q0 50 35 85t85 35h180v60q0 25 17.5 42.5t42.5 17.5h240q25 0 42.5 -17.5t17.5 -42.5v-60h180q50 0 85 -35t35 -85v-540q0 -50 -35 -85t-85 -35zM662 618v30q0 12 -9 21t-21 9h-180q-12 0 -21 -9t-9 -21v-30h240zM962 498 | |
52 | +q0 25 -17.5 42.5t-42.5 17.5h-720q-25 0 -42.5 -17.5t-17.5 -42.5v-150h840v150zM482 258q0 -25 17.5 -42.5t42.5 -17.5t42.5 17.5t17.5 42.5q0 16 -8 30h-104q-8 -14 -8 -30zM962 288h-304q4 -16 4 -30q0 -50 -35 -85t-85 -35t-85 35t-35 85q0 14 4 30h-304v-330 | |
53 | +q0 -25 17.5 -42.5t42.5 -17.5h720q25 0 42.5 17.5t17.5 42.5v330z" /> | |
54 | + <glyph glyph-name="uniE605" unicode="" | |
55 | +d="M821.5 205q-40.5 0 -69 28t-28.5 67t28.5 67t68.5 28q14 0 23.5 -9.5t9.5 -22.5t-9.5 -22.5t-23 -9.5t-23 -9t-9.5 -22t9.5 -22.5t23 -9.5t23 9.5t9.5 22.5t9.5 22t23 9t23 -9t9.5 -22q0 -39 -28.5 -67t-69 -28zM529 205q-40 0 -68.5 28t-28.5 67t28.5 67t68.5 28 | |
56 | +t68.5 -28t28.5 -67t-28.5 -67t-68.5 -28zM529 331q-13 0 -22.5 -9t-9.5 -22t9.5 -22.5t22.5 -9.5t22.5 9.5t10 22.5t-9.5 22t-23 9zM236.5 205q-40.5 0 -69 28t-28.5 67t28.5 67t69 28t69 -28t28.5 -67t-28.5 -67t-69 -28zM236.5 331q-13.5 0 -23 -9t-9.5 -22t9.5 -22.5 | |
57 | +t23 -9.5t23 9.5t9.5 22.5t-9.5 22t-23 9z" /> | |
58 | + <glyph glyph-name="uniE606" unicode="" horiz-adv-x="1093" | |
59 | +d="M964 230l-381 -171q-28 -12 -44 -12t-41 12l-382 171q-14 7 -20 29t-6 44l60 -30l390 -180l390 180l60 30q0 -22 -6.5 -44.5t-19.5 -28.5zM964 410l-381 -172q-28 -12 -44 -12t-41 12l-382 172q-22 12 -22 41.5t22 43.5l382 201q25 13 43.5 13t41.5 -13l381 -201 | |
60 | +q22 -12 22 -43.5t-22 -41.5zM540 662l-390 -210l390 -164l390 164zM540 662zM540 -87l390 180l60 30q0 -21 -6.5 -44t-19.5 -29l-381 -171q-28 -12 -44 -12t-41 12l-382 171q-14 8 -20 29.5t-6 43.5l60 -30z" /> | |
61 | + <glyph glyph-name="uniE607" unicode="" | |
62 | +d="M927 496l-208 -208q-22 -22 -53 -30t-60 0l279 280q17 17 17 41t-17 42l-41 41q-18 17 -42 17t-41 -17l-279 -279q-9 29 -1 59.5t31 53.5l207 208q35 34 83.5 34t82.5 -34l42 -42q34 -34 34 -83t-34 -83zM605 381.5q9 -8.5 9 -21t-9 -20.5l-145 -145q-9 -9 -21 -9 | |
63 | +t-20.5 8.5t-8.5 20.5t8 21l145 145q9 9 21 9t21 -8.5zM138 -44l41 -41q18 -17 42 -17t41 17l280 279q8 -29 0 -60t-30 -53l-208 -208q-34 -34 -83 -34t-83 34l-42 42q-34 34 -34 82.5t34 83.5l208 207q23 23 53.5 31t59.5 -1l-279 -279q-17 -17 -17 -41t17 -42z" /> | |
64 | + <glyph glyph-name="uniE608" unicode="" | |
65 | +d="M512 -50q-41 0 -84 8l-197 -120v199q-79 55 -124 135.5t-45 171.5q0 107 60 198t164 143.5t226 52.5t226 -52.5t164 -143.5t60 -198t-60 -197.5t-164 -143.5t-226 -53zM512 682q-107 0 -197.5 -45.5t-143.5 -123t-53 -169.5q0 -84 45.5 -156.5t122.5 -119.5l-1 -131 | |
66 | +l132 80q48 -10 95 -10q107 0 197.5 45t143.5 123t53 169.5t-53 169t-143.5 123t-197.5 45.5zM709 372h-394q-12 0 -20 8.5t-8 20t8 20t20 8.5h394q12 0 20 -8.5t8 -20t-8 -20t-20 -8.5zM371 260h282q11 0 19.5 -8.5t8.5 -20t-8.5 -19.5t-19.5 -8h-282q-11 0 -19.5 8 | |
67 | +t-8.5 19.5t8.5 20t19.5 8.5z" /> | |
68 | + <glyph glyph-name="uniE609" unicode="" | |
69 | +d="M793 -162h-562q-47 0 -80 33t-33 79v563q0 47 33 80t80 33h84v56h76q19 25 51 40.5t70 15.5t70 -15.5t51 -40.5h76v-56h84q47 0 80 -33t33 -80v-563q0 -46 -33 -79t-80 -33zM653 626h-63q0 23 -23 39.5t-55 16.5t-55 -16.5t-23 -39.5h-63v-113h282v113zM850 513 | |
70 | +q0 23 -16.5 39.5t-40.5 16.5h-84v-112h-394v112h-84q-24 0 -40.5 -16.5t-16.5 -39.5v-563q0 -23 16.5 -39.5t40.5 -16.5h562q24 0 40.5 16.5t16.5 39.5v563zM709 7h-394q-12 0 -20 8t-8 20t8 20t20 8h394q12 0 20 -8t8 -20t-8 -20t-20 -8zM709 147h-394q-12 0 -20 8.5t-8 20 | |
71 | +t8 20t20 8.5h394q12 0 20 -8.5t8 -20t-8 -20t-20 -8.5zM709 288h-394q-12 0 -20 8t-8 20t8 20t20 8h394q12 0 20 -8t8 -20t-8 -20t-20 -8z" /> | |
72 | + <glyph glyph-name="uniE60A" unicode="" horiz-adv-x="1108" | |
73 | +d="M751.5 -134q-113.5 0 -193.5 79.5t-80 192t80 192t193.5 79.5t193.5 -79.5t80 -192t-80 -192t-193.5 -79.5zM751.5 349q-88.5 0 -150.5 -62t-62 -149.5t62 -149.5t150.5 -62t151 62t62.5 149.5t-62.5 149.5t-151 62zM883 107h-84q-7 -17 -22.5 -28.5t-34.5 -11.5 | |
74 | +q-26 0 -43.5 18t-17.5 42q0 20 11 35.5t29 21.5v104q0 8 6 14t14.5 6t14.5 -6t6 -14v-104q27 -10 37 -36h84q9 0 15 -6t6 -14.5t-6 -14.5t-15 -6zM741.5 148q-8.5 0 -14.5 -6t-6 -14.5t6 -14.5t14.5 -6t14.5 6t6 14.5t-6 14.5t-14.5 6zM315.5 348q-25.5 0 -43 18t-17.5 43 | |
75 | +t17.5 42.5t43 17.5t43.5 -17.5t18 -42.5t-18 -43t-43.5 -18zM315.5 429q-8.5 0 -14.5 -6t-6 -14.5t6 -14t14.5 -5.5t14.5 5.5t6 14t-6 14.5t-14.5 6zM315.5 127q-25.5 0 -43 18t-17.5 43t17.5 42.5t43 17.5t43.5 -17.5t18 -42.5t-18 -43t-43.5 -18zM315.5 208 | |
76 | +q-8.5 0 -14.5 -6t-6 -14.5t6 -14t14.5 -5.5t14.5 5.5t6 14t-6 14.5t-14.5 6zM437 188q0 20 13 36q-8 -26 -10 -51q-3 8 -3 15zM498 469q25 0 43 -17.5t18 -42.5q0 -19 -10 -34q-12 -10 -20 -18q-15 -9 -31 -9q-25 0 -43 18t-18 43t18 42.5t43 17.5zM498.5 389q8.5 0 14 5.5 | |
77 | +t5.5 14t-5.5 14.5t-14 6t-14.5 -6t-6 -14.5t6 -14t14.5 -5.5zM823 571q0 16 -11.5 27t-27.5 11h-22q0 -24 -18 -42t-43 -18t-43 18t-18 42h-81q0 -24 -18 -42t-43 -18t-43 18t-18 42h-81q0 -24 -17.5 -42t-43 -18t-43 18t-17.5 42h-23q-16 0 -27 -11t-11 -27v-485 | |
78 | +q0 -16 11 -27.5t27 -11.5h239q10 -31 26 -60h-283q-34 0 -57.5 23.5t-23.5 56.5v522q0 34 23.5 57.5t57.5 23.5h44q7 17 22.5 28.5t35 11.5t35 -11.5t22.5 -28.5h88q6 17 22 28.5t35.5 11.5t35 -11.5t21.5 -28.5h89q6 17 21.5 28.5t35.5 11.5t35.5 -11.5t21.5 -28.5h44 | |
79 | +q34 0 57.5 -23.5t23.5 -57.5v-169q-29 13 -60 21v130zM316 650q0 8 -6 14t-14.5 6t-14.5 -6t-6 -14v-41q0 -8 6 -14t14.5 -6t14.5 6t6 14v41zM518 650q0 8 -5.5 14t-14 6t-14.5 -6t-6 -14v-41q0 -8 6 -14t14.5 -6t14 6t5.5 14v41zM721 650q0 8 -6 14t-14 6t-14 -6t-6 -14 | |
80 | +v-41q0 -8 6 -14t14 -6t14 6t6 14v41z" /> | |
81 | + <glyph glyph-name="uniE60B" unicode="" horiz-adv-x="1025" | |
82 | +d="M864 -134h-246q-29 0 -50 20.5t-21 49.5v247q0 29 21 49.5t50 20.5h246q29 0 49.5 -20.5t20.5 -49.5v-247q0 -29 -20.5 -49.5t-49.5 -20.5zM864 183h-246v-247h246v247zM864 323h-246q-29 0 -50 20.5t-21 49.5v247q0 29 21 49.5t50 20.5h176q14 0 24.5 -10.5t10.5 -25 | |
83 | +t-10.5 -24.5t-24.5 -10h-176v-247h246v176q0 15 10 25t25 10t25 -10t10 -25v-176q0 -29 -20.5 -49.5t-49.5 -20.5zM407 -134h-246q-29 0 -50 20.5t-21 49.5v247q0 29 21 49.5t50 20.5h246q29 0 49.5 -20.5t20.5 -49.5v-247q0 -29 -20.5 -49.5t-49.5 -20.5zM407 183h-246 | |
84 | +v-247h246v247zM407 323h-246q-29 0 -50 20.5t-21 49.5v247q0 29 21 49.5t50 20.5h246q29 0 49.5 -20.5t20.5 -49.5v-247q0 -29 -20.5 -49.5t-49.5 -20.5zM407 640h-246v-247h246v247z" /> | |
85 | + <glyph glyph-name="uniE60C" unicode="" horiz-adv-x="1051" | |
86 | +d="M288 -162q-26 0 -47 16q-20 15 -28.5 37.5t-2.5 46.5l48 222q1 2 -1 4l-168 150q-18 16 -24 39.5t1.5 47t26 38.5t42.5 18l222 21q3 0 4 2l88 209q10 22 30 35.5t44 13.5q25 0 44.5 -13.5t29.5 -35.5l89 -209q6 -14 0.5 -29t-20 -21.5t-29.5 -0.5t-21 20l-89 209 | |
87 | +q-1 2 -4 2q-2 0 -3 -2l-89 -209q-9 -20 -26.5 -33t-39.5 -15l-223 -22q-2 0 -3 -2.5t1 -4.5l168 -150q35 -32 25 -79l-49 -222q0 -2 2 -4t4 0l192 115q41 25 82 0l193 -115q2 -2 4 0t1 4l-48 222q-11 47 25 79l168 150q1 2 0.5 4.5t-3.5 2.5l-106 10q-16 2 -26 14.5 | |
88 | +t-8.5 28.5t13.5 26t28 9l107 -10q24 -3 42.5 -18t26 -38.5t1.5 -47t-25 -39.5l-167 -150q-2 -2 -1 -4l48 -222q5 -24 -3 -46.5t-28 -37.5t-43.5 -16t-44.5 12l-193 115q-2 2 -4 0l-192 -115q-19 -12 -41 -12z" /> | |
89 | + <glyph glyph-name="uniE60D" unicode="" | |
90 | +d="M918 444l-382 -373q-8 -8 -19 -8t-19 8q-1 0 -2 1v1q-5 3 -6 4l-385 378q-8 8 -8 19t8 18.5t19.5 7.5t19.5 -7l373 -366l363 355q8 7 19 7t19 -7.5t8 -18.5t-8 -19z" /> | |
91 | + <glyph glyph-name="uniE60E" unicode="" | |
92 | +d="M908 -108q-26 -26 -62.5 -26t-61.5 26l-225 225q-71 -40 -152 -40q-131 0 -223.5 93t-92.5 223.5t92.5 223.5t223 93t223.5 -93t93 -224q0 -68 -28 -129.5t-78 -105.5l216 -216q13 -13 25 0q5 5 5 12t-5 12l-151 152q-11 10 -11 25t10.5 25t25 10t24.5 -10l152 -152 | |
93 | +q25 -26 25 -62t-25 -62zM652 393.5q0 101.5 -72 173.5t-173.5 72t-173.5 -72t-72 -173.5t72 -174t173.5 -72.5t173.5 72.5t72 174zM407 499q-44 0 -75 -31t-31 -75q0 -14 -10 -24.5t-24.5 -10.5t-25 10.5t-10.5 24.5q0 73 51.5 124.5t124.5 51.5q14 0 24.5 -10t10.5 -25 | |
94 | +t-10.5 -25t-24.5 -10z" /> | |
95 | + <glyph glyph-name="uniE60F" unicode="" | |
96 | +d="M512 358q-18 0 -31 13t-13 31t13 31t31 13t31 -13t13 -31t-13 -31t-31 -13zM704 -88q-17 -8 -34 -15q-13 -6 -26.5 0t-19 19.5t0 26.5t19.5 19t28 13q88 45 139.5 129t51.5 184q0 95 -47 176t-128 128t-176 47t-176 -47t-128 -128t-47 -176q0 -136 91 -236.5t225 -113.5 | |
97 | +v297q0 15 10 25t25 10t25 -10t10 -25v-334q0 -14 -10 -24.5t-25 -10.5q-114 0 -211.5 56.5t-154 154t-56.5 211.5t56.5 211.5t154 154t211.5 56.5t211.5 -56.5t154 -154t56.5 -211.5q0 -120 -62 -220.5t-168 -155.5z" /> | |
98 | + <glyph glyph-name="uniE610" unicode="" | |
99 | +d="M402 400.5q0 15.5 11 26.5t26 11t25.5 -11t10.5 -26.5t-10.5 -26.5t-25.5 -11t-26 11t-11 26.5zM549 400.5q0 15.5 10.5 26.5t25.5 11t26 -11t11 -26.5t-11 -26.5t-26 -11t-25.5 11t-10.5 26.5zM929 -159q-7 -3 -14 -3q-24 0 -34 23q-14 35 -58 86.5t-97 82.5 | |
100 | +q-13 -41 -52 -70q-34 -24 -80 -36q-39 -11 -82 -11q-79 0 -138.5 33t-76.5 84q-52 -32 -96 -83t-58 -86q-6 -14 -20 -20t-28 0t-20 20.5t0 28.5q15 35 48 79.5t89.5 90.5t115.5 65q-109 94 -109 313q0 124 86 212t207 88q72 0 135 -34q13 -7 25 -14q12 -9 15.5 -24t-5 -28 | |
101 | +t-23.5 -16.5t-27 5.5q-9 6 -19 11q-47 25 -101 25q-91 0 -155.5 -66t-64.5 -159q0 -151 54.5 -225.5t165.5 -74.5t165.5 74.5t54.5 225.5q0 43 -15 82q-6 15 0 29t20 19.5t28 -0.5t20 -20q20 -53 20 -110q0 -219 -109 -313q59 -19 115.5 -65t89.5 -90.5t48 -79.5 | |
102 | +q6 -14 0 -28.5t-20 -20.5zM622 63h-220q-16 0 -36 -4q4 -27 46 -49t100 -22q34 0 64 8q33 9 55 25q24 18 27 38q-20 4 -36 4z" /> | |
103 | + <glyph glyph-name="uniE611" unicode="" | |
104 | +d="M828 -134h-632q-44 0 -75 31t-31 75v632q0 44 31 75t75 31h632q44 0 75 -31t31 -75v-632q0 -44 -31 -75t-75 -31zM881 604q0 22 -15.5 37.5t-37.5 15.5h-632q-22 0 -37.5 -15.5t-15.5 -37.5v-632q0 -22 15.5 -37.5t37.5 -15.5h632q22 0 37.5 15.5t15.5 37.5v632zM776 24 | |
105 | +h-294q-9 -34 -37 -56.5t-64.5 -22.5t-65 22.5t-37.5 56.5h-30q-11 0 -18.5 8t-7.5 19t7.5 18.5t18.5 7.5h30q9 35 37.5 57t65 22t64.5 -22t37 -57h294q11 0 18.5 -7.5t7.5 -18.5t-7.5 -19t-18.5 -8zM380 114q-26 0 -44.5 -18.5t-18.5 -45t18.5 -45t44.5 -18.5t44.5 18.5 | |
106 | +t18.5 45t-18.5 45t-44.5 18.5zM776 235h-57q-9 -34 -37 -56.5t-64.5 -22.5t-64.5 22.5t-37 56.5h-268q-11 0 -18.5 8t-7.5 19t7.5 18.5t18.5 7.5h268q9 34 37 56.5t64.5 22.5t64.5 -22.5t37 -56.5h57q11 0 18.5 -7.5t7.5 -18.5t-7.5 -19t-18.5 -8zM617.5 325 | |
107 | +q-26.5 0 -45 -18.5t-18.5 -45t18.5 -45t45 -18.5t45 18.5t18.5 45t-18.5 45t-45 18.5zM776 446h-294q-9 -34 -37 -56.5t-64.5 -22.5t-65 22.5t-37.5 56.5h-30q-11 0 -18.5 8t-7.5 18.5t7.5 18.5t18.5 8h30q9 34 37.5 56.5t65 22.5t64.5 -22.5t37 -56.5h294q11 0 18.5 -8 | |
108 | +t7.5 -18.5t-7.5 -18.5t-18.5 -8zM380 536q-26 0 -44.5 -18.5t-18.5 -45t18.5 -45t44.5 -18.5t44.5 18.5t18.5 45t-18.5 45t-44.5 18.5z" /> | |
109 | + <glyph glyph-name="uniE612" unicode="" | |
110 | +d="M804 -56l-296 296l-282 -282q-14 -15 -34.5 -15t-34.5 14.5t-14 34.5t14 35l282 282l-282 282q-14 14 -14 34.5t14 34.5t34.5 14t34.5 -14l282 -282l296 296q14 14 34.5 14t34.5 -14.5t14 -34.5t-14 -34l-296 -296l296 -296q14 -14 14 -34.5t-14 -34.5t-34.5 -14 | |
111 | +t-34.5 14z" /> | |
112 | + <glyph glyph-name="uniE613" unicode="" | |
113 | +d="M848 265h-584l218 -218q10 -10 10 -24.5t-10.5 -25t-24.5 -10.5t-25 11l-275 275q-1 0 -1 1q-11 10 -11 25q0 4 1 9q2 10 9 17l278 277q10 11 25 11t25 -10.5t10 -25t-10 -24.5l-219 -219h584q15 0 25 -10t10 -24.5t-10 -24.5t-25 -10z" /> | |
114 | + <glyph glyph-name="uniE614" unicode="" | |
115 | +d="M176 323h584l-218 218q-10 10 -10 24.5t10.5 25t24.5 10.5t25 -11l275 -275q1 0 1 -1q11 -10 11 -25q0 -4 -1 -9q-2 -10 -9 -17l-278 -277q-10 -11 -25 -11t-25 10.5t-10 25t10 24.5l219 219h-584q-15 0 -25 10t-10 24.5t10 24.5t25 10z" /> | |
116 | + <glyph glyph-name="uniE615" unicode="" | |
117 | +d="M131 141l358 350q8 8 18.5 8t17.5 -8q1 0 1.5 -0.5t0.5 -1.5l6 -3l360 -354q8 -8 8 -18.5t-7.5 -17.5t-18 -7t-18.5 7l-349 343l-341 -332q-7 -8 -17.5 -8t-18 7.5t-7.5 17.5t7 17z" /> | |
118 | + <glyph glyph-name="uniE616" unicode="" | |
119 | +d="M723 65q57 32 90.5 84.5t33.5 113.5q0 77 -54 139q4 26 4 47q0 2 -1 21q47 -39 73.5 -92t26.5 -112q0 -67 -33 -125t-91 -97v-141l-139 86q-30 -5 -59 -5q-68 0 -117.5 23.5t-98.5 70.5q22 -1 30 -1q18 0 41 1q40 -27 70 -39t75 -12q31 0 64 7l85 -57v88zM450 126 | |
120 | +q-43 0 -84 7l-140 -81v140q-99 85 -99 223q0 76 43 141t117.5 103t162.5 38q73 0 142 -37.5t112.5 -103.5t43.5 -141q0 -120 -84 -204.5t-214 -84.5zM361 183q33 -7 89 -7q110 0 179 68t69 168q0 63 -36.5 118t-93.5 86t-118 31q-116 0 -194.5 -68.5t-78.5 -166.5 | |
121 | +q0 -117 99 -198v-88zM586.5 374q-15.5 0 -26.5 11t-11 26.5t11 26.5t26.5 11t26 -11t10.5 -26.5t-10.5 -26.5t-26 -11zM437.5 374q-15.5 0 -26.5 11t-11 26.5t11 26.5t26.5 11t26.5 -11t11 -26.5t-11 -26.5t-26.5 -11zM288.5 374q-15.5 0 -26.5 11t-11 26.5t11 26.5t26.5 11 | |
122 | +t26.5 -11t11 -26.5t-11 -26.5t-26.5 -11z" /> | |
123 | + <glyph glyph-name="uniE617" unicode="" | |
124 | +d="M820 235h-252v-252q0 -27 -18.5 -46.5t-45 -19.5t-45 19.5t-18.5 46.5v252h-252q-27 0 -46.5 19t-19.5 45t19.5 45t46.5 19h252v252q0 27 18.5 46.5t45 19.5t45 -19.5t18.5 -46.5v-252h252q28 0 47.5 -19t19.5 -45t-19.5 -45t-47.5 -19z" /> | |
125 | + <glyph glyph-name="uniE618" unicode="" | |
126 | +d="M671 -212h-318q-79 0 -134.5 56t-55.5 136v128q0 62 36 111.5t92 69.5q-65 88 -65 203q0 87 38.5 160.5t104 116.5t143.5 43t143.5 -43t104 -116.5t38.5 -160.5q0 -115 -65 -203q56 -20 92 -69.5t36 -111.5v-128q0 -80 -55.5 -136t-134.5 -56zM734 492q0 106 -65 181 | |
127 | +t-157 75t-157 -75t-65 -181t65 -181t157 -75t157 75t65 181zM798 92q0 50 -34 89t-86 51q-75 -60 -166 -60t-166 60q-52 -12 -86 -51t-34 -89v-96q0 -60 46 -102t110 -42h260q64 0 110 42t46 102v96z" /> | |
128 | + <glyph glyph-name="uniE619" unicode="" | |
129 | +d="M249 729q-48 0 -81.5 -34.5t-33.5 -83.5v-630q0 -49 33.5 -83.5t81.5 -34.5h617v866h-617zM789 -58h-540q-16 0 -27 11.5t-11 27.5t11 28t27 12h540v-79zM789 99h-540q-19 0 -38 -7v519q0 16 11 27.5t27 11.5h540v-551z" /> | |
130 | + <glyph glyph-name="uniE61A" unicode="" | |
131 | +d="M774 739h-528q-46 0 -79.5 -32.5t-33.5 -78.5v-669q0 -46 33.5 -78.5t79.5 -32.5h528q47 0 80 32.5t33 78.5v669q0 46 -33 78.5t-80 32.5zM812 -41q0 -15 -11 -26t-27 -11h-528q-15 0 -26 11t-11 26v669q0 15 11 26t26 11h528q16 0 27 -11t11 -26v-669zM661 108h-302 | |
132 | +q-15 0 -26 -11t-11 -26.5t11 -26.5t26 -11h302q15 0 26.5 11t11.5 26.5t-11.5 26.5t-26.5 11zM661 256h-302q-15 0 -26 -10.5t-11 -26t11 -26.5t26 -11h302q15 0 26.5 11t11.5 26.5t-11.5 26t-26.5 10.5zM661 405h-302q-15 0 -26 -11t-11 -26.5t11 -26t26 -10.5h302 | |
133 | +q15 0 26.5 10.5t11.5 26t-11.5 26.5t-26.5 11zM359 479h151q16 0 27 11t11 26.5t-11 26t-27 10.5h-151q-15 0 -26 -10.5t-11 -26t11 -26.5t26 -11z" /> | |
134 | + <glyph glyph-name="uniE61B" unicode="" | |
135 | +d="M507.5 -116q-111.5 0 -205.5 54.5t-149 149t-55 205.5t55 205t149 149t205.5 55t206 -55t149 -149t54.5 -205t-54.5 -205.5t-149 -149t-206 -54.5zM507.5 617q-88.5 0 -163 -43.5t-118 -118t-43.5 -162.5t43.5 -163t118 -118.5t163 -43.5t163.5 43.5t118.5 118.5 | |
136 | +t43.5 163t-43.5 162.5t-118.5 118t-163.5 43.5zM635 348q-13 -14 -26.5 -25t-28.5 -22q-11 -9 -18 -16t-11 -12.5t-5 -10.5q-2 -5 -2 -13v-52h-77v52q0 32 13.5 51t36.5 36q13 9 26 18.5t22 18.5q9 8 14.5 18t5.5 22t-6.5 22t-17.5 16q-11 8 -26 11q-14 3 -30 3 | |
137 | +q-11 0 -24 -4q-13 -3 -24 -10.5t-18.5 -20t-8.5 -29.5h-78q1 33 14 57.5t34.5 41.5t48.5 25t56 8q32 0 58 -5.5t47 -17.5q25 -15 39 -38.5t14 -58.5q0 -20 -8 -36t-20 -29zM544 53h-77v89h77v-89z" /> | |
138 | + <glyph glyph-name="uniE61C" unicode="" | |
139 | +d="M797 43h-407q-50 0 -85.5 35.5t-35.5 85.5v406q0 50 35.5 85.5t85.5 35.5h407q50 0 86 -35.5t36 -85.5v-406q0 -50 -36 -85.5t-86 -35.5zM599 329q30 0 51.5 21.5t21.5 51.5t-21.5 51t-51.5 21t-51 -21t-21 -51t21 -51.5t51 -21.5zM599 199q-33 0 -57 -21.5t-29 -53.5 | |
140 | +h172q-4 32 -28.5 53.5t-57.5 21.5zM837 570q0 16 -12 28t-28 12h-407q-16 0 -28 -12t-12 -28v-406q0 -17 12 -28.5t28 -11.5h36q4 50 33 90.5t75 58.5q-36 18 -58 52.5t-22 76.5q0 60 42.5 102t102.5 42t102.5 -42t42.5 -102q0 -42 -21.5 -76.5t-57.5 -52.5 | |
141 | +q45 -18 74.5 -58.5t32.5 -90.5h25q16 0 28 11.5t12 28.5v406zM634 -120h-406q-51 0 -86.5 36t-35.5 86v405q0 40 22.5 71t58.5 44v-520q0 -17 12 -29t29 -12h521q-13 -35 -44.5 -58t-70.5 -23z" /> | |
142 | + <glyph glyph-name="uniE61D" unicode="" | |
143 | +d="M748 174q15 -75 26 -136q6 -25 10.5 -51t8.5 -47t6.5 -35.5t3.5 -18.5q3 -19 -8 -25t-24 -6q-5 0 -13.5 3.5t-12.5 4.5l-233 145q-63 -40 -115 -71q-22 -14 -44 -27t-39.5 -24.5t-30.5 -19t-18 -9.5q-9 -5 -18 -3.5t-16.5 7t-11.5 13.5t-2 17q1 4 4.5 18.5t8 35t10.5 45 | |
144 | +t12 50.5q13 59 30 133q-52 48 -94 86q-18 17 -35.5 32.5t-31 28.5t-22.5 21t-10 9q-11 10 -18.5 23t-5.5 26t10 21t17 9l276 27l102 254q6 16 15.5 27t26.5 11q9 0 16 -4.5t11 -10t7.5 -11.5t5.5 -10l99 -254l276 -28q18 -4 25 -11t7 -21q0 -13 -7.5 -23t-19.5 -24z" /> | |
145 | + <glyph glyph-name="uniE61E" unicode="" | |
146 | +d="M863 124q-13 0 -22.5 9t-9.5 22v176l-254 -149l255 -149q1 11 10 18.5t21 7.5q13 0 22 -9t9 -22q0 -30 -18 -55q-28 -37 -77 -37h-568q-39 0 -67 27t-28 65v326q0 38 28 65l286 236q26 26 65.5 25.5t66.5 -27.5l283 -232q29 -29 29 -67v-199q0 -13 -9 -22t-22 -9zM770 -3 | |
147 | +l-255 149l-254 -149h509zM454 182l-255 149v-298zM539 608q-10 10 -23.5 10.5t-22.5 -8.5l-269 -222l291 -170l292 170z" /> | |
148 | + <glyph glyph-name="uniE61F" unicode="" | |
149 | +d="M469 -60q-22 22 -22 53.5t22 53.5l175 182h-433q-31 0 -53 22t-22 53t22 53t53 22h422l-163 170q-22 22 -22 53t22 53t53 22t53 -22l284 -296v-1h1q23 -22 23 -54v-2v-1q4 -37 -22 -62l-287 -299q-22 -22 -53 -22t-53 22z" /> | |
150 | + <glyph glyph-name="uniE620" unicode="" | |
151 | +d="M909 537l-57 61l-461 -497l-219 224l-57 -60l276 -285l57 61z" /> | |
152 | + <glyph glyph-name="uniE621" unicode="" | |
153 | +d="M1001 -212h-140q-10 0 -16.5 7t-6.5 16.5t6.5 16.5t16.5 7h116v116q0 10 7 16.5t16.5 6.5t16.5 -6.5t7 -16.5v-140q0 -9 -7 -16t-16 -7zM1000.5 67q-9.5 0 -16.5 7t-7 17v139q0 10 7 16.5t16.5 6.5t16.5 -6.5t7 -16.5v-139q0 -10 -7 -17t-16.5 -7zM1000.5 347 | |
154 | +q-9.5 0 -16.5 6.5t-7 16.5v139q0 10 7 17t16.5 7t16.5 -7t7 -17v-139q0 -10 -7 -16.5t-16.5 -6.5zM1000.5 626q-9.5 0 -16.5 6.5t-7 16.5v116h-116q-10 0 -16.5 7t-6.5 16.5t6.5 16.5t16.5 7h140q9 0 16 -7t7 -16v-140q0 -10 -7 -16.5t-16.5 -6.5zM721 -212h-139 | |
155 | +q-10 0 -16.5 7t-6.5 16.5t6.5 16.5t16.5 7h139q10 0 17 -7t7 -16.5t-7 -16.5t-17 -7zM721 765h-139q-10 0 -16.5 7t-6.5 16.5t6.5 16.5t16.5 7h139q10 0 17 -7t7 -16.5t-7 -16.5t-17 -7zM695 347q20 0 33.5 -14t13.5 -33t-13.5 -33t-33.5 -14h-139v-139q0 -19 -14 -33 | |
156 | +t-33 -14t-32.5 14t-13.5 33v139h-140q-19 0 -33 14t-14 33t14 33t33 14h140v139q0 19 13.5 33t32.5 14t33 -14t14 -33v-139h139zM442 765h-139q-10 0 -17 7t-7 16.5t7 16.5t17 7h139q10 0 16.5 -7t6.5 -16.5t-6.5 -16.5t-16.5 -7zM163 -212h-140q-9 0 -16 7t-7 16v140 | |
157 | +q0 10 7 16.5t16.5 6.5t16.5 -6.5t7 -16.5v-116h116q10 0 16.5 -7t6.5 -16.5t-6.5 -16.5t-16.5 -7zM163 765h-116v-116q0 -10 -7 -16.5t-16.5 -6.5t-16.5 6.5t-7 16.5v140q0 9 7 16t16 7h140q10 0 16.5 -7t6.5 -16.5t-6.5 -16.5t-16.5 -7zM23.5 533q9.5 0 16.5 -7t7 -17v-139 | |
158 | +q0 -10 -7 -16.5t-16.5 -6.5t-16.5 6.5t-7 16.5v139q0 10 7 17t16.5 7zM23.5 253q9.5 0 16.5 -6.5t7 -16.5v-139q0 -10 -7 -17t-16.5 -7t-16.5 7t-7 17v139q0 10 7 16.5t16.5 6.5zM303 -165h139q10 0 16.5 -7t6.5 -16.5t-6.5 -16.5t-16.5 -7h-139q-10 0 -17 7t-7 16.5t7 16.5 | |
159 | +t17 7z" /> | |
160 | + <glyph glyph-name="uniE622" unicode="" | |
161 | +d="M224 204q-40 0 -68 28t-28 68t28 68t68 28t68 -28t28 -68t-28 -68t-68 -28zM512 204q-40 0 -68 28t-28 68t28 68t68 28t68 -28t28 -68t-28 -68t-68 -28zM800 204q-40 0 -68 28t-28 68t28 68t68 28t68 -28t28 -68t-28 -68t-68 -28z" /> | |
162 | + <glyph glyph-name="uniE623" unicode="" | |
163 | +d="M824 340.5q-3 -11.5 -13 -17.5l-163 -94l108 -188q6 -10 3 -20.5t-12.5 -16.5t-20.5 -3t-17 13l-108 188l-187 -108q-11 -5 -22.5 -2t-16.5 13q-7 11 -12 23q-17 44 -9 92q6 33 24 61q7 11 19 24l-93 206q-30 0 -56.5 15t-41.5 42q-12 20 -5 43q6 23 26 35l199 114 | |
164 | +q21 12 43.5 6t34.5 -27q24 -41 12 -86q-4 -12 -11 -26l76 -106q8 -11 4 -24q-2 -10 -11 -16q-9 -7 -21 -5t-19 12l-70 97l-1 -1q-1 0 -1 -1l-36 -20q-10 -6 -21.5 -3t-17.5 13t-2.5 21.5t13.5 17.5l35 21q20 11 26.5 34.5t-4.5 43.5l-199 -115q9 -16 25.5 -23.5t34.5 -3.5 | |
165 | +q22 4 31 -16l3 -5l93 -206l144 83q58 33 123 19q32 -7 58 -25q23 -14 40 -36l14 -20q5 -11 2 -22.5zM736 372q-17 11 -38 16q-44 10 -83 -13l-149 -86q-25 -14 -40 -38q-11 -19 -15 -41q-5 -25 2 -50l342 197q-9 8 -19 15z" /> | |
166 | + <glyph glyph-name="uniE624" unicode="" | |
167 | +d="M913 385q0 38 -27.5 59.5t-72.5 21.5h-168q17 69 17 125q0 176 -75 176q-36 0 -63 -16q-10 -6 -12 -17l-24 -136q-31 -83 -151 -176v-358q19 0 64 -22q55 -27 86 -27h238q36 0 62 23.5t26 51.5q0 10 -2 19q23 8 37.5 27t14.5 42q0 22 -8 39q38 27 38 61q0 23 -16 42 | |
168 | +q36 27 36 65zM860 385q0 -14 -8 -23.5t-18 -16t-11 -11.5q-2 -8 9 -23t11 -31q0 -14 -9.5 -22t-20.5 -13.5t-13 -11.5q-3 -10 4.5 -25t7.5 -30v-6q-3 -15 -26 -24.5t-25 -12.5q-3 -8 -2.5 -10.5t2 -13.5t1.5 -21q0 -11 -10.5 -18t-26.5 -7h-238q-19 0 -64 22q-40 20 -61 25 | |
169 | +v266q138 106 174 205q0 2 1 4l23 126q9 4 27 4q4 0 9.5 -10.5t10.5 -41t5 -74.5q0 -55 -19 -125h-6q-11 0 -18 -7.5t-7 -17.5t7 -17.5t18 -7.5h226q19 0 33 -8.5t14 -22.5zM312 15h-151q-21 0 -35.5 14.5t-14.5 35.5v351q0 21 14.5 35.5t35.5 14.5h151q20 0 35 -14.5 | |
170 | +t15 -35.5v-351q0 -21 -15 -35.5t-35 -14.5zM312 65zM161 416v-351h150l1 351h-151zM161 416v0v0z" /> | |
171 | + <glyph glyph-name="uniE625" unicode="" | |
172 | +d="M690 300q0 50 35.5 85.5t85.5 35.5t85.5 -35.5t35.5 -85.5t-35.5 -85.5t-85.5 -35.5t-85.5 35.5t-35.5 85.5zM875 300q0 26 -19 45t-45.5 19t-45 -19t-18.5 -45t18.5 -45t45 -19t45.5 19t19 45zM391 300q0 50 35.5 85.5t85.5 35.5t85.5 -35.5t35.5 -85.5t-35.5 -85.5 | |
173 | +t-85.5 -35.5t-85.5 35.5t-35.5 85.5zM576 300q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM92 300q0 50 35.5 85.5t85.5 35.5t85.5 -35.5t35.5 -85.5t-35.5 -85.5t-85.5 -35.5t-85.5 35.5t-35.5 85.5zM277 300q0 26 -18.5 45t-45 19t-45.5 -19t-19 -45 | |
174 | +t19 -45t45.5 -19t45 19t18.5 45z" /> | |
175 | + <glyph glyph-name="uniE626" unicode="" | |
176 | +d="M618 221l-130 153q-7 8 -7 19v213q0 13 9.5 22t23 9t23 -9t9.5 -22v-202l122 -144q8 -10 6.5 -22.5t-11.5 -20.5q-9 -7 -20 -7q-16 0 -25 11zM899 351q-14 -121 -103.5 -210t-216.5 -109q-33 -5 -66 -5q-160 0 -274 107q-67 64 -95 147.5t-13 173.5q21 117 113.5 201.5 | |
177 | +t217.5 99.5q101 12 193.5 -22.5t156.5 -107.5q9 -9 7.5 -22t-11.5 -21t-23.5 -6.5t-22.5 10.5q-53 61 -130.5 89.5t-160.5 18.5q-105 -12 -182 -82t-94 -168q-13 -75 10.5 -145t79.5 -122.5t130 -75t153 -10.5q104 16 179.5 91.5t87.5 174.5q5 46 -4 90q-3 18 -9 35 | |
178 | +q-3 12 3 23t19 14.5t24.5 -2t15.5 -18.5q7 -20 11 -41q10 -53 4 -108z" /> | |
179 | + <glyph glyph-name="uniE627" unicode="" | |
180 | +d="M874 345l-105 -84q-8 -7 -18.5 -6t-17.5 10q-6 7 -6 16q0 13 10 21l72 58h-271q-9 -18 -29 -18q-14 0 -23.5 9.5t-9.5 23.5v219q0 14 9.5 23.5t23.5 9.5t23.5 -9.5t9.5 -23.5v-181h267l-72 58q-8 7 -9.5 17.5t5.5 19t17.5 10t18.5 -5.5l105 -85q19 -15 19 -41 | |
181 | +q0 -25 -19 -41zM756 589q-53 60 -129.5 88.5t-159.5 18.5q-104 -13 -180 -82t-93 -166q-13 -74 10.5 -143t79 -121.5t128.5 -74.5t152 -10q104 17 179 93q10 19 29 19q14 0 23.5 -10t9.5 -23q0 -16 -13 -26q-89 -92 -218 -112q-33 -5 -65 -5q-158 0 -271 106q-66 63 -94 146 | |
182 | +t-13 171q20 116 111.5 199.5t216.5 98.5q99 12 191 -22t155 -106q8 -10 7 -22.5t-11.5 -20.5t-23.5 -6.5t-21 10.5z" /> | |
183 | + <glyph glyph-name="uniE628" unicode="" | |
184 | +d="M383 289h188q13 0 22 -9.5t9 -22.5t-9 -22t-22 -9h-188q-14 0 -23 9t-9 22t9 22.5t23 9.5zM383 413h251q13 0 22 -9t9 -22t-9 -22t-22 -9h-251q-14 0 -23 9t-9 22t9 22t23 9zM759 195q-13 0 -22 9t-9 22v250h-440v-375q0 -12 9.5 -21.5t22.5 -9.5h376q13 0 22.5 9.5 | |
185 | +t9.5 22t9 22t22 9.5t22.5 -9.5t9.5 -22.5q0 -38 -28 -65.5t-67 -27.5h-376q-39 0 -66.5 27.5t-27.5 65.5v500q0 38 27.5 65.5t66.5 27.5h31v31q0 13 9 22.5t22.5 9.5t22.5 -9.5t9 -22.5v-31h63v31q0 13 9 22.5t22 9.5t22 -9.5t9 -22.5v-31h63v31q0 13 9.5 22.5t22.5 9.5 | |
186 | +t22 -9.5t9 -22.5v-31h31q39 0 67 -27.5t28 -65.5v-375q0 -13 -9.5 -22t-22.5 -9zM728 601q0 12 -9.5 21.5t-22.5 9.5h-31v-31q0 -13 -9 -22.5t-22 -9.5t-22.5 9.5t-9.5 22.5v31h-63v-31q0 -13 -9 -22.5t-22 -9.5t-22 9.5t-9 22.5v31h-63v-31q0 -13 -9 -22.5t-22.5 -9.5 | |
187 | +t-22.5 9.5t-9 22.5v31h-31q-13 0 -22.5 -9.5t-9.5 -21.5v-63h440v63z" /> | |
188 | + <glyph glyph-name="uniE629" unicode="" | |
189 | +d="M811 35h-602q-33 0 -56.5 23.5t-23.5 57.5v523q0 34 23.5 57.5t56.5 23.5h44q6 18 21.5 29t35 11t35 -11t21.5 -29h87q7 18 22.5 29t34.5 11t34.5 -11t21.5 -29h88q6 18 21.5 29t35 11t35 -11t21.5 -29h44q33 0 56.5 -23.5t23.5 -57.5v-523q0 -34 -23.5 -57.5 | |
190 | +t-56.5 -23.5zM329 700q0 8 -5.5 14t-14 6t-14.5 -6t-6 -14v-40q0 -9 6 -15t14.5 -6t14 6t5.5 15v40zM530 700q0 8 -6 14t-14 6t-14 -6t-6 -14v-40q0 -9 6 -15t14 -6t14 6t6 15v40zM731 700q0 8 -6 14t-14.5 6t-14.5 -6t-6 -14v-40q0 -9 6 -15t14.5 -6t14.5 6t6 15v40z | |
191 | +M831 621q0 16 -11 27.5t-27 11.5h-22q0 -25 -18 -43t-42.5 -18t-42.5 18t-18 43h-80q0 -25 -17.5 -43t-42.5 -18t-42.5 18t-17.5 43h-80q0 -25 -18 -43t-43 -18t-42.5 18t-17.5 43h-22q-16 0 -27 -11.5t-11 -27.5v-486q0 -17 11 -28t27 -11h566q16 0 27 11t11 28v486z | |
192 | +M696 398q-25 0 -43 17.5t-18 42.5t18 43t43 18t42.5 -18t17.5 -43t-17.5 -42.5t-42.5 -17.5zM695.5 478q-8.5 0 -14 -5.5t-5.5 -14t5.5 -14.5t14 -6t14.5 6t6 14.5t-6 14t-14.5 5.5zM690.5 297q24.5 0 42.5 -17.5t18 -42.5t-18 -43t-42.5 -18t-42.5 18t-18 43t18 42.5 | |
193 | +t42.5 17.5zM690.5 216q8.5 0 14.5 6t6 14.5t-6 14.5t-14.5 6t-14.5 -6t-6 -14.5t6 -14.5t14.5 -6zM510 176q-25 0 -42.5 18t-17.5 43t17.5 42.5t42.5 17.5t42.5 -17.5t17.5 -42.5t-17.5 -43t-42.5 -18zM510 257q-8 0 -14 -6t-6 -14.5t6 -14.5t14 -6t14 6t6 14.5t-6 14.5 | |
194 | +t-14 6zM510 398q-25 0 -42.5 17.5t-17.5 42.5t17.5 43t42.5 18t42.5 -18t17.5 -43t-17.5 -42.5t-42.5 -17.5zM510 478q-8 0 -14 -5.5t-6 -14t6 -14.5t14 -6t14 6t6 14.5t-6 14t-14 5.5zM329.5 176q-24.5 0 -42.5 18t-18 43t18 42.5t42.5 17.5t42.5 -17.5t18 -42.5t-18 -43 | |
195 | +t-42.5 -18zM329.5 257q-8.5 0 -14.5 -6t-6 -14.5t6 -14.5t14.5 -6t14 6t5.5 14.5t-5.5 14.5t-14 6zM329.5 398q-24.5 0 -42.5 17.5t-18 42.5t18 43t42.5 18t42.5 -18t18 -43t-18 -42.5t-42.5 -17.5zM329.5 478q-8.5 0 -14.5 -5.5t-6 -14t6 -14.5t14.5 -6t14 6t5.5 14.5 | |
196 | +t-5.5 14t-14 5.5z" /> | |
197 | + <glyph glyph-name="uniE62A" unicode="" | |
198 | +d="M512 -4q-102 0 -189 51.5t-137.5 140t-50.5 192.5t50.5 192.5t137.5 140t189 51.5t189 -51.5t137.5 -140t50.5 -192.5t-50.5 -192.5t-137.5 -140t-189 -51.5zM512.5 679q-121.5 0 -207.5 -87.5t-86 -211.5t86 -211.5t207.5 -87.5t207 87.5t85.5 211.5t-85.5 211.5 | |
199 | +t-207 87.5zM693 337h-116q-9 -25 -30.5 -41t-48.5 -16q-35 0 -59.5 25t-24.5 61q0 27 15.5 49t40.5 31v147q0 12 8.5 20t20 8t19.5 -8t8 -20v-147q37 -14 51 -52h116q12 0 20 -8.5t8 -20t-8 -20t-20 -8.5zM498.5 394q-11.5 0 -20 -8.5t-8.5 -20t8.5 -20t20 -8.5t19.5 8.5 | |
200 | +t8 20t-8 20t-19.5 8.5z" /> | |
201 | + <glyph glyph-name="uniE62B" unicode="" | |
202 | +d="M791 10h-558q-38 0 -65.5 27t-27.5 66v558q0 39 27.5 66t65.5 27h558q39 0 66 -27t27 -66v-558q0 -39 -27 -66t-66 -27zM838 661q0 19 -13.5 33t-33.5 14h-558q-19 0 -32.5 -14t-13.5 -33v-558q0 -19 13.5 -33t32.5 -14h558q20 0 33.5 14t13.5 33v558zM652 359h-116v-117 | |
203 | +q0 -9 -7 -16t-16.5 -7t-16.5 7t-7 16v117h-116q-10 0 -16.5 6.5t-6.5 16.5t6.5 16.5t16.5 6.5h116v117q0 9 7 16t16.5 7t16.5 -7t7 -16v-117h116q10 0 16.5 -6.5t6.5 -16.5t-6.5 -16.5t-16.5 -6.5z" /> | |
204 | + <glyph glyph-name="uniE62C" unicode="" | |
205 | +d="M481 611h35q72 0 123 -51t51 -123v-35q0 -73 -51 -124t-123 -51h-35q-72 0 -123 51t-51 124v35q0 72 51 123t123 51z" /> | |
206 | + <glyph glyph-name="uniE62D" unicode="" | |
207 | +d="M261 380q0 -46 41 -69q17 -32 49 -49l211 -211q23 -41 69 -41l7 1l7 -1q27 0 46.5 19.5t19.5 46.5v13v0v569q0 1 -0.5 3.5t-0.5 3t0.5 3t0.5 3.5q0 33 -23.5 56.5t-56.5 23.5q-28 0 -49.5 -18t-27.5 -45l-231 -230q-27 -6 -44.5 -27.5t-17.5 -50.5z" /> | |
208 | + <glyph glyph-name="uniE62E" unicode="" | |
209 | +d="M763 388q0 46 -41 69q-17 32 -49 49l-211 211q-23 41 -69 41l-7 -1l-2 1h-5q-27 0 -46.5 -19.5t-19.5 -46.5v-13v0v-569q0 -1 0.5 -3.5t0.5 -3t-0.5 -3t-0.5 -3.5q0 -33 23.5 -56.5t56.5 -23.5q28 0 49.5 18t27.5 45l231 230q27 6 44.5 27.5t17.5 50.5z" /> | |
210 | + <glyph glyph-name="uniE62F" unicode="" | |
211 | +d="M508 635q-46 0 -69 -41q-32 -17 -49 -49l-211 -211q-41 -23 -41 -69l1 -7l-1 -2v-5q0 -27 19.5 -46.5t46.5 -19.5h13v0h569q1 0 3.5 0.5t3 0.5t3 -0.5t3.5 -0.5q33 0 56.5 23.5t23.5 56.5q0 28 -18 49.5t-45 27.5l-230 231q-6 27 -27.5 44.5t-50.5 17.5z" /> | |
212 | + <glyph glyph-name="uniE630" unicode="" | |
213 | +d="M516 133q46 0 69 41q32 17 49 49l211 211q41 23 41 69l-1 7l1 2v5q0 27 -19.5 46.5t-46.5 19.5h-13v0h-569q-1 0 -3.5 -0.5t-3 -0.5t-3 0.5t-3.5 0.5q-33 0 -56.5 -23.5t-23.5 -56.5q0 -28 18 -49.5t45 -27.5l230 -231q6 -27 27.5 -44.5t50.5 -17.5z" /> | |
214 | + <glyph glyph-name="uniE631" unicode="" | |
215 | +d="M510 26q-157 0 -269 108q-66 64 -93.5 148t-12.5 174q20 119 111 203.5t214 99.5q98 12 189.5 -22.5t154.5 -107.5q15 -18 14.5 -40.5t-16.5 -39.5l-226 -243q-25 -27 -63.5 -30t-68.5 21l-102 152q-10 8 -11 21t7.5 22.5t21.5 10.5t23 -7l102 -152q10 -8 23 -7t21 10 | |
216 | +l226 243q-53 61 -129 89.5t-158 18.5q-103 -13 -178.5 -83t-91.5 -169q-13 -75 10 -145.5t78 -123.5t128 -75t150 -10q102 16 176 91.5t86 175.5q5 46 -4 91q-3 17 -8 34q-4 12 2 23.5t18.5 15t24 -2.5t15.5 -18q7 -20 11 -41q10 -54 4 -109q-14 -122 -102 -211.5 | |
217 | +t-212 -109.5q-33 -5 -65 -5z" /> | |
218 | + <glyph glyph-name="uniE632" unicode="" horiz-adv-x="1025" | |
219 | +d="M845 -136h-671q-46 0 -79 33t-33 79v671q0 47 33.5 82t79.5 35h450v-81h-425q-23 0 -40 -19t-17 -42v-621q0 -23 16.5 -39.5t39.5 -16.5h621q24 0 42.5 17t18.5 40v424h82v-449q0 -46 -35.5 -79.5t-82.5 -33.5zM508 132q-11 -11 -29 -14l-245 -121q-21 -10 -34 4t-6 35 | |
220 | +l121 245q4 18 15 29l435 435q16 16 39 16t40 -16l99 -99q16 -17 16 -40t-16 -39zM273 95q-5 -10 2 -17.5t18 -2.5l126 67l-80 79zM394 295l266 266l99 -98l-266 -267zM858 601l-59 59q-8 9 -19.5 9t-20.5 -9l-33 -33l98 -100l34 35q8 8 8 19.5t-8 19.5z" /> | |
221 | + <glyph glyph-name="uniE633" unicode="" horiz-adv-x="1075" | |
222 | +d="M244 29q0 -22 22.5 -44.5t44.5 -22.5h83q23 0 45.5 22.5t22.5 44.5v219h209l249 -177q22 0 38.5 22t16.5 45v601q0 24 -16.5 45.5t-38.5 21.5l-249 -176h-360q-94 0 -157.5 -52t-63.5 -139q0 -77 41 -127.5t113 -63.5v-219zM394 248v-192q0 -11 -8 -19t-19 -8h-28 | |
223 | +q-11 0 -19.5 8t-8.5 19v192h83zM324 563q-166 5 -166 -124q0 -35 12.5 -59.5t29 -37t42.5 -19t42.5 -7.5t39.5 -1h196v248h-196zM671 315h-83v248h83v-248zM908 163l-169 124v303l169 124v-551z" /> | |
224 | + <glyph glyph-name="uniE634" unicode="" | |
225 | +d="M340 256h258q18 0 30.5 -12.5t12.5 -30t-12.5 -30t-30.5 -12.5h-258q-18 0 -30.5 12.5t-12.5 30t12.5 30t30.5 12.5zM340 427h344q18 0 30.5 -12.5t12.5 -30t-12.5 -30t-30.5 -12.5h-344q-18 0 -30.5 12.5t-12.5 30t12.5 30t30.5 12.5zM856 128q-18 0 -30.5 12.5 | |
226 | +t-12.5 30.5v341h-602v-512q0 -17 12.5 -29.5t30.5 -12.5h516q18 0 30.5 12.5t12.5 30t12.5 30t30.5 12.5t30.5 -12.5t12.5 -30.5q0 -53 -38 -90.5t-91 -37.5h-516q-53 0 -91 37.5t-38 90.5v683q0 53 38 90.5t91 37.5h43v42q0 18 12.5 30.5t30.5 12.5t30.5 -12.5t12.5 -30.5 | |
227 | +v-42h86v42q0 18 12.5 30.5t30.5 12.5t30.5 -12.5t12.5 -30.5v-42h86v42q0 18 12.5 30.5t30.5 12.5t30.5 -12.5t12.5 -30.5v-42h43q53 0 91 -37.5t38 -90.5v-512q0 -18 -12.5 -30.5t-30.5 -12.5zM813 683q0 17 -12.5 29.5t-30.5 12.5h-43v-42q0 -18 -12.5 -30.5t-30.5 -12.5 | |
228 | +t-30.5 12.5t-12.5 30.5v42h-86v-42q0 -18 -12.5 -30.5t-30.5 -12.5t-30.5 12.5t-12.5 30.5v42h-86v-42q0 -18 -12.5 -30.5t-30.5 -12.5t-30.5 12.5t-12.5 30.5v42h-43q-18 0 -30.5 -12.5t-12.5 -29.5v-86h602v86z" /> | |
229 | + <glyph glyph-name="uniE635" unicode="" horiz-adv-x="1089" | |
230 | +d="M512 784q13 27 32.5 27t32.5 -27l86 -172q14 -27 45 -49t60 -27l193 -27q30 -5 36 -22.5t-16 -38.5l-139 -134q-22 -21 -33.5 -57t-6.5 -65l33 -189q5 -30 -10.5 -41t-42.5 3l-172 89q-27 14 -65.5 14t-65.5 -14l-172 -89q-27 -14 -42.5 -3t-10.5 41l33 189q5 29 -6.5 65 | |
231 | +t-33.5 57l-139 134q-22 21 -16 38.5t36 22.5l192 27q30 5 61 27t45 49z" /> | |
232 | + <glyph glyph-name="uniE636" unicode="" | |
233 | +d="M659 3l-350 358q-8 8 -8 18.5t8 17.5q0 1 0.5 1.5t1.5 0.5l3 6l354 360q8 8 18.5 8t17.5 -7.5t7 -18t-7 -18.5l-343 -349l332 -341q8 -7 8 -17.5t-7.5 -18t-17.5 -7.5t-17 7z" /> | |
234 | + <glyph glyph-name="uniE637" unicode="" | |
235 | +d="M881 493q-17 0 -29 12t-12 29v132l-364 -364q-12 -12 -29 -12t-29 12t-12 29t12 29l364 364h-132q-17 0 -29 12t-12 29t12 29t29 12h231q17 0 29 -12t12 -29v-231q0 -17 -12 -29t-29 -12zM169 593v-517q0 -19 14 -32.5t33 -13.5h517q20 0 35.5 14t15.5 33v354h68v-375 | |
236 | +q0 -38 -29.5 -66t-68.5 -28h-559q-39 0 -66 27.5t-27 65.5v559q0 39 27.5 68.5t66.5 29.5h375v-68h-355q-18 0 -32.5 -15.5t-14.5 -35.5z" /> | |
237 | + <glyph glyph-name="uniE638" unicode="" | |
238 | +d="M230 -180q-48 0 -81.5 33.5t-33.5 81.5v333l-38 -38q-13 -13 -32 -13t-32 13q-13 25 -13 38q0 6 13 32l467 467q13 13 32 13t32 -13l467 -467q13 -26 13 -32q0 -19 -13 -32t-32 -13t-32 13l-435 429l-301 -301v-422q0 -10 8 -18t18 -8h115v186q0 19 13 31.5t32 12.5h230 | |
239 | +q19 0 32 -12.5t13 -32t-13 -32t-32 -12.5h-185v-186q0 -19 -13 -32t-32 -13h-167v-6zM627 -180q-19 0 -32 13t-13 32t13 32t32 13h160q10 0 18 8t8 17v256q0 19 12.5 32t32 13t32 -13t12.5 -32v-256q0 -48 -33.5 -81.5t-81.5 -33.5h-160z" /> | |
240 | + <glyph glyph-name="uniE639" unicode="" | |
241 | +d="M512 -38q-109 0 -202.5 51.5t-151.5 140.5t-66 196h-2v68h2q8 107 66 196t151.5 140.5t202.5 51.5q115 0 212 -56.5t153.5 -153.5t56.5 -212t-56.5 -212t-153.5 -153.5t-212 -56.5zM280 418q13 76 67.5 130.5t130.5 68.5v111q-123 -12 -210.5 -99.5t-99.5 -210.5h112 | |
242 | +q-4 -23 -4 -42q0 -13 1 -26h-109q12 -123 99.5 -210.5t210.5 -99.5v95q-80 14 -136.5 74t-64.5 141zM343 375.5q0 -73.5 52 -125.5t125.5 -52t125.5 52t52 125.5t-52 125.5t-125.5 52t-125.5 -52t-52 -125.5zM764 350q-9 -86 -70.5 -147.5t-147.5 -70.5v-92 | |
243 | +q123 12 210.5 99.5t99.5 210.5h-92q1 13 1 26q0 19 -4 42h95q-12 123 -99.5 210.5t-210.5 99.5v-109q81 -9 141 -65t74 -136z" /> | |
244 | + <glyph glyph-name="uniE63A" unicode="" | |
245 | +d="M908 279h-159q-11 0 -18.5 7.5t-7.5 18.5t7.5 18.5t18.5 7.5h159q10 0 18 -7.5t8 -18.5t-8 -18.5t-18 -7.5zM908 437h-211q-11 0 -19 7.5t-8 18.5t8 18.5t19 7.5h211q10 0 18 -7.5t8 -18.5t-8 -18.5t-18 -7.5zM908 595h-211q-11 0 -19 7.5t-8 18.5t8 19t19 8h211 | |
246 | +q10 0 18 -8t8 -19t-8 -18.5t-18 -7.5zM670 226v-106q0 -65 -46 -111.5t-112 -46.5h-264q-65 0 -111.5 46.5t-46.5 111.5v106q0 51 30 91.5t77 57.5q-54 73 -54 167q0 109 69.5 186.5t167.5 77.5t167.5 -77.5t69.5 -186.5q0 -94 -54 -167q48 -17 77.5 -57.5t29.5 -91.5z | |
247 | +M565 542.5q0 87.5 -54 149t-130.5 61.5t-130.5 -61.5t-54 -149t54 -149.5t130.5 -62t130.5 62t54 149.5zM617 213q0 41 -28 73t-71 42q-62 -49 -138 -49t-138 49q-43 -10 -71 -42t-28 -73v-79q0 -50 38 -84.5t91 -34.5h216q54 0 91.5 34.5t37.5 84.5v79zM749 173h159 | |
248 | +q10 0 18 -7.5t8 -18.5t-8 -19t-18 -8h-159q-11 0 -18.5 8t-7.5 19t7.5 18.5t18.5 7.5z" /> | |
249 | + <glyph glyph-name="uniE63B" unicode="" horiz-adv-x="1366" | |
250 | +d="M1121 290h-937q-39 0 -66.5 27.5t-27.5 66.5t27.5 66.5t66.5 27.5h937q39 0 66.5 -27.5t27.5 -66.5t-27.5 -66.5t-66.5 -27.5zM1121 618h-937q-39 0 -66.5 27.5t-27.5 66.5t27.5 66.5t66.5 27.5h937q39 0 66.5 -27.5t27.5 -66.5t-27.5 -66.5t-66.5 -27.5zM184 150h937 | |
251 | +q39 0 66.5 -27.5t27.5 -66.5t-27.5 -66.5t-66.5 -27.5h-937q-39 0 -66.5 27.5t-27.5 66.5t27.5 66.5t66.5 27.5z" /> | |
252 | + <glyph glyph-name="uniE63C" unicode="" | |
253 | +d="M820 -12h-194q-36 0 -62 26t-26 62v194q0 36 26 62t62 26h194q36 0 62 -26t26 -62v-194q0 -36 -26 -62t-62 -26zM837 287h-228v-228h228v228zM820 410h-194q-36 0 -62 26t-26 62v194q0 36 26 62t62 26h194q36 0 62 -26t26 -62v-194q0 -36 -26 -62t-62 -26zM837 709h-228 | |
254 | +v-228h228v228zM398 -12h-194q-36 0 -62 26t-26 62v194q0 36 26 62t62 26h194q36 0 62 -26t26 -62v-194q0 -36 -26 -62t-62 -26zM415 287h-228v-228h228v228zM398 410h-194q-36 0 -62 26t-26 62v194q0 36 26 62t62 26h194q36 0 62 -26t26 -62v-194q0 -36 -26 -62t-62 -26z | |
255 | +M415 709h-228v-228h228v228z" /> | |
256 | + </font> | |
257 | +</defs></svg> | ... | ... |
1.0 KB
1.1 KB
1.4 KB
735 Bytes
1.5 KB
185 Bytes
807 Bytes
850 Bytes
1.0 KB
4.5 KB
3.9 KB
3.9 KB
4.3 KB
4.2 KB
3.1 KB
2.8 KB
2.8 KB
2.7 KB
4.1 KB
4.1 KB
4.8 KB
4.1 KB
4.0 KB
1 | +status ok | |
\ No newline at end of file | ... | ... |
1 | + | |
2 | +@font-face {font-family: "iconfont"; | |
3 | + src: url('iconfont.eot?t=1514860663291'); /* IE9*/ | |
4 | + src: url('iconfont.eot?t=1514860663291#iefix') format('embedded-opentype'), /* IE6-IE8 */ | |
5 | + url('data:application/x-font-woff;charset=utf-8;base64,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') format('woff'), | |
6 | + url('iconfont.ttf?t=1514860663291') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ | |
7 | + url('iconfont.svg?t=1514860663291#iconfont') format('svg'); /* iOS 4.1- */ | |
8 | +} | |
9 | + | |
10 | +.iconfont { | |
11 | + font-family:"iconfont" !important; | |
12 | + font-size:16px; | |
13 | + font-style:normal; | |
14 | + -webkit-font-smoothing: antialiased; | |
15 | + -moz-osx-font-smoothing: grayscale; | |
16 | +} | |
17 | + | |
18 | +.icon-luntanzixun:before { content: "\e613"; } | |
19 | + | |
20 | +.icon-jinbishangcheng:before { content: "\e614"; } | |
21 | + | |
22 | +.icon-daefenqi:before { content: "\e601"; } | |
23 | + | ... | ... |
1 | +<?xml version="1.0" standalone="no"?> | |
2 | +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > | |
3 | +<!-- | |
4 | +2013-9-30: Created. | |
5 | +--> | |
6 | +<svg> | |
7 | +<metadata> | |
8 | +Created by iconfont | |
9 | +</metadata> | |
10 | +<defs> | |
11 | + | |
12 | +<font id="iconfont" horiz-adv-x="1024" > | |
13 | + <font-face | |
14 | + font-family="iconfont" | |
15 | + font-weight="500" | |
16 | + font-stretch="normal" | |
17 | + units-per-em="1024" | |
18 | + ascent="896" | |
19 | + descent="-128" | |
20 | + /> | |
21 | + <missing-glyph /> | |
22 | + | |
23 | + <glyph glyph-name="x" unicode="x" horiz-adv-x="1001" | |
24 | +d="M281 543q-27 -1 -53 -1h-83q-18 0 -36.5 -6t-32.5 -18.5t-23 -32t-9 -45.5v-76h912v41q0 16 -0.5 30t-0.5 18q0 13 -5 29t-17 29.5t-31.5 22.5t-49.5 9h-133v-97h-438v97zM955 310v-52q0 -23 0.5 -52t0.5 -58t-10.5 -47.5t-26 -30t-33 -16t-31.5 -4.5q-14 -1 -29.5 -0.5 | |
25 | +t-29.5 0.5h-32l-45 128h-439l-44 -128h-29h-34q-20 0 -45 1q-25 0 -41 9.5t-25.5 23t-13.5 29.5t-4 30v167h911zM163 247q-12 0 -21 -8.5t-9 -21.5t9 -21.5t21 -8.5q13 0 22 8.5t9 21.5t-9 21.5t-22 8.5zM316 123q-8 -26 -14 -48q-5 -19 -10.5 -37t-7.5 -25t-3 -15t1 -14.5 | |
26 | +t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-5 19 -11 39h-368zM336 498v228q0 11 2.5 23t10 21.5t20.5 15.5t34 6h188q31 0 51.5 -14.5t20.5 -52.5v-227h-327z" /> | |
27 | + | |
28 | + | |
29 | + | |
30 | + <glyph glyph-name="luntanzixun" unicode="" d="M51.2 1.706667a257.706667 30.72 0 1 1 515.413333 0 257.706667 30.72 0 1 1-515.413333 0ZM581.973333-37.546667a143.36 22.186667 0 1 1 286.72 0 143.36 22.186667 0 1 1-286.72 0ZM568.32 482.986667H201.386667c-11.946667 0-22.186667-8.533333-22.186667-18.773334 0-10.24 10.24-18.773333 22.186667-18.773333h366.933333c11.946667 0 22.186667 8.533333 22.186667 18.773333 0 10.24-10.24 18.773333-22.186667 18.773334zM935.253333 416.426667l-360.106666-10.24c-22.186667 0-40.96-18.773333-40.96-40.96v-238.933334c0-22.186667 18.773333-40.96 40.96-40.96h134.826666l3.413334-30.72 34.133333-15.36c6.826667-3.413333 18.773333-1.706667 23.893333 5.12l40.96 40.96h116.053334c22.186667 0 51.2 18.773333 51.2 40.96v238.933334c1.706667 22.186667-22.186667 51.2-44.373334 51.2zM904.533333 416.426667H530.773333c-22.186667 0-40.96-18.773333-40.96-40.96v-235.52c0-22.186667 18.773333-40.96 40.96-40.96H665.6l40.96-40.96c5.12-5.12 15.36-5.12 20.48 0l40.96 40.96h136.533333c22.186667 0 40.96 18.773333 40.96 40.96V375.466667c-1.706667 22.186667-18.773333 40.96-40.96 40.96zM675.84 708.266667l-515.413333-13.653334c-32.426667 0-58.026667-25.6-58.026667-58.026666V298.666667c0-32.426667 25.6-58.026667 58.026667-58.026667h194.56l18.773333-46.08 27.306667-13.653333c15.36-6.826667 35.84-3.413333 47.786666 8.533333l51.2 52.906667h194.56c32.426667 0 58.026667 25.6 58.026667 58.026666V636.586667c0 32.426667-44.373333 71.68-76.8 71.68zM643.413333 708.266667H109.226667C76.8 708.266667 51.2 682.666667 51.2 650.24v-337.92c0-32.426667 25.6-58.026667 58.026667-58.026667h194.56l51.2-52.906666c11.946667-11.946667 30.72-11.946667 42.666666 0l51.2 52.906666h194.56c32.426667 0 58.026667 25.6 58.026667 58.026667V650.24c0 32.426667-25.6 58.026667-58.026667 58.026667zM143.36 532.48c3.413333 20.48 23.893333 37.546667 46.08 37.546667h172.373333c20.48 0 39.253333-17.066667 39.253334-37.546667 0-20.48-17.066667-37.546667-37.546667-37.546667h-187.733333c-22.186667-1.706667-37.546667 15.36-32.426667 37.546667zM143.36 431.786667c3.413333 17.066667 18.773333 30.72 35.84 30.72h305.493333c17.066667 0 32.426667-13.653333 34.133334-30.72v-8.533334c1.706667-20.48-13.653333-37.546667-34.133334-37.546666H174.08c-20.48 0-35.84 17.066667-30.72 37.546666v8.533334zM141.653333 570.026667h180.906667c17.066667 0 30.72-13.653333 30.72-30.72s-13.653333-30.72-30.72-30.72H141.653333c-17.066667 0-30.72 13.653333-30.72 30.72s15.36 30.72 30.72 30.72zM141.653333 462.506667H443.733333c17.066667 0 30.72-13.653333 30.72-30.72S460.8 401.066667 443.733333 401.066667H141.653333c-17.066667 0-30.72 13.653333-30.72 30.72s15.36 30.72 30.72 30.72zM819.2 716.8a76.8 76.8 0 1 1 153.6 0 76.8 76.8 0 1 1-153.6 0ZM785.066667 716.8a76.8 76.8 0 1 1 153.6 0 76.8 76.8 0 1 1-153.6 0Z" horiz-adv-x="1024" /> | |
31 | + | |
32 | + | |
33 | + <glyph glyph-name="jinbishangcheng" unicode="" d="M175.786667-11.946667a319.146667 30.72 0 1 1 638.293333 0 319.146667 30.72 0 1 1-638.293333 0ZM522.24 52.906667c-201.386667 0-365.226667 158.72-365.226667 353.28S320.853333 759.466667 522.24 759.466667 887.466667 600.746667 887.466667 406.186667s-163.84-353.28-365.226667-353.28zM471.04 52.906667C276.48 52.906667 119.466667 209.92 119.466667 406.186667S276.48 759.466667 471.04 759.466667s351.573333-158.72 351.573333-353.28-158.72-353.28-351.573333-353.28zM266.1376 402.688l199.1168 199.1168 205.141333-205.141333-199.099733-199.1168zM501.76 563.2l-37.546667 37.546667-197.973333-197.973334 204.8-204.8 37.546667 37.546667-167.253334 167.253333 160.426667 160.426667z" horiz-adv-x="1024" /> | |
34 | + | |
35 | + | |
36 | + <glyph glyph-name="daefenqi" unicode="" d="M184.32 247.467h645.12l117.76-153.6c42.667-54.614 20.48-100.694-49.493-100.694H122.88c-69.973 0-92.16 46.08-51.2 100.694l112.64 153.6zM157.013 631.467c0 42.666 34.134 76.8 76.8 76.8h561.494c42.666 0 80.213-34.134 87.04-75.094 0 0 6.826-40.96 6.826-61.44v-281.6c0-42.666-34.133-76.8-76.8-76.8h-578.56c-42.666 0-76.8 34.134-76.8 76.8V631.467zM196.267 708.267h559.786c42.667 0 76.8-34.134 76.8-76.8v-343.04c0-42.667-34.133-76.8-76.8-76.8H196.267c-42.667 1.706-76.8 35.84-76.8 78.506V631.467c0 42.666 34.133 76.8 76.8 76.8zM238.933 552.96c13.654 20.48 47.787 35.84 75.094 37.547 0 0 116.053 3.413 182.613 3.413h23.893c27.307-3.413 47.787-29.013 47.787-56.32v6.827c0-27.307-23.893-49.494-51.2-49.494H295.253c-27.306 0-52.906 22.187-56.32 49.494v8.533z m3.414-122.88c13.653 17.067 40.96 30.72 61.44 30.72h360.106c20.48 0 40.96-17.067 44.374-37.547l1.706-10.24c5.12-25.6-13.653-47.786-39.253-47.786H295.253c-25.6 0-52.906 20.48-59.733 46.08l-1.707 8.533 8.534 10.24zM269.653 593.92h223.574c20.48 0 37.546-17.067 37.546-37.547 0-20.48-17.066-37.546-37.546-37.546H269.653c-20.48 0-37.546 17.066-37.546 37.546s17.066 37.547 37.546 37.547z m0-133.12h373.76c20.48 0 37.547-17.067 37.547-37.547 0-20.48-17.067-37.546-37.547-37.546h-373.76c-20.48 0-37.546 17.066-37.546 37.546s17.066 37.547 37.546 37.547zM580.267 215.04a204.8 203.093 0 1 1 409.6 0 204.8 203.093 0 1 1-409.6 0zM529.067 218.453a201.387 199.68 0 1 1 402.773 0 201.387 199.68 0 1 1-402.773 0zM762.88 274.773c0 13.654-3.413 40.96-32.427 40.96s-18.773-25.6-18.773-40.96l-11.947-83.626c0-13.654 22.187-25.6 37.547-25.6h98.987c13.653 0 29.013 11.946 29.013 25.6 0 20.48-15.36 34.133-29.013 34.133l-73.387-13.653v63.146z" horiz-adv-x="1024" /> | |
37 | + | |
38 | + | |
39 | + | |
40 | + | |
41 | + </font> | |
42 | +</defs></svg> | ... | ... |
1.5 KB
3.2 KB
1.4 KB
2.0 KB
8.8 KB
11.4 KB
5.6 KB
8.1 KB
4.7 KB
9.4 KB
12.9 KB
8.8 KB
9.4 KB
7.8 KB
7.9 KB
7.5 KB
12.8 KB
9.1 KB
8.8 KB
22.3 KB
510.9 KB
401.5 KB
61.8 KB
12.6 KB
1.5 KB
8.8 KB
10.5 KB
7.6 KB
9.0 KB
7.6 KB
9.0 KB
12.0 KB
9.0 KB
8.8 KB
8.4 KB
8.5 KB
8.3 KB
9.9 KB
9.3 KB
9.1 KB
9.4 KB
20.6 KB
3.6 KB
25.4 KB
265 Bytes
7.4 KB
9.0 KB
6.5 KB
7.9 KB
6.4 KB
7.7 KB
9.6 KB
7.8 KB
7.4 KB
7.2 KB
7.4 KB
7.0 KB
8.7 KB
8.1 KB
7.8 KB
24.8 KB
68.5 KB
313 Bytes
1.1 KB
2.3 KB
1.4 KB
1.3 KB
1.2 KB
11.1 KB
51.9 KB
33.4 KB
21.3 KB
10.1 KB
28.7 KB
119.2 KB
1.7 KB
1.8 KB
1.7 KB
1.8 KB
68.8 KB
157.7 KB
411.5 KB
444.3 KB
12.6 KB
1.5 KB
1.6 KB
1.6 KB
46.7 KB
439 Bytes
1.1 KB
3.6 KB
17.8 KB
21.0 KB
140.3 KB
5.5 KB
903 Bytes
1.0 KB
619 Bytes
1.1 KB
1.5 KB
671 Bytes
5.0 KB
3.7 KB
3.8 KB
4.9 KB
3.5 KB
3.3 KB
6.1 KB
4.2 KB
5.0 KB
4.3 KB
2.8 KB
2.9 KB
3.0 KB
2.5 KB
2.2 KB
2.8 KB
2.8 KB
3.1 KB
6.2 KB
2.9 KB
3.0 KB
3.8 KB
6.1 KB
4.1 KB
4.2 KB
4.2 KB
4.0 KB
3.2 KB
3.8 KB
3.7 KB
3.5 KB
4.3 KB
3.5 KB
38.4 KB
103.6 KB
405.6 KB
1.2 MB
197.5 KB
2.4 KB
2.3 KB
363 Bytes
1.0 KB
4.4 KB
2.2 KB
215 Bytes
723 Bytes
1.2 KB
1.1 KB
1.0 KB
1.5 KB
4.7 KB
4.0 KB
4.0 KB
3.5 KB
4.0 KB
3.5 KB
2.9 KB
3.2 KB
2.8 KB
3.0 KB
3.5 KB
4.1 KB
4.2 KB
4.0 KB
3.7 KB
4.0 KB
1.1 KB
936 Bytes
11.1 KB
2.0 KB
1.2 KB
727.2 KB
15.9 KB
34.3 KB
5.0 KB
5.0 KB
3.2 KB
3.6 KB
4.6 KB
3.1 KB
3.8 KB
4.1 KB
4.4 KB
4.6 KB
3.4 KB
4.6 KB
6.9 KB
5.3 KB
3.6 KB
4.4 KB
6.5 KB
3.0 KB
4.9 KB
5.0 KB
2.8 KB
5.5 KB
5.0 KB
4.2 KB
3.1 KB
3.1 KB
3.5 KB
2.9 KB
2.8 KB
3.1 KB
3.4 KB
3.4 KB
3.0 KB
3.3 KB
3.3 KB
3.0 KB
3.6 KB
3.0 KB
3.5 KB
3.1 KB
3.2 KB
3.2 KB
1.4 KB
4.7 KB
6.6 KB
2.9 KB
5.9 KB
4.0 KB
3.0 KB
5.8 KB
4.4 KB
3.9 KB
2.9 KB
3.4 KB
2.2 KB
1.8 KB
4.6 KB
3.8 KB
1.4 KB
5.5 KB
2.4 KB
4.2 KB
5.9 KB
6.2 KB
3.1 KB
2.7 KB
3.7 KB
5.4 KB
6.0 KB
6.4 KB
5.1 KB
2.7 KB
4.7 KB
5.6 KB
6.3 KB
4.6 KB
3.8 KB
4.8 KB
5.3 KB
2.3 KB
3.8 KB
2.3 KB
1.3 KB
1.3 KB
4.1 KB
3.6 KB
5.0 KB
4.0 KB
4.0 KB
5.1 KB
4.7 KB
3.7 KB
5.1 KB
5.9 KB
4.6 KB
3.1 KB
6.4 KB
3.7 KB
3.2 KB
6.8 KB
5.0 KB
4.1 KB
6.3 KB
5.8 KB
6.1 KB
8.3 KB
5.0 KB
2.6 KB
4.0 KB
5.8 KB
4.4 KB
4.9 KB
3.8 KB
4.0 KB
1.6 KB
2.0 KB
3.0 KB
4.4 KB
6.0 KB
2.9 KB
3.9 KB
4.4 KB
4.6 KB
5.3 KB
4.4 KB
5.0 KB
4.6 KB
4.2 KB
3.7 KB
5.8 KB
5.8 KB
5.5 KB
6.6 KB
4.2 KB
2.8 KB
2.9 KB
1.6 KB
5.5 KB
7.0 KB
5.7 KB
3.9 KB
3.4 KB
5.1 KB
4.6 KB
4.5 KB
3.5 KB
4.6 KB
4.2 KB
3.8 KB
3.4 KB
6.9 KB
4.1 KB
4.6 KB
2.5 KB
2.5 KB
2.8 KB
2.5 KB
2.8 KB
2.4 KB
2.7 KB
2.8 KB
2.5 KB
2.8 KB
2.4 KB
2.7 KB
2.6 KB
2.7 KB
2.6 KB
2.8 KB
2.5 KB
2.7 KB
2.6 KB
2.7 KB
2.5 KB
2.7 KB
2.4 KB
2.7 KB
4.7 KB
5.6 KB
3.8 KB
3.8 KB
1.6 KB
3.5 KB
2.9 KB
4.2 KB
5.8 KB
3.7 KB
1.7 KB
5.4 KB
5.7 KB
4.5 KB
4.8 KB
3.6 KB
6.0 KB
4.0 KB
8.0 KB
4.1 KB
7.0 KB
1.5 KB
6.5 KB
7.4 KB
7.2 KB
7.0 KB
5.6 KB
5.2 KB
2.6 KB
6.0 KB
3.9 KB
5.5 KB
5.6 KB
6.5 KB
6.1 KB
5.3 KB
1.1 KB
1.9 KB
5.2 KB
5.7 KB
3.8 KB
4.8 KB
3.6 KB
7.7 KB
4.3 KB
5.3 KB
5.3 KB
2.9 KB
2.6 KB
7.1 KB
5.0 KB
5.6 KB
2.7 KB
4.7 KB
2.9 KB
6.1 KB
5.2 KB
5.8 KB
5.8 KB
4.5 KB
7.0 KB
4.2 KB
3.2 KB
5.1 KB
7.6 KB
6.6 KB
3.5 KB
5.0 KB
3.1 KB
6.8 KB
2.1 KB
4.2 KB
4.6 KB
7.0 KB
6.9 KB
7.1 KB
5.1 KB
4.6 KB
3.8 KB
3.2 KB
3.9 KB
4.0 KB
2.7 KB
5.0 KB
2.6 KB
1 | +.emojify{width:1.5em;height:1.5em;display:inline-block;margin-bottom:-0.25em}.emojify.alien{background:url(alien.png) no-repeat;background-size:1.5em}.emojify.angel{background:url(angel.png) no-repeat;background-size:1.5em}.emojify.anger{background:url(anger.png) no-repeat;background-size:1.5em}.emojify.angry{background:url(angry.png) no-repeat;background-size:1.5em}.emojify.anguished{background:url(anguished.png) no-repeat;background-size:1.5em}.emojify.astonished{background:url(astonished.png) no-repeat;background-size:1.5em}.emojify.baby{background:url(baby.png) no-repeat;background-size:1.5em}.emojify.blue_heart{background:url(blue_heart.png) no-repeat;background-size:1.5em}.emojify.blush{background:url(blush.png) no-repeat;background-size:1.5em}.emojify.boom{background:url(boom.png) no-repeat;background-size:1.5em}.emojify.bow{background:url(bow.png) no-repeat;background-size:1.5em}.emojify.bowtie{background:url(bowtie.png) no-repeat;background-size:1.5em}.emojify.boy{background:url(boy.png) no-repeat;background-size:1.5em}.emojify.bride_with_veil{background:url(bride_with_veil.png) no-repeat;background-size:1.5em}.emojify.broken_heart{background:url(broken_heart.png) no-repeat;background-size:1.5em}.emojify.bust_in_silhouette{background:url(bust_in_silhouette.png) no-repeat;background-size:1.5em}.emojify.busts_in_silhouette{background:url(busts_in_silhouette.png) no-repeat;background-size:1.5em}.emojify.clap{background:url(clap.png) no-repeat;background-size:1.5em}.emojify.cold_sweat{background:url(cold_sweat.png) no-repeat;background-size:1.5em}.emojify.collision{background:url(collision.png) no-repeat;background-size:1.5em}.emojify.confounded{background:url(confounded.png) no-repeat;background-size:1.5em}.emojify.confused{background:url(confused.png) no-repeat;background-size:1.5em}.emojify.construction_worker{background:url(construction_worker.png) no-repeat;background-size:1.5em}.emojify.cop{background:url(cop.png) no-repeat;background-size:1.5em}.emojify.couple_with_heart{background:url(couple_with_heart.png) no-repeat;background-size:1.5em}.emojify.couple{background:url(couple.png) no-repeat;background-size:1.5em}.emojify.couplekiss{background:url(couplekiss.png) no-repeat;background-size:1.5em}.emojify.cry{background:url(cry.png) no-repeat;background-size:1.5em}.emojify.crying_cat_face{background:url(crying_cat_face.png) no-repeat;background-size:1.5em}.emojify.cupid{background:url(cupid.png) no-repeat;background-size:1.5em}.emojify.dancer{background:url(dancer.png) no-repeat;background-size:1.5em}.emojify.dancers{background:url(dancers.png) no-repeat;background-size:1.5em}.emojify.dash{background:url(dash.png) no-repeat;background-size:1.5em}.emojify.disappointed{background:url(disappointed.png) no-repeat;background-size:1.5em}.emojify.dizzy_face{background:url(dizzy_face.png) no-repeat;background-size:1.5em}.emojify.dizzy{background:url(dizzy.png) no-repeat;background-size:1.5em}.emojify.droplet{background:url(droplet.png) no-repeat;background-size:1.5em}.emojify.ear{background:url(ear.png) no-repeat;background-size:1.5em}.emojify.exclamation{background:url(exclamation.png) no-repeat;background-size:1.5em}.emojify.expressionless{background:url(expressionless.png) no-repeat;background-size:1.5em}.emojify.eyes{background:url(eyes.png) no-repeat;background-size:1.5em}.emojify.facepunch{background:url(facepunch.png) no-repeat;background-size:1.5em}.emojify.family{background:url(family.png) no-repeat;background-size:1.5em}.emojify.fearful{background:url(fearful.png) no-repeat;background-size:1.5em}.emojify.feelsgood{background:url(feelsgood.png) no-repeat;background-size:1.5em}.emojify.feet{background:url(feet.png) no-repeat;background-size:1.5em}.emojify.finnadie{background:url(finnadie.png) no-repeat;background-size:1.5em}.emojify.fire{background:url(fire.png) no-repeat;background-size:1.5em}.emojify.fist{background:url(fist.png) no-repeat;background-size:1.5em}.emojify.flushed{background:url(flushed.png) no-repeat;background-size:1.5em}.emojify.frowning{background:url(frowning.png) no-repeat;background-size:1.5em}.emojify.girl{background:url(girl.png) no-repeat;background-size:1.5em}.emojify.goberserk{background:url(goberserk.png) no-repeat;background-size:1.5em}.emojify.godmode{background:url(godmode.png) no-repeat;background-size:1.5em}.emojify.green_heart{background:url(green_heart.png) no-repeat;background-size:1.5em}.emojify.grey_exclamation{background:url(grey_exclamation.png) no-repeat;background-size:1.5em}.emojify.grey_question{background:url(grey_question.png) no-repeat;background-size:1.5em}.emojify.grimacing{background:url(grimacing.png) no-repeat;background-size:1.5em}.emojify.grin{background:url(grin.png) no-repeat;background-size:1.5em}.emojify.grinning{background:url(grinning.png) no-repeat;background-size:1.5em}.emojify.guardsman{background:url(guardsman.png) no-repeat;background-size:1.5em}.emojify.haircut{background:url(haircut.png) no-repeat;background-size:1.5em}.emojify.hand{background:url(hand.png) no-repeat;background-size:1.5em}.emojify.hankey{background:url(hankey.png) no-repeat;background-size:1.5em}.emojify.hear_no_evil{background:url(hear_no_evil.png) no-repeat;background-size:1.5em}.emojify.heart_eyes_cat{background:url(heart_eyes_cat.png) no-repeat;background-size:1.5em}.emojify.heart_eyes{background:url(heart_eyes.png) no-repeat;background-size:1.5em}.emojify.heart{background:url(heart.png) no-repeat;background-size:1.5em}.emojify.heartbeat{background:url(heartbeat.png) no-repeat;background-size:1.5em}.emojify.heartpulse{background:url(heartpulse.png) no-repeat;background-size:1.5em}.emojify.hurtrealbad{background:url(hurtrealbad.png) no-repeat;background-size:1.5em}.emojify.hushed{background:url(hushed.png) no-repeat;background-size:1.5em}.emojify.imp{background:url(imp.png) no-repeat;background-size:1.5em}.emojify.information_desk_person{background:url(information_desk_person.png) no-repeat;background-size:1.5em}.emojify.innocent{background:url(innocent.png) no-repeat;background-size:1.5em}.emojify.japanese_goblin{background:url(japanese_goblin.png) no-repeat;background-size:1.5em}.emojify.japanese_ogre{background:url(japanese_ogre.png) no-repeat;background-size:1.5em}.emojify.joy_cat{background:url(joy_cat.png) no-repeat;background-size:1.5em}.emojify.joy{background:url(joy.png) no-repeat;background-size:1.5em}.emojify.kiss{background:url(kiss.png) no-repeat;background-size:1.5em}.emojify.kissing_cat{background:url(kissing_cat.png) no-repeat;background-size:1.5em}.emojify.kissing_closed_eyes{background:url(kissing_closed_eyes.png) no-repeat;background-size:1.5em}.emojify.kissing_heart{background:url(kissing_heart.png) no-repeat;background-size:1.5em}.emojify.kissing_smiling_eyes{background:url(kissing_smiling_eyes.png) no-repeat;background-size:1.5em}.emojify.kissing{background:url(kissing.png) no-repeat;background-size:1.5em}.emojify.laughing{background:url(laughing.png) no-repeat;background-size:1.5em}.emojify.lips{background:url(lips.png) no-repeat;background-size:1.5em}.emojify.love_letter{background:url(love_letter.png) no-repeat;background-size:1.5em}.emojify.man_with_gua_pi_mao{background:url(man_with_gua_pi_mao.png) no-repeat;background-size:1.5em}.emojify.man_with_turban{background:url(man_with_turban.png) no-repeat;background-size:1.5em}.emojify.man{background:url(man.png) no-repeat;background-size:1.5em}.emojify.mask{background:url(mask.png) no-repeat;background-size:1.5em}.emojify.massage{background:url(massage.png) no-repeat;background-size:1.5em}.emojify.metal{background:url(metal.png) no-repeat;background-size:1.5em}.emojify.muscle{background:url(muscle.png) no-repeat;background-size:1.5em}.emojify.musical_note{background:url(musical_note.png) no-repeat;background-size:1.5em}.emojify.nail_care{background:url(nail_care.png) no-repeat;background-size:1.5em}.emojify.neckbeard{background:url(neckbeard.png) no-repeat;background-size:1.5em}.emojify.neutral_face{background:url(neutral_face.png) no-repeat;background-size:1.5em}.emojify.no_good{background:url(no_good.png) no-repeat;background-size:1.5em}.emojify.no_mouth{background:url(no_mouth.png) no-repeat;background-size:1.5em}.emojify.nose{background:url(nose.png) no-repeat;background-size:1.5em}.emojify.notes{background:url(notes.png) no-repeat;background-size:1.5em}.emojify.ok_hand{background:url(ok_hand.png) no-repeat;background-size:1.5em}.emojify.ok_woman{background:url(ok_woman.png) no-repeat;background-size:1.5em}.emojify.older_man{background:url(older_man.png) no-repeat;background-size:1.5em}.emojify.older_woman{background:url(older_woman.png) no-repeat;background-size:1.5em}.emojify.open_hands{background:url(open_hands.png) no-repeat;background-size:1.5em}.emojify.open_mouth{background:url(open_mouth.png) no-repeat;background-size:1.5em}.emojify.pensive{background:url(pensive.png) no-repeat;background-size:1.5em}.emojify.persevere{background:url(persevere.png) no-repeat;background-size:1.5em}.emojify.person_frowning{background:url(person_frowning.png) no-repeat;background-size:1.5em}.emojify.person_with_blond_hair{background:url(person_with_blond_hair.png) no-repeat;background-size:1.5em}.emojify.person_with_pouting_face{background:url(person_with_pouting_face.png) no-repeat;background-size:1.5em}.emojify.point_down{background:url(point_down.png) no-repeat;background-size:1.5em}.emojify.point_left{background:url(point_left.png) no-repeat;background-size:1.5em}.emojify.point_right{background:url(point_right.png) no-repeat;background-size:1.5em}.emojify.point_up_2{background:url(point_up_2.png) no-repeat;background-size:1.5em}.emojify.point_up{background:url(point_up.png) no-repeat;background-size:1.5em}.emojify.poop{background:url(poop.png) no-repeat;background-size:1.5em}.emojify.pouting_cat{background:url(pouting_cat.png) no-repeat;background-size:1.5em}.emojify.pray{background:url(pray.png) no-repeat;background-size:1.5em}.emojify.princess{background:url(princess.png) no-repeat;background-size:1.5em}.emojify.punch{background:url(punch.png) no-repeat;background-size:1.5em}.emojify.purple_heart{background:url(purple_heart.png) no-repeat;background-size:1.5em}.emojify.question{background:url(question.png) no-repeat;background-size:1.5em}.emojify.rage{background:url(rage.png) no-repeat;background-size:1.5em}.emojify.rage1{background:url(rage1.png) no-repeat;background-size:1.5em}.emojify.rage2{background:url(rage2.png) no-repeat;background-size:1.5em}.emojify.rage3{background:url(rage3.png) no-repeat;background-size:1.5em}.emojify.rage4{background:url(rage4.png) no-repeat;background-size:1.5em}.emojify.raised_hand{background:url(raised_hand.png) no-repeat;background-size:1.5em}.emojify.raised_hands{background:url(raised_hands.png) no-repeat;background-size:1.5em}.emojify.relaxed{background:url(relaxed.png) no-repeat;background-size:1.5em}.emojify.relieved{background:url(relieved.png) no-repeat;background-size:1.5em}.emojify.revolving_hearts{background:url(revolving_hearts.png) no-repeat;background-size:1.5em}.emojify.runner{background:url(runner.png) no-repeat;background-size:1.5em}.emojify.running{background:url(running.png) no-repeat;background-size:1.5em}.emojify.satisfied{background:url(satisfied.png) no-repeat;background-size:1.5em}.emojify.scream_cat{background:url(scream_cat.png) no-repeat;background-size:1.5em}.emojify.scream{background:url(scream.png) no-repeat;background-size:1.5em}.emojify.see_no_evil{background:url(see_no_evil.png) no-repeat;background-size:1.5em}.emojify.shit{background:url(shit.png) no-repeat;background-size:1.5em}.emojify.skull{background:url(skull.png) no-repeat;background-size:1.5em}.emojify.sleeping{background:url(sleeping.png) no-repeat;background-size:1.5em}.emojify.sleepy{background:url(sleepy.png) no-repeat;background-size:1.5em}.emojify.smile_cat{background:url(smile_cat.png) no-repeat;background-size:1.5em}.emojify.smile{background:url(smile.png) no-repeat;background-size:1.5em}.emojify.smiley_cat{background:url(smiley_cat.png) no-repeat;background-size:1.5em}.emojify.smiley{background:url(smiley.png) no-repeat;background-size:1.5em}.emojify.smiling_imp{background:url(smiling_imp.png) no-repeat;background-size:1.5em}.emojify.smirk_cat{background:url(smirk_cat.png) no-repeat;background-size:1.5em}.emojify.smirk{background:url(smirk.png) no-repeat;background-size:1.5em}.emojify.sob{background:url(sob.png) no-repeat;background-size:1.5em}.emojify.sparkling_heart{background:url(sparkling_heart.png) no-repeat;background-size:1.5em}.emojify.sparkles{background:url(sparkles.png) no-repeat;background-size:1.5em}.emojify.speak_no_evil{background:url(speak_no_evil.png) no-repeat;background-size:1.5em}.emojify.speech_balloon{background:url(speech_balloon.png) no-repeat;background-size:1.5em}.emojify.star{background:url(star.png) no-repeat;background-size:1.5em}.emojify.star2{background:url(star2.png) no-repeat;background-size:1.5em}.emojify.stuck_out_tongue_closed_eyes{background:url(stuck_out_tongue_closed_eyes.png) no-repeat;background-size:1.5em}.emojify.stuck_out_tongue_winking_eye{background:url(stuck_out_tongue_winking_eye.png) no-repeat;background-size:1.5em}.emojify.stuck_out_tongue{background:url(stuck_out_tongue.png) no-repeat;background-size:1.5em}.emojify.sunglasses{background:url(sunglasses.png) no-repeat;background-size:1.5em}.emojify.suspect{background:url(suspect.png) no-repeat;background-size:1.5em}.emojify.sweat_drops{background:url(sweat_drops.png) no-repeat;background-size:1.5em}.emojify.sweat_smile{background:url(sweat_smile.png) no-repeat;background-size:1.5em}.emojify.sweat{background:url(sweat.png) no-repeat;background-size:1.5em}.emojify.thought_balloon{background:url(thought_balloon.png) no-repeat;background-size:1.5em}.emojify.thumbsdown{background:url(thumbsdown.png) no-repeat;background-size:1.5em}.emojify.thumbsup{background:url(thumbsup.png) no-repeat;background-size:1.5em}.emojify.tired_face{background:url(tired_face.png) no-repeat;background-size:1.5em}.emojify.tongue{background:url(tongue.png) no-repeat;background-size:1.5em}.emojify.triumph{background:url(triumph.png) no-repeat;background-size:1.5em}.emojify.trollface{background:url(trollface.png) no-repeat;background-size:1.5em}.emojify.two_hearts{background:url(two_hearts.png) no-repeat;background-size:1.5em}.emojify.two_men_holding_hands{background:url(two_men_holding_hands.png) no-repeat;background-size:1.5em}.emojify.two_women_holding_hands{background:url(two_women_holding_hands.png) no-repeat;background-size:1.5em}.emojify.unamused{background:url(unamused.png) no-repeat;background-size:1.5em}.emojify.v{background:url(v.png) no-repeat;background-size:1.5em}.emojify.walking{background:url(walking.png) no-repeat;background-size:1.5em}.emojify.wave{background:url(wave.png) no-repeat;background-size:1.5em}.emojify.weary{background:url(weary.png) no-repeat;background-size:1.5em}.emojify.wink2{background:url(wink2.png) no-repeat;background-size:1.5em}.emojify.wink{background:url(wink.png) no-repeat;background-size:1.5em}.emojify.woman{background:url(woman.png) no-repeat;background-size:1.5em}.emojify.worried{background:url(worried.png) no-repeat;background-size:1.5em}.emojify.yellow_heart{background:url(yellow_heart.png) no-repeat;background-size:1.5em}.emojify.yum{background:url(yum.png) no-repeat;background-size:1.5em}.emojify.zzz{background:url(zzz.png) no-repeat;background-size:1.5em}.emojify.sunny{background:url(sunny.png) no-repeat;background-size:1.5em}.emojify.umbrella{background:url(umbrella.png) no-repeat;background-size:1.5em}.emojify.cloud{background:url(cloud.png) no-repeat;background-size:1.5em}.emojify.snowflake{background:url(snowflake.png) no-repeat;background-size:1.5em}.emojify.snowman{background:url(snowman.png) no-repeat;background-size:1.5em}.emojify.zap{background:url(zap.png) no-repeat;background-size:1.5em}.emojify.cyclone{background:url(cyclone.png) no-repeat;background-size:1.5em}.emojify.foggy{background:url(foggy.png) no-repeat;background-size:1.5em}.emojify.ocean{background:url(ocean.png) no-repeat;background-size:1.5em}.emojify.cat{background:url(cat.png) no-repeat;background-size:1.5em}.emojify.dog{background:url(dog.png) no-repeat;background-size:1.5em}.emojify.mouse{background:url(mouse.png) no-repeat;background-size:1.5em}.emojify.hamster{background:url(hamster.png) no-repeat;background-size:1.5em}.emojify.rabbit{background:url(rabbit.png) no-repeat;background-size:1.5em}.emojify.wolf{background:url(wolf.png) no-repeat;background-size:1.5em}.emojify.frog{background:url(frog.png) no-repeat;background-size:1.5em}.emojify.tiger{background:url(tiger.png) no-repeat;background-size:1.5em}.emojify.koala{background:url(koala.png) no-repeat;background-size:1.5em}.emojify.bear{background:url(bear.png) no-repeat;background-size:1.5em}.emojify.pig{background:url(pig.png) no-repeat;background-size:1.5em}.emojify.pig_nose{background:url(pig_nose.png) no-repeat;background-size:1.5em}.emojify.cow{background:url(cow.png) no-repeat;background-size:1.5em}.emojify.boar{background:url(boar.png) no-repeat;background-size:1.5em}.emojify.monkey_face{background:url(monkey_face.png) no-repeat;background-size:1.5em}.emojify.monkey{background:url(monkey.png) no-repeat;background-size:1.5em}.emojify.horse{background:url(horse.png) no-repeat;background-size:1.5em}.emojify.racehorse{background:url(racehorse.png) no-repeat;background-size:1.5em}.emojify.camel{background:url(camel.png) no-repeat;background-size:1.5em}.emojify.sheep{background:url(sheep.png) no-repeat;background-size:1.5em}.emojify.elephant{background:url(elephant.png) no-repeat;background-size:1.5em}.emojify.panda_face{background:url(panda_face.png) no-repeat;background-size:1.5em}.emojify.snake{background:url(snake.png) no-repeat;background-size:1.5em}.emojify.bird{background:url(bird.png) no-repeat;background-size:1.5em}.emojify.baby_chick{background:url(baby_chick.png) no-repeat;background-size:1.5em}.emojify.hatched_chick{background:url(hatched_chick.png) no-repeat;background-size:1.5em}.emojify.hatching_chick{background:url(hatching_chick.png) no-repeat;background-size:1.5em}.emojify.chicken{background:url(chicken.png) no-repeat;background-size:1.5em}.emojify.penguin{background:url(penguin.png) no-repeat;background-size:1.5em}.emojify.turtle{background:url(turtle.png) no-repeat;background-size:1.5em}.emojify.bug{background:url(bug.png) no-repeat;background-size:1.5em}.emojify.honeybee{background:url(honeybee.png) no-repeat;background-size:1.5em}.emojify.ant{background:url(ant.png) no-repeat;background-size:1.5em}.emojify.beetle{background:url(beetle.png) no-repeat;background-size:1.5em}.emojify.snail{background:url(snail.png) no-repeat;background-size:1.5em}.emojify.octopus{background:url(octopus.png) no-repeat;background-size:1.5em}.emojify.tropical_fish{background:url(tropical_fish.png) no-repeat;background-size:1.5em}.emojify.fish{background:url(fish.png) no-repeat;background-size:1.5em}.emojify.whale{background:url(whale.png) no-repeat;background-size:1.5em}.emojify.whale2{background:url(whale2.png) no-repeat;background-size:1.5em}.emojify.dolphin{background:url(dolphin.png) no-repeat;background-size:1.5em}.emojify.cow2{background:url(cow2.png) no-repeat;background-size:1.5em}.emojify.ram{background:url(ram.png) no-repeat;background-size:1.5em}.emojify.rat{background:url(rat.png) no-repeat;background-size:1.5em}.emojify.water_buffalo{background:url(water_buffalo.png) no-repeat;background-size:1.5em}.emojify.tiger2{background:url(tiger2.png) no-repeat;background-size:1.5em}.emojify.rabbit2{background:url(rabbit2.png) no-repeat;background-size:1.5em}.emojify.dragon{background:url(dragon.png) no-repeat;background-size:1.5em}.emojify.goat{background:url(goat.png) no-repeat;background-size:1.5em}.emojify.rooster{background:url(rooster.png) no-repeat;background-size:1.5em}.emojify.dog2{background:url(dog2.png) no-repeat;background-size:1.5em}.emojify.pig2{background:url(pig2.png) no-repeat;background-size:1.5em}.emojify.mouse2{background:url(mouse2.png) no-repeat;background-size:1.5em}.emojify.ox{background:url(ox.png) no-repeat;background-size:1.5em}.emojify.dragon_face{background:url(dragon_face.png) no-repeat;background-size:1.5em}.emojify.blowfish{background:url(blowfish.png) no-repeat;background-size:1.5em}.emojify.crocodile{background:url(crocodile.png) no-repeat;background-size:1.5em}.emojify.dromedary_camel{background:url(dromedary_camel.png) no-repeat;background-size:1.5em}.emojify.leopard{background:url(leopard.png) no-repeat;background-size:1.5em}.emojify.cat2{background:url(cat2.png) no-repeat;background-size:1.5em}.emojify.poodle{background:url(poodle.png) no-repeat;background-size:1.5em}.emojify.paw_prints{background:url(paw_prints.png) no-repeat;background-size:1.5em}.emojify.bouquet{background:url(bouquet.png) no-repeat;background-size:1.5em}.emojify.cherry_blossom{background:url(cherry_blossom.png) no-repeat;background-size:1.5em}.emojify.tulip{background:url(tulip.png) no-repeat;background-size:1.5em}.emojify.four_leaf_clover{background:url(four_leaf_clover.png) no-repeat;background-size:1.5em}.emojify.rose{background:url(rose.png) no-repeat;background-size:1.5em}.emojify.sunflower{background:url(sunflower.png) no-repeat;background-size:1.5em}.emojify.hibiscus{background:url(hibiscus.png) no-repeat;background-size:1.5em}.emojify.maple_leaf{background:url(maple_leaf.png) no-repeat;background-size:1.5em}.emojify.leaves{background:url(leaves.png) no-repeat;background-size:1.5em}.emojify.fallen_leaf{background:url(fallen_leaf.png) no-repeat;background-size:1.5em}.emojify.herb{background:url(herb.png) no-repeat;background-size:1.5em}.emojify.mushroom{background:url(mushroom.png) no-repeat;background-size:1.5em}.emojify.cactus{background:url(cactus.png) no-repeat;background-size:1.5em}.emojify.palm_tree{background:url(palm_tree.png) no-repeat;background-size:1.5em}.emojify.evergreen_tree{background:url(evergreen_tree.png) no-repeat;background-size:1.5em}.emojify.deciduous_tree{background:url(deciduous_tree.png) no-repeat;background-size:1.5em}.emojify.chestnut{background:url(chestnut.png) no-repeat;background-size:1.5em}.emojify.seedling{background:url(seedling.png) no-repeat;background-size:1.5em}.emojify.blossom{background:url(blossom.png) no-repeat;background-size:1.5em}.emojify.ear_of_rice{background:url(ear_of_rice.png) no-repeat;background-size:1.5em}.emojify.shell{background:url(shell.png) no-repeat;background-size:1.5em}.emojify.globe_with_meridians{background:url(globe_with_meridians.png) no-repeat;background-size:1.5em}.emojify.sun_with_face{background:url(sun_with_face.png) no-repeat;background-size:1.5em}.emojify.full_moon_with_face{background:url(full_moon_with_face.png) no-repeat;background-size:1.5em}.emojify.new_moon_with_face{background:url(new_moon_with_face.png) no-repeat;background-size:1.5em}.emojify.new_moon{background:url(new_moon.png) no-repeat;background-size:1.5em}.emojify.waxing_crescent_moon{background:url(waxing_crescent_moon.png) no-repeat;background-size:1.5em}.emojify.first_quarter_moon{background:url(first_quarter_moon.png) no-repeat;background-size:1.5em}.emojify.waxing_gibbous_moon{background:url(waxing_gibbous_moon.png) no-repeat;background-size:1.5em}.emojify.full_moon{background:url(full_moon.png) no-repeat;background-size:1.5em}.emojify.waning_gibbous_moon{background:url(waning_gibbous_moon.png) no-repeat;background-size:1.5em}.emojify.last_quarter_moon{background:url(last_quarter_moon.png) no-repeat;background-size:1.5em}.emojify.waning_crescent_moon{background:url(waning_crescent_moon.png) no-repeat;background-size:1.5em}.emojify.last_quarter_moon_with_face{background:url(last_quarter_moon_with_face.png) no-repeat;background-size:1.5em}.emojify.first_quarter_moon_with_face{background:url(first_quarter_moon_with_face.png) no-repeat;background-size:1.5em}.emojify.moon{background:url(moon.png) no-repeat;background-size:1.5em}.emojify.earth_africa{background:url(earth_africa.png) no-repeat;background-size:1.5em}.emojify.earth_americas{background:url(earth_americas.png) no-repeat;background-size:1.5em}.emojify.earth_asia{background:url(earth_asia.png) no-repeat;background-size:1.5em}.emojify.volcano{background:url(volcano.png) no-repeat;background-size:1.5em}.emojify.milky_way{background:url(milky_way.png) no-repeat;background-size:1.5em}.emojify.partly_sunny{background:url(partly_sunny.png) no-repeat;background-size:1.5em}.emojify.octocat{background:url(octocat.png) no-repeat;background-size:1.5em}.emojify.squirrel{background:url(squirrel.png) no-repeat;background-size:1.5em}.emojify.bamboo{background:url(bamboo.png) no-repeat;background-size:1.5em}.emojify.gift_heart{background:url(gift_heart.png) no-repeat;background-size:1.5em}.emojify.dolls{background:url(dolls.png) no-repeat;background-size:1.5em}.emojify.school_satchel{background:url(school_satchel.png) no-repeat;background-size:1.5em}.emojify.mortar_board{background:url(mortar_board.png) no-repeat;background-size:1.5em}.emojify.flags{background:url(flags.png) no-repeat;background-size:1.5em}.emojify.fireworks{background:url(fireworks.png) no-repeat;background-size:1.5em}.emojify.sparkler{background:url(sparkler.png) no-repeat;background-size:1.5em}.emojify.wind_chime{background:url(wind_chime.png) no-repeat;background-size:1.5em}.emojify.rice_scene{background:url(rice_scene.png) no-repeat;background-size:1.5em}.emojify.jack_o_lantern{background:url(jack_o_lantern.png) no-repeat;background-size:1.5em}.emojify.ghost{background:url(ghost.png) no-repeat;background-size:1.5em}.emojify.santa{background:url(santa.png) no-repeat;background-size:1.5em}.emojify.christmas_tree{background:url(christmas_tree.png) no-repeat;background-size:1.5em}.emojify.gift{background:url(gift.png) no-repeat;background-size:1.5em}.emojify.bell{background:url(bell.png) no-repeat;background-size:1.5em}.emojify.no_bell{background:url(no_bell.png) no-repeat;background-size:1.5em}.emojify.tanabata_tree{background:url(tanabata_tree.png) no-repeat;background-size:1.5em}.emojify.tada{background:url(tada.png) no-repeat;background-size:1.5em}.emojify.confetti_ball{background:url(confetti_ball.png) no-repeat;background-size:1.5em}.emojify.balloon{background:url(balloon.png) no-repeat;background-size:1.5em}.emojify.crystal_ball{background:url(crystal_ball.png) no-repeat;background-size:1.5em}.emojify.cd{background:url(cd.png) no-repeat;background-size:1.5em}.emojify.dvd{background:url(dvd.png) no-repeat;background-size:1.5em}.emojify.floppy_disk{background:url(floppy_disk.png) no-repeat;background-size:1.5em}.emojify.camera{background:url(camera.png) no-repeat;background-size:1.5em}.emojify.video_camera{background:url(video_camera.png) no-repeat;background-size:1.5em}.emojify.movie_camera{background:url(movie_camera.png) no-repeat;background-size:1.5em}.emojify.computer{background:url(computer.png) no-repeat;background-size:1.5em}.emojify.tv{background:url(tv.png) no-repeat;background-size:1.5em}.emojify.iphone{background:url(iphone.png) no-repeat;background-size:1.5em}.emojify.phone{background:url(phone.png) no-repeat;background-size:1.5em}.emojify.telephone{background:url(telephone.png) no-repeat;background-size:1.5em}.emojify.telephone_receiver{background:url(telephone_receiver.png) no-repeat;background-size:1.5em}.emojify.pager{background:url(pager.png) no-repeat;background-size:1.5em}.emojify.fax{background:url(fax.png) no-repeat;background-size:1.5em}.emojify.minidisc{background:url(minidisc.png) no-repeat;background-size:1.5em}.emojify.vhs{background:url(vhs.png) no-repeat;background-size:1.5em}.emojify.sound{background:url(sound.png) no-repeat;background-size:1.5em}.emojify.speaker{background:url(speaker.png) no-repeat;background-size:1.5em}.emojify.mute{background:url(mute.png) no-repeat;background-size:1.5em}.emojify.loudspeaker{background:url(loudspeaker.png) no-repeat;background-size:1.5em}.emojify.mega{background:url(mega.png) no-repeat;background-size:1.5em}.emojify.hourglass{background:url(hourglass.png) no-repeat;background-size:1.5em}.emojify.hourglass_flowing_sand{background:url(hourglass_flowing_sand.png) no-repeat;background-size:1.5em}.emojify.alarm_clock{background:url(alarm_clock.png) no-repeat;background-size:1.5em}.emojify.watch{background:url(watch.png) no-repeat;background-size:1.5em}.emojify.radio{background:url(radio.png) no-repeat;background-size:1.5em}.emojify.satellite{background:url(satellite.png) no-repeat;background-size:1.5em}.emojify.loop{background:url(loop.png) no-repeat;background-size:1.5em}.emojify.mag{background:url(mag.png) no-repeat;background-size:1.5em}.emojify.mag_right{background:url(mag_right.png) no-repeat;background-size:1.5em}.emojify.unlock{background:url(unlock.png) no-repeat;background-size:1.5em}.emojify.lock{background:url(lock.png) no-repeat;background-size:1.5em}.emojify.lock_with_ink_pen{background:url(lock_with_ink_pen.png) no-repeat;background-size:1.5em}.emojify.closed_lock_with_key{background:url(closed_lock_with_key.png) no-repeat;background-size:1.5em}.emojify.key{background:url(key.png) no-repeat;background-size:1.5em}.emojify.bulb{background:url(bulb.png) no-repeat;background-size:1.5em}.emojify.flashlight{background:url(flashlight.png) no-repeat;background-size:1.5em}.emojify.high_brightness{background:url(high_brightness.png) no-repeat;background-size:1.5em}.emojify.low_brightness{background:url(low_brightness.png) no-repeat;background-size:1.5em}.emojify.electric_plug{background:url(electric_plug.png) no-repeat;background-size:1.5em}.emojify.battery{background:url(battery.png) no-repeat;background-size:1.5em}.emojify.calling{background:url(calling.png) no-repeat;background-size:1.5em}.emojify.email{background:url(email.png) no-repeat;background-size:1.5em}.emojify.mailbox{background:url(mailbox.png) no-repeat;background-size:1.5em}.emojify.postbox{background:url(postbox.png) no-repeat;background-size:1.5em}.emojify.bath{background:url(bath.png) no-repeat;background-size:1.5em}.emojify.bathtub{background:url(bathtub.png) no-repeat;background-size:1.5em}.emojify.shower{background:url(shower.png) no-repeat;background-size:1.5em}.emojify.toilet{background:url(toilet.png) no-repeat;background-size:1.5em}.emojify.wrench{background:url(wrench.png) no-repeat;background-size:1.5em}.emojify.nut_and_bolt{background:url(nut_and_bolt.png) no-repeat;background-size:1.5em}.emojify.hammer{background:url(hammer.png) no-repeat;background-size:1.5em}.emojify.seat{background:url(seat.png) no-repeat;background-size:1.5em}.emojify.moneybag{background:url(moneybag.png) no-repeat;background-size:1.5em}.emojify.yen{background:url(yen.png) no-repeat;background-size:1.5em}.emojify.dollar{background:url(dollar.png) no-repeat;background-size:1.5em}.emojify.pound{background:url(pound.png) no-repeat;background-size:1.5em}.emojify.euro{background:url(euro.png) no-repeat;background-size:1.5em}.emojify.credit_card{background:url(credit_card.png) no-repeat;background-size:1.5em}.emojify.money_with_wings{background:url(money_with_wings.png) no-repeat;background-size:1.5em}.emojify.e-mail{background:url(e-mail.png) no-repeat;background-size:1.5em}.emojify.inbox_tray{background:url(inbox_tray.png) no-repeat;background-size:1.5em}.emojify.outbox_tray{background:url(outbox_tray.png) no-repeat;background-size:1.5em}.emojify.envelope{background:url(envelope.png) no-repeat;background-size:1.5em}.emojify.incoming_envelope{background:url(incoming_envelope.png) no-repeat;background-size:1.5em}.emojify.postal_horn{background:url(postal_horn.png) no-repeat;background-size:1.5em}.emojify.mailbox_closed{background:url(mailbox_closed.png) no-repeat;background-size:1.5em}.emojify.mailbox_with_mail{background:url(mailbox_with_mail.png) no-repeat;background-size:1.5em}.emojify.mailbox_with_no_mail{background:url(mailbox_with_no_mail.png) no-repeat;background-size:1.5em}.emojify.door{background:url(door.png) no-repeat;background-size:1.5em}.emojify.smoking{background:url(smoking.png) no-repeat;background-size:1.5em}.emojify.bomb{background:url(bomb.png) no-repeat;background-size:1.5em}.emojify.gun{background:url(gun.png) no-repeat;background-size:1.5em}.emojify.hocho{background:url(hocho.png) no-repeat;background-size:1.5em}.emojify.pill{background:url(pill.png) no-repeat;background-size:1.5em}.emojify.syringe{background:url(syringe.png) no-repeat;background-size:1.5em}.emojify.page_facing_up{background:url(page_facing_up.png) no-repeat;background-size:1.5em}.emojify.page_with_curl{background:url(page_with_curl.png) no-repeat;background-size:1.5em}.emojify.bookmark_tabs{background:url(bookmark_tabs.png) no-repeat;background-size:1.5em}.emojify.bar_chart{background:url(bar_chart.png) no-repeat;background-size:1.5em}.emojify.chart_with_upwards_trend{background:url(chart_with_upwards_trend.png) no-repeat;background-size:1.5em}.emojify.chart_with_downwards_trend{background:url(chart_with_downwards_trend.png) no-repeat;background-size:1.5em}.emojify.scroll{background:url(scroll.png) no-repeat;background-size:1.5em}.emojify.clipboard{background:url(clipboard.png) no-repeat;background-size:1.5em}.emojify.calendar{background:url(calendar.png) no-repeat;background-size:1.5em}.emojify.date{background:url(date.png) no-repeat;background-size:1.5em}.emojify.card_index{background:url(card_index.png) no-repeat;background-size:1.5em}.emojify.file_folder{background:url(file_folder.png) no-repeat;background-size:1.5em}.emojify.open_file_folder{background:url(open_file_folder.png) no-repeat;background-size:1.5em}.emojify.scissors{background:url(scissors.png) no-repeat;background-size:1.5em}.emojify.pushpin{background:url(pushpin.png) no-repeat;background-size:1.5em}.emojify.paperclip{background:url(paperclip.png) no-repeat;background-size:1.5em}.emojify.black_nib{background:url(black_nib.png) no-repeat;background-size:1.5em}.emojify.pencil2{background:url(pencil2.png) no-repeat;background-size:1.5em}.emojify.straight_ruler{background:url(straight_ruler.png) no-repeat;background-size:1.5em}.emojify.triangular_ruler{background:url(triangular_ruler.png) no-repeat;background-size:1.5em}.emojify.closed_book{background:url(closed_book.png) no-repeat;background-size:1.5em}.emojify.green_book{background:url(green_book.png) no-repeat;background-size:1.5em}.emojify.blue_book{background:url(blue_book.png) no-repeat;background-size:1.5em}.emojify.orange_book{background:url(orange_book.png) no-repeat;background-size:1.5em}.emojify.notebook{background:url(notebook.png) no-repeat;background-size:1.5em}.emojify.notebook_with_decorative_cover{background:url(notebook_with_decorative_cover.png) no-repeat;background-size:1.5em}.emojify.ledger{background:url(ledger.png) no-repeat;background-size:1.5em}.emojify.books{background:url(books.png) no-repeat;background-size:1.5em}.emojify.bookmark{background:url(bookmark.png) no-repeat;background-size:1.5em}.emojify.name_badge{background:url(name_badge.png) no-repeat;background-size:1.5em}.emojify.microscope{background:url(microscope.png) no-repeat;background-size:1.5em}.emojify.telescope{background:url(telescope.png) no-repeat;background-size:1.5em}.emojify.newspaper{background:url(newspaper.png) no-repeat;background-size:1.5em}.emojify.football{background:url(football.png) no-repeat;background-size:1.5em}.emojify.basketball{background:url(basketball.png) no-repeat;background-size:1.5em}.emojify.soccer{background:url(soccer.png) no-repeat;background-size:1.5em}.emojify.baseball{background:url(baseball.png) no-repeat;background-size:1.5em}.emojify.tennis{background:url(tennis.png) no-repeat;background-size:1.5em}.emojify.eightball{background:url(eightball.png) no-repeat;background-size:1.5em}.emojify.rugby_football{background:url(rugby_football.png) no-repeat;background-size:1.5em}.emojify.bowling{background:url(bowling.png) no-repeat;background-size:1.5em}.emojify.golf{background:url(golf.png) no-repeat;background-size:1.5em}.emojify.mountain_bicyclist{background:url(mountain_bicyclist.png) no-repeat;background-size:1.5em}.emojify.bicyclist{background:url(bicyclist.png) no-repeat;background-size:1.5em}.emojify.horse_racing{background:url(horse_racing.png) no-repeat;background-size:1.5em}.emojify.snowboarder{background:url(snowboarder.png) no-repeat;background-size:1.5em}.emojify.swimmer{background:url(swimmer.png) no-repeat;background-size:1.5em}.emojify.surfer{background:url(surfer.png) no-repeat;background-size:1.5em}.emojify.ski{background:url(ski.png) no-repeat;background-size:1.5em}.emojify.spades{background:url(spades.png) no-repeat;background-size:1.5em}.emojify.hearts{background:url(hearts.png) no-repeat;background-size:1.5em}.emojify.clubs{background:url(clubs.png) no-repeat;background-size:1.5em}.emojify.diamonds{background:url(diamonds.png) no-repeat;background-size:1.5em}.emojify.gem{background:url(gem.png) no-repeat;background-size:1.5em}.emojify.ring{background:url(ring.png) no-repeat;background-size:1.5em}.emojify.trophy{background:url(trophy.png) no-repeat;background-size:1.5em}.emojify.musical_score{background:url(musical_score.png) no-repeat;background-size:1.5em}.emojify.musical_keyboard{background:url(musical_keyboard.png) no-repeat;background-size:1.5em}.emojify.violin{background:url(violin.png) no-repeat;background-size:1.5em}.emojify.space_invader{background:url(space_invader.png) no-repeat;background-size:1.5em}.emojify.video_game{background:url(video_game.png) no-repeat;background-size:1.5em}.emojify.black_joker{background:url(black_joker.png) no-repeat;background-size:1.5em}.emojify.flower_playing_cards{background:url(flower_playing_cards.png) no-repeat;background-size:1.5em}.emojify.game_die{background:url(game_die.png) no-repeat;background-size:1.5em}.emojify.dart{background:url(dart.png) no-repeat;background-size:1.5em}.emojify.mahjong{background:url(mahjong.png) no-repeat;background-size:1.5em}.emojify.clapper{background:url(clapper.png) no-repeat;background-size:1.5em}.emojify.memo{background:url(memo.png) no-repeat;background-size:1.5em}.emojify.pencil{background:url(pencil.png) no-repeat;background-size:1.5em}.emojify.book{background:url(book.png) no-repeat;background-size:1.5em}.emojify.art{background:url(art.png) no-repeat;background-size:1.5em}.emojify.microphone{background:url(microphone.png) no-repeat;background-size:1.5em}.emojify.headphones{background:url(headphones.png) no-repeat;background-size:1.5em}.emojify.trumpet{background:url(trumpet.png) no-repeat;background-size:1.5em}.emojify.saxophone{background:url(saxophone.png) no-repeat;background-size:1.5em}.emojify.guitar{background:url(guitar.png) no-repeat;background-size:1.5em}.emojify.shoe{background:url(shoe.png) no-repeat;background-size:1.5em}.emojify.sandal{background:url(sandal.png) no-repeat;background-size:1.5em}.emojify.high_heel{background:url(high_heel.png) no-repeat;background-size:1.5em}.emojify.lipstick{background:url(lipstick.png) no-repeat;background-size:1.5em}.emojify.boot{background:url(boot.png) no-repeat;background-size:1.5em}.emojify.shirt{background:url(shirt.png) no-repeat;background-size:1.5em}.emojify.tshirt{background:url(tshirt.png) no-repeat;background-size:1.5em}.emojify.necktie{background:url(necktie.png) no-repeat;background-size:1.5em}.emojify.womans_clothes{background:url(womans_clothes.png) no-repeat;background-size:1.5em}.emojify.dress{background:url(dress.png) no-repeat;background-size:1.5em}.emojify.running_shirt_with_sash{background:url(running_shirt_with_sash.png) no-repeat;background-size:1.5em}.emojify.jeans{background:url(jeans.png) no-repeat;background-size:1.5em}.emojify.kimono{background:url(kimono.png) no-repeat;background-size:1.5em}.emojify.bikini{background:url(bikini.png) no-repeat;background-size:1.5em}.emojify.ribbon{background:url(ribbon.png) no-repeat;background-size:1.5em}.emojify.tophat{background:url(tophat.png) no-repeat;background-size:1.5em}.emojify.crown{background:url(crown.png) no-repeat;background-size:1.5em}.emojify.womans_hat{background:url(womans_hat.png) no-repeat;background-size:1.5em}.emojify.mans_shoe{background:url(mans_shoe.png) no-repeat;background-size:1.5em}.emojify.closed_umbrella{background:url(closed_umbrella.png) no-repeat;background-size:1.5em}.emojify.briefcase{background:url(briefcase.png) no-repeat;background-size:1.5em}.emojify.handbag{background:url(handbag.png) no-repeat;background-size:1.5em}.emojify.pouch{background:url(pouch.png) no-repeat;background-size:1.5em}.emojify.purse{background:url(purse.png) no-repeat;background-size:1.5em}.emojify.eyeglasses{background:url(eyeglasses.png) no-repeat;background-size:1.5em}.emojify.fishing_pole_and_fish{background:url(fishing_pole_and_fish.png) no-repeat;background-size:1.5em}.emojify.coffee{background:url(coffee.png) no-repeat;background-size:1.5em}.emojify.tea{background:url(tea.png) no-repeat;background-size:1.5em}.emojify.sake{background:url(sake.png) no-repeat;background-size:1.5em}.emojify.baby_bottle{background:url(baby_bottle.png) no-repeat;background-size:1.5em}.emojify.beer{background:url(beer.png) no-repeat;background-size:1.5em}.emojify.beers{background:url(beers.png) no-repeat;background-size:1.5em}.emojify.cocktail{background:url(cocktail.png) no-repeat;background-size:1.5em}.emojify.tropical_drink{background:url(tropical_drink.png) no-repeat;background-size:1.5em}.emojify.wine_glass{background:url(wine_glass.png) no-repeat;background-size:1.5em}.emojify.fork_and_knife{background:url(fork_and_knife.png) no-repeat;background-size:1.5em}.emojify.pizza{background:url(pizza.png) no-repeat;background-size:1.5em}.emojify.hamburger{background:url(hamburger.png) no-repeat;background-size:1.5em}.emojify.fries{background:url(fries.png) no-repeat;background-size:1.5em}.emojify.poultry_leg{background:url(poultry_leg.png) no-repeat;background-size:1.5em}.emojify.meat_on_bone{background:url(meat_on_bone.png) no-repeat;background-size:1.5em}.emojify.spaghetti{background:url(spaghetti.png) no-repeat;background-size:1.5em}.emojify.curry{background:url(curry.png) no-repeat;background-size:1.5em}.emojify.fried_shrimp{background:url(fried_shrimp.png) no-repeat;background-size:1.5em}.emojify.bento{background:url(bento.png) no-repeat;background-size:1.5em}.emojify.sushi{background:url(sushi.png) no-repeat;background-size:1.5em}.emojify.fish_cake{background:url(fish_cake.png) no-repeat;background-size:1.5em}.emojify.rice_ball{background:url(rice_ball.png) no-repeat;background-size:1.5em}.emojify.rice_cracker{background:url(rice_cracker.png) no-repeat;background-size:1.5em}.emojify.rice{background:url(rice.png) no-repeat;background-size:1.5em}.emojify.ramen{background:url(ramen.png) no-repeat;background-size:1.5em}.emojify.stew{background:url(stew.png) no-repeat;background-size:1.5em}.emojify.oden{background:url(oden.png) no-repeat;background-size:1.5em}.emojify.dango{background:url(dango.png) no-repeat;background-size:1.5em}.emojify.egg{background:url(egg.png) no-repeat;background-size:1.5em}.emojify.bread{background:url(bread.png) no-repeat;background-size:1.5em}.emojify.doughnut{background:url(doughnut.png) no-repeat;background-size:1.5em}.emojify.custard{background:url(custard.png) no-repeat;background-size:1.5em}.emojify.icecream{background:url(icecream.png) no-repeat;background-size:1.5em}.emojify.ice_cream{background:url(ice_cream.png) no-repeat;background-size:1.5em}.emojify.shaved_ice{background:url(shaved_ice.png) no-repeat;background-size:1.5em}.emojify.birthday{background:url(birthday.png) no-repeat;background-size:1.5em}.emojify.cake{background:url(cake.png) no-repeat;background-size:1.5em}.emojify.cookie{background:url(cookie.png) no-repeat;background-size:1.5em}.emojify.chocolate_bar{background:url(chocolate_bar.png) no-repeat;background-size:1.5em}.emojify.candy{background:url(candy.png) no-repeat;background-size:1.5em}.emojify.lollipop{background:url(lollipop.png) no-repeat;background-size:1.5em}.emojify.honey_pot{background:url(honey_pot.png) no-repeat;background-size:1.5em}.emojify.apple{background:url(apple.png) no-repeat;background-size:1.5em}.emojify.green_apple{background:url(green_apple.png) no-repeat;background-size:1.5em}.emojify.tangerine{background:url(tangerine.png) no-repeat;background-size:1.5em}.emojify.lemon{background:url(lemon.png) no-repeat;background-size:1.5em}.emojify.cherries{background:url(cherries.png) no-repeat;background-size:1.5em}.emojify.grapes{background:url(grapes.png) no-repeat;background-size:1.5em}.emojify.watermelon{background:url(watermelon.png) no-repeat;background-size:1.5em}.emojify.strawberry{background:url(strawberry.png) no-repeat;background-size:1.5em}.emojify.peach{background:url(peach.png) no-repeat;background-size:1.5em}.emojify.melon{background:url(melon.png) no-repeat;background-size:1.5em}.emojify.banana{background:url(banana.png) no-repeat;background-size:1.5em}.emojify.pear{background:url(pear.png) no-repeat;background-size:1.5em}.emojify.pineapple{background:url(pineapple.png) no-repeat;background-size:1.5em}.emojify.sweet_potato{background:url(sweet_potato.png) no-repeat;background-size:1.5em}.emojify.eggplant{background:url(eggplant.png) no-repeat;background-size:1.5em}.emojify.tomato{background:url(tomato.png) no-repeat;background-size:1.5em}.emojify.corn{background:url(corn.png) no-repeat;background-size:1.5em}.emojify.onezeronine{background:url(onezeronine.png) no-repeat;background-size:1.5em}.emojify.house{background:url(house.png) no-repeat;background-size:1.5em}.emojify.house_with_garden{background:url(house_with_garden.png) no-repeat;background-size:1.5em}.emojify.school{background:url(school.png) no-repeat;background-size:1.5em}.emojify.office{background:url(office.png) no-repeat;background-size:1.5em}.emojify.post_office{background:url(post_office.png) no-repeat;background-size:1.5em}.emojify.hospital{background:url(hospital.png) no-repeat;background-size:1.5em}.emojify.bank{background:url(bank.png) no-repeat;background-size:1.5em}.emojify.convenience_store{background:url(convenience_store.png) no-repeat;background-size:1.5em}.emojify.love_hotel{background:url(love_hotel.png) no-repeat;background-size:1.5em}.emojify.hotel{background:url(hotel.png) no-repeat;background-size:1.5em}.emojify.wedding{background:url(wedding.png) no-repeat;background-size:1.5em}.emojify.church{background:url(church.png) no-repeat;background-size:1.5em}.emojify.department_store{background:url(department_store.png) no-repeat;background-size:1.5em}.emojify.european_post_office{background:url(european_post_office.png) no-repeat;background-size:1.5em}.emojify.city_sunrise{background:url(city_sunrise.png) no-repeat;background-size:1.5em}.emojify.city_sunset{background:url(city_sunset.png) no-repeat;background-size:1.5em}.emojify.japanese_castle{background:url(japanese_castle.png) no-repeat;background-size:1.5em}.emojify.european_castle{background:url(european_castle.png) no-repeat;background-size:1.5em}.emojify.tent{background:url(tent.png) no-repeat;background-size:1.5em}.emojify.factory{background:url(factory.png) no-repeat;background-size:1.5em}.emojify.tokyo_tower{background:url(tokyo_tower.png) no-repeat;background-size:1.5em}.emojify.japan{background:url(japan.png) no-repeat;background-size:1.5em}.emojify.mount_fuji{background:url(mount_fuji.png) no-repeat;background-size:1.5em}.emojify.sunrise_over_mountains{background:url(sunrise_over_mountains.png) no-repeat;background-size:1.5em}.emojify.sunrise{background:url(sunrise.png) no-repeat;background-size:1.5em}.emojify.stars{background:url(stars.png) no-repeat;background-size:1.5em}.emojify.statue_of_liberty{background:url(statue_of_liberty.png) no-repeat;background-size:1.5em}.emojify.bridge_at_night{background:url(bridge_at_night.png) no-repeat;background-size:1.5em}.emojify.carousel_horse{background:url(carousel_horse.png) no-repeat;background-size:1.5em}.emojify.rainbow{background:url(rainbow.png) no-repeat;background-size:1.5em}.emojify.ferris_wheel{background:url(ferris_wheel.png) no-repeat;background-size:1.5em}.emojify.fountain{background:url(fountain.png) no-repeat;background-size:1.5em}.emojify.roller_coaster{background:url(roller_coaster.png) no-repeat;background-size:1.5em}.emojify.ship{background:url(ship.png) no-repeat;background-size:1.5em}.emojify.speedboat{background:url(speedboat.png) no-repeat;background-size:1.5em}.emojify.boat{background:url(boat.png) no-repeat;background-size:1.5em}.emojify.sailboat{background:url(sailboat.png) no-repeat;background-size:1.5em}.emojify.rowboat{background:url(rowboat.png) no-repeat;background-size:1.5em}.emojify.anchor{background:url(anchor.png) no-repeat;background-size:1.5em}.emojify.rocket{background:url(rocket.png) no-repeat;background-size:1.5em}.emojify.airplane{background:url(airplane.png) no-repeat;background-size:1.5em}.emojify.helicopter{background:url(helicopter.png) no-repeat;background-size:1.5em}.emojify.steam_locomotive{background:url(steam_locomotive.png) no-repeat;background-size:1.5em}.emojify.tram{background:url(tram.png) no-repeat;background-size:1.5em}.emojify.mountain_railway{background:url(mountain_railway.png) no-repeat;background-size:1.5em}.emojify.bike{background:url(bike.png) no-repeat;background-size:1.5em}.emojify.aerial_tramway{background:url(aerial_tramway.png) no-repeat;background-size:1.5em}.emojify.suspension_railway{background:url(suspension_railway.png) no-repeat;background-size:1.5em}.emojify.mountain_cableway{background:url(mountain_cableway.png) no-repeat;background-size:1.5em}.emojify.tractor{background:url(tractor.png) no-repeat;background-size:1.5em}.emojify.blue_car{background:url(blue_car.png) no-repeat;background-size:1.5em}.emojify.oncoming_automobile{background:url(oncoming_automobile.png) no-repeat;background-size:1.5em}.emojify.car{background:url(car.png) no-repeat;background-size:1.5em}.emojify.red_car{background:url(red_car.png) no-repeat;background-size:1.5em}.emojify.taxi{background:url(taxi.png) no-repeat;background-size:1.5em}.emojify.oncoming_taxi{background:url(oncoming_taxi.png) no-repeat;background-size:1.5em}.emojify.articulated_lorry{background:url(articulated_lorry.png) no-repeat;background-size:1.5em}.emojify.bus{background:url(bus.png) no-repeat;background-size:1.5em}.emojify.oncoming_bus{background:url(oncoming_bus.png) no-repeat;background-size:1.5em}.emojify.rotating_light{background:url(rotating_light.png) no-repeat;background-size:1.5em}.emojify.police_car{background:url(police_car.png) no-repeat;background-size:1.5em}.emojify.oncoming_police_car{background:url(oncoming_police_car.png) no-repeat;background-size:1.5em}.emojify.fire_engine{background:url(fire_engine.png) no-repeat;background-size:1.5em}.emojify.ambulance{background:url(ambulance.png) no-repeat;background-size:1.5em}.emojify.minibus{background:url(minibus.png) no-repeat;background-size:1.5em}.emojify.truck{background:url(truck.png) no-repeat;background-size:1.5em}.emojify.train{background:url(train.png) no-repeat;background-size:1.5em}.emojify.station{background:url(station.png) no-repeat;background-size:1.5em}.emojify.train2{background:url(train2.png) no-repeat;background-size:1.5em}.emojify.bullettrain_front{background:url(bullettrain_front.png) no-repeat;background-size:1.5em}.emojify.bullettrain_side{background:url(bullettrain_side.png) no-repeat;background-size:1.5em}.emojify.light_rail{background:url(light_rail.png) no-repeat;background-size:1.5em}.emojify.monorail{background:url(monorail.png) no-repeat;background-size:1.5em}.emojify.railway_car{background:url(railway_car.png) no-repeat;background-size:1.5em}.emojify.trolleybus{background:url(trolleybus.png) no-repeat;background-size:1.5em}.emojify.ticket{background:url(ticket.png) no-repeat;background-size:1.5em}.emojify.fuelpump{background:url(fuelpump.png) no-repeat;background-size:1.5em}.emojify.vertical_traffic_light{background:url(vertical_traffic_light.png) no-repeat;background-size:1.5em}.emojify.traffic_light{background:url(traffic_light.png) no-repeat;background-size:1.5em}.emojify.warning{background:url(warning.png) no-repeat;background-size:1.5em}.emojify.construction{background:url(construction.png) no-repeat;background-size:1.5em}.emojify.beginner{background:url(beginner.png) no-repeat;background-size:1.5em}.emojify.atm{background:url(atm.png) no-repeat;background-size:1.5em}.emojify.slot_machine{background:url(slot_machine.png) no-repeat;background-size:1.5em}.emojify.busstop{background:url(busstop.png) no-repeat;background-size:1.5em}.emojify.barber{background:url(barber.png) no-repeat;background-size:1.5em}.emojify.hotsprings{background:url(hotsprings.png) no-repeat;background-size:1.5em}.emojify.checkered_flag{background:url(checkered_flag.png) no-repeat;background-size:1.5em}.emojify.crossed_flags{background:url(crossed_flags.png) no-repeat;background-size:1.5em}.emojify.izakaya_lantern{background:url(izakaya_lantern.png) no-repeat;background-size:1.5em}.emojify.moyai{background:url(moyai.png) no-repeat;background-size:1.5em}.emojify.circus_tent{background:url(circus_tent.png) no-repeat;background-size:1.5em}.emojify.performing_arts{background:url(performing_arts.png) no-repeat;background-size:1.5em}.emojify.round_pushpin{background:url(round_pushpin.png) no-repeat;background-size:1.5em}.emojify.triangular_flag_on_post{background:url(triangular_flag_on_post.png) no-repeat;background-size:1.5em}.emojify.jp{background:url(jp.png) no-repeat;background-size:1.5em}.emojify.kr{background:url(kr.png) no-repeat;background-size:1.5em}.emojify.cn{background:url(cn.png) no-repeat;background-size:1.5em}.emojify.us{background:url(us.png) no-repeat;background-size:1.5em}.emojify.fr{background:url(fr.png) no-repeat;background-size:1.5em}.emojify.es{background:url(es.png) no-repeat;background-size:1.5em}.emojify.it{background:url(it.png) no-repeat;background-size:1.5em}.emojify.ru{background:url(ru.png) no-repeat;background-size:1.5em}.emojify.gb{background:url(gb.png) no-repeat;background-size:1.5em}.emojify.uk{background:url(uk.png) no-repeat;background-size:1.5em}.emojify.de{background:url(de.png) no-repeat;background-size:1.5em}.emojify.one{background:url(one.png) no-repeat;background-size:1.5em}.emojify.two{background:url(two.png) no-repeat;background-size:1.5em}.emojify.three{background:url(three.png) no-repeat;background-size:1.5em}.emojify.four{background:url(four.png) no-repeat;background-size:1.5em}.emojify.five{background:url(five.png) no-repeat;background-size:1.5em}.emojify.six{background:url(six.png) no-repeat;background-size:1.5em}.emojify.seven{background:url(seven.png) no-repeat;background-size:1.5em}.emojify.eight{background:url(eight.png) no-repeat;background-size:1.5em}.emojify.nine{background:url(nine.png) no-repeat;background-size:1.5em}.emojify.keycap_ten{background:url(keycap_ten.png) no-repeat;background-size:1.5em}.emojify.onetwothreefour{background:url(onetwothreefour.png) no-repeat;background-size:1.5em}.emojify.zero{background:url(zero.png) no-repeat;background-size:1.5em}.emojify.hash{background:url(hash.png) no-repeat;background-size:1.5em}.emojify.symbols{background:url(symbols.png) no-repeat;background-size:1.5em}.emojify.arrow_backward{background:url(arrow_backward.png) no-repeat;background-size:1.5em}.emojify.arrow_down{background:url(arrow_down.png) no-repeat;background-size:1.5em}.emojify.arrow_forward{background:url(arrow_forward.png) no-repeat;background-size:1.5em}.emojify.arrow_left{background:url(arrow_left.png) no-repeat;background-size:1.5em}.emojify.capital_abcd{background:url(capital_abcd.png) no-repeat;background-size:1.5em}.emojify.abcd{background:url(abcd.png) no-repeat;background-size:1.5em}.emojify.abc{background:url(abc.png) no-repeat;background-size:1.5em}.emojify.arrow_lower_left{background:url(arrow_lower_left.png) no-repeat;background-size:1.5em}.emojify.arrow_lower_right{background:url(arrow_lower_right.png) no-repeat;background-size:1.5em}.emojify.arrow_right{background:url(arrow_right.png) no-repeat;background-size:1.5em}.emojify.arrow_up{background:url(arrow_up.png) no-repeat;background-size:1.5em}.emojify.arrow_upper_left{background:url(arrow_upper_left.png) no-repeat;background-size:1.5em}.emojify.arrow_upper_right{background:url(arrow_upper_right.png) no-repeat;background-size:1.5em}.emojify.arrow_double_down{background:url(arrow_double_down.png) no-repeat;background-size:1.5em}.emojify.arrow_double_up{background:url(arrow_double_up.png) no-repeat;background-size:1.5em}.emojify.arrow_down_small{background:url(arrow_down_small.png) no-repeat;background-size:1.5em}.emojify.arrow_heading_down{background:url(arrow_heading_down.png) no-repeat;background-size:1.5em}.emojify.arrow_heading_up{background:url(arrow_heading_up.png) no-repeat;background-size:1.5em}.emojify.leftwards_arrow_with_hook{background:url(leftwards_arrow_with_hook.png) no-repeat;background-size:1.5em}.emojify.arrow_right_hook{background:url(arrow_right_hook.png) no-repeat;background-size:1.5em}.emojify.left_right_arrow{background:url(left_right_arrow.png) no-repeat;background-size:1.5em}.emojify.arrow_up_down{background:url(arrow_up_down.png) no-repeat;background-size:1.5em}.emojify.arrow_up_small{background:url(arrow_up_small.png) no-repeat;background-size:1.5em}.emojify.arrows_clockwise{background:url(arrows_clockwise.png) no-repeat;background-size:1.5em}.emojify.arrows_counterclockwise{background:url(arrows_counterclockwise.png) no-repeat;background-size:1.5em}.emojify.rewind{background:url(rewind.png) no-repeat;background-size:1.5em}.emojify.fast_forward{background:url(fast_forward.png) no-repeat;background-size:1.5em}.emojify.information_source{background:url(information_source.png) no-repeat;background-size:1.5em}.emojify.ok{background:url(ok.png) no-repeat;background-size:1.5em}.emojify.twisted_rightwards_arrows{background:url(twisted_rightwards_arrows.png) no-repeat;background-size:1.5em}.emojify.repeat{background:url(repeat.png) no-repeat;background-size:1.5em}.emojify.repeat_one{background:url(repeat_one.png) no-repeat;background-size:1.5em}.emojify.new{background:url(new.png) no-repeat;background-size:1.5em}.emojify.top{background:url(top.png) no-repeat;background-size:1.5em}.emojify.up{background:url(up.png) no-repeat;background-size:1.5em}.emojify.cool{background:url(cool.png) no-repeat;background-size:1.5em}.emojify.free{background:url(free.png) no-repeat;background-size:1.5em}.emojify.ng{background:url(ng.png) no-repeat;background-size:1.5em}.emojify.cinema{background:url(cinema.png) no-repeat;background-size:1.5em}.emojify.koko{background:url(koko.png) no-repeat;background-size:1.5em}.emojify.signal_strength{background:url(signal_strength.png) no-repeat;background-size:1.5em}.emojify.u5272{background:url(u5272.png) no-repeat;background-size:1.5em}.emojify.u5408{background:url(u5408.png) no-repeat;background-size:1.5em}.emojify.u55b6{background:url(u55b6.png) no-repeat;background-size:1.5em}.emojify.u6307{background:url(u6307.png) no-repeat;background-size:1.5em}.emojify.u6708{background:url(u6708.png) no-repeat;background-size:1.5em}.emojify.u6709{background:url(u6709.png) no-repeat;background-size:1.5em}.emojify.u6e80{background:url(u6e80.png) no-repeat;background-size:1.5em}.emojify.u7121{background:url(u7121.png) no-repeat;background-size:1.5em}.emojify.u7533{background:url(u7533.png) no-repeat;background-size:1.5em}.emojify.u7a7a{background:url(u7a7a.png) no-repeat;background-size:1.5em}.emojify.u7981{background:url(u7981.png) no-repeat;background-size:1.5em}.emojify.sa{background:url(sa.png) no-repeat;background-size:1.5em}.emojify.restroom{background:url(restroom.png) no-repeat;background-size:1.5em}.emojify.mens{background:url(mens.png) no-repeat;background-size:1.5em}.emojify.womens{background:url(womens.png) no-repeat;background-size:1.5em}.emojify.baby_symbol{background:url(baby_symbol.png) no-repeat;background-size:1.5em}.emojify.no_smoking{background:url(no_smoking.png) no-repeat;background-size:1.5em}.emojify.parking{background:url(parking.png) no-repeat;background-size:1.5em}.emojify.wheelchair{background:url(wheelchair.png) no-repeat;background-size:1.5em}.emojify.metro{background:url(metro.png) no-repeat;background-size:1.5em}.emojify.baggage_claim{background:url(baggage_claim.png) no-repeat;background-size:1.5em}.emojify.accept{background:url(accept.png) no-repeat;background-size:1.5em}.emojify.wc{background:url(wc.png) no-repeat;background-size:1.5em}.emojify.potable_water{background:url(potable_water.png) no-repeat;background-size:1.5em}.emojify.put_litter_in_its_place{background:url(put_litter_in_its_place.png) no-repeat;background-size:1.5em}.emojify.secret{background:url(secret.png) no-repeat;background-size:1.5em}.emojify.congratulations{background:url(congratulations.png) no-repeat;background-size:1.5em}.emojify.m{background:url(m.png) no-repeat;background-size:1.5em}.emojify.passport_control{background:url(passport_control.png) no-repeat;background-size:1.5em}.emojify.left_luggage{background:url(left_luggage.png) no-repeat;background-size:1.5em}.emojify.customs{background:url(customs.png) no-repeat;background-size:1.5em}.emojify.ideograph_advantage{background:url(ideograph_advantage.png) no-repeat;background-size:1.5em}.emojify.cl{background:url(cl.png) no-repeat;background-size:1.5em}.emojify.sos{background:url(sos.png) no-repeat;background-size:1.5em}.emojify.id{background:url(id.png) no-repeat;background-size:1.5em}.emojify.no_entry_sign{background:url(no_entry_sign.png) no-repeat;background-size:1.5em}.emojify.underage{background:url(underage.png) no-repeat;background-size:1.5em}.emojify.no_mobile_phones{background:url(no_mobile_phones.png) no-repeat;background-size:1.5em}.emojify.do_not_litter{background:url(do_not_litter.png) no-repeat;background-size:1.5em}.emojify.non-potable_water{background:url(non-potable_water.png) no-repeat;background-size:1.5em}.emojify.no_bicycles{background:url(no_bicycles.png) no-repeat;background-size:1.5em}.emojify.no_pedestrians{background:url(no_pedestrians.png) no-repeat;background-size:1.5em}.emojify.children_crossing{background:url(children_crossing.png) no-repeat;background-size:1.5em}.emojify.no_entry{background:url(no_entry.png) no-repeat;background-size:1.5em}.emojify.eight_spoked_asterisk{background:url(eight_spoked_asterisk.png) no-repeat;background-size:1.5em}.emojify.eight_pointed_black_star{background:url(eight_pointed_black_star.png) no-repeat;background-size:1.5em}.emojify.heart_decoration{background:url(heart_decoration.png) no-repeat;background-size:1.5em}.emojify.vs{background:url(vs.png) no-repeat;background-size:1.5em}.emojify.vibration_mode{background:url(vibration_mode.png) no-repeat;background-size:1.5em}.emojify.mobile_phone_off{background:url(mobile_phone_off.png) no-repeat;background-size:1.5em}.emojify.chart{background:url(chart.png) no-repeat;background-size:1.5em}.emojify.currency_exchange{background:url(currency_exchange.png) no-repeat;background-size:1.5em}.emojify.aries{background:url(aries.png) no-repeat;background-size:1.5em}.emojify.taurus{background:url(taurus.png) no-repeat;background-size:1.5em}.emojify.gemini{background:url(gemini.png) no-repeat;background-size:1.5em}.emojify.cancer{background:url(cancer.png) no-repeat;background-size:1.5em}.emojify.leo{background:url(leo.png) no-repeat;background-size:1.5em}.emojify.virgo{background:url(virgo.png) no-repeat;background-size:1.5em}.emojify.libra{background:url(libra.png) no-repeat;background-size:1.5em}.emojify.scorpius{background:url(scorpius.png) no-repeat;background-size:1.5em}.emojify.sagittarius{background:url(sagittarius.png) no-repeat;background-size:1.5em}.emojify.capricorn{background:url(capricorn.png) no-repeat;background-size:1.5em}.emojify.aquarius{background:url(aquarius.png) no-repeat;background-size:1.5em}.emojify.pisces{background:url(pisces.png) no-repeat;background-size:1.5em}.emojify.ophiuchus{background:url(ophiuchus.png) no-repeat;background-size:1.5em}.emojify.six_pointed_star{background:url(six_pointed_star.png) no-repeat;background-size:1.5em}.emojify.negative_squared_cross_mark{background:url(negative_squared_cross_mark.png) no-repeat;background-size:1.5em}.emojify.a{background:url(a.png) no-repeat;background-size:1.5em}.emojify.b{background:url(b.png) no-repeat;background-size:1.5em}.emojify.ab{background:url(ab.png) no-repeat;background-size:1.5em}.emojify.o2{background:url(o2.png) no-repeat;background-size:1.5em}.emojify.diamond_shape_with_a_dot_inside{background:url(diamond_shape_with_a_dot_inside.png) no-repeat;background-size:1.5em}.emojify.recycle{background:url(recycle.png) no-repeat;background-size:1.5em}.emojify.end{background:url(end.png) no-repeat;background-size:1.5em}.emojify.on{background:url(on.png) no-repeat;background-size:1.5em}.emojify.soon{background:url(soon.png) no-repeat;background-size:1.5em}.emojify.clock1{background:url(clock1.png) no-repeat;background-size:1.5em}.emojify.clock130{background:url(clock130.png) no-repeat;background-size:1.5em}.emojify.clock10{background:url(clock10.png) no-repeat;background-size:1.5em}.emojify.clock1030{background:url(clock1030.png) no-repeat;background-size:1.5em}.emojify.clock11{background:url(clock11.png) no-repeat;background-size:1.5em}.emojify.clock1130{background:url(clock1130.png) no-repeat;background-size:1.5em}.emojify.clock12{background:url(clock12.png) no-repeat;background-size:1.5em}.emojify.clock1230{background:url(clock1230.png) no-repeat;background-size:1.5em}.emojify.clock2{background:url(clock2.png) no-repeat;background-size:1.5em}.emojify.clock230{background:url(clock230.png) no-repeat;background-size:1.5em}.emojify.clock3{background:url(clock3.png) no-repeat;background-size:1.5em}.emojify.clock330{background:url(clock330.png) no-repeat;background-size:1.5em}.emojify.clock4{background:url(clock4.png) no-repeat;background-size:1.5em}.emojify.clock430{background:url(clock430.png) no-repeat;background-size:1.5em}.emojify.clock5{background:url(clock5.png) no-repeat;background-size:1.5em}.emojify.clock530{background:url(clock530.png) no-repeat;background-size:1.5em}.emojify.clock6{background:url(clock6.png) no-repeat;background-size:1.5em}.emojify.clock630{background:url(clock630.png) no-repeat;background-size:1.5em}.emojify.clock7{background:url(clock7.png) no-repeat;background-size:1.5em}.emojify.clock730{background:url(clock730.png) no-repeat;background-size:1.5em}.emojify.clock8{background:url(clock8.png) no-repeat;background-size:1.5em}.emojify.clock830{background:url(clock830.png) no-repeat;background-size:1.5em}.emojify.clock9{background:url(clock9.png) no-repeat;background-size:1.5em}.emojify.clock930{background:url(clock930.png) no-repeat;background-size:1.5em}.emojify.heavy_dollar_sign{background:url(heavy_dollar_sign.png) no-repeat;background-size:1.5em}.emojify.copyright{background:url(copyright.png) no-repeat;background-size:1.5em}.emojify.registered{background:url(registered.png) no-repeat;background-size:1.5em}.emojify.tm{background:url(tm.png) no-repeat;background-size:1.5em}.emojify.x{background:url(x.png) no-repeat;background-size:1.5em}.emojify.heavy_exclamation_mark{background:url(heavy_exclamation_mark.png) no-repeat;background-size:1.5em}.emojify.bangbang{background:url(bangbang.png) no-repeat;background-size:1.5em}.emojify.interrobang{background:url(interrobang.png) no-repeat;background-size:1.5em}.emojify.o{background:url(o.png) no-repeat;background-size:1.5em}.emojify.heavy_multiplication_x{background:url(heavy_multiplication_x.png) no-repeat;background-size:1.5em}.emojify.heavy_plus_sign{background:url(heavy_plus_sign.png) no-repeat;background-size:1.5em}.emojify.heavy_minus_sign{background:url(heavy_minus_sign.png) no-repeat;background-size:1.5em}.emojify.heavy_division_sign{background:url(heavy_division_sign.png) no-repeat;background-size:1.5em}.emojify.white_flower{background:url(white_flower.png) no-repeat;background-size:1.5em}.emojify.onehundred{background:url(onehundred.png) no-repeat;background-size:1.5em}.emojify.heavy_check_mark{background:url(heavy_check_mark.png) no-repeat;background-size:1.5em}.emojify.ballot_box_with_check{background:url(ballot_box_with_check.png) no-repeat;background-size:1.5em}.emojify.radio_button{background:url(radio_button.png) no-repeat;background-size:1.5em}.emojify.link{background:url(link.png) no-repeat;background-size:1.5em}.emojify.curly_loop{background:url(curly_loop.png) no-repeat;background-size:1.5em}.emojify.wavy_dash{background:url(wavy_dash.png) no-repeat;background-size:1.5em}.emojify.part_alternation_mark{background:url(part_alternation_mark.png) no-repeat;background-size:1.5em}.emojify.trident{background:url(trident.png) no-repeat;background-size:1.5em}.emojify.black_square{background:url(black_square.png) no-repeat;background-size:1.5em}.emojify.white_square{background:url(white_square.png) no-repeat;background-size:1.5em}.emojify.white_check_mark{background:url(white_check_mark.png) no-repeat;background-size:1.5em}.emojify.black_square_button{background:url(black_square_button.png) no-repeat;background-size:1.5em}.emojify.white_square_button{background:url(white_square_button.png) no-repeat;background-size:1.5em}.emojify.black_circle{background:url(black_circle.png) no-repeat;background-size:1.5em}.emojify.white_circle{background:url(white_circle.png) no-repeat;background-size:1.5em}.emojify.red_circle{background:url(red_circle.png) no-repeat;background-size:1.5em}.emojify.large_blue_circle{background:url(large_blue_circle.png) no-repeat;background-size:1.5em}.emojify.large_blue_diamond{background:url(large_blue_diamond.png) no-repeat;background-size:1.5em}.emojify.large_orange_diamond{background:url(large_orange_diamond.png) no-repeat;background-size:1.5em}.emojify.small_blue_diamond{background:url(small_blue_diamond.png) no-repeat;background-size:1.5em}.emojify.small_orange_diamond{background:url(small_orange_diamond.png) no-repeat;background-size:1.5em}.emojify.small_red_triangle{background:url(small_red_triangle.png) no-repeat;background-size:1.5em}.emojify.small_red_triangle_down{background:url(small_red_triangle_down.png) no-repeat;background-size:1.5em}.emojify.shipit{background:url(shipit.png) no-repeat;background-size:1.5em} | |
\ No newline at end of file | ... | ... |
1.4 KB
1.6 KB
4.2 KB
3.8 KB
5.3 KB
4.7 KB
4.8 KB
1.1 KB
3.9 KB
4.8 KB
4.3 KB
4.7 KB
5.4 KB
4.8 KB
7.0 KB
3.0 KB
4.5 KB
5.5 KB
1.1 KB
1.5 KB
6.1 KB
3.9 KB
1.2 KB
3.8 KB
4.7 KB
6.1 KB
5.8 KB
4.2 KB
4.6 KB
5.7 KB
4.4 KB
5.7 KB
3.5 KB
6.0 KB
4.9 KB
3.1 KB
3.4 KB
5.7 KB
4.5 KB
6.6 KB
3.5 KB
5.0 KB
3.1 KB
5.9 KB
3.3 KB
3.5 KB
7.4 KB
6.3 KB
4.7 KB
4.6 KB
4.2 KB
6.3 KB
7.0 KB
2.9 KB
5.8 KB
4.7 KB
4.2 KB
4.4 KB
6.6 KB
5.9 KB
6.2 KB
5.7 KB
4.8 KB
1.3 KB
1.0 KB
3.5 KB
5.3 KB
6.1 KB
5.0 KB
4.3 KB
1.1 KB
1.0 KB
5.2 KB
5.6 KB
5.4 KB
3.5 KB
4.3 KB
3.1 KB
6.9 KB
5.6 KB
3.6 KB
7.1 KB
4.1 KB
5.3 KB
4.6 KB
3.7 KB
5.5 KB
5.8 KB
1.9 KB
6.4 KB
3.2 KB
3.4 KB
5.6 KB
6.0 KB
4.0 KB
6.1 KB
2.9 KB
924 Bytes
340 Bytes
1.4 KB
1.3 KB
176 Bytes
591 Bytes
315 Bytes
4.0 KB
5.8 KB
8.1 KB
4.0 KB
4.5 KB
2.4 KB
5.7 KB
5.7 KB
4.5 KB
5.8 KB
4.8 KB
5.0 KB
3.5 KB
4.4 KB
4.2 KB
3.4 KB
6.0 KB
1.4 KB
4.8 KB
5.3 KB
4.5 KB
3.8 KB
3.0 KB
6.5 KB
3.6 KB
2.2 KB
6.5 KB
3.6 KB
6.8 KB
2.8 KB
3.4 KB
3.4 KB
4.0 KB
5.5 KB
4.0 KB
4.8 KB
5.0 KB
7.0 KB
3.4 KB
6.2 KB
7.0 KB
2.8 KB
3.4 KB
4.0 KB
4.8 KB
6.1 KB
4.7 KB
6.6 KB
5.4 KB
5.6 KB
4.9 KB
5.6 KB
2.8 KB
5.0 KB
4.5 KB
3.7 KB
3.8 KB
6.0 KB
4.2 KB
6.2 KB
5.4 KB
5.8 KB
3.9 KB
3.3 KB
3.7 KB
5.9 KB
4.8 KB
5.2 KB
4.1 KB
3.7 KB
2.6 KB
3.7 KB
3.3 KB
3.6 KB
4.9 KB
5.6 KB
3.3 KB
5.9 KB
5.8 KB
2.4 KB
2.4 KB
4.6 KB
3.0 KB
3.5 KB
3.2 KB
4.1 KB
4.3 KB
4.5 KB
3.0 KB
5.9 KB
5.2 KB
6.4 KB
4.6 KB
4.3 KB
5.1 KB
5.9 KB
5.3 KB
4.6 KB
8.0 KB
4.8 KB
3.3 KB
3.0 KB
3.3 KB
3.6 KB
4.0 KB
5.7 KB
3.0 KB
5.5 KB
3.4 KB
7.4 KB
5.4 KB
4.9 KB
5.2 KB
4.2 KB
3.5 KB
4.1 KB
4.9 KB
9.3 KB
4.3 KB
7.3 KB
6.5 KB
4.0 KB
4.0 KB
2.1 KB
4.6 KB
4.8 KB
1.9 KB
3.1 KB
1.5 KB
6.5 KB
5.7 KB
3.9 KB
6.1 KB
6.0 KB
3.8 KB
4.7 KB
3.8 KB
5.2 KB
6.6 KB
5.1 KB
4.1 KB
3.7 KB
5.8 KB
5.5 KB
3.4 KB
3.2 KB
6.9 KB
5.0 KB
4.5 KB
5.4 KB
4.1 KB
5.1 KB
3.6 KB
5.9 KB
5.2 KB
1.5 KB
2.1 KB
2.5 KB
3.4 KB
5.6 KB
3.7 KB
5.6 KB
5.4 KB
5.0 KB
4.1 KB
4.5 KB
7.4 KB
6.6 KB
5.8 KB
1.8 KB
7.3 KB
5.2 KB
5.5 KB
6.1 KB
2.8 KB
4.2 KB
4.8 KB
4.4 KB
4.3 KB
5.0 KB
3.6 KB
5.8 KB
2.1 KB
3.6 KB
3.9 KB
3.6 KB
4.7 KB
2.4 KB
3.0 KB
2.6 KB
5.1 KB
3.9 KB
2.4 KB
5.8 KB
6.8 KB
4.8 KB
4.3 KB
4.6 KB
4.9 KB
6.1 KB
5.4 KB
4.7 KB
6.5 KB
5.3 KB
5.4 KB
5.9 KB
4.7 KB
4.6 KB
4.9 KB
5.5 KB
4.3 KB
5.1 KB
3.1 KB
3.0 KB
3.0 KB
3.4 KB
3.1 KB
3.3 KB
6.7 KB
4.6 KB
5.0 KB
4.7 KB
3.3 KB
3.8 KB
4.5 KB
4.1 KB
4.1 KB
4.8 KB
6.1 KB
7.7 KB
4.7 KB
4.2 KB
4.9 KB
3.7 KB
4.0 KB
1.7 KB
5.5 KB
4.3 KB
4.6 KB
6.0 KB
2.1 KB
5.3 KB
1.1 KB
1.1 KB
1.1 KB
1.2 KB
3.6 KB