38 lines
443 B
SCSS
38 lines
443 B
SCSS
.entypo {
|
|
font-family: 'entypo';
|
|
font-style: normal;
|
|
color: black;
|
|
|
|
&.heart:before {
|
|
content: '\2665';
|
|
}
|
|
|
|
&.heart-empty:before {
|
|
content: '\2661';
|
|
}
|
|
|
|
&.retweet:before {
|
|
content: '\e717';
|
|
}
|
|
|
|
&.comment:before {
|
|
content: '\e718';
|
|
}
|
|
|
|
&.red {
|
|
color: #A40802;
|
|
}
|
|
&.white {
|
|
color: white;
|
|
}
|
|
&.gray {
|
|
color: #aaa;
|
|
}
|
|
&.blue {
|
|
color: #3f8fba;
|
|
}
|
|
|
|
&.large {
|
|
font-size: 25px;
|
|
}
|
|
}
|