Skip to content

Commit

Permalink
Better style.
Browse files Browse the repository at this point in the history
  • Loading branch information
J08nY committed Mar 11, 2024
1 parent 8f7aeea commit 001da71
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,34 @@

@import "{{ site.theme }}";

.page-header {
color: black;
background-color: white;
background-image: none;
}

.btn {
color: rgb(96, 108, 113);
background-color:rgba(239, 239, 239, 0.5);
border-color: rgba(96, 108, 113, 0.7);
padding: 0.75rem 1rem;
border-width: 1px;
border-style: solid;
border-radius: 0.3em;
transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}


.btn:hover {
color: rgba(96, 108, 113, 0.7);
background-color:rgba(239, 239, 239, 0.7);
border-color: rgba(96, 108, 113, 0.7);
}


#tool-links {
margin-top: 2em; margin-bottom: 2em;
margin-top: 2em;
margin-bottom: 2em;
}

#tool-links button {
Expand Down

0 comments on commit 001da71

Please sign in to comment.