mirror of
https://github.com/inexorabletash/jsbasic.git
synced 2024-10-31 21:07:33 +00:00
37 lines
927 B
CSS
37 lines
927 B
CSS
@import url(https://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 {
|
|
margin: 0;
|
|
position: fixed;
|
|
z-index: 100;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: 0;
|
|
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;
|
|
transition: height 0.5s ease;
|
|
}
|
|
|
|
body.printout #paper, #paper-spacer { height: 200px; }
|
|
|
|
body:not(.printout) #hide_paper { display: none; }
|
|
body.printout #show_paper { display: none; }
|