@media embossed, braille, handheld {
  svg      { visibility: hidden }
  .outline, .outline-only { 
             visibility: visible;
             fill: none;
             stroke: black;
             stroke-width: 5
  }
  text     { visibility: visible }
}


@media screen {

/* Some style for the computer */

  svg {
    /* Default styles to be inherited */
    fill: white;
    stroke: black;
    stroke-width: 0.3
  }

  .outline-only {visibility:hidden}
  #terminal .outline {
    fill: beige
  }
  .computer {
    fill: beige
  }
  .light {
    fill:lightgreen
  }

}
