jsbasic/styles.css

37 lines
927 B
CSS
Raw Permalink Normal View History

2018-08-16 04:55:00 +00:00
@import url(https://fonts.googleapis.com/css?family=Coustard);
2013-08-16 04:30:51 +00:00
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; }
2013-08-16 08:37:54 +00:00
/* "Paper" (for copying output) */
#paper {
margin: 0;
position: fixed;
z-index: 100;
left: 0;
right: 0;
bottom: 0;
height: 0;
2013-08-16 08:37:54 +00:00
overflow-x: hidden;
overflow-y: scroll;
font-family: Courier, Monospace;
background-color: #ffffff;
2016-02-06 04:42:40 +00:00
background-image: url('res/lpt.jpg');
2013-08-16 08:37:54 +00:00
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;
2013-08-16 08:37:54 +00:00
}
body.printout #paper, #paper-spacer { height: 200px; }
body:not(.printout) #hide_paper { display: none; }
2013-08-16 08:37:54 +00:00
body.printout #show_paper { display: none; }