tweak buttons
This commit is contained in:
parent
89fa3cce71
commit
888766df6e
|
@ -209,16 +209,39 @@ button,input[type="submit"],input[type="reset"],select,textarea {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border: 1px solid var(--theme);
|
border: 1px solid var(--theme);
|
||||||
color: var(--theme);
|
color: var(--theme);
|
||||||
background-color: var(--bg);
|
background: var(--bg);
|
||||||
border-radius: var(--radius);
|
border-radius: var(--radius);
|
||||||
padding: 0 var(--space);
|
padding: 0 var(--space);
|
||||||
margin-bottom: var(--space);
|
margin-bottom: var(--space);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="submit"],input[type="reset"] {
|
input[type="submit"],
|
||||||
background-color: var(--theme);
|
input[type="reset"] {
|
||||||
color: var(--bg);
|
background: var(--theme);
|
||||||
|
color: var(--fg);
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="reset"] {
|
||||||
|
color: var(--fg);
|
||||||
|
background: var(--bg);
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
background: var(--gray);
|
||||||
|
border: none;
|
||||||
|
color: var(--fg);
|
||||||
|
}
|
||||||
|
|
||||||
|
button:hover,
|
||||||
|
input[type="submit"]:hover,
|
||||||
|
input[type="reset"]:hover {
|
||||||
|
background: var(--fg);
|
||||||
|
border-bottom: 1px solid var(--bg);
|
||||||
|
color: var(--theme);
|
||||||
|
font-weight: bold;
|
||||||
|
letter-spacing: .1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
|
|
Loading…
Reference in New Issue