mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
170 lines
2.9 KiB
CSS
170 lines
2.9 KiB
CSS
/* General and site-wide Bootstrap modifications */
|
|
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
font-size: var(--btcpay-font-size-base);
|
|
}
|
|
|
|
.logo {
|
|
height: 45px;
|
|
}
|
|
|
|
.logo-brand-text {
|
|
fill: currentColor;
|
|
}
|
|
|
|
.hide-when-js,
|
|
.input-group-clear {
|
|
display: none;
|
|
}
|
|
|
|
.wraptextAuto {
|
|
max-width: 300px;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
display: block;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.wraptextAuto {
|
|
max-width: 600px;
|
|
}
|
|
}
|
|
|
|
.smMaxWidth {
|
|
max-width: 150px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.smMaxWidth {
|
|
max-width: 300px;
|
|
}
|
|
}
|
|
|
|
a {
|
|
transition-duration: 0.2s;
|
|
transition-property: background, color;
|
|
}
|
|
|
|
.navbar .onion {
|
|
margin-right: auto;
|
|
}
|
|
|
|
.navbar-brand,
|
|
.navbar-brand:hover,
|
|
.navbar-brand:focus {
|
|
color: inherit;
|
|
}
|
|
|
|
.navbar-toggler {
|
|
color: inherit;
|
|
border-color: inherit;
|
|
opacity: .5;
|
|
}
|
|
|
|
/* Admin Sidebar Navigation */
|
|
a.nav-link {
|
|
color: var(--btcpay-nav-color-link, var(--btcpay-color-neutral-600));
|
|
background: var(--btcpay-bg-nav-link, transparent);
|
|
}
|
|
|
|
a.nav-link:focus,
|
|
a.nav-link:hover {
|
|
color: var(--btcpay-nav-color-link-accent, var(--btcpay-color-neutral-700));
|
|
background: var(--btcpay-bg-nav-link-hover, transparent);
|
|
}
|
|
|
|
.col-md-3 .nav-pills {
|
|
margin-left: -1rem;
|
|
}
|
|
|
|
.nav-pills .nav-link.active,
|
|
.nav-pills .show > .nav-link {
|
|
color: var(--btcpay-nav-color-link-active, var(--btcpay-color-neutral-900));
|
|
background: var(--btcpay-bg-nav-link-active, var(--btcpay-color-primary-backdrop));
|
|
font-weight: 500;
|
|
border-left: 5px solid var(--btcpay-color-primary);
|
|
}
|
|
|
|
/* Homepage */
|
|
#services img {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.social-row {
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.social-row > div {
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.social-row img {
|
|
height: 50px;
|
|
}
|
|
|
|
.social-row span {
|
|
display: block;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
font-size: 12px;
|
|
overflow: hidden;
|
|
padding: .5em 0;
|
|
color: var(--btcpay-footer-color, var(--btcpay-color-neutral-100));
|
|
background: var(--btcpay-footer-bg, var(--btcpay-bg-dark));
|
|
}
|
|
|
|
/* Prevent layout from breaking on hyperlinks with very long URLs as the visible text */
|
|
.invoice-details a {
|
|
word-break: break-word;
|
|
}
|
|
|
|
#qrCode {
|
|
padding: 10px;
|
|
background: white;
|
|
display: inline-block;
|
|
}
|
|
|
|
pre {
|
|
color: var(--btcpay-preformatted-text-color);
|
|
}
|
|
|
|
.feedback-icon-loading {
|
|
color: orange;
|
|
}
|
|
.feedback-icon-success {
|
|
color: green;
|
|
}
|
|
.feedback-icon-failed {
|
|
color: red;
|
|
}
|
|
.pin-button {
|
|
height: 135px;
|
|
margin-top: 20px;
|
|
background-color: white;
|
|
border: solid lightgray 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.pin-button:hover {
|
|
background-color: lightgray;
|
|
}
|
|
|
|
[v-cloak] > * { display:none }
|
|
[v-cloak]::before { content: "loading…" }
|
|
|
|
.cursor-pointer{
|
|
cursor: pointer;
|
|
}
|
|
|
|
.list-group-item a {
|
|
color: inherit;
|
|
}
|