mirror of https://github.com/writeas/writefreely
A focused writing and publishing space.
https://write.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
494 B
19 lines
494 B
/* Rules for sizing the icon. */
|
|
.material-icons {
|
|
&.md-18 { font-size: 18px; }
|
|
&.md-24 { font-size: 24px; }
|
|
&.md-36 { font-size: 36px; }
|
|
&.md-48 { font-size: 48px; }
|
|
|
|
/* Rules for using icons as black on a light background. */
|
|
&.md-dark {
|
|
color: rgba(0, 0, 0, 0.54);
|
|
&.md-inactive { color: rgba(0, 0, 0, 0.26); }
|
|
}
|
|
|
|
/* Rules for using icons as white on a dark background. */
|
|
&.md-light {
|
|
color: rgba(255, 255, 255, 1);
|
|
&.md-inactive { color: rgba(255, 255, 255, 0.3); }
|
|
}
|
|
}
|
|
|