Advertisement
atorresbr

ICECoder - icecoder.css

May 7th, 2021
1,075
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 13.79 KB | None | 0 0
  1. body {overflow: hidden;
  2.     -webkit-user-select: none;
  3.     -moz-user-select: none;
  4.     -ms-user-select: none;
  5.     user-select: none;
  6.     background-color: #1d1d1b;
  7. }
  8.  
  9. h1 {font-size: 36px; font-weight: normal; color: #888; margin-bottom: 20px}
  10. h2 {font-size: 18px; font-weight: normal; color: #fff}
  11.  
  12. .icon-tabler {width: 24px; height: 24px; stroke-width: 1.25}
  13. .blackMask {position: fixed; display: table; width: 100%; height: 100%; top: 0; left: 0; visibility: hidden; background-color: rgba(0,0,0,0.8); text-align: center; z-index: 100}
  14. .blackMask .popupVCenter {#position: absolute; display: table-cell; #top: 50%; vertical-align: middle; text-align: center}
  15. .popupVCenter .popup {#position: relative; #top: -50%; text-align: center; color: #fff; font-size: 10px}
  16. .floatingContainer {position: absolute; top: 0; left: 0; width: 55px; height: 55px; visibility: hidden; border: solid 1px #444; image-rendering: pixelated}
  17. .floatingContainer:before {position: absolute; display: inline-block; width: 3px; height: 3px; left: 25px; top: 25px; content: ''; border: solid 1px #b00}
  18.  
  19. .spinner {width: 50px; height: 50px; margin: 20px auto; background: #fff;
  20.     -webkit-animation: rotateplane 1.2s infinite ease-in-out;
  21.     animation: rotateplane 1.2s infinite ease-in-out;
  22. }
  23.  
  24. @-webkit-keyframes rotateplane {
  25.     0% {-webkit-transform: perspective(120px)}
  26.     50% {-webkit-transform: perspective(120px) rotateY(180deg)}
  27.     100% {-webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg)}
  28. }
  29.  
  30. @keyframes rotateplane {
  31.     0% {transform: perspective(120px) rotateX(0deg) rotateY(0deg)}
  32.     50% {transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)}
  33.     100% {transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}
  34. }
  35.  
  36. .infoBlackMask {position: fixed; display: none; width: 0; height: 0; top: 0; left: 0; border: solid 10000px rgba(0,0,0,0); transition: all 0.5s ease; z-index: 100}
  37. .infoMessageContainer {position: fixed; display: none; width: 100%; height: 100%; top: 0; left: 0; text-align: center; opacity: 0; transition: all 0.5s ease; z-index: 100}
  38. .infoMessage {position: relative; margin: -80px auto 0 auto; height: 160px; width: 500px; font-size: 14px; line-height: 21px; color: #fff}
  39. .infoMessage .title {margin-bottom: 18px; font-size: 18px; font-weight: bold; color: #f80}
  40. .infoMessage .button {position: absolute; bottom: 0; left: 190px; width: 100px; padding: 5px 10px; font-size: 18px; background-color: rgba(0,198,255,0.7); cursor: pointer}
  41.  
  42. .plugins {position: absolute; display: inline-block; width: 3px; height: 100%; top: 0; background: transparent; overflow: hidden; z-index: 3;
  43.     transition: all 0.07s ease-out;
  44. }
  45.  
  46. .header {position: absolute; display: inline-block; top: 0; left: 0; width: 100%; height: 15px; background-color: #fff; text-align: right; z-index: 1}
  47.  
  48. .files {position: absolute; display: inline-block; top: 0; left: 0; height: 100%; width: 250px; background-color: #444; overflow: hidden; z-index: 2;
  49.     transition: background 0.2s ease-out;
  50. }
  51. .files .fileNav {display: block; height: 36px}
  52. .files .fileNav ul {list-style-type: none; line-height: 20px; padding-left: 15px}
  53. .files .fileNav li {display: inline-block; padding: 18px 15px 0 0}
  54. .files .fileNav a {color: #666; text-decoration: none}
  55. .files .fileNav a:hover {color: #fff; cursor: pointer}
  56.  
  57. .files .options {
  58.     transition: opacity 0.15s ease-in-out;
  59. }
  60. .files .options .optionsList {position: absolute; display: inline-block; visibility: hidden; background: #383838; height: 100%; padding: 23px 15px 15px 15px}
  61. .files .options .optionsList ul {list-style-type: none; line-height: 24px}
  62.  
  63. /* Old Style // .files .options .optionsList a {color: #666; text-decoration: none} */
  64. /* New style // to improve the user experience when clicking on the left menu options */
  65. .files .options .optionsList a {color: #cacaca; text-decoration: none;font-size: 11px;font-weight: bold;border: 1px solid #666;border-radius: 30px;padding: 0px 10px;width: 50%;position: relative;display: inline-block;margin: 5px auto;animation: shadow-pulse 1s infinite;cursor: pointer;box-shadow: 0 0 0 rgba(204,169,44, 0.4);}
  66.  
  67. .files .options .optionsList a:hover {color: #fff; cursor: pointer}
  68. .files input:focus, .password:focus {outline: none; background: rgba(0,198,255,0.5); color: #fff}
  69. .files .button {position: absolute; border: 0; background: #444; color: #eee; height: 20px; margin-top: 16px; margin-left: 5px; font-size: 11px; cursor: pointer}
  70. .files .button:hover {background-color: #1d1d1b; color: #eee}
  71. .files .frame {display: inline-block; width: 250px; margin-top: 24px}
  72.  
  73. .files .tools {position: absolute; display: inline-block; width: 250px; height: 30px; left: 0; bottom: 0}
  74. .files .tools div {display: inline-block; margin: 8px 0 8px 15px; color: #666; cursor: pointer}
  75. .files .tools div:hover {color: #fff; cursor: pointer}
  76. .files .tools .icon-tabler {width: 22px; height: 22px; margin-left: -3px; margin-top: -3px; stroke-width: 1.25; pointer-events: none}
  77. .files .tools .highlight {color: #eee; padding: 1px 3px; margin: 7px -3px 7px 12px; border-radius: 3px}
  78. .files .tools .error {background: #800}
  79. .files .tools .info {background: #080}
  80.  
  81. .editor {position: absolute; display: inline-block; top: 0; left: 15px; width: 2400px}
  82. .editor .tabsBar {display: inline-block; height: 27px; width: 2400px; margin-top: 15px; padding-left: 53px; background: #fff}
  83. .tabsBar .tab {position: absolute; display: none; height: 15px; padding: 6px 8px 6px 9px; border-right: 1px solid #ddd; color: #fff; white-space: nowrap; overflow: hidden; cursor: pointer; z-index: 1;
  84.     transition: width, left 0.15s ease-in-out;
  85. }
  86. .tabsBar .tab:before {
  87.     position: absolute; width: 16px; height: 16px; content: ""; margin-left: -2px; background:url('../images/file-folder-icons.png') no-repeat 0 0; background-position: -32px 0;
  88. }
  89. .tabsBar .tabSlide {
  90.     transition: left 0.15s ease-in-out;
  91. }
  92. .tabsBar .tabDrag {
  93.     transition: left 0s ease-in-out;
  94. }
  95. .tabsBar .tab .closeTab, .tabsBar .closeAllTabs {margin: 2px 0 0 5px; border-radius: 6px; cursor: pointer}
  96. .tabsBar .tab .closeTab {position: absolute; right: 7px}
  97. .tabsBar .alphaTabs {position: absolute; margin: 8px 0 0 -20px; border-radius: 6px; cursor: pointer}
  98. .tabsBar .alphaTabs:hover {background: #ccc}
  99. .tabsBar .closeAllTabs {position: absolute; margin: 8px 0 0 -36px}
  100. .tabsBar .closeAllTabs:hover {background: #ccc}
  101. .tabsBar .newTab {position: absolute; display: inline-block; height: 15px; padding: 7px 7px 5px 7px; cursor: pointer; z-index: 0;
  102.     transition: left 0.15s ease-in-out;
  103. }
  104. .editor .findBar {display: inline-block; height: 28px; width: 2400px; color: #fff; background-color: #1d1d1b}
  105. .findBar .findReplace {position: absolute; padding-top: 2px; z-index: 1}
  106. .findReplace .selectWrapper {position: relative; display: inline-block; margin-top: -6px}
  107. .findReplace .selectWrapper select {position: relative; padding: 1px; border: 0; background: url('../images/select-arrow.gif') no-repeat right #1d1d1b; color: #fff; font-size: 10px; height: 28px;
  108.     -webkit-appearance: none;
  109.     -moz-appearance: none;
  110.     appearance: none;
  111. }
  112. .findReplace .selectWrapper select:focus {outline: 0}
  113. .findReplace .findText {display: inline-block; height: 28px; font-size: 10px; margin: 7px 3px 0 27px}
  114. .findReplace .find {position: relative; width: 167px; height: 28px; border: 0; top: -2px; font-size: 12px; padding-left: 5px; margin-right: 3px; background: #444; color: #eee}
  115. .findReplace .replaceText {height: 28px; font-size: 10px; margin: 6px 3px 0 2px}
  116. .findReplace .replace {position: relative; width: 167px; height: 28px; border: 0; top: -2px; font-size: 12px; padding-left: 5px; background: #444; color: #eee}
  117. .findReplace .withText {display: inline-block; height: 28px; font-size: 10px; margin-top: 1px}
  118. .findReplace .targetText {height: 28px; font-size: 10px; margin: 7px 3px 0 2px}
  119. .findReplace .button {position: relative; top: -2px; height: 28px; padding-top: 2px; border: 0; background-color: #1d1d1b; color: #eee; font-size: 10px; margin-left: 2px; cursor: pointer}
  120. .findReplace .button:hover {background-color: #2187e7; color: #eee}
  121. .findReplace .results {position: relative; display: inline-block; width: 200px; height: 20px; font-size: 10px; margin: 7px 0 0 20px}
  122. .findBar .goLine {position: fixed; display: inline-block; width: 120px; right: 65px; top: 49px; height: 21px; font-size: 10px; color: #eee; cursor: default; z-index: 1}
  123. .goLine .goToLine {width: 50px; height: 28px; border: 0; font-size: 12px; margin: -7px 0 0 3px; padding-left: 4px; background: #333; color: #eee}
  124. .findReplace input:focus, .goLine .goToLine:focus {outline: none; background: rgba(0,198,255,0.5); color: #fff}
  125. .findBar .view {position: fixed; display: inline-block; width: 16px; height: 16px; right: 40px; top: 49px; color: #888; cursor: pointer; opacity: 0.3}
  126. .findBar .view:hover {color: #fff; cursor: pointer}
  127. .findBar .view .icon-tabler {width: 22px; height: 22px; margin-left: -3px; margin-top: -3px; stroke-width: 1.25; pointer-events: none}
  128. .findBar .bug {position: fixed; display: inline-block; width: 16px; height: 16px; right: 15px; top: 49px; color: #404040; cursor: pointer}
  129. .findBar .bug:hover {color: #fff; cursor: pointer}
  130. .findBar .bug .icon-tabler {width: 23px; height: 23px; margin-left: -3px; margin-top: -4px; stroke-width: 1.25; pointer-events: none}
  131. .editor .terminal {position: fixed; top: 10000px; transition: top 0.2s ease; z-index: 2}
  132. .editor .output {position: fixed; top: 10000px; padding: 15px 18px 8px 13px; transition: top 0.2s ease; background: rgba(0,0,0,0.92); color: #eee; z-index: 2}
  133. .editor .database {position: fixed; top: 10000px; transition: top 0.2s ease; z-index: 2}
  134. .editor .git {position: fixed; top: 10000px; padding: 15px 18px 15px 13px; overflow-y: auto; transition: top 0.2s ease; background: rgba(0,0,0,0.92); color: #eee; z-index: 2}
  135. .editor .git::-webkit-scrollbar {width: 12px; height: 12px}
  136. .editor .git::-webkit-scrollbar-thumb {background: rgba(0,198,255,0.2)}
  137. .editor .git::-webkit-scrollbar-thumb:hover {background: rgba(0,198,255,0.8)}
  138. .editor .git::-webkit-scrollbar-corner, .editor .git::-webkit-scrollbar-resizer {background: transparent}
  139. .editor .git .link {font-family: monospace; cursor: pointer}
  140. .editor .git .link:hover {color:  rgba(0,198,255,1)}
  141. .editor .code {position: relative; display: inline-block; width: 600px; height: 600px; visibility: hidden}
  142.  
  143. .footer {position: fixed; display: inline-block; width: 100%; height: 30px; bottom: 0; background-color: rgba(0,0,0,0.15); left: 0; z-index: 1}
  144. .footer .versionsDisplay {position: absolute; display: inline-block; padding: 5px; margin-top: 3px; left: 275px; color: #fff; transition: opacity 0.2s; z-index: 2; cursor: pointer}
  145. .footer .serverMessage {position: absolute; display: inline-block; padding: 5px; margin-top: 3px; left: 275px; color: #fff; transition: opacity 0.2s; z-index: 1}
  146. .footer .splitPaneControls {position: absolute; display: inline-block; width: 50px; text-align: center; padding: 6px}
  147. .footer .splitPaneControls .off {display: inline-block; width: 18px; height: 18px; margin-right: 10px; color: #888; cursor: pointer}
  148. .footer .splitPaneControls .off:hover {color: #fff; cursor: pointer}
  149. .footer .splitPaneControls .off .icon-tabler {margin-left: -3px; margin-top: -3px; stroke-width: 1.25; pointer-events: none}
  150. .footer .splitPaneControls .on {display: inline-block; width: 19px; height: 18px; color: #888; cursor: pointer}
  151. .footer .splitPaneControls .off:hover {color: #fff; cursor: pointer}
  152. .footer .splitPaneControls .on .icon-tabler {margin-left: -3px; margin-top: -3px; stroke-width: 1.25; pointer-events: none}
  153. .footer .splitPaneNames {position: absolute; display: inline-block; width: 100px; text-align: center; margin-top: 9px; color: #555; opacity: 0; transition: opacity 0.3s ease-in-out}
  154. .footer .charDisplay, .footer .byteDisplay {position: absolute; display: inline-block; padding: 5px 0 0 8px; margin-top: 3px; margin-right: 10px; right: 0; font-size: 12px; color: #fff; text-align: right; text-align: right; cursor: pointer}
  155.  
  156. .fileMenu {position: absolute; display: none; left: 0; top: 0; background-color: #333; z-index: 10;
  157.     transition: opacity 0.15s;
  158. }
  159. .fileMenu a {display: block; padding: 2px 5px; background-color: #333; color: #eee; text-decoration: none}
  160. .fileMenu a:hover {background-color: #666}
  161. .fileMenu hr {border: 0; height: 1px; padding: 0; margin: 0; background: #444}
  162.  
  163. .tooltip {position: absolute; top: 0; left: 0; padding: 5px; background: #444; color: #bbb}
  164. .closeIcon {position: fixed; display: inline-block; top: 10px; right: 10px; width: 24px; height: 24px; color: #888; cursor: pointer; z-index: 101}
  165. .closeIcon:hover {color: #ddd}
  166.  
  167. .screenContainer {position: absolute; display: table; width: 100%; height: 100%; top: 0; left: 0; text-align: center}
  168. .screenContainer .screenVCenter {#position: absolute; display: table-cell; #top: 50%; vertical-align: middle; text-align: center}
  169. .screenVCenter .screenCenter {#position: relative; #top: -50%; text-align: center; display: inline}
  170. .screenCenter .version {position: relative; display: block; margin: 5px 0 15px 0; font-size: 10px; color: #bbb}
  171. .screenCenter .text {position: relative; display: block; margin-top: 15px; font-size: 10px; color: #888}
  172. .screenCenter .text input {margin-top: 1px}
  173. .screenCenter .text a {position: relative; display: block; margin-top: 15px; font-size: 10px; color: #888; text-decoration: none}
  174. .screenCenter .password {border: 0; background-color: #333; color: #fff; height: 20px}
  175. .screenCenter .password:focus {outline: none; background: rgba(0,198,255,0.5); color: #fff}
  176. .screenCenter .button {border: 0; background: #444; color: #eee; height: 22px; cursor: pointer}
  177. .screenCenter .button:hover {background: #2187e7; color: #eee}
  178. .screenCenter .iconCapsLock {position: absolute; margin-left: 2px; color: #888}
  179.  
  180. @keyframes shadow-pulse{0% {box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);}100% {box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);}}
  181.  
  182.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement