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
.grow { transition: all .2s ease-in-out; } | |
.grow:hover { transform: scale(1.1); } | |
thx to CSS Tricks! https://css-tricks.com/snippets/css/scale-on-hover-with-webkit-transition/ |
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
$lightgrey : #819090; | |
$gray : #708284; | |
$mediumgrey : #536870; | |
$darkgrey : #475B62; | |
$darkblue : #0A2933; | |
$darkerblue : #042029; | |
$paleryellow : #FCF4DC; | |
$paleyellow : #EAE3CB; | |
$yellow : #A57706; | |
$orange : #BD3613; |
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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
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
puts "Hello, there. I would like to find out who you are. What is your first name? " | |
first = gets.chomp | |
puts "May I ask also what is your middle name? " | |
middle = gets.chomp | |
puts "I am totally going out there, finish it up, please.... What is your last name?" | |
last = gets.chomp | |
puts 'Pleased to meet you, ' + first + ' ' + middle + ' ' + last + '.' | |
puts '' | |
print 'I am a cool chickster named Ruby. Are you ready to go on a wild ride with me? You\'re life will never be the same.' |
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
puts 'Would you please enter the number you find most special?' | |
number = gets.chomp | |
puts 'So, you\'re favorite number is ' + number.to_s + ' is a wonderful number.' | |
betternumber = number.to_i + 1 | |
puts 'But, ' + betternumber.to_s + ' is way better and more exciting.' |