aboutsummaryrefslogtreecommitdiffstats
path: root/library/font_awesome/src/_includes/examples/basic.html
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2018-02-26 18:19:08 -0500
committerAndrew Manning <tamanning@zoho.com>2018-02-26 19:48:15 -0500
commit1035c453ea6468de13db8eb04fbb55d38347ff2a (patch)
tree6334368706467665fa7a5f5d75efd1dce886620e /library/font_awesome/src/_includes/examples/basic.html
parent45e0fc6802b360710becf7ddaf6aed6a9de1d876 (diff)
parentfe7fba4789fac2024c4e8e711e2f8a2492c683bd (diff)
downloadvolse-hubzilla-1035c453ea6468de13db8eb04fbb55d38347ff2a.tar.gz
volse-hubzilla-1035c453ea6468de13db8eb04fbb55d38347ff2a.tar.bz2
volse-hubzilla-1035c453ea6468de13db8eb04fbb55d38347ff2a.zip
Merge branch 'dev' into oauth2
Diffstat (limited to 'library/font_awesome/src/_includes/examples/basic.html')
-rw-r--r--library/font_awesome/src/_includes/examples/basic.html39
1 files changed, 0 insertions, 39 deletions
diff --git a/library/font_awesome/src/_includes/examples/basic.html b/library/font_awesome/src/_includes/examples/basic.html
deleted file mode 100644
index c00fb4787..000000000
--- a/library/font_awesome/src/_includes/examples/basic.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<section id="basic">
- <h2 class="page-header">
- Basic Icons
- <div class="pull-right text-default margin-top padding-top-sm hidden-xs">
- <a href="https://github.com/FortAwesome/Font-Awesome/blob/{{ site.fontawesome.doc_blob }}/less/core.less" class="text-muted padding-right">View LESS</a>
- <a href="https://github.com/FortAwesome/Font-Awesome/blob/{{ site.fontawesome.doc_blob }}/scss/_core.scss" class="text-muted">View SASS</a>
- </div>
- </h2>
-
- <div class="row">
- <div class="col-md-3 col-sm-4">
- <p>
- <i class="fa fa-camera-retro"></i>
- <span class="sr-only">Example: basic icon</span>
- fa-camera-retro
- </p>
- </div>
- <div class="col-md-9 col-sm-8">
- <p>
- You can place Font Awesome icons just about anywhere using the CSS Prefix <code>fa</code> and the icon's
- name. Font Awesome is designed to be used with inline elements (we like the <code>&lt;i&gt;</code> tag for
- brevity, but using a <code>&lt;span&gt;</code> is more semantically correct).
- </p>
-{% highlight html %}
-<i class="fa fa-camera-retro"></i> fa-camera-retro
-{% endhighlight %}
- <div class="alert alert-success">
- <ul class="fa-ul">
- <li>
- <i class="fa fa-info-circle fa-lg fa-li" aria-hidden="true"></i>
- <strong class="sr-only">Example: basic icon</strong>
- If you change the font-size of the icon's container, the icon gets bigger. Same things goes for color,
- drop shadow, and anything else that gets inherited using CSS.
- </li>
- </ul>
- </div>
- </div>
- </div>
-</section>