Skip to content

Instantly share code, notes, and snippets.

@ayust
Created April 11, 2012 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ayust/2360906 to your computer and use it in GitHub Desktop.
Save ayust/2360906 to your computer and use it in GitHub Desktop.
Re-center Stream in New G+ Theme
/*
Add this theme in Stylish or the like.
Set it for 'Pages on the domain plus.google.com'
*/
#contentPane > div {
text-align: center !important;
}
#contentPane > div > div > div {
text-align: left !important;
}
/* Alternatively, Mozilla format:
@-moz-document domain("plus.google.com") {
#contentPane > div {
text-align: center !important;
}
#contentPane > div > div > div {
text-align: left !important;
}
}
*/
@ayust
Copy link
Author

ayust commented Apr 11, 2012

Also if you want darker comment text, you can add this:

.Si {
    color: #444 !important;
}

(For fully black text, use #000 instead of #444.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment