Add button style rules

This commit is contained in:
Marco Janotta 2021-06-24 18:13:07 +02:00 committed by Daniel Micay
parent 85345cae32
commit e5882d821c

View File

@ -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 */
}