Commit d97de7ef authored by Raniere Silva's avatar Raniere Silva
Browse files

Add CSS for printing

The CSS was add at our main CSS and remove from printing:

- Logo at header
- GitHub ribbon
- Footnote

Close #561.
parent f3fe5aca
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -303,3 +303,18 @@ table.bootcamps td.date {
ul.checklist {
  list-style-image: url('/img/checkbox.png');
}

/* Printing */
@media print {
  #github-ribbon {
    display: none;
  }

  .banner {
    display: none;
  }

  .footer {
    display: none;
  }
}