diff options
| author | spl3g <spleefer6@gmail.com> | 2026-06-01 21:23:12 +0300 |
|---|---|---|
| committer | spl3g <spleefer6@gmail.com> | 2026-06-01 21:23:12 +0300 |
| commit | c0fe3e1db70bdba85cf382624817d8d8ea9d6f85 (patch) | |
| tree | 74065ec21768d63f6cc537bdce72b63ddf513b32 /static/css/style.css | |
| parent | 386e9defbea931ebc5139a5db5c74e6f44bbbe02 (diff) | |
add orders list, update, create
Diffstat (limited to 'static/css/style.css')
| -rw-r--r-- | static/css/style.css | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css new file mode 100644 index 0000000..a1c6783 --- /dev/null +++ b/static/css/style.css @@ -0,0 +1,81 @@ +body { + font-family: "Times New Roman", serif; +} + +header { + display: flex; + justify-content: justify-between; + align-items: center; + align-content: center; + background-color: #CACF; + margin: 10px; +} + +.header-left { + font-size: xxx-large; + padding: 10px; +} + +.login-button { + background: none; + border: none; + color: blue; + text-decoration: underline; + cursor: pointer; + padding: 0; + font-family: inherit; + font-size: inherit; +} + +.product-card { + border: solid black 2px; + display: flex; + padding: 10px; +} + +.product-card.sale { + background-color: #2e8b57; +} + +.product-card.out-of-stock { + background-color: aqua; +} + +.product-card .image { + width: 30%; + border: 2px gray solid; +} + +.product-card .details { + flex: 1; + border: solid black 1px; + margin: 0 10px; + padding: 5px; +} + +.product-card .sale { + border: solid black 1px; + + font-weight: bold; + font-size: x-large; + padding: auto; + + display: flex; + align-items: center; + justify-content: center; + width: 15%; +} + +.product-card .delivery { + border: solid black 1px; + padding: auto; + display: flex; + align-items: center; + justify-content: center; + width: 15%; +} + +.old-price { + text-decoration: line-through; + color: red; +} |
