some nice css tweaks :3
This commit is contained in:
parent
1d98a6fdca
commit
5341ff3033
8 changed files with 45 additions and 60 deletions
|
|
@ -430,6 +430,39 @@ input[disabled] {
|
|||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.actions {
|
||||
margin-top: .5em;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: .5em;
|
||||
user-select: none;
|
||||
color: var(--fg-3);
|
||||
}
|
||||
.actions a,
|
||||
.actions button {
|
||||
padding: .3em .5em;
|
||||
display: inline-block;
|
||||
|
||||
border-radius: 4px;
|
||||
background-color: var(--bg-3);
|
||||
box-shadow: var(--shadow-sm);
|
||||
|
||||
transition-property: color, background, transform;
|
||||
transition-duration: .1s;
|
||||
transition-timing-function: ease-out;
|
||||
}
|
||||
.actions a:hover,
|
||||
.actions button:hover {
|
||||
background-color: var(--bg-0);
|
||||
color: var(--fg-3);
|
||||
text-decoration: none;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media screen and (max-width: 720px) {
|
||||
main {
|
||||
padding-top: 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue