12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- //
- // Material Icons
- // --------------------------------------------------
- @font-face {
- font-family: 'Material Icons';
- font-style: normal;
- font-weight: 400;
- src: url(../fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
- src: local('Material Icons'),
- local('MaterialIcons-Regular'),
- url(../fonts/MaterialIcons-Regular.woff2) format('woff2'),
- url(../fonts/MaterialIcons-Regular.woff) format('woff'),
- url(../fonts/MaterialIcons-Regular.ttf) format('truetype');
- }
- .material-icons {
- font-family: 'Material Icons';
- font-weight: normal;
- font-style: normal;
- display: inline-block;
- width: 1em;
- height: 1em;
- line-height: 1;
- text-align: center;
- text-transform: none;
- letter-spacing: normal;
- vertical-align: sub;
- position: relative;
- top: 1px;
- /* Support for all WebKit browsers. */
- -webkit-font-smoothing: antialiased;
- /* Support for Safari and Chrome. */
- text-rendering: optimizeLegibility;
- /* Support for Firefox. */
- -moz-osx-font-smoothing: grayscale;
- /* Support for IE. */
- font-feature-settings: 'liga';
- /* Faded */
- .opacity(0.6);
- /* Sizes */
- font-size: @font-size-large;
- }
- /* Upscale icons in leads */
- .lead .material-icons {
- font-size: floor((@font-size-base * 1.25));
- }
- /* Remove opacity from button icons */
- .btn .material-icons {
- .opacity(1);
- }
|