Advertisement
Guest User

Untitled

a guest
Dec 6th, 2024
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.60 KB | None | 0 0
  1. .app-container {
  2.   display: flex;
  3.   flex-direction: column;
  4.   min-height: 100vh;
  5.   background-color: #000000;
  6.   font-family: Arial, sans-serif;
  7. }
  8.  
  9. .main-content {
  10.   display: flex;
  11.   height: 100vh;
  12.   width: 100%;
  13.   margin: 0;
  14. }
  15.  
  16. .sidebar {
  17.   background-color: #1a1a1a;
  18.   padding: 35px 35px 35px 20px;
  19.   width: 250px;
  20.   color: white;
  21.   display: flex;
  22.   flex-direction: column;
  23.   align-items: flex-start;
  24.   justify-content: space-between;
  25.   border-radius: 5px;
  26.   position: relative;
  27. }
  28.  
  29. .sidebar.hidden {
  30.   display: none;
  31. }
  32.  
  33. .sidebar h2 {
  34.   margin-bottom: 15px;
  35. }
  36.  
  37. .sidebar input {
  38.   margin-bottom: 10px;
  39.   padding: 10px;
  40.   width: 100%;
  41.   background-color: rgb(108, 108, 108);
  42.   border: 1px solid #bdc3c7;
  43.   border-radius: 5px;
  44.   margin-left: -4px;
  45.   color: white;
  46. }
  47.  
  48. .sidebar button {
  49.   padding: 10px;
  50.   background-color: rgb(108, 108, 108);
  51.   color: white;
  52.   border: none;
  53.   border-radius: 5px;
  54.   cursor: pointer;
  55.   font-size: 16px;
  56.   margin-left: -4px;
  57. }
  58.  
  59. .sidebar button:disabled {
  60.   background-color: #141414;
  61. }
  62.  
  63. .hide-sidebar-button {
  64.   position: fixed;
  65.   bottom: 10px;
  66.   right: 13px;
  67.   background-color: rgb(108, 108, 108);
  68.   color: white;
  69.   border: none;
  70.   border-radius: 5px;
  71.   width: 30px;
  72.   height: 30px;
  73.   display: flex;
  74.   align-items: center;
  75.   justify-content: center;
  76.   cursor: pointer;
  77.   font-size: 20px;
  78.   z-index: 10;
  79. }
  80.  
  81. .terminal-container {
  82.   background-color: #1e1e1e;
  83.   border-radius: 0px;
  84.   box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  85.   overflow: auto;
  86.   height: 100%;
  87.   flex-grow: 1;
  88.   overflow: hidden;
  89.   position: relative;
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement