OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE HTML> |
| 2 <style> |
| 3 /* Let's get this party started */ |
| 4 ::-webkit-scrollbar { |
| 5 width: 150px; |
| 6 height: 150px; |
| 7 } |
| 8 |
| 9 /* Track */ |
| 10 ::-webkit-scrollbar-track { |
| 11 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); |
| 12 -webkit-border-radius: 10px; |
| 13 border-radius: 10px; |
| 14 } |
| 15 |
| 16 /* Handle */ |
| 17 ::-webkit-scrollbar-thumb { |
| 18 -webkit-border-radius: 1px; |
| 19 background: rgba(255,0,0,0.4); |
| 20 -webkit-box-shadow: inset 0 0 1px rgba(255,250,0,0.5); |
| 21 } |
| 22 body { |
| 23 width: 1000px; |
| 24 height: 1000px; |
| 25 } |
| 26 |
| 27 div{ |
| 28 width: 1500px; |
| 29 height: 1500px; |
| 30 } |
| 31 </style> |
| 32 <body> |
| 33 <div></div> |
| 34 </body> |
OLD | NEW |