diff --git a/card/steel.png b/card/steel.png new file mode 100644 index 0000000..14183b3 Binary files /dev/null and b/card/steel.png differ diff --git a/card/t6.png b/card/t6.png new file mode 100644 index 0000000..e5aa445 Binary files /dev/null and b/card/t6.png differ diff --git a/css/buttons.css b/css/buttons.css index 4d80693..7c8a46c 100644 --- a/css/buttons.css +++ b/css/buttons.css @@ -9,6 +9,17 @@ flex-shrink: 0; } +button.formbutton { + background: var(--default-button-background); + border: var(--default-button-border); + font-family: var(--primary-font); + cursor: pointer; + width: 32px; + height: 32px; + padding: 0px; + margin: 2px; +} + .button:hover > a > img:nth-of-type(1) { filter: contrast(50%); } @@ -89,26 +100,17 @@ margin-right: 4px; } -.oddbutton { - position: absolute; -} - -.fakebutton { - display: inline-block !important; - cursor: pointer; -} - -.button:hover, .button.selected { +.button:hover, .button.selected, button.formbutton:hover { background: var(--hover-button-background); border: var(--hover-button-border); } -.button:active { +.button:active, button.formbutton:active { background: var(--active-button-background); border: var(--active-button-border); } -.button.disabled, .longbutton.disabled, .smallbutton.disabled { +.button.disabled, .longbutton.disabled, .smallbutton.disabled, button.formbutton.disabled { background: var(--disabled-button-background); border: var(--disabled-button-border); } diff --git a/logos/full/glively.png b/logos/full/glively.png new file mode 100644 index 0000000..c70f13e Binary files /dev/null and b/logos/full/glively.png differ diff --git a/logos/icon/glively.png b/logos/icon/glively.png new file mode 100644 index 0000000..08fcbce Binary files /dev/null and b/logos/icon/glively.png differ diff --git a/style.css b/style.css index c9bef2b..9e16fc2 100644 --- a/style.css +++ b/style.css @@ -1330,21 +1330,6 @@ heading .button { padding: 8px; } -.formbutton button { - background: none; - color: var(--main-text); - text-decoration: none; - display: flex; - align-items: center; - width: 100%; - height: 100%; - font-family: var(--primary-font); - border: none; - box-sizing: content-box; - padding: 0px; - cursor: pointer; -} - .wrapper table input { width: calc(100% - 20px); }