mirror of
https://github.com/bckelley/avogadrio.git
synced 2026-08-24 02:04:11 -05:00
Add donation CSS
This commit is contained in:
+2
-2
@@ -62,7 +62,7 @@ phpunit.phar
|
|||||||
# Sensitive
|
# Sensitive
|
||||||
/config/config.yaml
|
/config/config.yaml
|
||||||
/templates/_analytics.html.twig
|
/templates/_analytics.html.twig
|
||||||
/templated/_donations.html.twig
|
/templates/_donations.html.twig
|
||||||
|
|
||||||
# Compiled code
|
# Compiled code
|
||||||
/web/js/
|
/web/js/
|
||||||
@@ -72,4 +72,4 @@ phpunit.phar
|
|||||||
/db/*.dat
|
/db/*.dat
|
||||||
|
|
||||||
# Keep files
|
# Keep files
|
||||||
!.gitkeep
|
!.gitkeep
|
||||||
|
|||||||
@@ -170,3 +170,52 @@ input[type=text] {
|
|||||||
padding: 4px;
|
padding: 4px;
|
||||||
font-size: 8pt;
|
font-size: 8pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Modals.
|
||||||
|
|
||||||
|
.modal-header {
|
||||||
|
background: #222222;
|
||||||
|
border-color: #333333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.close span {
|
||||||
|
color: #cccccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-title {
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-body {
|
||||||
|
background: #222222;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-body p {
|
||||||
|
line-height: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-footer {
|
||||||
|
background: #222222;
|
||||||
|
border-color: #333333;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Donation-related.
|
||||||
|
|
||||||
|
code {
|
||||||
|
border: 1px solid @code-border;
|
||||||
|
border-radius: 5px;
|
||||||
|
background: @code-background;
|
||||||
|
text-shadow: none;
|
||||||
|
padding: 5px 10px 5px 10px;
|
||||||
|
color: @code-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.crypto-qr {
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.crypto-icon {
|
||||||
|
cursor: pointer;
|
||||||
|
width: 24px;
|
||||||
|
margin: 4px;
|
||||||
|
}
|
||||||
|
|||||||
@@ -17,6 +17,11 @@
|
|||||||
@button-border: #555;
|
@button-border: #555;
|
||||||
@button-text: #fff;
|
@button-text: #fff;
|
||||||
|
|
||||||
|
// Text colours.
|
||||||
|
@code-border: #555;
|
||||||
|
@code-color: #ff6347;
|
||||||
|
@code-background: #111;
|
||||||
|
|
||||||
// Input fields.
|
// Input fields.
|
||||||
@input-background: #222;
|
@input-background: #222;
|
||||||
@input-background-hover: #444;
|
@input-background-hover: #444;
|
||||||
|
|||||||
Reference in New Issue
Block a user