Skip to content

Instantly share code, notes, and snippets.

@seanwalsh
Last active August 29, 2015 14:04
Show Gist options
  • Save seanwalsh/557f806b130430c38bc2 to your computer and use it in GitHub Desktop.
Save seanwalsh/557f806b130430c38bc2 to your computer and use it in GitHub Desktop.
CSS to quickly format a EULA or any legal document. Most basic elements will work but there are a few extra things needed.
body { margin: 15px;}
.bold { font-weight: bold; }
.caps { text-transform: uppercase; }
.center { text-align: center; }
.circle { list-style: circle; }
.smcaps { font-variant: small-caps; }
.unstyled { list-style: none; }
@seanwalsh
Copy link
Author

The reason for a bold class is so you can do this.
<p class="center bold caps">

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