Codeship-Stupid-Header-Remove

try to take over the world!

// ==UserScript==
// @name         Codeship-Stupid-Header-Remove
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://blog.codeship.com/*
// @grant        none
// @require      http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    $('main').css('padding-top', 100);
    $('.flexMenu').hide();
    $('.titleImg').css("top", -310);
})();