Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. * {
  2. padding: 0px;
  3. margin: 0px;
  4. }
  5.  
  6. ::-webkit-scrollbar{display:none !important; width:0px;}
  7. ::-webkit-scrollbar-button,::-webkit-scrollbar-track{display:none !important;}
  8. ::-webkit-scrollbar-thumb{display: none !important;}
  9. ::-webkit-scrollbar-track{display: none !important;}
  10.  
  11.  
  12. /* GRID AREA ASSIGNMENTS */
  13.  
  14. body {
  15. display: grid;
  16. /* grid-gap: 0.25vh; */
  17. grid-template-columns: 2fr 3fr 5fr;
  18. grid-template-rows: 50px auto;
  19. grid-template-areas:
  20. "sidebar-header middle-header properties-header"
  21. "sidebar middle properties";
  22. font-family: 'Roboto', sans-serif;
  23. color: #ffffff;
  24. background-color: #000000;
  25. }
  26.  
  27. #sidebar {
  28. grid-area: sidebar;
  29. background-color: #2F3136;
  30. }
  31.  
  32. #middle {
  33. grid-area: middle;
  34. background-color: #36393F;
  35. }
  36.  
  37. #properties {
  38. grid-area: properties;
  39. background-color: #2F3136;
  40. }
  41.  
  42. #sidebar-header {
  43. grid-area: sidebar-header;
  44. background-color: #2F3136;
  45. }
  46.  
  47. #middle-header {
  48. grid-area: middle-header;
  49. background-color: #36393F;
  50. }
  51.  
  52. #properties-header {
  53. grid-area: properties-header;
  54. background-color: #2F3136;
  55. }
  56.  
  57.  
  58. /* COLUMN AND HEADER */
  59.  
  60. .column-header {
  61. display: flex;
  62. font-size: 30px;
  63. border-bottom: 2px solid #000000;
  64. /* height: 10vh; */
  65. padding-left: 10px;
  66. padding-right: 10px;
  67.  
  68. }
  69.  
  70. .column-header span {
  71. margin-top: auto;
  72. margin-bottom: auto;
  73. margin-right: auto;
  74. }
  75.  
  76. .column {
  77. display: block;
  78. /* height: 92vh; */
  79. height: calc(100vh - 60px);
  80. padding: 5px;
  81. }
  82.  
  83.  
  84. /* INTERACTABLES */
  85.  
  86. button {
  87. float: right;
  88. font-size: 16px;
  89. color: #ffffff;
  90. background-color: #292B2F;
  91. padding-top: 5px;
  92. padding-bottom: 5px;
  93. padding-left: 10px;
  94. padding-right: 10px;
  95. margin-top: auto;
  96. margin-bottom: auto;
  97. border: 1px #000000 solid;
  98. border-radius: 5px;
  99. }
  100.  
  101. input {
  102. float: right;
  103. font-size: 16px;
  104. color: #ffffff;
  105. background-color: #2F3136;
  106. padding: 5px;
  107. margin-top: auto;
  108. margin-bottom: auto;
  109. border: 1px #000000 solid;
  110. border-radius: 5px;
  111. }
  112.  
  113.  
  114. /* SECTION */
  115.  
  116. .section {
  117. display: flex;
  118. background-color: #292B2F;
  119. border: 1px solid #000000;
  120. border-radius: 5px;
  121. margin: 7px;
  122. padding: 5px;
  123. transition: background-color .2s ease-in-out;
  124. }
  125.  
  126. .section span {
  127. margin-top: auto;
  128. margin-bottom: auto;
  129. margin-left: 5px;
  130. margin-right: 5px;
  131. }
  132.  
  133. .section-divider {
  134. margin-top: 20px;
  135. }
  136.  
  137. .section-divider span {
  138. font-size: 20px;
  139. margin: auto;
  140. }
  141.  
  142. .selected {
  143. background-color: #47494c;
  144. }
  145.  
  146. .scrollable-list {
  147. overflow: scroll;
  148. max-height: 100%;
  149. }
  150.  
  151.  
  152. /* SIDEBAR COLUMN */
  153.  
  154. #sidebar img {
  155. border-radius: 50px;
  156. float: left;
  157. margin: 5px;
  158. width: 50px;
  159. height: 50px;
  160. }
  161.  
  162. #sidebar input {
  163. position: absolute;
  164. opacity: 0;
  165. cursor: pointer;
  166. height: 0;
  167. width: 0;
  168. }
  169.  
  170.  
  171. /* MIDDLE COLUMN */
  172.  
  173. #middle .section .role-color {
  174. width: 20px;
  175. height: 20px;
  176. margin-right: 5px;
  177. border: 1px #000000 solid;
  178. border-radius: 50px;
  179. }
  180.  
  181.  
  182. /* PROPERTIES COLUMN */
  183.  
  184. #properties .scrollable-list .section {
  185. display: flex;
  186. }
  187.  
  188. #properties .scrollable-list .section span {
  189. margin-right: auto;
  190. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement