2019-11-01 17:29:28 +01:00
|
|
|
|
/* General and site-wide Bootstrap modifications */
|
|
|
|
|
html {
|
2017-10-27 00:36:09 -05:00
|
|
|
|
position: relative;
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-02 16:57:53 +01:00
|
|
|
|
.logo {
|
|
|
|
|
height: 45px;
|
2017-10-27 00:36:09 -05:00
|
|
|
|
}
|
2020-03-19 09:44:47 +01:00
|
|
|
|
.hide-when-js,
|
2019-11-01 17:29:28 +01:00
|
|
|
|
.input-group-clear {
|
2019-01-14 22:43:29 +01:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
2019-05-08 20:37:37 +02:00
|
|
|
|
|
2019-11-01 17:29:28 +01:00
|
|
|
|
.wraptextAuto {
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: block;
|
|
|
|
|
white-space: nowrap;
|
2019-05-30 13:59:01 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 17:29:28 +01:00
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
|
.wraptextAuto {
|
|
|
|
|
max-width: 600px;
|
|
|
|
|
}
|
2019-05-30 13:59:01 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 17:29:28 +01:00
|
|
|
|
.smMaxWidth {
|
|
|
|
|
max-width: 150px;
|
2019-05-30 13:59:01 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 17:29:28 +01:00
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
|
.smMaxWidth {
|
|
|
|
|
max-width: 300px;
|
2019-05-30 13:59:01 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-02 16:57:53 +01:00
|
|
|
|
a {
|
|
|
|
|
transition-duration: 0.2s;
|
|
|
|
|
transition-property: background, color;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Admin Sidebar Navigation */
|
2019-05-28 08:40:10 -04:00
|
|
|
|
a.nav-link {
|
2019-11-02 16:57:53 +01:00
|
|
|
|
color: var(--btcpay-nav-color-link, var(--btcpay-color-neutral-600));
|
2019-11-01 17:29:28 +01:00
|
|
|
|
background: var(--btcpay-bg-nav-link, transparent);
|
2019-05-28 08:40:10 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 17:29:28 +01:00
|
|
|
|
a.nav-link:focus,
|
|
|
|
|
a.nav-link:hover {
|
2019-11-02 16:57:53 +01:00
|
|
|
|
color: var(--btcpay-nav-color-link-accent, var(--btcpay-color-neutral-700));
|
2019-11-01 17:29:28 +01:00
|
|
|
|
background: var(--btcpay-bg-nav-link-hover, transparent);
|
2019-05-28 08:40:10 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-02 16:57:53 +01:00
|
|
|
|
.col-md-3 .nav-pills {
|
|
|
|
|
margin-left: -1rem;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-28 08:40:10 -04:00
|
|
|
|
.nav-pills .nav-link.active,
|
|
|
|
|
.nav-pills .show > .nav-link {
|
2019-11-02 16:57:53 +01:00
|
|
|
|
color: var(--btcpay-nav-color-link-active, var(--btcpay-color-neutral-900));
|
2019-11-08 14:37:10 +01:00
|
|
|
|
background: var(--btcpay-bg-nav-link-active, var(--btcpay-color-primary-backdrop));
|
2019-05-28 08:40:10 -04:00
|
|
|
|
font-weight: 500;
|
2019-11-14 22:48:15 -06:00
|
|
|
|
border-left: 5px solid var(--btcpay-color-primary);
|
2019-05-28 08:40:10 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-11 17:12:39 -05:00
|
|
|
|
.display-when-ledger-connected {
|
2019-05-08 20:37:37 +02:00
|
|
|
|
display: none;
|
2019-05-11 17:12:39 -05:00
|
|
|
|
}
|
2019-05-09 12:53:13 -05:00
|
|
|
|
|
2019-11-02 16:57:53 +01:00
|
|
|
|
/* 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;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
height: 18px;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
font-size: 8px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
color: var(--btcpay-color-footer, var(--btcpay-color-neutral-100));
|
|
|
|
|
background: var(--btcpay-footer-bg, var(--btcpay-bg-dark));
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 17:29:28 +01:00
|
|
|
|
/* Prevent layout from breaking on hyperlinks with very long URLs as the visible text */
|
|
|
|
|
.invoice-details a {
|
2019-08-04 11:29:03 +02:00
|
|
|
|
word-break: break-word;
|
2019-09-21 16:24:01 +02:00
|
|
|
|
}
|
2019-11-15 11:23:52 +01:00
|
|
|
|
|
|
|
|
|
#qrCode {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
background: white;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
2019-11-18 20:21:36 -08:00
|
|
|
|
|
|
|
|
|
pre {
|
2019-11-11 14:22:04 +09:00
|
|
|
|
color: var(--btcpay-preformatted-text-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feedback-icon-loading {
|
|
|
|
|
color: orange;
|
|
|
|
|
}
|
|
|
|
|
.feedback-icon-success {
|
|
|
|
|
color: green;
|
|
|
|
|
}
|
|
|
|
|
.feedback-icon-failed {
|
|
|
|
|
color: red;
|
2019-11-18 20:21:36 -08:00
|
|
|
|
}
|
2019-11-21 16:38:43 +09:00
|
|
|
|
.pin-button {
|
|
|
|
|
height: 135px;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
background-color: white;
|
|
|
|
|
border: solid lightgray 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pin-button:hover {
|
|
|
|
|
background-color: lightgray;
|
|
|
|
|
}
|
2020-03-19 09:44:47 +01:00
|
|
|
|
[v-cloak] > * { display:none }
|
|
|
|
|
[v-cloak]::before { content: "loading…" }
|
|
|
|
|
.cursor-pointer{
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|