Created
July 25, 2008 18:36
-
-
Save tamalw/2490 to your computer and use it in GitHub Desktop.
Messing around at ShoesFest!
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
# The goal is to have all the words on one line, with "shoes" bold, larger, and a different color | |
Shoes.app do | |
background black | |
# Looks okay | |
flow do | |
subtitle "I want new ", | |
strong("shoes", :stroke => chocolate), | |
"!", :stroke => slateblue | |
end | |
# Looking buggy | |
flow do | |
subtitle "I want new ", | |
title("shoes", :stroke => chocolate), | |
"!", :stroke => slateblue | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment