Skip to content

Instantly share code, notes, and snippets.

@rudyjahchan
Created August 11, 2012 08:10
Show Gist options
  • Save rudyjahchan/3322395 to your computer and use it in GitHub Desktop.
Save rudyjahchan/3322395 to your computer and use it in GitHub Desktop.
Create Victorian Style Curly braced block
#station-ident {
padding: 10px;
margin: 10px 30px;
text-align: justify;
line-height: 26px;
font-size: 18px;
font-family: palatino, "times new roman", serif;
font-style: italic;
}
#station-ident p {
display: inline;
font-style: italic;
font-size: 1em;
}
#station-ident:before {
content: "{";
margin-left: -10px;
float: left;
}
#station-ident:after {
content: "}";
margin-right: -10px;
float: right;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment