Skip to content

Commit

Permalink
Fix logos.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Jun 18, 2022
1 parent c631e68 commit 9d7b59d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion admin/static/logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 11 additions & 7 deletions admin/static/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
:root {
--primary: #00aa44;
--primary: #b78900;
--bright: #ffcc00;
--secondary: #333;
--light: #999;
}
Expand Down Expand Up @@ -56,24 +57,27 @@ select {
background: #fff;
}
input[type="submit"], input[type="button"], button {
background: var(--primary);
border-color: var(--primary);
color: #fff;
background: var(--bright);
color: var(--secondary);
font-weight: bold;
cursor: pointer;
width: auto;
min-width: 100px;
padding: 12px 20px;

border-radius: 5px;
border: 1px solid var(--secondary);
box-shadow: 2px 2px 0 #ecbd00;

}
input[type="submit"]:hover, button:hover {
background: var(--secondary);
border-color: var(--secondary);
opacity: 0.7;
}
input[type="submit"].button-outline,
input[type="button"].button-outline,
button.button-outline {
background: #fff;
color: var(--primary);
color: var(--secondary);
}
input[type="submit"].button-outline:hover,
input[type="button"].button-outline:hover,
Expand Down

0 comments on commit 9d7b59d

Please sign in to comment.