Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. ( function () {
  2.  
  3. var style = document.head.querySelector( `style#inkh-css` ) || document.createElement( `style` );
  4. // use cross multiplication to figure out the proportion of the webcam size h:w
  5. style.setAttribute( `id`, `inkh-css` );
  6. style.innerHTML = `
  7. .icon_labels.toolbarSelfView .placeholderLocal {
  8. height: 50vmin !important;
  9. width: 50vmin !important;
  10. position: fixed;
  11. top: 0;
  12. right: 0;
  13. }
  14. `;
  15.  
  16. document.head.appendChild( style );
  17.  
  18. } )();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement