Luckperms Web Editor Sidebar CSS

                Never    
CSS
       
/*
  Turns Luckperms Web Editor's Topbar into a Sidebar
  by luxluxdev (/u/luxluxdev, luxluxdev#0299)
  tested on Chrome, using Stylus :)
*/

html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: row;
}

#bar {
  min-width: 200px;
  max-width: 200px;
  position: static;
}

#bar .material-icons {
  /*font-family: default;*/
  font-size: 2.5rem;
  text-align: center;
  margin-right: 0;
}

#bar:after {
  content: "luxluxdev's Luckperms Editor";
  display: block;
  right: 0;
  text-align: center;
  font-size: 0.9rem;
  height: 22px;
  border-top: 1px white solid;
}

h3 {
  display: none;
  font-size: 1em;
}

#identifier {
  display: none;
}

.flex-center {
  flex-direction: column;
  justify-content: center;
  height: 50px;
}

.flex-center > :first-child {
  display: none;
}

.flex-center > :last-child {
  display: flex;
  justify-content: space-around;
  align-items: center;
  /*border-bottom: 1px #3d3d4a solid;*/
}

.flex-center > :last-child > li {
  margin-right: 0;
}

img {
  display: none;
}

.flex-center > li {
  text-align: center;
  width: 100%;
}

.footer {
  display: none;
}

#page {
  width: 0;
  overflow: scroll;
  height: 100vh;
}

#table-content {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
  padding: 0;
}

#table-section {
  margin-top: 0 !important;
}

#page {
  background-color: #2d2d38;
  width: 100%;
}

.table-input-bar {
  position: static;
  max-width: 100%;
}

#tab {
  display: flex;
  flex-direction: column;
  padding: 0;
  min-height: calc(100vh - 50px - 25px);
  max-height: calc(100vh - 50px - 25px);
}

#tab .active {
  border-color: #868686;
  border-style: solid none solid none;
  border-width: 1px;
}

#tab .active:hover {
  border-color: #868686;
  background-color: #43434d;
}

#tab button {
  font-size: 1em;
  line-height: 0.9rem;
  border-color: transparent;
  border-style: solid none solid none;
  border-width: 1px;
}

#tab button:hover {
  border-color: transparent;
  background-color: #32323c;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 4px;
  height: 0;
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb {
  background: #f4f4f4;
  border: none;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}
::-webkit-scrollbar-thumb:active {
  background: #d9d8d8;
}
::-webkit-scrollbar-track {
  background: transparent;
  border: none;
}

Raw Text