Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
inventionpro authored Aug 3, 2024
1 parent ce3badc commit 95fdda3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ body {
margin-top: 10px;
padding: 5px;
border-radius: 0.25rem;
background-color: var(--bg-light);
background-color: var(--bg-3);
text-align: left;
transition: 500ms;
display: flex;
}
.card:hover {
background-color: var(--bg-dim);
background-color: var(--bg-2);
}
.card div {
flex: 1;
Expand Down Expand Up @@ -67,21 +67,21 @@ textarea {
/* Order */
.order {
display: flex;
width: 50%;
width: 51%;
margin-inline: auto;
justify-content: flex-end;
}
.order div {
display: flex;
width: fit-content;
background-color: var(--bg-light);
background-color: var(--bg-3);
padding: 2px 6px 2px 2px;
border-radius: 0.5rem;
cursor: pointer;
transition: 500ms;
}
.order div:hover {
background-color: var(--bg-dim);
background-color: var(--bg-2);
}

/* Data menu */
Expand All @@ -90,7 +90,7 @@ textarea {
bottom: 0;
left: 0;
padding: 10px 15px;
background-color: var(--bg-light);
background-color: var(--bg-3);
border-radius: 0 1rem 0 0;
}

Expand Down Expand Up @@ -120,10 +120,10 @@ textarea {
left: 5px;
height: 20px;
width: 20px;
background-color: var(--text);
background-color: var(--text-1);
border-radius: 0.25rem;
transition: 500ms;
}
.card:hover input ~ .checkmark {
background-color: var(--text-dim);
background-color: var(--text-2);
}

0 comments on commit 95fdda3

Please sign in to comment.