Skip to content

Instantly share code, notes, and snippets.

@christiannaths
Last active August 29, 2015 14:14
Show Gist options
  • Save christiannaths/d6ccdb0fd19b07930216 to your computer and use it in GitHub Desktop.
Save christiannaths/d6ccdb0fd19b07930216 to your computer and use it in GitHub Desktop.
Moodle Custom Styles
.assignment {
font-family: Georgia;
font-size: 24px;
}
var request = $.ajax( "https://gist.githubusercontent.com/christiannaths/d6ccdb0fd19b07930216/raw/3407eaa359c0c60b1bc23c6d668f888dd2bf0675/moodle-custom-styles.css" );
request.done(function() {
alert( "success" );
});
//request.fail(function() {
// alert( "error" );
//});
//request.always(function() {
// alert( "complete" );
//});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment