mirror of
https://github.com/golang/go
synced 2024-11-05 18:56:10 -07:00
753a094e8a
Change-Id: I35e7cbec56a0617540316f0205c5a92e7532c491 Reviewed-on: https://go-review.googlesource.com/4910 Reviewed-by: Minux Ma <minux@golang.org>
57 lines
873 B
CSS
57 lines
873 B
CSS
/* set page layout */
|
|
@page {
|
|
size: A4 landscape;
|
|
}
|
|
|
|
body {
|
|
display: block !important;
|
|
}
|
|
|
|
.slides {
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.slides > article {
|
|
position: relative;
|
|
|
|
left: 0;
|
|
top: 0;
|
|
|
|
margin: 0 !important;
|
|
page-break-inside: avoid;
|
|
|
|
text-shadow: none; /* disable shadow */
|
|
|
|
display: block !important;
|
|
transform: translate(0) !important;
|
|
-o-transform: translate(0) !important;
|
|
-moz-transform: translate(0) !important;
|
|
-webkit-transform: translate3d(0, 0, 0) !important;
|
|
}
|
|
|
|
div.code {
|
|
background: rgb(240, 240, 240);
|
|
}
|
|
|
|
/* hide click areas */
|
|
.slide-area, #prev-slide-area, #next-slide-area {
|
|
display: none;
|
|
}
|
|
|
|
/* add explicit links */
|
|
a:link:after, a:visited:after {
|
|
content: " (" attr(href) ") ";
|
|
font-size: 50%;
|
|
}
|
|
|
|
/* white background */
|
|
body {
|
|
background: rgb(255,255,255) !important;
|
|
}
|
|
|
|
#help {
|
|
display: none;
|
|
visibility: hidden;
|
|
}
|