Features Page & Icons

This commit is contained in:
Alex Wolfe 2015-02-28 12:06:30 -08:00
parent 8257e11ae3
commit 7f8899530c
14 changed files with 758 additions and 54 deletions

View File

@ -6,7 +6,7 @@
"features": {
"title": "Features & Benefits",
"subtitle": "Production Grade Features"
"subtitle": "Powerful Features for Developing Apps"
},
"contribute": {

View File

@ -1,4 +1,4 @@
link(rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/angular_material/0.7.1/angular-material.min.css")
link(href='http://fonts.googleapis.com/css?family=Roboto:400,300,500,400italic,700' rel='stylesheet' type='text/css')
link(rel="stylesheet" href="/resources/css/vendor/icomoon/icons.css")
link(rel="stylesheet" href="/resources/css/vendor/icomoon/style.css")
link(rel="stylesheet" href="/resources/css/main.css")

View File

@ -1,23 +1,92 @@
section(class="l-content-block" layout="row")
div(flex="20")
<!-- MOBILE -->
.grid-fluid.l-space-bottom-8
.c3.text-center
.sticker <span class="sticker-icon icon-stay-current-portrait"></span>
div(flex="80")
h3.text-headline LIGHTWEIGHT &amp; MOBILE READY
p.text-body High Life mustache bitters flannel paleo, Vice chia mumblecore tousled Williamsburg. Scenester whatever farm-to-table Kickstarter hella, lo-fi lumbersexual street art lomo swag Echo Park. High Life leggings tofu Intelligentsia bespoke, American Apparel selfies ennui.
.c7
h3.text-headline.text-uppercase Mobile First
p.text-body Modular library design and mobile-specific routing keep things lean so users on low-bandwidth networks don't need to wait. First-class support for touch event gestures. Responsive, cross-device, material design UI components. Tuned for performance and low-memory usage on mobile platforms.
section(class="l-content-block" layout="row")
div(flex="20")
.sticker <span class="sticker-icon icon-filter-list"></span>
div(flex="80")
h3.text-headline ADVANCED FILTERING
p.text-body High Life mustache bitters flannel paleo, Vice chia mumblecore tousled Williamsburg. Scenester whatever farm-to-table Kickstarter hella, lo-fi lumbersexual street art lomo swag Echo Park. High Life leggings tofu Intelligentsia bespoke, American Apparel selfies ennui.
section(class="l-content-block" layout="row")
div(flex="20")
.sticker <span class="sticker-icon icon-language"></span>
div(flex="80")
h3.text-headline INTERNATIONALIZATION (I18N &amp; L10)
p.text-body High Life mustache bitters flannel paleo, Vice chia mumblecore tousled Williamsburg. Scenester whatever farm-to-table Kickstarter hella, lo-fi lumbersexual street art lomo swag Echo Park. High Life leggings tofu Intelligentsia bespoke, American Apparel selfies ennui.
<!-- ES6 -->
.grid-fluid.l-space-bottom-8
.c3.text-center
.sticker <span class="sticker-icon icon-fast-forward"></span>
.c7
h3.text-headline.text-uppercase Future Ready
p.text-body Angular 2 is written in written in ECMAScript 6, with the addition of TypeScript types and annotations. ES6 allows us to benefit from the best of JavaScript, while writing clean and easy-to-read code.
<!-- Coffee, Dart, ES6 -->
.grid-fluid.l-space-bottom-8
.c3.text-center
.sticker <span class="sticker-icon icon-subtitles"></span>
.c7
h3.text-headline.text-uppercase Flexible Development
p.text-body In addition to full support for ES6 and TypeScript, Angular 2 works equally well with today's ES5, Dart, CoffeeScript, and other languages that compile to JavaScript. The choice of language is up to you.
<!-- Speed & Performance -->
.grid-fluid.l-space-bottom-8
.c3.text-center
.sticker <span class="sticker-icon icon-av-timer"></span>
.c7
h3.text-headline.text-uppercase Speed &amp; Performance
p.text-body Change detection is now 5x faster thanks to internal change detection tuned for top performance in modern JavaScript engines. If your application uses data structures that imply change guarantees (like immutables and observables), we will make use of them to help speed up your application.
<!-- Simplicity -->
.grid-fluid.l-space-bottom-8
.c3.text-center
.sticker <span class="sticker-icon icon-favorite"></span>
.c7
h3.text-headline.text-uppercase Simple &amp; Expressive
p.text-body Make your intention clear using natural, easy-to-write syntax. Reduce complexity for your team: new, structure-rich templates are readable and easy to understand at a glance.
<!-- Routing -->
.grid-fluid.l-space-bottom-8
.c3.text-center
.sticker <span class="sticker-icon icon-call-split"></span>
.c7
h3.text-headline.text-uppercase Comprehensive Routing
p.text-body Design sophisticated views: map URL paths to application components, use advanced features like nested and sibling routes. Support for card stack navigation, animated transitions, and lazy loading for mobile users. Easy migration from routing in prior versions of Angular.
<!-- Animations -->
.grid-fluid.l-space-bottom-8
.c3.text-center
.sticker <span class="sticker-icon icon-flip"></span>
.c7
h3.text-headline.text-uppercase Animations
p.text-body Directly tap into to low-level animation support on mobile and desktop environments with easy-to-use Angular events. Make use of CSS, JavaScript, and the Web Animations API to intelligently handle changes to animations in response to user events. Plan complex animation flows by sequencing the behavior of an entire website on a timeline.
<!-- Dependancy Injection -->
.grid-fluid.l-space-bottom-8
.c3.text-center
.sticker <span class="sticker-icon icon-now-widgets"></span>
.c7
h3.text-headline.text-uppercase Hierarchical Dependency Injection
p.text-body Angular 2 ships with powerful, yet simple-to-use dependency injection, allowing you to maintain modular applications without writing tedious glue code. Dependency injection aids you when writing tests, by making it easy to inject test doubles.
<!-- Web Components -->
.grid-fluid.l-space-bottom-8
.c3.text-center
.sticker <span class="sticker-icon icon-polymer"></span>
.c7
h3.text-headline.text-uppercase Support for Web Components
p.text-body Angular 2 plays nicely with web components built using other libraries (Polymer, X-Tag and others), allowing you to pass data into them as easily as into Angular-native components. Angular components use web standards (e.g. shadow DOM and the HTML5 template tag) in browsers that support them.
<!-- Internationalization & Accessibility -->
.grid-fluid.l-space-bottom-8
.c3.text-center
.sticker <span class="sticker-icon icon-accessibility"></span>
.c7
h3.text-headline.text-uppercase Internationalization (I18N) &amp; Accessibility
p.text-body Reach all your users. Use familiar ICU message format in Angular interpolation syntax ({{ }}), including pluralization and gender rules. Automate message extraction, pseudolocalization, and translation updates. Generate static applications for each locale. Easily promote accessibility via screen readers and assistive devices by automatically generating appropriate ARIA attributes.

View File

@ -1,24 +1,24 @@
.grid-fluid.l-space-bottom-6
.c8
.grid-fluid.l-space-bottom-8
.c7
h3.text-headline Build Incredible Applications
p.text-body Angular is a development platform for creating applications using modern web standards. Angular includes a wealth of essential features such as mobile gestures, animations, filtering, routing, data binding, security, internationalization, and beautiful UI components. It's extremely modular, lightweight, and easy to learn.
.c4.text-center
.c5.text-center
img(src="/resources/images/logos/html5/html5.png")
.grid-fluid.l-space-bottom-6
.grid-fluid.l-space-bottom-8
.c7
h3.text-headline Start Quick, Build Fast
p.text-body Express your ideas with clean, understandable code. Angular is simple to build on, easy to change, and friendly to the way UX designers work. Create a UI that is beautiful by default, with material design and support for web components.
p.text-body Express your ideas with clean, understandable code. Angular is simple to build on, easy to change, and friendly to the way UX designers work. Create a UI that is beautiful by default, with material design and support for web components. Angular takes <a href="#">just minutes to learn</a>.
.c5
p(data-height="224" data-theme-id="12714" data-slug-hash="pvKKQa" data-default-tab="html" data-user="alexwolfe" class='codepen')
script(async src="//assets.codepen.io/assets/embed/ei.js")
.grid-fluid.l-space-bottom-6
.c8
.grid-fluid.l-space-bottom-8
.c7
h3.text-headline Open Source &amp; MIT Licensed
p.text-body Angular is built by you, for you. Our community shapes Angular's direction: core contributions come from big companies and small ones, from students and independent experts. We do our work in the open so that you can help Angular improve, or extend and modify what we've built.
.c4.text-center
p.text-body Angular is built by you, for you. Our community shapes Angular's direction: core contributions come from big companies and small ones, from students and independent experts. We do our work in the open so that you can help Angular <a href="#">improve, or extend and modify</a> what we've built.
.c5.text-center
img(src="/resources/images/logos/license/mit.png")
@ -26,7 +26,5 @@
.grid-fluid.text-center
.c8.a2.b2
h3.text-headline Loved by Millions of Developers
p.text-body But dont take our word for it. Ramp up in minutes, and build an app today.
!= partial("/_includes/_cta-bar")
p.text-body Join millions of devs who use Angular. Ramp up in minutes, and build an app today.
!= partial("/_includes/_cta-bar")

View File

@ -10,10 +10,19 @@ body {
color: $platinum;
}
a {
color: $blueberry;
}
.text-center {
text-align: center;
}
.text-uppercase {
text-transform: uppercase;
}
.text-display-4 {
margin: 0px 0px ($unit * 2) 0px;
font-size: 112px;

View File

@ -1,4 +1,3 @@
.cp_embed {
border-radius: 4px;
.cp_embed_iframe {
overflow: hidden;
}

View File

@ -6,7 +6,6 @@
.cta-bar {
text-align: center;
padding-top: ($unit * 8);
.button {
margin: 0px ($unit * 1);

View File

@ -9,6 +9,7 @@
border-radius: 1000px;
text-align: center;
background: $mist;
margin: ($unit * 2) auto;
.sticker-icon {
position: absolute;

View File

@ -27,7 +27,29 @@
<glyph unicode="&#xe611;" d="M682.667 896h-512c-47.147 0-85.333-38.187-85.333-85.333v-597.333h85.333v597.333h512v85.333zM810.667 725.334h-469.333c-47.147 0-85.333-38.187-85.333-85.333v-597.333c0-47.147 38.187-85.333 85.333-85.333h469.333c47.147 0 85.333 38.187 85.333 85.333v597.333c0 47.147-38.187 85.333-85.333 85.333zM810.667 42.667h-469.333v597.333h469.333v-597.333z" />
<glyph unicode="&#xe612;" d="M426.667 170.667h170.667v85.333h-170.667v-85.333zM128 682.667v-85.333h768v85.333h-768zM256 384h512v85.333h-512v-85.333z" />
<glyph unicode="&#xe613;" d="M825.813 510.507c-29.013 146.773-158.507 257.493-313.813 257.493-123.307 0-230.187-69.973-283.733-172.16-128.213-13.867-228.267-122.453-228.267-254.507 0-141.44 114.56-256 256-256h554.667c117.76 0 213.333 95.573 213.333 213.333 0 112.64-87.68 203.947-198.187 211.84zM725.333 384l-213.333-213.333-213.333 213.333h128v170.667h170.667v-170.667h128z" />
<glyph unicode="&#xe614;" d="M938.667 170.667v640h-853.333v-640h-85.333v-85.333h1024v85.333h-85.333zM597.333 170.667h-170.667v42.667h170.667v-42.667zM853.333 298.667h-682.667v426.667h682.667v-426.667z" />
<glyph unicode="&#xe614;" d="M512 853.334c47.147 0 85.333-38.187 85.333-85.333s-38.187-85.333-85.333-85.333-85.333 38.187-85.333 85.333 38.187 85.333 85.333 85.333zM896 554.667h-256v-554.667h-85.333v256h-85.333v-256h-85.333v554.667h-256v85.333h768v-85.333z" />
<glyph unicode="&#xe615;" d="M512 27.734l-61.867 56.107c-219.733 199.467-364.8 331.093-364.8 492.16 0 131.627 103.040 234.667 234.667 234.667 74.24 0 145.493-34.56 192-88.96 46.507 54.4 117.76 88.96 192 88.96 131.627 0 234.667-103.040 234.667-234.667 0-161.067-145.067-292.693-364.8-492.16l-61.867-56.107z" />
<glyph unicode="&#xe616;" d="M426.667 85.334v256h170.667v-256h213.333v341.333h128l-426.667 384-426.667-384h128v-341.333z" />
<glyph unicode="&#xe617;" d="M810.667 128h-597.333v597.333h298.667v85.333h-298.667c-47.147 0-85.333-38.187-85.333-85.333v-597.333c0-47.147 38.187-85.333 85.333-85.333h597.333c47.147 0 85.333 38.187 85.333 85.333v298.667h-85.333v-298.667zM597.333 810.667v-85.333h152.96l-419.413-419.413 60.373-60.373 419.413 419.413v-152.96h85.333v298.667h-298.667z" />
<glyph unicode="&#xe618;" d="M810.667 768h-170.667l-336.853-538.88-111.147 197.547 192 341.333h-170.667l-192-341.333 192-341.333h170.667l336.853 538.88 111.147-197.547-192-341.333h170.667l192 341.333z" />
<glyph unicode="&#xe619;" d="M331.52 650.24l-65.707 54.4-230.827-277.973 230.827-278.187 65.707 54.4-185.6 223.787 185.6 223.573zM298.667 384h85.333v85.333h-85.333v-85.333zM725.333 469.334h-85.333v-85.333h85.333v85.333zM469.333 384h85.333v85.333h-85.333v-85.333zM758.187 704.854l-65.707-54.4 185.6-223.787-185.6-223.573 65.707-54.4 230.827 277.973-230.827 278.187z" />
<glyph unicode="&#xe61a;" d="M170.667 469.334h213.333v256h-213.333v-256zM170.667 170.667h213.333v256h-213.333v-256zM426.667 170.667h213.333v256h-213.333v-256zM682.667 170.667h213.333v256h-213.333v-256zM426.667 469.334h213.333v256h-213.333v-256zM682.667 725.334v-256h213.333v256h-213.333z" />
<glyph unicode="&#xe61b;" d="M469.333 213.334c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667-19.2 42.667-42.667 42.667-42.667-19.2-42.667-42.667zM469.333 810.667v-170.667h85.333v81.92c144.64-20.693 256-144.853 256-295.253 0-164.907-133.76-298.667-298.667-298.667s-298.667 133.76-298.667 298.667c0 71.68 25.173 137.173 67.2 188.8l231.467-231.467 60.373 60.373-290.133 290.133-0.427-0.853c-93.227-69.973-153.813-181.333-153.813-306.987 0-212.053 171.52-384 383.787-384s384.213 171.947 384.213 384-171.947 384-384.213 384h-42.453zM768 426.667c0 23.467-19.2 42.667-42.667 42.667s-42.667-19.2-42.667-42.667 19.2-42.667 42.667-42.667 42.667 19.2 42.667 42.667zM256 426.667c0-23.467 19.2-42.667 42.667-42.667s42.667 19.2 42.667 42.667-19.2 42.667-42.667 42.667-42.667-19.2-42.667-42.667z" />
<glyph unicode="&#xe61c;" d="M170.667 170.667l362.667 256-362.667 256v-512zM554.667 682.667v-512l362.667 256-362.667 256z" />
<glyph unicode="&#xe61d;" d="M853.333 768h-682.667c-47.147 0-85.333-38.187-85.333-85.333v-512c0-47.147 38.187-85.333 85.333-85.333h682.667c47.147 0 85.333 38.187 85.333 85.333v512c0 47.147-38.187 85.333-85.333 85.333zM170.667 426.667h170.667v-85.333h-170.667v85.333zM597.333 170.667h-426.667v85.333h426.667v-85.333zM853.333 170.667h-170.667v85.333h170.667v-85.333zM853.333 341.334h-426.667v85.333h426.667v-85.333z" />
<glyph unicode="&#xe61e;" d="M597.333 768l97.92-97.92-122.88-122.667 60.373-60.373 122.667 122.88 97.92-97.92v256zM426.667 768h-256v-256l97.92 97.92 200.747-200.96v-323.627h85.333v359.040l-225.92 225.707z" />
<glyph unicode="&#xe61f;" d="M384 810.667l-170.667-170.24h128v-299.093h85.333v299.093h128l-170.667 170.24zM682.667 212.907v299.093h-85.333v-299.093h-128l170.667-170.24 170.667 170.24h-128z" />
<glyph unicode="&#xe620;" d="M298.667 721.707h426.667v-85.333h85.333v170.667c0 47.147-38.187 84.907-85.333 84.907l-426.667 0.427c-47.147 0-85.333-38.187-85.333-85.333v-170.667h85.333v85.333zM657.707 227.414l195.627 195.627-195.627 195.627-60.373-60.373 135.253-135.253-135.253-135.467 60.373-60.16zM426.667 287.574l-135.253 135.253 135.253 135.467-60.373 60.373-195.627-195.627 195.627-195.627 60.373 60.16zM725.333 124.374h-426.667v85.333h-85.333v-170.667c0-47.147 38.187-85.333 85.333-85.333h426.667c47.147 0 85.333 38.187 85.333 85.333v170.667h-85.333v-85.333z" />
<glyph unicode="&#xe621;" d="M554.667 384v-341.333h341.333v341.333h-341.333zM128 42.667h341.333v341.333h-341.333v-341.333zM128 810.667v-341.333h341.333v341.333h-341.333zM710.613 866.774l-241.28-241.493 241.28-241.28 241.28 241.28-241.28 241.493z" />
<glyph unicode="&#xe622;" d="M85.333 213.334h85.333v-21.333h-42.667v-42.667h42.667v-21.333h-85.333v-42.667h128v170.667h-128v-42.667zM128 597.334h42.667v170.667h-85.333v-42.667h42.667v-128zM85.333 469.334h76.8l-76.8-89.6v-38.4h128v42.667h-76.8l76.8 89.6v38.4h-128v-42.667zM298.667 725.334v-85.333h597.333v85.333h-597.333zM298.667 128h597.333v85.333h-597.333v-85.333zM298.667 384h597.333v85.333h-597.333v-85.333z" />
<glyph unicode="&#xe623;" d="M810.667 810.667h-597.333c-47.147 0-85.333-38.187-85.333-85.333v-597.333c0-47.147 38.187-85.333 85.333-85.333h597.333c47.147 0 85.333 38.187 85.333 85.333v597.333c0 47.147-38.187 85.333-85.333 85.333zM384 213.334h-85.333v298.667h85.333v-298.667zM554.667 213.334h-85.333v426.667h85.333v-426.667zM725.333 213.334h-85.333v170.667h85.333v-170.667z" />
<glyph unicode="&#xe624;" d="M853.333 170.667c46.933 0 85.333 38.4 85.333 85.333v426.667c0 46.933-38.4 85.333-85.333 85.333h-682.667c-46.933 0-85.333-38.4-85.333-85.333v-426.667c0-46.933 38.4-85.333 85.333-85.333h-170.667v-85.333h1024v85.333h-170.667zM170.667 682.667h682.667v-426.667h-682.667v426.667z" />
<glyph unicode="&#xe625;" d="M511.787 853.334c-235.733 0-426.453-190.933-426.453-426.667s190.72-426.667 426.453-426.667c235.733 0 426.88 190.933 426.88 426.667s-191.147 426.667-426.88 426.667zM512 85.334c-188.587 0-341.333 152.747-341.333 341.333s152.747 341.333 341.333 341.333 341.333-152.747 341.333-341.333-152.747-341.333-341.333-341.333zM661.333 469.334c35.413 0 64 28.587 64 64s-28.587 64-64 64-64-28.587-64-64 28.587-64 64-64zM362.667 469.334c35.413 0 64 28.587 64 64s-28.587 64-64 64-64-28.587-64-64 28.587-64 64-64zM512 192c99.413 0 183.68 62.080 217.813 149.333h-435.627c34.133-87.253 118.4-149.333 217.813-149.333z" />
<glyph unicode="&#xe626;" d="M512 853.334c-235.733 0-426.667-190.933-426.667-426.667s190.933-426.667 426.667-426.667 426.667 190.933 426.667 426.667-190.933 426.667-426.667 426.667zM469.333 88.32c-168.32 20.907-298.667 164.267-298.667 338.347 0 26.24 3.2 51.84 8.96 76.373l204.373-204.373v-42.667c0-47.147 38.187-85.333 85.333-85.333v-82.347zM763.52 196.48c-10.88 34.56-42.88 59.52-80.853 59.52h-42.667v128c0 23.467-19.2 42.667-42.667 42.667h-256v85.333h85.333c23.467 0 42.667 19.2 42.667 42.667v85.333h85.333c47.147 0 85.333 38.187 85.333 85.333v17.707c125.013-50.56 213.333-173.013 213.333-316.373 0-88.747-34.133-169.387-89.813-230.187z" />
<glyph unicode="&#xe627;" d="M640 42.667h85.333v85.333h-85.333v-85.333zM810.667 554.667h85.333v85.333h-85.333v-85.333zM128 725.334v-597.333c0-47.147 38.187-85.333 85.333-85.333h170.667v85.333h-170.667v597.333h170.667v85.333h-170.667c-47.147 0-85.333-38.187-85.333-85.333zM810.667 810.667v-85.333h85.333c0 47.147-38.187 85.333-85.333 85.333zM469.333-42.666h85.333v938.667h-85.333v-938.667zM810.667 213.334h85.333v85.333h-85.333v-85.333zM640 725.334h85.333v85.333h-85.333v-85.333zM810.667 384h85.333v85.333h-85.333v-85.333zM810.667 42.667c47.147 0 85.333 38.187 85.333 85.333h-85.333v-85.333z" />
<glyph unicode="&#xe628;" d="M426.667 85.334h170.667v682.667h-170.667v-682.667zM170.667 85.334h170.667v341.333h-170.667v-341.333zM682.667 554.667v-469.333h170.667v469.333h-170.667z" />
<glyph unicode="&#xea80;" d="M832 224l96-96 320 320-320 320-96-96 224-224zM448 672l-96 96-320-320 320-320 96 96-224 224zM701.298 809.481l69.468-18.944-191.987-704.026-69.468 18.944 191.987 704.026z" horiz-adv-x="1280" />
<glyph unicode="&#xea81;" d="M0 896v-896h1024v896h-1024zM960 64h-896v768h896v-768zM896 768h-768v-640h768v640zM448 448h-64v-64h-64v-64h-64v64h64v64h64v64h-64v64h-64v64h64v-64h64v-64h64v-64zM704 320h-192v64h192v-64z" />
<glyph unicode="&#xea89;" d="M0.806 90.336c-0.244 2.532-0.452 5.070-0.584 7.63 0.13-2.56 0.34-5.098 0.584-7.63zM235.908 394.852c92.010-2.738 153.734 92.698 137.862 213.198-15.894 120.48-103.396 217.168-195.408 219.922-92.026 2.73-153.74-89.482-137.852-210 15.882-120.468 103.352-220.374 195.398-223.12zM1024 704v85.31c0 93.88-76.782 170.69-170.658 170.69h-682.656c-92.276 0-168.012-74.232-170.564-165.926 58.362 51.386 139.324 94.316 222.874 94.316 89.304 0 357.244 0 357.244 0l-79.948-67.618h-113.268c75.13-28.804 115.156-116.124 115.156-205.722 0-75.248-41.81-139.954-100.888-185.968-57.644-44.902-68.572-63.708-68.572-101.878 0-32.578 61.746-88 94.032-110.788 94.382-66.538 124.916-128.312 124.916-231.456 0-16.428-2.042-32.83-6.066-48.96h307.742c93.874 0 170.656 76.75 170.656 170.69v533.308h-192v-191.998h-64v192h-191.998v64h191.998v192h64v-192h192zM185.886 194.064c21.614 0 41.422 0.59 61.936 0.59-27.146 26.334-48.626 58.6-48.626 98.38 0 23.608 7.564 46.336 18.134 66.52-10.782-0.77-21.79-0.994-33.126-0.994-74.356 0-137.506 24.076-184.204 63.854v-67.242l0.006-201.73c53.44 25.374 116.888 40.622 185.88 40.622zM3.42 72.742c-1.112 5.458-1.966 11.006-2.542 16.634 0.574-5.628 1.43-11.176 2.542-16.634zM455.45 7.154c-15.058 58.806-68.454 87.964-142.888 139.568-27.072 8.732-56.894 13.874-88.894 14.208-89.618 0.964-173.108-34.942-220.216-88.372 15.92-77.706 85.034-136.558 167.234-136.558h286.444c1.816 11.128 2.696 22.632 2.696 34.432 0 12.534-1.534 24.792-4.376 36.722z" />
<glyph unicode="&#xea8d;" d="M853.35 960h-682.702c-94.25 0-170.648-76.42-170.648-170.686v-682.63c0-94.266 76.398-170.684 170.648-170.684h341.352v448h-128v128h128v96c0 88.366 71.634 160 160 160h160v-128h-160c-17.674 0-32-14.328-32-32v-96h176l-32-128h-144v-448h213.35c94.25 0 170.65 76.418 170.65 170.684v682.63c0 94.266-76.4 170.686-170.65 170.686z" />
<glyph unicode="&#xea92;" d="M853.342 960h-682.656c-93.874 0-170.686-76.81-170.686-170.69v-682.624c0-93.936 76.812-170.686 170.686-170.686h682.656c93.876 0 170.658 76.75 170.658 170.69v682.62c0 93.88-76.782 170.69-170.658 170.69zM766.478 578.52c0.252-5.632 0.38-11.296 0.38-16.988 0-173.51-132.070-373.588-373.584-373.588-74.15 0-143.168 21.738-201.276 58.996 10.272-1.218 20.724-1.84 31.322-1.84 61.518 0 118.134 20.992 163.072 56.21-57.458 1.054-105.948 39.020-122.658 91.184 8.018-1.532 16.244-2.36 24.704-2.36 11.976 0 23.578 1.61 34.592 4.61-60.064 12.066-105.326 65.132-105.326 128.75 0 0.554 0 1.104 0.012 1.652 17.7-9.834 37.948-15.742 59.47-16.424-35.232 23.546-58.414 63.736-58.414 109.292 0 24.064 6.476 46.62 17.78 66.010 64.76-79.44 161.51-131.712 270.634-137.19-2.238 9.612-3.4 19.632-3.4 29.924 0 72.512 58.792 131.298 131.304 131.298 37.766 0 71.892-15.944 95.842-41.462 29.908 5.886 58.008 16.814 83.38 31.862-9.804-30.662-30.624-56.394-57.732-72.644 26.56 3.174 51.866 10.232 75.412 20.674-17.594-26.328-39.854-49.454-65.514-67.966z" />

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -1,6 +1,65 @@
{
"IcoMoonType": "selection",
"icons": [
{
"icon": {
"paths": [
"M832 736l96 96 320-320-320-320-96 96 224 224z",
"M448 288l-96-96-320 320 320 320 96-96-224-224z",
"M701.298 150.519l69.468 18.944-191.987 704.026-69.468-18.944 191.987-704.026z"
],
"width": 1280,
"attrs": [],
"isMulticolor": false,
"tags": [
"embed",
"code",
"html",
"xml"
],
"defaultCode": 58496,
"grid": 16
},
"attrs": [],
"properties": {
"id": 1272,
"order": 50,
"prevSize": 32,
"code": 60032,
"ligatures": "embed2, code2",
"name": "embed2"
},
"setIdx": 0,
"iconIdx": 384
},
{
"icon": {
"paths": [
"M0 64v896h1024v-896h-1024zM960 896h-896v-768h896v768zM896 192h-768v640h768v-640zM448 512h-64v64h-64v64h-64v-64h64v-64h64v-64h-64v-64h-64v-64h64v64h64v64h64v64zM704 640h-192v-64h192v64z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"terminal",
"console",
"cmd",
"command-line"
],
"defaultCode": 58497,
"grid": 16
},
"attrs": [],
"properties": {
"id": 1273,
"order": 51,
"prevSize": 32,
"code": 60033,
"ligatures": "terminal, console",
"name": "terminal"
},
"setIdx": 0,
"iconIdx": 385
},
{
"icon": {
"paths": [
@ -19,7 +78,7 @@
"attrs": [],
"properties": {
"id": 1294,
"order": 29,
"order": 24,
"prevSize": 32,
"code": 60041,
"ligatures": "google-plus2, brand3",
@ -46,7 +105,7 @@
"attrs": [],
"properties": {
"id": 1298,
"order": 27,
"order": 22,
"prevSize": 32,
"code": 60045,
"ligatures": "facebook2, brand7",
@ -74,7 +133,7 @@
"attrs": [],
"properties": {
"id": 1303,
"order": 28,
"order": 23,
"prevSize": 32,
"code": 60050,
"ligatures": "twitter2, brand12",
@ -83,6 +142,29 @@
"setIdx": 0,
"iconIdx": 402
},
{
"icon": {
"paths": [
"M512 85.333c47.147 0 85.333 38.187 85.333 85.333s-38.187 85.333-85.333 85.333-85.333-38.187-85.333-85.333 38.187-85.333 85.333-85.333zM896 384h-256v554.667h-85.333v-256h-85.333v256h-85.333v-554.667h-256v-85.333h768v85.333z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"accessibility"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 1,
"order": 28,
"prevSize": 24,
"code": 58900,
"name": "accessibility"
},
"setIdx": 1,
"iconIdx": 1
},
{
"icon": {
"paths": [
@ -129,6 +211,52 @@
"setIdx": 1,
"iconIdx": 27
},
{
"icon": {
"paths": [
"M512 910.933l-61.867-56.107c-219.733-199.467-364.8-331.093-364.8-492.16 0-131.627 103.040-234.667 234.667-234.667 74.24 0 145.493 34.56 192 88.96 46.507-54.4 117.76-88.96 192-88.96 131.627 0 234.667 103.040 234.667 234.667 0 161.067-145.067 292.693-364.8 492.16l-61.867 56.107z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"favorite"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 42,
"order": 29,
"prevSize": 24,
"code": 58901,
"name": "favorite"
},
"setIdx": 1,
"iconIdx": 42
},
{
"icon": {
"paths": [
"M426.667 853.333v-256h170.667v256h213.333v-341.333h128l-426.667-384-426.667 384h128v341.333z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"home"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 54,
"order": 30,
"prevSize": 24,
"code": 58902,
"name": "home"
},
"setIdx": 1,
"iconIdx": 54
},
{
"icon": {
"paths": [
@ -221,6 +349,52 @@
"setIdx": 1,
"iconIdx": 65
},
{
"icon": {
"paths": [
"M810.667 810.667h-597.333v-597.333h298.667v-85.333h-298.667c-47.147 0-85.333 38.187-85.333 85.333v597.333c0 47.147 38.187 85.333 85.333 85.333h597.333c47.147 0 85.333-38.187 85.333-85.333v-298.667h-85.333v298.667zM597.333 128v85.333h152.96l-419.413 419.413 60.373 60.373 419.413-419.413v152.96h85.333v-298.667h-298.667z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"open-in-new"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 72,
"order": 40,
"prevSize": 24,
"code": 58903,
"name": "open-in-new"
},
"setIdx": 1,
"iconIdx": 72
},
{
"icon": {
"paths": [
"M810.667 170.667h-170.667l-336.853 538.88-111.147-197.547 192-341.333h-170.667l-192 341.333 192 341.333h170.667l336.853-538.88 111.147 197.547-192 341.333h170.667l192-341.333z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"polymer"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 85,
"order": 35,
"prevSize": 24,
"code": 58904,
"name": "polymer"
},
"setIdx": 1,
"iconIdx": 85
},
{
"icon": {
"paths": [
@ -291,6 +465,29 @@
"setIdx": 1,
"iconIdx": 96
},
{
"icon": {
"paths": [
"M331.52 288.427l-65.707-54.4-230.827 277.973 230.827 278.187 65.707-54.4-185.6-223.787 185.6-223.573zM298.667 554.667h85.333v-85.333h-85.333v85.333zM725.333 469.333h-85.333v85.333h85.333v-85.333zM469.333 554.667h85.333v-85.333h-85.333v85.333zM758.187 233.813l-65.707 54.4 185.6 223.787-185.6 223.573 65.707 54.4 230.827-277.973-230.827-278.187z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"settings-ethernet"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 103,
"order": 39,
"prevSize": 24,
"code": 58905,
"name": "settings-ethernet"
},
"setIdx": 1,
"iconIdx": 103
},
{
"icon": {
"paths": [
@ -360,6 +557,98 @@
"setIdx": 1,
"iconIdx": 144
},
{
"icon": {
"paths": [
"M170.667 469.333h213.333v-256h-213.333v256zM170.667 768h213.333v-256h-213.333v256zM426.667 768h213.333v-256h-213.333v256zM682.667 768h213.333v-256h-213.333v256zM426.667 469.333h213.333v-256h-213.333v256zM682.667 213.333v256h213.333v-256h-213.333z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"view-module"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 152,
"order": 36,
"prevSize": 24,
"code": 58906,
"name": "view-module"
},
"setIdx": 1,
"iconIdx": 152
},
{
"icon": {
"paths": [
"M469.333 725.333c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667zM469.333 128v170.667h85.333v-81.92c144.64 20.693 256 144.853 256 295.253 0 164.907-133.76 298.667-298.667 298.667s-298.667-133.76-298.667-298.667c0-71.68 25.173-137.173 67.2-188.8l231.467 231.467 60.373-60.373-290.133-290.133-0.427 0.853c-93.227 69.973-153.813 181.333-153.813 306.987 0 212.053 171.52 384 383.787 384s384.213-171.947 384.213-384-171.947-384-384.213-384h-42.453zM768 512c0-23.467-19.2-42.667-42.667-42.667s-42.667 19.2-42.667 42.667 19.2 42.667 42.667 42.667 42.667-19.2 42.667-42.667zM256 512c0 23.467 19.2 42.667 42.667 42.667s42.667-19.2 42.667-42.667-19.2-42.667-42.667-42.667-42.667 19.2-42.667 42.667z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"av-timer"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 165,
"order": 37,
"prevSize": 24,
"code": 58907,
"name": "av-timer"
},
"setIdx": 1,
"iconIdx": 165
},
{
"icon": {
"paths": [
"M426.667 853.333h170.667v-682.667h-170.667v682.667zM170.667 853.333h170.667v-341.333h-170.667v341.333zM682.667 384v469.333h170.667v-469.333h-170.667z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"equalizer"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 167,
"order": 52,
"prevSize": 24,
"code": 58920,
"name": "equalizer"
},
"setIdx": 1,
"iconIdx": 167
},
{
"icon": {
"paths": [
"M170.667 768l362.667-256-362.667-256v512zM554.667 256v512l362.667-256-362.667-256z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"fast-forward"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 169,
"order": 31,
"prevSize": 24,
"code": 58908,
"name": "fast-forward"
},
"setIdx": 1,
"iconIdx": 169
},
{
"icon": {
"paths": [
@ -406,6 +695,52 @@
"setIdx": 1,
"iconIdx": 189
},
{
"icon": {
"paths": [
"M853.333 170.667h-682.667c-47.147 0-85.333 38.187-85.333 85.333v512c0 47.147 38.187 85.333 85.333 85.333h682.667c47.147 0 85.333-38.187 85.333-85.333v-512c0-47.147-38.187-85.333-85.333-85.333zM170.667 512h170.667v85.333h-170.667v-85.333zM597.333 768h-426.667v-85.333h426.667v85.333zM853.333 768h-170.667v-85.333h170.667v85.333zM853.333 597.333h-426.667v-85.333h426.667v85.333z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"subtitles"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 204,
"order": 47,
"prevSize": 24,
"code": 58909,
"name": "subtitles"
},
"setIdx": 1,
"iconIdx": 204
},
{
"icon": {
"paths": [
"M597.333 170.667l97.92 97.92-122.88 122.667 60.373 60.373 122.667-122.88 97.92 97.92v-256zM426.667 170.667h-256v256l97.92-97.92 200.747 200.96v323.627h85.333v-359.040l-225.92-225.707z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"call-split"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 221,
"order": 38,
"prevSize": 24,
"code": 58910,
"name": "call-split"
},
"setIdx": 1,
"iconIdx": 221
},
{
"icon": {
"paths": [
@ -429,6 +764,29 @@
"setIdx": 1,
"iconIdx": 222
},
{
"icon": {
"paths": [
"M384 128l-170.667 170.24h128v299.093h85.333v-299.093h128l-170.667-170.24zM682.667 725.76v-299.093h-85.333v299.093h-128l170.667 170.24 170.667-170.24h-128z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"import-export"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 231,
"order": 34,
"prevSize": 24,
"code": 58911,
"name": "import-export"
},
"setIdx": 1,
"iconIdx": 231
},
{
"icon": {
"paths": [
@ -521,6 +879,98 @@
"setIdx": 1,
"iconIdx": 266
},
{
"icon": {
"paths": [
"M298.667 216.96h426.667v85.333h85.333v-170.667c0-47.147-38.187-84.907-85.333-84.907l-426.667-0.427c-47.147 0-85.333 38.187-85.333 85.333v170.667h85.333v-85.333zM657.707 711.253l195.627-195.627-195.627-195.627-60.373 60.373 135.253 135.253-135.253 135.467 60.373 60.16zM426.667 651.093l-135.253-135.253 135.253-135.467-60.373-60.373-195.627 195.627 195.627 195.627 60.373-60.16zM725.333 814.293h-426.667v-85.333h-85.333v170.667c0 47.147 38.187 85.333 85.333 85.333h426.667c47.147 0 85.333-38.187 85.333-85.333v-170.667h-85.333v85.333z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"developer-mode"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 319,
"order": 43,
"prevSize": 24,
"code": 58912,
"name": "developer-mode"
},
"setIdx": 1,
"iconIdx": 319
},
{
"icon": {
"paths": [
"M554.667 554.667v341.333h341.333v-341.333h-341.333zM128 896h341.333v-341.333h-341.333v341.333zM128 128v341.333h341.333v-341.333h-341.333zM710.613 71.893l-241.28 241.493 241.28 241.28 241.28-241.28-241.28-241.493z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"now-widgets"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 332,
"order": 42,
"prevSize": 24,
"code": 58913,
"name": "now-widgets"
},
"setIdx": 1,
"iconIdx": 332
},
{
"icon": {
"paths": [
"M85.333 725.333h85.333v21.333h-42.667v42.667h42.667v21.333h-85.333v42.667h128v-170.667h-128v42.667zM128 341.333h42.667v-170.667h-85.333v42.667h42.667v128zM85.333 469.333h76.8l-76.8 89.6v38.4h128v-42.667h-76.8l76.8-89.6v-38.4h-128v42.667zM298.667 213.333v85.333h597.333v-85.333h-597.333zM298.667 810.667h597.333v-85.333h-597.333v85.333zM298.667 554.667h597.333v-85.333h-597.333v85.333z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"format-list-numbered"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 401,
"order": 48,
"prevSize": 24,
"code": 58914,
"name": "format-list-numbered"
},
"setIdx": 1,
"iconIdx": 401
},
{
"icon": {
"paths": [
"M810.667 128h-597.333c-47.147 0-85.333 38.187-85.333 85.333v597.333c0 47.147 38.187 85.333 85.333 85.333h597.333c47.147 0 85.333-38.187 85.333-85.333v-597.333c0-47.147-38.187-85.333-85.333-85.333zM384 725.333h-85.333v-298.667h85.333v298.667zM554.667 725.333h-85.333v-426.667h85.333v426.667zM725.333 725.333h-85.333v-170.667h85.333v170.667z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"insert-chart"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 410,
"order": 46,
"prevSize": 24,
"code": 58915,
"name": "insert-chart"
},
"setIdx": 1,
"iconIdx": 410
},
{
"icon": {
"paths": [
@ -536,7 +986,7 @@
"attrs": [],
"properties": {
"id": 429,
"order": 26,
"order": 21,
"prevSize": 24,
"code": 58899,
"name": "cloud-download"
@ -547,25 +997,94 @@
{
"icon": {
"paths": [
"M938.667 768v-640h-853.333v640h-85.333v85.333h1024v-85.333h-85.333zM597.333 768h-170.667v-42.667h170.667v42.667zM853.333 640h-682.667v-426.667h682.667v426.667z"
"M853.333 768c46.933 0 85.333-38.4 85.333-85.333v-426.667c0-46.933-38.4-85.333-85.333-85.333h-682.667c-46.933 0-85.333 38.4-85.333 85.333v426.667c0 46.933 38.4 85.333 85.333 85.333h-170.667v85.333h1024v-85.333h-170.667zM170.667 256h682.667v426.667h-682.667v-426.667z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"laptop-chromebook"
"laptop"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 461,
"order": 20,
"id": 460,
"order": 45,
"prevSize": 24,
"code": 58900,
"name": "laptop-chromebook"
"code": 58916,
"name": "laptop"
},
"setIdx": 1,
"iconIdx": 461
"iconIdx": 460
},
{
"icon": {
"paths": [
"M640 896h85.333v-85.333h-85.333v85.333zM810.667 384h85.333v-85.333h-85.333v85.333zM128 213.333v597.333c0 47.147 38.187 85.333 85.333 85.333h170.667v-85.333h-170.667v-597.333h170.667v-85.333h-170.667c-47.147 0-85.333 38.187-85.333 85.333zM810.667 128v85.333h85.333c0-47.147-38.187-85.333-85.333-85.333zM469.333 981.333h85.333v-938.667h-85.333v938.667zM810.667 725.333h85.333v-85.333h-85.333v85.333zM640 213.333h85.333v-85.333h-85.333v85.333zM810.667 554.667h85.333v-85.333h-85.333v85.333zM810.667 896c47.147 0 85.333-38.187 85.333-85.333h-85.333v85.333z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"flip"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 551,
"order": 49,
"prevSize": 24,
"code": 58919,
"name": "flip"
},
"setIdx": 1,
"iconIdx": 551
},
{
"icon": {
"paths": [
"M511.787 85.333c-235.733 0-426.453 190.933-426.453 426.667s190.72 426.667 426.453 426.667c235.733 0 426.88-190.933 426.88-426.667s-191.147-426.667-426.88-426.667zM512 853.333c-188.587 0-341.333-152.747-341.333-341.333s152.747-341.333 341.333-341.333 341.333 152.747 341.333 341.333-152.747 341.333-341.333 341.333zM661.333 469.333c35.413 0 64-28.587 64-64s-28.587-64-64-64-64 28.587-64 64 28.587 64 64 64zM362.667 469.333c35.413 0 64-28.587 64-64s-28.587-64-64-64-64 28.587-64 64 28.587 64 64 64zM512 746.667c99.413 0 183.68-62.080 217.813-149.333h-435.627c34.133 87.253 118.4 149.333 217.813 149.333z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"tag-faces"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 600,
"order": 44,
"prevSize": 24,
"code": 58917,
"name": "tag-faces"
},
"setIdx": 1,
"iconIdx": 600
},
{
"icon": {
"paths": [
"M512 85.333c-235.733 0-426.667 190.933-426.667 426.667s190.933 426.667 426.667 426.667 426.667-190.933 426.667-426.667-190.933-426.667-426.667-426.667zM469.333 850.347c-168.32-20.907-298.667-164.267-298.667-338.347 0-26.24 3.2-51.84 8.96-76.373l204.373 204.373v42.667c0 47.147 38.187 85.333 85.333 85.333v82.347zM763.52 742.187c-10.88-34.56-42.88-59.52-80.853-59.52h-42.667v-128c0-23.467-19.2-42.667-42.667-42.667h-256v-85.333h85.333c23.467 0 42.667-19.2 42.667-42.667v-85.333h85.333c47.147 0 85.333-38.187 85.333-85.333v-17.707c125.013 50.56 213.333 173.013 213.333 316.373 0 88.747-34.133 169.387-89.813 230.187z"
],
"attrs": [],
"isMulticolor": false,
"tags": [
"publ"
],
"grid": 24
},
"attrs": [],
"properties": {
"id": 746,
"order": 32,
"prevSize": 24,
"code": 58918,
"name": "publ"
},
"setIdx": 1,
"iconIdx": 746
}
],
"height": 1024,

View File

@ -1,10 +1,10 @@
@font-face {
font-family: 'icomoon';
src:url('fonts/icomoon.eot?-ruj673');
src:url('fonts/icomoon.eot?#iefix-ruj673') format('embedded-opentype'),
url('fonts/icomoon.woff?-ruj673') format('woff'),
url('fonts/icomoon.ttf?-ruj673') format('truetype'),
url('fonts/icomoon.svg?-ruj673#icomoon') format('svg');
src:url('fonts/icomoon.eot?1jdkpb');
src:url('fonts/icomoon.eot?#iefix1jdkpb') format('embedded-opentype'),
url('fonts/icomoon.woff?1jdkpb') format('woff'),
url('fonts/icomoon.ttf?1jdkpb') format('truetype'),
url('fonts/icomoon.svg?1jdkpb#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
@ -23,6 +23,14 @@
-moz-osx-font-smoothing: grayscale;
}
.icon-embed2:before {
content: "\ea80";
}
.icon-terminal:before {
content: "\ea81";
}
.icon-google-plus2:before {
content: "\ea89";
}
@ -35,6 +43,10 @@
content: "\ea92";
}
.icon-accessibility:before {
content: "\e614";
}
.icon-book:before {
content: "\e600";
}
@ -43,6 +55,14 @@
content: "\e601";
}
.icon-favorite:before {
content: "\e615";
}
.icon-home:before {
content: "\e616";
}
.icon-info-outline:before {
content: "\e602";
}
@ -59,6 +79,14 @@
content: "\e605";
}
.icon-open-in-new:before {
content: "\e617";
}
.icon-polymer:before {
content: "\e618";
}
.icon-query-builder:before {
content: "\e606";
}
@ -71,6 +99,10 @@
content: "\e608";
}
.icon-settings-ethernet:before {
content: "\e619";
}
.icon-shop:before {
content: "\e609";
}
@ -83,6 +115,22 @@
content: "\e60b";
}
.icon-view-module:before {
content: "\e61a";
}
.icon-av-timer:before {
content: "\e61b";
}
.icon-equalizer:before {
content: "\e628";
}
.icon-fast-forward:before {
content: "\e61c";
}
.icon-play-circle-fill:before {
content: "\e60c";
}
@ -91,10 +139,22 @@
content: "\e60d";
}
.icon-subtitles:before {
content: "\e61d";
}
.icon-call-split:before {
content: "\e61e";
}
.icon-chat:before {
content: "\e60e";
}
.icon-import-export:before {
content: "\e61f";
}
.icon-stay-current-landscape:before {
content: "\e60f";
}
@ -111,11 +171,39 @@
content: "\e612";
}
.icon-developer-mode:before {
content: "\e620";
}
.icon-now-widgets:before {
content: "\e621";
}
.icon-format-list-numbered:before {
content: "\e622";
}
.icon-insert-chart:before {
content: "\e623";
}
.icon-cloud-download:before {
content: "\e613";
}
.icon-laptop-chromebook:before {
content: "\e614";
.icon-laptop:before {
content: "\e624";
}
.icon-flip:before {
content: "\e627";
}
.icon-tag-faces:before {
content: "\e625";
}
.icon-publ:before {
content: "\e626";
}