ITNano / Make F-spexet Great Again

// ==UserScript==
// @name        Make F-spexet Great Again
// @namespace   matzlarsson.se
// @description Makes the UI of f-spexet.se look better.
// @include     http://f-spexet.se/*
// @version     1
// @grant       none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==

$('.shadow').each(function(index, item){
  $(this).removeClass('shadow');
});

$('.navbar-nav li.active a').each(function(index, item){
  $(this).css('background-color', 'rgba(255, 255, 255, 0.2)').css('color', 'white');
});