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

View File

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