diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2021-06-04 17:08:53 +0200 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2021-06-04 17:08:53 +0200 |
| commit | 2f9cd43f44f8cdd4bdb16bb95a507b5f45c8e44d (patch) | |
| tree | 34fd744bf9475fdc977fc697331854db61d0f15c /client/style | |
| parent | 0114244663fbb8cd45a7cc4489bda469b31f0698 (diff) | |
server and response api
Diffstat (limited to 'client/style')
| -rw-r--r-- | client/style/main.css | 28 | ||||
| -rw-r--r-- | client/style/shoppingbasket.css | 2 |
2 files changed, 29 insertions, 1 deletions
diff --git a/client/style/main.css b/client/style/main.css index 7ec539a..c828d62 100644 --- a/client/style/main.css +++ b/client/style/main.css @@ -113,6 +113,7 @@ article { outline-offset: 4px; margin: 20px; } + .front { display: block; padding: 12px 42px; @@ -126,6 +127,16 @@ article { cubic-bezier(.3, .7, .4, 1); } +.disabled { + display: block; + padding: 12px 42px; + border-radius: 12px; + font-size: 1.25rem; + background: grey; + color: white; + transform: translateY(-2px); +} + .orderbutton:hover .front { transform: translateY(-6px); transition: @@ -134,6 +145,23 @@ article { cubic-bezier(.3, .7, .4, 1.5); } + .orderbutton:active .front { transform: translateY(-2px); } + +.orderbutton:active .disabled { + transform: translateY(-2px); +} + +.orderbutton:hover .disabled { + transform: translateY(-2px); +} + + + + +.cancel .front { + font-size: 1rem; + padding: 6px 15px; +} diff --git a/client/style/shoppingbasket.css b/client/style/shoppingbasket.css index 44990ad..871a380 100644 --- a/client/style/shoppingbasket.css +++ b/client/style/shoppingbasket.css @@ -1,3 +1,3 @@ article { height: auto; -}
\ No newline at end of file +} |
