Skip to content

Instantly share code, notes, and snippets.

@andzi
Forked from oumu/Evernote ENML Editor Revamp.css
Last active December 16, 2015 03:59
Show Gist options
  • Save andzi/5373801 to your computer and use it in GitHub Desktop.
Save andzi/5373801 to your computer and use it in GitHub Desktop.
css
div.head, div.foot {
display:none;
}
.page {
width:99%;
}
.body {
background:url(data:image/png;
base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAG0lEQVQIW2OMq7zlw4ADMIIkF7WrbcEmP+gkAarWGgXyq5CNAAAAAElFTkSuQmCC) repeat;
border-top:0;
}
.CodeMirror {
border:0;
-webkit-box-shadow:1px 1px 10px rgba(0,0,0,0.5);
margin-bottom:120px;
}
.CodeMirror-scroll {
height:550px;
}
.bigButton {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#b6d14c), color-stop(100%,#83a01c));
-webkit-box-shadow:0px 1px 0px 0px #d1f25a inset, 0px -1px 0px 0px #99bc27 inset, 0px 2px 2px 0px #d4d4d4;
-webkit-border-radius:20px;
padding:10px 20px;
display:block;
border-width:1px;
border-style:solid;
border-color:#97b134;
font-size:14px;
}
.bigButton:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#bbda4c), color-stop(100%,#83a01d));
}
.bigButton:active {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#83a01d), color-stop(100%,#a7c248));
-webkit-box-shadow:0px 1px 0px 0px #a3c229 inset;
}
.notesearchreplace> div> button {
overflow:hidden;
background:url("data:image/png;
base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAYCAIAAAC0rgCNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADNJREFUeNpi+v//P9OHny+YGBj+M/0HYob/DGAaJA4TA7Ehckh8mDxMDEkeQjOA5AECDACBRzDUJB04pQAAAABJRU5ErkJggg==") -0px -0px repeat-x;
color:#4D4D4D;
cursor:pointer;
display:inline-block;
border:1px solid #B2C0A6;
-webkit-border-radius:3px;
}
.notesearchreplace> div> button:hover {
border-color:#7D9965;
}
select, input, button, textarea {
font-family:"HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
}
// ==UserScript==
// @name Evernote ENML Editor Revamp
// @namespace http://stylebot.me/styles/1063
// @description Evernote ENML Editor Revamp
// @include http://enml-editor.ping13.net/note?n=*
// @author oumu
// ==/UserScript==
var styleEl = document.createElement('style');
styleEl.type = 'text/css';
styleEl.innerHTML = 'div.head, div.foot { display: none;}.page { width: 99%;}.body { background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAG0lEQVQIW2OMq7zlw4ADMIIkF7WrbcEmP+gkAarWGgXyq5CNAAAAAElFTkSuQmCC) repeat; border-top: 0;}.CodeMirror { border: 0; -webkit-box-shadow: 1px 1px 10px rgba(0,0,0,0.5); margin-bottom: 120px;}.CodeMirror-scroll { height: 550px;}.bigButton { background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b6d14c), color-stop(100%,#83a01c)); -webkit-box-shadow: 0px 1px 0px 0px #d1f25a inset, 0px -1px 0px 0px #99bc27 inset, 0px 2px 2px 0px #d4d4d4; -webkit-border-radius: 20px; padding: 10px 20px; display: block; border-width: 1px; border-style: solid; border-color: #97b134; font-size: 14px;}.bigButton:hover { background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bbda4c), color-stop(100%,#83a01d));}.bigButton:active { background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#83a01d), color-stop(100%,#a7c248)); -webkit-box-shadow: 0px 1px 0px 0px #a3c229 inset;}.notesearchreplace> div> button { overflow: hidden; background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAYCAIAAAC0rgCNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADNJREFUeNpi+v//P9OHny+YGBj+M/0HYob/DGAaJA4TA7Ehckh8mDxMDEkeQjOA5AECDACBRzDUJB04pQAAAABJRU5ErkJggg==") -0px -0px repeat-x; color: #4D4D4D; cursor: pointer; display: inline-block; border: 1px solid #B2C0A6; -webkit-border-radius: 3px;}.notesearchreplace> div> button:hover { border-color: #7D9965;}select, input, button, textarea { font-family: "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;}';
document.documentElement.appendChild(styleEl);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment