Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSchoolOH authored Apr 24, 2024
1 parent 068e3c3 commit 71f78e8
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,30 @@ a:active {
font-weight: 800;
}

button {
border-style: solid;
border-color: #00000000;
border-radius: 0.5rem;
border-width: 4px;
background-color: var(--background-3);
font-size: large;
color: var(--text-main);
cursor: pointer;
transition: all 150ms ease-in-out;
}

button:hover {
background-color: var(--background-1);
color: var(--link-hover);
cursor: pointer;
}

button:active {
background-color: var(--background-3);
color: var(--link-active);
cursor: pointer;
}

.penPlus-contents {
margin-left: 50%;
width: 50%;
Expand Down Expand Up @@ -110,4 +134,4 @@ a:active {
text-align: center;
margin-left: 100%;
transform: translate(-100%,0px);
}
}

0 comments on commit 71f78e8

Please sign in to comment.