jsbasic/styles.css

38 lines
969 B
CSS

@import url(http://fonts.googleapis.com/css?family=Coustard);
body { font-family: "Coustard"; }
a { color: #803010; text-decoration: none; }
a:hover { text-decoration: underline; }
body { background-color: #EEEACD; color: black; }
h1, h2, h3, p, ul { margin-bottom: 0; margin-top: 0; }
/* "Paper" (for copying output) */
#paper {
display: none;
margin: 0;
position: fixed;
z-index: 100;
left: 0;
right: 0;
bottom: 0;
top: 560px;
overflow-x: hidden;
overflow-y: scroll;
font-family: Courier, Monospace;
background-color: #ffffff;
background-image: url('res/lpt.jpg');
background-repeat: repeat-y;
background-attachment: local;
color: #000000;
padding-left: 50px;
white-space: pre;
box-shadow: inset 0 5px 10px black;
}
body.printout #paper { display: block; }
#show_paper { display: inline-block; }
#hide_paper { display: none; }
body.printout #show_paper { display: none; }
body.printout #hide_paper { display: inline-block; }