Hi,
the path to your CSS is broken, 'cause you defined it as "localhost".
localhost can't be accessed from the web.
You have to use the "real" URL in your config.php
If you prefere to work local via localhost and also give others a view - make the site reachable from the Internet - you can use somthing like this in your config.php
define('WB_PATH', dirname(__FILE__));
define('WB_URL', 'http://'.$_SERVER['SERVER_NAME'].'/wb');
define('ADMIN_PATH', WB_PATH.'/admin');
define('ADMIN_URL', 'http://'.$_SERVER['SERVER_NAME'].'/wb/admin');
Regards Bernd