Last active
March 1, 2025 15:31
-
-
Save furopi/8e0b91660666c2f603deb6b753b49aeb to your computer and use it in GitHub Desktop.
Userscript CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.root-element { | |
font-size: 16px; | |
font-family: "Roboto", sans-serif; | |
color: #4c4c4c; | |
} | |
.sticky-left { | |
position: fixed; | |
transform: translate(-50%, 0%); | |
transition: transform 0.5s; | |
z-index: 9998; | |
bottom: 0; | |
left: 50%; | |
} | |
.sticky-left .toggle { | |
/*width: 20%;*/ | |
width: 91.3333px; | |
height: 8px; | |
background-color: rgba(97, 97, 97, 0.35); | |
position: absolute; | |
right: 50%; | |
border-top-left-radius: 12px; | |
border-top-right-radius: 12px; | |
border-right: solid 1px rgba(97, 97, 97, 0.35); | |
top: -8px; | |
cursor: pointer; | |
/*background-color: #333;*/ | |
color: white; | |
/*background-image: linear-gradient(45deg, #000000 30%, #444444 30%, #444444 50%, #000000 50%, #000000 80%, #444444 80%, #444444 100%); | |
background-size: 7.07px 7.07px;*/ | |
background-image: linear-gradient(45deg, #444444 33.33%, #000000 33.33%, #000000 50%, #444444 50%, #444444 83.33%, #000000 83.33%, #000000 100%); | |
background-size: 4.24px 4.24px; | |
border-left: solid 1px #555; | |
transform: translate(50%, 0%); | |
} | |
.side-bar { | |
padding: 10px; | |
border-top-left-radius: 12px; | |
border-top-right-radius: 12px; | |
/* background-color: rgb(255, 255, 255); */ | |
background-color: #0d1117; | |
border: solid 1px rgba(97, 97, 97, 0.35); | |
} | |
.side-bar__list { | |
margin: 0; | |
padding: 0; | |
display: flex; | |
list-style-type: none !important; | |
list-style: none !important; | |
justify-content: space-between; | |
align-items: center; | |
width: 100%; | |
} | |
.side-bar__list-item { | |
list-style-type: none !important; | |
list-style: none !important; | |
} | |
.side-bar__list-item:first-child { | |
display: none; | |
} | |
.side-bar__list-item:nth-child(2) { | |
padding-left: 0; | |
} | |
.side-bar__list-item + .side-bar__list-item { | |
padding-left: 20px; | |
} | |
.side-bar__button { | |
background-color: transparent; | |
border-width: initial; | |
border-style: none; | |
border-color: initial; | |
outline-color: initial; | |
color: inherit; | |
display: flex; | |
flex-direction: column; | |
justify-content: center; | |
align-items: center; | |
cursor: pointer; | |
background-color: transparent; | |
border: none; | |
font-size: 0.8em; | |
outline: none; | |
font-family: inherit; | |
color: inherit; | |
} | |
.side-bar__text { | |
margin-top: 5px; | |
color: #ccc; | |
} | |
.side-bar__image { | |
width: 20px; | |
height: 20px; | |
} | |
.context li { | |
cursor: pointer; | |
padding: 5px 10px; | |
font-size: 0.8em; | |
color: #aaa; | |
} | |
.sticky-left .context { | |
top: 0; | |
position: absolute; | |
margin: 0; | |
list-style-type: none; | |
overflow: hidden; | |
padding: 5px 0px; | |
border-radius: 8px; | |
background-color: transparent; | |
border: solid 1px rgba(97, 97, 97, 0.35); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment