Reputation: 10818
I have referenced then declared an icon
<i class="material-icons">face</i>
But how can I change the icon size?
On oficial site https://design.google.com/icons/ I can see they using classes like class="md-icon dp48"
but it is not working in my case.
Upvotes: 62
Views: 137261
Reputation: 345
I followed the answer delivered by Claudios and had to do an additional change. I am using MDL and for the icon to be centered in a button it was necessary to change position left property (default is left:50%).
CSS:
.material-icons.md-36 {
font-size: 36px;
position: absolute;
left: 40%;
}
And in HTML:
<i class="material-icons md-36">face</i>
Upvotes: 2
Reputation: 243
The best way to change the size of a Materialize Icon is by adding a modifier to the i
class:
<i class="material-icons small">menu</i>
<i class="material-icons medium">menu</i>
<i class="material-icons large">menu</i>
You can find more on changing the icon size on the Materialize site under icons.
Upvotes: 5
Reputation: 139
There is a size attribute associated with icon tag like check_circle
so using size attribute, we can change the size of the icons.
Upvotes: 1
Reputation: 37
Sometimes setting font size will not reduce the icon size. Coz, the recommended font-size is either 18, 24, 36 or 48px.
Try setting "height" , "width", "line-height" attributes for that particular icon. This might help.
Upvotes: 1
Reputation: 28279
if you are using scss
@mixin md-icon-size($size: 24px) {
font-size: $size;
height: $size;
width: $size;
}
.md-icon-16 {
@include md-icon-size(16px);
}
.md-icon-18 {
@include md-icon-size(18px);
}
.md-icon-24 {
@include md-icon-size(24px);
}
.md-icon-36 {
@include md-icon-size(36px);
}
Upvotes: 8
Reputation: 69
You can use normal css, but must override inline styling with:
font-size: 50px !important;
Upvotes: 6
Reputation: 6656
By reading the material design in github I found these useful stuff that might help you.
/* Rules for sizing the icon. */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }
/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }
From the code above, there you can simply change or override the material css icons.
Sample code:
<i class="material-icons md-18">face</i>
More details here
Upvotes: 100
Reputation: 411
If I'm doing a one-off I usually just add a style= modification to the font-size in the tag. But yes long story short there's no real trick to it other than defining your own size styles to attach in css as a more permanent solution.
<i class="material-icons" style="font-size: 50px">insert_invitation</i>
Upvotes: 31
Reputation: 1003
you can change the font-size property, it will reflect on the icon because it's a "FONT ICON"
Upvotes: 1