Greasy Fork Code Container Spacing

Adds a small margin to the bottom of the code container in Greasy Fork

Mint 2015.12.19.. Lásd a legutóbbi verzió

// ==UserScript==
// @name        Greasy Fork Code Container Spacing
// @namespace   chriskim06
// @description Adds a small margin to the bottom of the code container in Greasy Fork
// @include     https://www.greasyfork.org/en/scripts/*/code
// @require     http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @version     1
// @grant       none
// @locale      en
// ==/UserScript==

this.$ = this.jQuery = jQuery.noConflict(true);

$(function() {
  if ($('#code-container').length) {
    $('#code-container').css('margin-bottom', '25px');
  }
});