Sha256: c0f5baa763c451212aaeaa6d5a3ebea28235536163401f2959fcf4c755dfdb55
Contents?: true
Size: 1.17 KB
Versions: 2
Compression:
Stored size: 1.17 KB
Contents
@mixin woa-radius($rad) { -moz-border-radius: $rad; border-radius: $rad; -webkit-border-radius: $rad; } @mixin woa-shadow($hor,$ver,$blur,$color) { -moz-box-shadow: $hor $ver $blur $color; -webkit-box-shadow: $hor $ver $blur $color; box-shadow: $hor $ver $blur $color; } body#woa-body { background-color : #ccc; margin : 0 auto; width : 800px; font-family: "Lucida Grande", "Bitstream Vera Sans", "Verdana"; div#woa-container { width : 100%; margin-top : 20px; padding : 10px; background-color : #fff; font-size : 11px; @include woa-radius(10px); @include woa-shadow(3px,3px,6px,#333); a, a:visited { color : #0000ff; } } table.woa-data { width : 100%; tr:first-child { background-color : #999; font-weight : bold; } tr.woa-even { background-color : #ccc; } tr.woa-odd { background-color : #eee; } td { padding : 5px; } td.centered { text-align : center; } td.action { text-align : center; width : 150px; } } form.formtastic fieldset.buttons { padding-left : 0px; li { width : 100%; text-align : center; } } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wizard_of_awes-0.0.2 | app/assets/stylesheets/wizard_of_awes/base.css.scss |
wizard_of_awes-0.0.1 | app/assets/stylesheets/wizard_of_awes/base.css.scss |