Created
September 26, 2012 16:13
-
-
Save chrislerum/3788939 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Teacup::Stylesheet.new :base do | |
style UILabel, | |
backgroundColor: :firebrick.uicolor(0.60), | |
top: 100, | |
left: 100, | |
width: 200, | |
height: 100, | |
textColor: :white.uicolor, | |
textAlignment: :center.uialignment, | |
font: :bold.uifont(30) | |
end | |
Teacup::Stylesheet.new :bunny do | |
import :base | |
style UILabel, | |
text: 'Bunny!' | |
end | |
Teacup::Stylesheet.new :bunny_categories do | |
import :base | |
style UILabel, | |
text: 'Bunny Categories!', | |
width: 400 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment