70 lines
1.1 KiB
CSS
70 lines
1.1 KiB
CSS
html,
|
|
body {
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.tabs ul {
|
|
-webkit-flex-direction: column;
|
|
flex-direction: column;
|
|
flex-grow: 0px;
|
|
}
|
|
|
|
.tabs {
|
|
max-height: 500px;
|
|
overflow-y: auto;
|
|
direction: rtl;
|
|
}
|
|
|
|
.checkbox-label {
|
|
font-size: 20px;
|
|
padding-left: 15px;
|
|
font-weight: bold
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 20px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: #d6dee1;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: #d6dee1;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: #d6dee1;
|
|
border-radius: 20px;
|
|
border: 6px solid transparent;
|
|
background-clip: content-box;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background-color: #a8bbbf;
|
|
}
|
|
|
|
#log-content {
|
|
text-align: left;
|
|
white-space: pre-wrap;
|
|
max-height: 400px;
|
|
padding: 0;
|
|
}
|
|
|
|
#auto-update-log {
|
|
display: none;
|
|
background-color: transparent;
|
|
font-size: 20px;
|
|
padding: 0;
|
|
border-radius: 5px;
|
|
} |