Skip to content

Instantly share code, notes, and snippets.

@funkatron
Created December 17, 2010 14:18
Show Gist options
  • Save funkatron/744997 to your computer and use it in GitHub Desktop.
Save funkatron/744997 to your computer and use it in GitHub Desktop.
Some example CSS Hacks you can use in Spaz Desktop
/* User CSS Overrides */
/* override the status text size */
div.timeline-entry .status-text {
font-size:120%;
}
/* change the font everywhere */
body, div.timeline-entry .status-text {
font-family:Palatino, Georgia, Serif;
}
/* increase the size of the entrybox font */
#entrybox {
font-size:110%;
}
/* always hide messages from a particular user */
div.timeline-entry[data-user-screen_name="scobleizer"] {
display:none;
}
/* hide the public timeline tab */
#tab-public {
display:none;
}
/* make replies REALLY stand out */
div.timeline-entry.reply, div.timeline-entry.reply .status-source {
background:#DE531C;
color:white !important;
}
div.timeline-entry.reply a:link, div.timeline-entry.reply .clickable {
color:yellow;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment