MediaDash/static/theme.css

130 lines
1.8 KiB
CSS

body,
input,
select,
pre,
textarea,
tr {
background-color: #222 !important;
color: #eee;
}
pre.inline {
display: inline;
margin: 0;
}
th {
border-bottom: 1px;
}
thead, table {
line-height: 1;
color: #eee;
}
hr {
color: #eee;
border-color: #eee;
margin: 10px 0;
}
p {
padding: 0;
margin: 0;
}
.list-group-item {
background-color: #181818;
border-color: #eee;
}
.dropdown-menu {
background-color: #444;
}
.progress {
background-color: #444;
}
.progress-bar {
background-color: #f70;
}
.form-control {
color: #eee !important;
}
.form-group {
margin-bottom: 0;
}
.btn {
margin-top: 10px;
}
.form-control-label {
margin-top: 10px;
}
.torrent_results {
width: 100%;
}
.nav-pills {
margin-top: 10px;
}
h1,
h2,
h3 {
margin-top: 10px;
}
/* Remove default bullets */
ul.file_tree,
ul.tree,
ul.file {
list-style-type: none;
margin: 0;
padding: 0;
}
ul.tree {
padding-left: 10px;
}
.monospace {
font-family: monospace;
overflow: scroll;
max-height: 500px;
min-height: 500px;
max-width: 100%;
min-width: 100%;
}
/* Style the caret/arrow */
.custom_caret {
cursor: pointer;
user-select: none;
/* Prevent text selection */
}
/* Create the caret/arrow with a unicode, and style it */
.custom_caret::before {
content: "[+]";
display: inline-block;
}
/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.custom_caret-down::before {
content: "[-]";
}
/* Hide the nested list */
.nested {
display: none;
}
/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.active {
display: block;
}