Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" class="elementsLoading">
  3. <head>
  4. <title>Options</title>
  5. <style type="text/css">
  6. /*#region Fonts*/
  7. @font-face {
  8. font-family: 'Roboto';
  9. font-style: normal;
  10. font-weight: 400;
  11. src: url(../fonts/Roboto-Regular.ttf);
  12. }
  13.  
  14. @font-face {
  15. font-family: 'Roboto';
  16. font-style: normal;
  17. font-weight: 500;
  18. src: url(../fonts/Roboto-Medium.ttf);
  19. }
  20.  
  21. @font-face {
  22. font-family: 'Roboto';
  23. font-style: normal;
  24. font-weight: 700;
  25. src: url(../fonts/Roboto-Bold.ttf);
  26. }
  27.  
  28. @font-face {
  29. font-family: 'Inconsolata';
  30. font-style: normal;
  31. font-weight: 400;
  32. src: url(../fonts/Inconsolata-Regular.ttf);
  33. }
  34.  
  35. @font-face {
  36. font-family: 'Inconsolata';
  37. font-style: normal;
  38. font-weight: 700;
  39. src: url(../fonts/Inconsolata-Bold.ttf);
  40. }
  41.  
  42. body {
  43. font-size: 75%;
  44. font-family: 'Roboto', "segoe UI", tahoma, sans serif;
  45. }
  46. /*#endregion*/
  47.  
  48. /*#region Splash screen*/
  49. #splashScreen {
  50. top: 0;
  51. bottom: 0;
  52. right: 0;
  53. left: 0;
  54. background-color: #FF5722;
  55. position: fixed;
  56. z-index: 999999999999999;
  57. color: white;
  58. opacity: 0;
  59. transition: opacity 500ms ease-in-out;
  60. pointer-events: none;
  61. overflow: hidden;
  62. }
  63.  
  64. #splashScreenVerticalCenterer, #splashScreenHorizontalCenterer {
  65. display: flex;
  66. justify-content: center;
  67. height: 100vh;
  68. }
  69.  
  70. #splashScreenVerticalCenterer {
  71. flex-direction: column;
  72. }
  73.  
  74. #splashScreenHorizontalCenterer {
  75. flex-direction: row;
  76. }
  77.  
  78. #splashScreenTitle {
  79. font-size: calc(100vw / 20);
  80. }
  81.  
  82. #splashScreenLoaderCenterer {
  83. display: flex;
  84. flex-direction: row;
  85. justify-content: center;
  86. }
  87.  
  88. .elementsLoading #splashScreen {
  89. opacity: 1;
  90. pointer-events: initial;
  91. }
  92.  
  93. #splashScreenProgressBarCont {
  94. width: 50vw;
  95. height: 4px;
  96. background-color: rgb(224, 224, 224);
  97. margin-top: 20px;
  98. position: relative;
  99. }
  100.  
  101. #splashScreenProgressBarLoader {
  102. will-change: transform;
  103. -webkit-transform-origin: left center;
  104. transform-origin: left center;
  105. position: absolute;
  106. transform: scaleX(0);
  107. background-color: rgb(38, 153, 244);
  108. width: 50vw;
  109. height: 4px;
  110. }
  111. /*#endregion*/
  112. </style>
  113. <link async rel="stylesheet" href="../css/codemirror.css" />
  114. <script src="../bower_components/webcomponentsjs/webcomponents.min.js"></script>
  115. <link rel="import" href="../bower_components/polymer/polymer.html" />
  116. <script src="../bower_components/iron-meta/iron-meta.js"></script>
  117. <link async rel="import" href="../elements/crm-app/crm-app.html" />
  118. </head>
  119. <body style="margin: 0;">
  120. <div id="splashScreen">
  121. <div id="splashScreenHorizontalCenterer">
  122. <div id="splashScreenVerticalCenterer">
  123. <div id="splashScreenTitle">
  124. Custom Right-Click Menu
  125. </div>
  126. <div id="splashScreenLoaderCenterer">
  127. <div id="splashScreenProgressBarCont">
  128. <div id="splashScreenProgressBarLoader"></div>
  129. </div>
  130. </div>
  131. </div>
  132. </div>
  133. </div>
  134. <crm-app class="elementLoading"></crm-app>
  135. <!-- build:js ../js/libraries/codemirror/codeMirrorFile.min.js -->
  136. <script defer src="../js/libraries/codemirror/codemirror.js"></script>
  137. <script defer src="../js/libraries/diff_match_patch.js"></script>
  138. <script defer src="../js/libraries/codemirror/codeMirrorAddons.js" async></script>
  139. <script defer src="../js/userscriptMetadataCodemirror.js" async></script>
  140. <script defer src="../js/libraries/codemirror/codemirrorJs.js" async></script>
  141. <script defer src="../js/crmAPIDefs.js" async></script>
  142. <!-- /build -->
  143. </body>
  144. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement