Advertisement
Creepinson

css

Apr 12th, 2020
556
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.00 KB | None | 0 0
  1.             #editor {
  2.                 background-color: transparent;
  3.                 position: relative;
  4.                 width: 100%;
  5.                 height: 100%;
  6.             }
  7.  
  8.             .graph {
  9.                 position: absolute;
  10.                 top: 0;
  11.                 left: 0;
  12.                 width: 100%;
  13.                 min-height: 150px;
  14.             }
  15.  
  16.             .handle {
  17.                 width: 100%;
  18.                 height: 10px;
  19.                 background-color: gray;
  20.             }
  21.  
  22.             .window-title {
  23.                 width: 100%;
  24.                 height: 15px;
  25.                 background-color: rgb(158, 158, 158);
  26.                 text-align: center;
  27.             }
  28.  
  29.             #node-graph {
  30.                 background-color: hsl(189, 47%, 6%);
  31.             }
  32.  
  33.             .sidebar {
  34.                 float: right;
  35.                 width: 25%;
  36.                 height: 100%;
  37.                 background-color: #fff;
  38.                 position: relative;
  39.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement