GreasyFork Beautify Mod!

Custom Themes, premade themes and more

Από την 03/07/2018. Δείτε την τελευταία έκδοση.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         GreasyFork Beautify Mod!
// @namespace    GreasyFork Beautify Mod!
// @version      
// @description  Custom Themes, premade themes and more
// @author       TigerYT
// @match        *://greatest.deepsurf.us/*
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
// ==/UserScript==

$('body').css({
	'background' : '#16151D'
});

$('input').css({
	'-webkit-appearance' : 'textfield',
	'background-color' : '#17151B',
	'-webkit-rtl-ordering' : 'logical',
	'cursor' : 'text',
	'padding' : '1px',
	'border-width' : '10px',
	'border-style' : 'solid',
	'border-color' : '#17151B',
	'border-image' : 'initial',
	'border-radius' : '7px'
});

$('.script-list, .user-list, .text-content').css({
	'list-style-type' : 'none',
	'box-shadow' : '0 0 5px rgba(29,27,38,0.3)',
	'background-color' : '#1D1B26',
	'border' : '1px solid rgba(29,27,38,0.6)',
	'border-radius' : '5px',
	'box-sizing' : 'border-box',
	'margin' : '14px 0'
});

$('body, select, input').css({
	'font-family' : '"Open Sans", sans-serif',
	'color' : '#888'
});

$('#main-header').css({
	'background-color' : '#0B0A0D',
	'background-image' : 'linear-gradient(#694BA1, #493372)',
	'padding' : '0.25em 0'
});

$('#main-header .subtitle').css({
	'margin' : '-8px 0 0 10px',
	'font-size' : '0.7em',
	'text-shadow' : '-1px -1px 0px #493372, 1px -1px 0px #493372, -1px 1px 0px #493372, 1px 1px 0px #493372'
});

$('a:visited').css({
	'color' : '#694BA1'
});

$('a').css({
	'color' : '#493372'
});

$('figure').css({
	'padding' : '5px',
	'border' : 'none',
	'border-radius' : '5px'
});

$('nav nav').css({
	'position' : 'absolute',
	'right' : '0',
	'background-color' : '#493372',
	'min-width' : '100%',
	'display' : 'none',
	'padding' : '5px 0',
	'z-index' : '10'
});

$(':focus').css({
	'outline' : '-webkit-focus-ring-color auto 5px',
	'outline-color' : 'transparent',
	'outline-style' : 'auto',
	'outline-width' : '5px'
});

$('#site-nav > nav > li > a').css({
	'color' : 'white !important'
});

$('#nav-user-info > span > a').css({
	'color' : 'white !important'
});