Skip to content

Commit

Permalink
Modify tutorial space, color
Browse files Browse the repository at this point in the history
  • Loading branch information
satococoa committed Feb 9, 2013
1 parent 0fd0508 commit 9a5df50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/tutorial_view.rb
Expand Up @@ -4,7 +4,7 @@ def initWithFrame(rect)
self.styleId = 'tutorial' self.styleId = 'tutorial'
image = UIImage.imageNamed('tutorial.png') image = UIImage.imageNamed('tutorial.png')
image_view = UIImageView.alloc.initWithImage(image).tap do |iv| image_view = UIImageView.alloc.initWithImage(image).tap do |iv|
iv.frame = [[5, 5], [self.bounds.size.width - 10, self.bounds.size.height - 10]] iv.frame = [[10, 10], [self.bounds.size.width - 20, self.bounds.size.height - 20]]
iv.contentMode = UIViewContentModeScaleAspectFit iv.contentMode = UIViewContentModeScaleAspectFit
iv.layer.shadowColor = UIColor.blackColor.CGColor iv.layer.shadowColor = UIColor.blackColor.CGColor
iv.layer.shadowRadius = 3 iv.layer.shadowRadius = 3
Expand Down
2 changes: 1 addition & 1 deletion resources/default.css
Expand Up @@ -39,5 +39,5 @@ nav-buttons, bar-button-item {
} }


#tutorial { #tutorial {
background-color: rgba(255, 255, 255, 0.1); background-color: rgba(255, 255, 255, 1);
} }

0 comments on commit 9a5df50

Please sign in to comment.