Andi,
I'll get you figured this out, but if you want black instead of red, of course you just say:
a {
color: black;
}
If you want a different color when the mouse hovers, you can say (e.g., using yellow):
a:hover {
color:yellow;
}
If you want different styling on different devices, then that's more complicated. For that, you need to change app.js to include a reference to dojo's uacss (user agent css) module, which is described partially at
http://dojotoolkit.org/reference-guide/1.8/dojo/uacss.html. For example:
app.js:
--------
require(["dojo/ready",
"dojox/mobile/uacss"], function(ready, uacss){
ready(function(){
// logic that requires that Dojo is fully initialized should go here
});
});
Then in app.css:
--------------------
/* for most devices */
a {
color: red;
}
/* for android */
.dj_android a {
color:purple;
}
I haven't actually tested this - just looked at the docs.
Jon Ferraiolo
Maqetta team