Implement button styles

This commit is contained in:
Chris Wilson
2020-12-02 23:05:37 -05:00
parent d447dccbb5
commit ce5f8d7267
7 changed files with 98 additions and 24 deletions

View File

@@ -21,8 +21,25 @@ a{
}
button{
padding: 8px 12px;
font-family: Jost, sans-serif;
font-weight: 500;
font-size: 0.9rem;
padding: 10px 17px 11px 16px;
border-radius: 4px;
border-top: 1px solid rgba(0, 0, 0, 0.5);
border-left: 1px solid rgba(0, 0, 0, 0.5);
border-right: 2px solid rgba(0, 0, 0, 0.5);
border-bottom: 2px solid rgba(0, 0, 0, 0.5);
font-kerning: auto;
cursor: pointer;
}
button:active{
border-right: 1px solid rgba(0, 0, 0, 0.5);
border-bottom: 1px solid rgba(0, 0, 0, 0.5);
padding-right: 16px;
padding-bottom: 10px;
margin-bottom: 2px;
}
button.button-grass{