Advertisement
ewa_tabor

print css

Nov 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.05 KB | None | 0 0
  1. @media print {
  2.  
  3. .SpisTresci {
  4. display:none;
  5. }
  6. p {
  7.     font-family: "Times New Roman", Times, serif;
  8.     text-indent: 1.5em;
  9. }
  10. p:first-letter{
  11.     color:black;
  12. }
  13. h1 {
  14.     font-family: "URW Chancery L", cursive;
  15.     color: black;
  16.     letter-spacing: 3px;
  17. }
  18. h2 {
  19.     color: black;
  20. }
  21. th {
  22.     text-transform: uppercase;
  23.     background-color: white;
  24.     color: black;
  25. }
  26. tr {
  27.     background-color:DarkGray ;
  28.     color:white;
  29. }
  30. tr td:nth-child(2) {
  31.     background-color: LightGray ;
  32.     color:black;
  33. }
  34. table{
  35.     border-width: 2px;
  36.     border-style: solid;
  37.     border-color: black;
  38. }
  39. ol li {
  40.     list-style-type:decimal;
  41. }
  42. ol li li {
  43.     list-style-type:upper-roman;
  44. }
  45. ol li li li {
  46.     list-style-type:lower-greek;
  47. }
  48. img.left {
  49.     filter: grayscale(100%);
  50.     width:30%;
  51.     height: auto;
  52.     float:left;
  53. }
  54. img.right {
  55.     filter: grayscale(100%);
  56.     width:30%;
  57.     height: auto;
  58.     float:right;
  59. }
  60. #Zawartosc {
  61.     position:static;
  62.     border: none;
  63. }
  64. #walidatorh{
  65.     display:none;
  66. }
  67. #walidatorc{
  68.     display: none;
  69. }
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement