Guest User

Untitled

a guest
Nov 23rd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. "C:Program FilesGoogleChromeApplicationchrome.exe" --allow-file-access-from-files
  2.  
  3. var css = [];
  4. for (var i=0; i<document.styleSheets.length; i++)
  5. {
  6. var sheet = document.styleSheets[i];
  7. var rules = ('cssRules' in sheet)? sheet.cssRules : sheet.rules;
  8. if (rules)
  9. {
  10. css.push('n/* Stylesheet : '+(sheet.href||'[inline styles]')+' */');
  11. for (var j=0; j<rules.length; j++)
  12. {
  13. var rule = rules[j];
  14. if ('cssText' in rule)
  15. css.push(rule.cssText);
  16. else
  17. css.push(rule.selectorText+' {n'+rule.style.cssText+'n}n');
  18. }
  19. }
  20. }
  21. var cssInline = css.join('n')+'n';
  22.  
  23. /* Stylesheet : http://example.com/cache/css/javascript.css */
  24. .javascript .de1, .javascript .de2 { -webkit-user-select: text; padding: 0px 5px; vertical-align: top; color: rgb(0, 0, 0); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204); margin: 0px 0px 0px -7px; position: relative; background: rgb(255, 255, 255); }
  25. .javascript { color: rgb(172, 172, 172); }
  26. .javascript .imp { font-weight: bold; color: red; }
  27.  
  28. /* Stylesheet : http://example.com/i/main_master.css */
  29. html { }
  30. body { color: rgb(24, 24, 24); font-family: 'segoe ui', 'trebuchet MS', 'Lucida Sans Unicode', 'Lucida Sans', sans-serif; font-size: 1em; line-height: 1.5em; margin: 0px; padding: 0px; background: url(http://pastebin.com/i/bg.jpg); }
  31. a { color: rgb(204, 0, 51); text-decoration: none; }
  32. a:hover { color: rgb(153, 153, 153); text-decoration: none; }
  33. .icon24 { height: 24px; vertical-align: middle; width: 24px; margin: 0px 4px 0px 10px; }
  34. #header { border-radius: 0px 0px 6px 6px; color: rgb(255, 255, 255); background-color: rgb(2, 56, 89); }
  35. #super_frame { min-width: 1100px; width: 1200px; margin: 0px auto; }
  36. #monster_frame { -webkit-box-shadow: rgb(204, 204, 204) 0px 0px 10px 5px; box-shadow: rgb(204, 204, 204) 0px 0px 10px 5px; border-radius: 5px; border: 1px solid rgb(204, 204, 204); margin: 0px; background-color: rgb(255, 255, 255); }
  37. #header a { color: rgb(255, 255, 255); }
  38. #menu_2 { height: 290px; }
  39.  
  40. /* Stylesheet : [inline styles] */
  41. .hidden { display: none; }
Add Comment
Please, Sign In to add comment