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
#!/bin/sh | |
SHORTCUT="[Desktop Entry] | |
Name=RubyMine 6.3 | |
Comment=Edit text files | |
Exec=/usr/local/ruby-mine/bin/rubymine.sh | |
Icon=/usr/local/ruby-mine/bin/RMlogo.svg | |
Terminal=false | |
Type=Application | |
Encoding=UTF-8 | |
Categories=Utility;TextEditor;Ruby;Development;" |
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
/* line 5, projects/block-shadow-mixer.css.sass */ | |
#block-shadow-mixer .play-area h1, #block-shadow-mixer .play-area h2, #block-shadow-mixer .play-area h3 { | |
font-family: "ff-cocon-web-pro"; | |
margin-bottom: 20px; } | |
/* line 9, projects/block-shadow-mixer.css.sass */ | |
#block-shadow-mixer .play-area h1 em, #block-shadow-mixer .play-area h2 em, #block-shadow-mixer .play-area h3 em { | |
font-family: "bistro-script-web"; } | |
/* line 11, projects/block-shadow-mixer.css.sass */ | |
#block-shadow-mixer .play-area h1 { | |
color: #ff1d23; |
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
jQuery -> | |
$('#drag-circle .play-area .draggable').draggable | |
containment: "parent" | |
$('#drag-circle .play-area .droppable').droppable | |
hoverClass: "drag-over" | |
drop: (event, ui)-> | |
$(@).addClass "dropped" | |
$(ui.draggable[0]) | |
activate: () -> | |
$(@).removeClass "dropped" |
NewerOlder