mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Add print CSS
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
# Packages
|
||||
|
||||
Meteor is all about splitting functionality into modular packages. In addition
|
||||
All of Meteor's functionality is implemented in modular packages. In addition
|
||||
to the core packages documented above, there are many others that you can add to
|
||||
your app to enable useful functionality.
|
||||
|
||||
|
||||
@@ -94,12 +94,12 @@ var sections = [
|
||||
items: [
|
||||
item("Meteor.isClient"),
|
||||
item("Meteor.isServer"),
|
||||
item("meteor.startup")
|
||||
item("Meteor.startup")
|
||||
]
|
||||
}),
|
||||
section("Packages", {
|
||||
id: "packages",
|
||||
subtitle: "There are thousands of Meteor packages available",
|
||||
subtitle: "Choose from thousands of community packages",
|
||||
items: [
|
||||
item("Searching for packages", {id: "searchingforpackages"}),
|
||||
item("accounts-ui", {id: "accountsui"}),
|
||||
|
||||
@@ -576,3 +576,29 @@ pre {
|
||||
font-size: 0.9em;
|
||||
text-decoration: underline !important;
|
||||
}
|
||||
|
||||
@media print {
|
||||
body {
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
code, pre {
|
||||
font-size: 8pt;
|
||||
}
|
||||
|
||||
#nav {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.main-content {
|
||||
position: relative;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.top-bar {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user