summaryrefslogtreecommitdiff
path: root/static/main.css
diff options
context:
space:
mode:
authorMarco Janotta <marcojanotta@protonmail.com>2021-06-24 18:13:07 +0200
committerDaniel Micay <danielmicay@gmail.com>2021-06-24 18:07:50 -0400
commite5882d821cb95cd0eb2e031d13d6ea1a5495d56d (patch)
tree60018f9165abb87ab9c28926e3e39fdd69ddf301 /static/main.css
parent85345cae323880f107ba5e1928a0eed7301c72f8 (diff)
Add button style rules
Diffstat (limited to 'static/main.css')
-rw-r--r--static/main.css34
1 files changed, 34 insertions, 0 deletions
diff --git a/static/main.css b/static/main.css
index c2aacab7..3ca45ab9 100644
--- a/static/main.css
+++ b/static/main.css
@@ -112,6 +112,27 @@ main {
overflow-wrap: break-word;
}
+button {
+ color: white;
+ font-size: 0.9em;
+ font-weight: bold;
+ letter-spacing: 0.0892857143em;
+ background-color: #1976d2; /* blue700 */
+ border-radius: 4px;
+ border: none;
+ padding: 0.5rem 1rem;
+}
+
+button:hover {
+ background-color: #3486d8;
+ cursor: pointer;
+}
+
+button:focus {
+ background-color: #5097dd;
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
+}
+
.coin-address {
display: block;
margin-left: auto;
@@ -248,6 +269,19 @@ td {
color: rgba(255, 255, 255, 0.87); /* 87% white */
}
+ button {
+ color: black;
+ background-color: #82b1ff; /* blueA100 */
+ }
+
+ button:hover {
+ background-color: #729ce0;
+ }
+
+ button:focus {
+ background-color: #6387c2;
+ }
+
code, pre {
background-color: #424242; /* grey800 */
}