Style buttons as links.
This commit is contained in:
parent
a0dabfd93c
commit
587f4db08a
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user