web-dev-qa-db-ja.com

Font Awesomeアイコンを「fa-5x」より大きくすることは可能ですか?

私はこのHTMLコードを使用しています:

<div class="col-lg-4">
  <div class="panel">
    <div class="panel-heading">
      <div class="row">
        <div class="col-xs-3">
          <i class="fa fa-cogs fa-5x"></i>
        </div>
        <div class="col-xs-9 text-right">
          <div class="huge">
            <?=db_query("SELECT COUNT(*) FROM orders WHERE customer = '" . $_SESSION['customer'] . "' AND EntryDate BETWEEN '" . date('d-M-y', strtotime('Monday this week')) . "' AND '" . date('d-M-y', strtotime('Friday this week')) . "'");?>
          </div>
            <div>orders this week</div>
        </div>
      </div>
    </div>
    <a href="view/orders">
      <div class="panel-footer">
        <span class="pull-left">View Details</span>
          <span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span>
            <div class="clearfix"></div>
      </div>
    </a>
  </div>
</div>

作成するもの:

enter image description here

アイコンをfa-5xより大きくすることは可能ですか?その下にたくさんの空白があります。

63
user3973427

Font awesomeは単なるフォントなので、CSSのフォントサイズ属性を使用してアイコンのサイズを変更できます。

したがって、次のようにアイコンにクラスを追加するだけです。

.big-icon {
    font-size: 32px;
}
115
David Jones

または、ソースを編集して、独自の増分を作成できます

FontAwesome 5

https://github.com/FortAwesome/Font-Awesome/blob/master/web-fonts-with-css/less/_larger.less

// Icon Sizes
// -------------------------

.larger(@factor) when (@factor > 0) {
  .larger((@factor - 1));

  .@{fa-css-prefix}-@{factor}x {
    font-size: (@factor * 1em);
  }
}

/* makes the font 33% larger relative to the icon container */
.@{fa-css-prefix}-lg {
  font-size: (4em / 3);
  line-height: (3em / 4);
  vertical-align: -.0667em;
}

.@{fa-css-prefix}-xs {
  font-size: .75em;
}

.@{fa-css-prefix}-sm {
  font-size: .875em;
}

// Change the number below to create your own incrementations
// This currently creates classes .fa-1x - .fa-10x
.larger(10);

FontAwesome 4

https://github.com/FortAwesome/Font-Awesome/blob/v4.7.0/less/larger.less

// Icon Sizes
// -------------------------

/* makes the font 33% larger relative to the icon container */
.@{fa-css-prefix}-lg {
    font-size: (4em / 3);
    line-height: (3em / 4);
    vertical-align: -15%;
}

.@{fa-css-prefix}-2x { font-size: 2em; }
.@{fa-css-prefix}-3x { font-size: 3em; }
.@{fa-css-prefix}-4x { font-size: 4em; }
.@{fa-css-prefix}-5x { font-size: 5em; }

// Your custom sizes
.@{fa-css-prefix}-6x { font-size: 6em; }
.@{fa-css-prefix}-7x { font-size: 7em; }
.@{fa-css-prefix}-8x { font-size: 8em; }
25
Luke

デフォルトのfont-awesomeサイズを再定義/上書きし、独自のサイズを追加することもできます

.fa-1x{
    font-size:0.8em;
}
.fa-2x{
    font-size:1em;
}
.fa-3x{
    font-size:1.2em;
}
.fa-4x{
    font-size:1.4em;
}
.fa-5x{
    font-size:1.6em;
}
.fa-mycustomx{
    font-size:3.2em;
}
11
Chtiwi Malek
  1. このような素晴らしいフォントクラスを追加するだけです:

    class="fa fa-plus-circle fa-3x"
    

    (5x、7x、9xごとにサイズを増やすことができます。)

  2. カスタムCSSを追加することもできます。

2
linto johny

簡単— Font Awesome 5のデフォルトのfa-[size]xクラスを使用するだけです。親要素のfont-sizeのアイコンを10倍まで拡大できます アイコンのサイズ設定に関するドキュメントを参照してください

例:

<span class="fas fa-info-circle fa-6x"></span>
<span class="fas fa-info-circle fa-7x"></span>
<span class="fas fa-info-circle fa-8x"></span>
<span class="fas fa-info-circle fa-9x"></span>
<span class="fas fa-info-circle fa-10x"></span>
0
clickbait

素晴らしいフォントはSVGアイコンを使用します。したがって、必要に応じてサイズを変更できます。

そのためにCSSクラスを使用するだけです。

    .large-icon{
       font-size:10em;
       //or
      font-size:200%;
      //or
      font-size:50px;
    }
0
S.S.Niranga