Created
August 15, 2013 00:45
-
-
Save ryanabel03/6237268 to your computer and use it in GitHub Desktop.
This file contains 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 :login_screen do | |
style :scroll_view, | |
width: '100%', | |
height: '100%', | |
autoresizingMask: UIAutoResizingFlexibleWidth | UIAutoResizingFlexibleHeight | |
style :table_view, extends: :flexible_margins | |
scrollEnabled: false, | |
separatorStyle: UITableViewSeparatorStyleSingleLine, | |
center_x: '50%', | |
center_y: '50%', | |
width: '60%', | |
height: 200 | |
style :flexible_margins, | |
autoresizingMask: UIAutoResizingFlexibleLeftMargin | | |
UIAutoResizingFlexibleRightMargin | | |
UIAutoResizingFlexibleTopMargin | | |
UIAutoResizingFlexibleBottomMargin | | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment