tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

mq_prefers_reduced_motion_reduce.html (250B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <html>
      4 <title>prefers-reduced-motion: reduce</title>
      5 <style>
      6 div {
      7  width: 100px;
      8  height: 100px;
      9 }
     10 
     11 @media (prefers-reduced-motion: reduce) {
     12  div { background-color: green; }
     13 }
     14 </style>
     15 <div></div>
     16 </html>