Added style for button on guestbook.

This commit is contained in:
Alexander Andreev 2022-08-25 03:24:25 +04:00
parent 9c2a1506d2
commit 0e4c0c9da3
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F
1 changed files with 16 additions and 0 deletions

View File

@ -1,5 +1,21 @@
::placeholder { color: var(--primary-color); }
button {
background: none;
border: none;
color: var(--text-color);
font: inherit;
padding: 0; }
button.refresh {
color: var(--primary-color); }
button.refresh:hover {
color: var(--secondary-color);
cursor: pointer;
text-decoration: underline dotted;
transition: .5s; }
#new-post {
display: grid;
gap: .5rem;