Style buttons as links.

This commit is contained in:
Alexander Andreev 2022-08-31 08:05:41 +04:00
parent a0dabfd93c
commit 587f4db08a
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F
1 changed files with 11 additions and 2 deletions

View File

@ -26,16 +26,25 @@
background-color: var(--secondary-color);
color: var(--background-color); }
a {
a,
button {
color: var(--primary-color);
text-decoration: none;
word-wrap: break-word; }
a:hover {
a:hover,
button:hover {
color: var(--secondary-color);
text-decoration: underline dotted;
cursor: pointer;
transition: .5s; }
button {
background: none;
border: none;
font: inherit;
padding: 0; }
p {
text-align: justify;
line-height: var(--text-indent);