Skip to content

Instantly share code, notes, and snippets.

@bkerley
Created January 15, 2013 16:39
Show Gist options
  • Save bkerley/4539969 to your computer and use it in GitHub Desktop.
Save bkerley/4539969 to your computer and use it in GitHub Desktop.
!!! 5
%html
%head
%title rotate
%link(href='http://fonts.googleapis.com/css?family=Electrolize' rel='stylesheet' type='text/css')
%style(type='text/css')
:sass
$rotateDistance: 12.3deg
#content
width: 960px
font-family: Electrolize
div
margin: 50px auto
text-align: center
width: 680px
font-size: 30px
#rotate
-webkit-transform: rotate($rotateDistance)
#rotate3d
-webkit-transform: rotateZ($rotateDistance)
#rotatebig
font-size: 60px
-webkit-transform: rotateZ($rotateDistance) scale(0.5)
%body
#content
#rotate hello rotate
#rotate3d hello rotate3d
#rotatebig hello rotate3d scale
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment