Style buttons
This commit is contained in:
parent
0a4a1ab30c
commit
5c97a6303f
1 changed files with 16 additions and 0 deletions
|
@ -19,3 +19,19 @@ a {
|
|||
filter: brightness(135%);
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: var(--color-light);
|
||||
border: 1px solid var(--color-lighter);
|
||||
border-radius: 10px;
|
||||
text-shadow: 0 0 2px black;
|
||||
color: white;
|
||||
|
||||
&:hover {
|
||||
box-shadow: 0 0 2px 2px var(--color-lighter);
|
||||
}
|
||||
|
||||
&:not(:disabled) {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue