You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
443 B
CSS
37 lines
443 B
CSS
11 years ago
|
.container {
|
||
|
-moz-column-count: 2;
|
||
|
-webkit-column-count: 2;
|
||
|
column-count: 2;
|
||
|
|
||
|
font-size: 0.8em;
|
||
|
}
|
||
|
|
||
|
.header {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
font-size: 1.3em;
|
||
|
margin: 0;
|
||
|
}
|
||
|
h3 {
|
||
|
font-size: 1.2em;
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
.noprint {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
padding: -2em 0 0 0;
|
||
|
}
|
||
|
|
||
|
/* Disable Bootstrap's link display. */
|
||
|
@media print {
|
||
|
a:link:after,
|
||
|
a:visited:after {
|
||
|
content: "" !important;
|
||
|
}
|
||
|
}
|