// ==UserScript==
// @name           twitter
// @namespace      twitter
// @description    twitter moble
// @include        http://m.twitter.com/*
// ==/UserScript==

const READER_STYLES = [
   "ul li {padding: 10px 0 20px 0;}",
   "body {font-size: 150%;}",
   ""
   ].join("\n");

function init() {
    GM_addStyle(READER_STYLES);
}
init();

