mirror of https://github.com/OpenIPC/composer.git
281 lines
6.1 KiB
CSS
281 lines
6.1 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@400;700&display=swap');
|
|
|
|
/* debugging start */
|
|
@media (max-width: 575.98px) {body.debug:before{content:"xs"}}
|
|
@media (min-width: 576px) and (max-width: 767.98px) {body.debug:before{content:"sm"}}
|
|
@media (min-width: 768px) and (max-width: 991.98px) {body.debug:before{content:"md"}}
|
|
@media (min-width: 992px) and (max-width: 1199.98px) {body.debug:before{content:"lg"}}
|
|
@media (min-width: 1200px) and (max-width: 1399.98px) {body.debug:before{content:"xl"}}
|
|
@media (min-width: 1400px) {body.debug:before{content:"xxl"}}
|
|
|
|
body.debug:before {
|
|
color:#4c60d811;
|
|
display:block;
|
|
font-size:10rem;
|
|
font-variant:all-small-caps;
|
|
font-weight:700;
|
|
line-height:1;
|
|
position:fixed;
|
|
right:3rem;
|
|
top:3rem;
|
|
z-index:-1;
|
|
}
|
|
|
|
.offcanvas {
|
|
--bs-offcanvas-width: 30vw;
|
|
min-width: 25rem;
|
|
}
|
|
|
|
#debug-button {
|
|
position: fixed;
|
|
bottom: 1rem;
|
|
left: 1rem;
|
|
}
|
|
/* debugging end */
|
|
|
|
:root {
|
|
--bs-body-font-family: "IBM Plex Sans", sans-serif;
|
|
--bs-font-monospace: "IBM Plex Mono", monospace;
|
|
--bs-blue: rgb(76, 96, 216);
|
|
}
|
|
|
|
[data-bs-theme=light] {
|
|
--bs-primary: rgb(76, 96, 216);
|
|
--bs-secondary: rgb(76, 96, 216);
|
|
--bs-tertiary-bg-rgb: 76, 96, 216;
|
|
}
|
|
|
|
.navbar-nav,
|
|
[data-bs-theme=light] .navbar-nav {
|
|
--bs-nav-link-color: white;
|
|
}
|
|
[data-bs-theme=light] .nav-link {
|
|
color: var(--bs-nav-link-color);
|
|
}
|
|
|
|
[data-bs-theme=dark] {
|
|
--bs-primary: rgb(76, 96, 216);
|
|
--bs-secondary: rgb(138, 159, 208);
|
|
}
|
|
|
|
[data-bs-theme=dark] .btn-primary {
|
|
--bs-btn-color: #fff;
|
|
--bs-btn-bg: rgba(13, 110, 253, 0.5);
|
|
--bs-btn-border-color: rgba(13, 110, 253, 0.5);
|
|
--bs-btn-hover-color: #fff;
|
|
--bs-btn-hover-bg: rgba(11, 94, 215, 0.5);
|
|
--bs-btn-hover-border-color: rgba(10, 88, 202, 0.5);
|
|
--bs-btn-focus-shadow-rgb: 49,132,253;
|
|
--bs-btn-active-color: rgba(255, 255, 255, 0.5);
|
|
--bs-btn-active-bg: rgba(10, 88, 202, 0.5);
|
|
--bs-btn-active-border-color: rgba(10, 83, 190, 0.5);
|
|
--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
--bs-btn-disabled-color: rgba(255, 255, 255, 0.5);
|
|
--bs-btn-disabled-bg: rgba(13, 110, 253, 0.5);
|
|
--bs-btn-disabled-border-color: rgba(13, 110, 253, 0.5);
|
|
}
|
|
|
|
body > main > .container > h2 {
|
|
font-weight: 700;
|
|
color: var(--bs-primary);
|
|
margin: 1rem 0 1.5rem;
|
|
}
|
|
|
|
h6 {
|
|
font-weight: 700;
|
|
}
|
|
|
|
pre {
|
|
background: #4c60d812;
|
|
font-size: 0.8125rem;
|
|
padding: 1rem;
|
|
}
|
|
|
|
pre.list b {
|
|
display: inline-block;
|
|
width: 8em;
|
|
}
|
|
|
|
textarea {
|
|
font-family: var(--bs-font-monospace);
|
|
height: 50vh;
|
|
white-space: pre;
|
|
}
|
|
|
|
dl.list {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
}
|
|
|
|
dl.list dt {
|
|
flex-grow: 1;
|
|
width: 33%;
|
|
}
|
|
|
|
dl.list dd {
|
|
flex-grow: 2;
|
|
width: 66%;
|
|
}
|
|
|
|
.btn {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.card-body {
|
|
position: relative;
|
|
}
|
|
|
|
.col > h3 {
|
|
color: var(--bs-secondary);
|
|
font-size: 1.3rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.container {
|
|
display: block;
|
|
}
|
|
|
|
.cp2cb {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.dropdown-item {
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.form-control.font-monospace {
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.form-control::placeholder {
|
|
color: #c2c2d9;
|
|
}
|
|
|
|
.form-label {
|
|
margin-bottom: 0.125rem;
|
|
}
|
|
|
|
.form-range {
|
|
height: 2.5rem;
|
|
}
|
|
|
|
.form-range::-moz-range-track {
|
|
width: 90%;
|
|
}
|
|
|
|
p.range span.show-value {
|
|
display: block;
|
|
min-width: 3.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.hint {
|
|
font-size: 0.875rem;
|
|
margin-top: 0.2rem;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.nav-link {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.nav-link.active {
|
|
background: var(--bs-primary);
|
|
color: #ffffff;
|
|
}
|
|
|
|
.tab-pane {
|
|
padding: 1rem 0;
|
|
}
|
|
|
|
#page-texteditor .tab-pane {
|
|
min-height: 60vh;
|
|
}
|
|
|
|
.range-value {
|
|
text-align: right;
|
|
}
|
|
|
|
.social {
|
|
position: absolute;
|
|
right: 0.25rem;
|
|
top: -0.75rem;
|
|
text-align: right;
|
|
}
|
|
|
|
.social a {
|
|
background: white;
|
|
border-radius: 50%;
|
|
display: inline-flex;
|
|
padding: 2px;
|
|
}
|
|
|
|
.social a img {
|
|
height: 1.25rem;
|
|
vertical-align: text-bottom;
|
|
}
|
|
|
|
.x-small {
|
|
font-size: 0.8125rem;
|
|
}
|
|
|
|
#mj-tabs .list-group-item {
|
|
padding: 0.25rem 1.0rem;
|
|
}
|
|
|
|
#soc-temp {
|
|
padding: 0.25rem 0.5rem;
|
|
/*border-radius: 5px;*/
|
|
}
|
|
|
|
pre#output[data-cmd] { background-color: rgb(0, 0, 0); color: rgba(170, 170, 170, 0.8); }
|
|
.ansi-30 { color: rgba(0, 0, 0, 0.8); }
|
|
.ansi-31 { color: rgba(170, 0, 0, 0.8); }
|
|
.ansi-32 { color: rgba(0, 170, 0, 0.8); }
|
|
.ansi-33 { color: rgba(170, 85, 0, 0.8); }
|
|
.ansi-34 { color: rgba(0, 0, 170, 0.8); }
|
|
.ansi-35 { color: rgba(170, 0, 170, 0.8); }
|
|
.ansi-36 { color: rgba(0, 170, 170, 0.8); }
|
|
.ansi-37 { color: rgba(170, 170, 170, 0.8); }
|
|
|
|
.ansi-40 { background-color: rgba(0, 0, 0, 0.8); }
|
|
.ansi-41 { background-color: rgba(255, 0, 0, 0.8); }
|
|
.ansi-42 { background-color: rgba(0, 128, 0, 0.8); }
|
|
.ansi-43 { background-color: rgba(255, 255, 0, 0.8); }
|
|
.ansi-44 { background-color: rgba(0, 0, 255, 0.8); }
|
|
.ansi-45 { background-color: rgba(255, 0, 255, 0.8); }
|
|
.ansi-46 { background-color: rgba(0, 255, 255, 0.8); }
|
|
.ansi-47 { background-color: rgba(255, 255, 255, 0.8); }
|
|
|
|
.ansi-90 { color: rgb(0, 0, 0); font-weight: 700; }
|
|
.ansi-91 { color: rgb(255, 0, 0); font-weight: 700; }
|
|
.ansi-92 { color: rgb(0, 128, 0); font-weight: 700; }
|
|
.ansi-93 { color: rgb(255, 255, 0); font-weight: 700; }
|
|
.ansi-94 { color: rgb(0, 0, 255); font-weight: 700; }
|
|
.ansi-95 { color: rgb(255, 0, 255); font-weight: 700; }
|
|
.ansi-96 { color: rgb(0, 255, 255); font-weight: 700; }
|
|
.ansi-97 { color: rgb(255, 255, 255); font-weight: 700; }
|
|
|
|
.ansi-100 { background-color: rgb(0, 0, 0); }
|
|
.ansi-101 { background-color: rgb(255, 0, 0); }
|
|
.ansi-102 { background-color: rgb(0, 128, 0); }
|
|
.ansi-103 { background-color: rgb(255, 255, 0); }
|
|
.ansi-104 { background-color: rgb(0, 0, 255); }
|
|
.ansi-105 { background-color: rgb(255, 0, 255); }
|
|
.ansi-106 { background-color: rgb(0, 255, 255); }
|
|
.ansi-107 { background-color: rgb(255, 255, 255); }
|
|
|
|
body.lite .ult { display: none; }
|
|
|
|
body.user .ui-expert { display: none; }
|
|
body.expert .ui-expert { display: initial; }
|
|
|
|
.plugin-enabled {
|
|
border-left: 5px solid green;
|
|
margin-left: -5px;
|
|
}
|
|
|
|
#pb-memory, #pb-overlay { height: 4px; cursor: pointer; }
|