* Move lock icon to the timestamp * Add spacing around the interation icons * Increased size of the interaction icons * Pulled root post author next to reshare author
38 lines
444 B
SCSS
38 lines
444 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: 2.5em;
|
|
}
|
|
}
|