To check that the file you're trying to open actually exists, you can change directories in terminal using . To change to cd: ~/Desktop/sass/css. To see what files are in the directory: cd ~/Desktop/sass/css. ls
If you want information about either of those commands, use the page: man or man cd, for example. man ls
Google for "basic unix command line commands" or similar; that will give you numerous examples of moving around, viewing files, etc in the command line.
On Mac OS X, you can also use to open a finder window: open will open the current directory in finder. (open . will open the open ~/Desktop/sass/css). ~/Desktop/sass/css
Where would you like to go?
Go home: or cdcd ~
cd $OLDPWD
Go to parent of the current directory: cd ..
Go to any directory you want: cd /path/to/directory