source: CookCraft-FrontEnd/CookCraft-FrontEnd-master/cookcraft-app/src/css/DeliveryViewCss/delivery-view.module.css@ d7b7f00

Last change on this file since d7b7f00 was d7b7f00, checked in by Gorazd Biskoski <gorazdbiskoskii@…>, 4 weeks ago

Add project

  • Property mode set to 100644
File size: 1.9 KB
RevLine 
[d7b7f00]1.container {
2 max-width: 1050px;
3 margin: 5em auto;
4 padding: 2em;
5 background-color: #f9f9f9;
6 box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
7 animation: fadeIn 0.5s ease-in-out;
8 position: relative;
9 }
10
11 h1 {
12 text-align: center;
13 margin-bottom: 20px;
14 color: #FFA550;
15 }
16
17 .section {
18 margin-bottom: 40px;
19 }
20
21 .cardsContainer {
22 display: flex;
23 flex-wrap: wrap;
24 gap: 20px;
25 justify-content: center;
26 }
27 strong {
28 color: #FFA550;
29 }
30 .card {
31 background: #f3f3f3;
32 border-radius: 16px;
33 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
34 padding: 20px;
35 width: 320px;
36 text-align: center;
37 transition: transform 0.3s ease, box-shadow 0.3s ease;
38 }
39
40 .card:hover {
41 transform: translateY(-5px);
42 box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
43 }
44
45 .card h3 {
46 margin-top: 0;
47 color: #ff8c00;
48 }
49
50 .card p {
51 margin: 8px 0;
52 color: #444;
53 }
54
55 ul {
56 padding-left: 0;
57 list-style: none;
58 }
59
60 li {
61 margin: 4px 0;
62 color: #666;
63 }
64
65 .button {
66 display: inline-block;
67 padding: 10px 20px;
68 background-color: #FFA550;
69 color: white;
70 border: none;
71 border-radius: 8px;
72 cursor: pointer;
73 margin-top: 10px;
74 transition: background-color 0.3s ease;
75 }
76
77 .button:hover {
78 background-color: #ff8c00;
79 }
80
81 .modal {
82 width: 50%;
83 max-width: 500px;
84 margin: 0 auto;
85 padding: 20px;
86 background-color: white;
87 border-radius: 10px;
88 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
89 }
90
91 .overlay {
92 background-color: rgba(0, 0, 0, 0.5);
93 position: fixed;
94 top: 0;
95 left: 0;
96 right: 0;
97 bottom: 0;
98 display: flex;
99 justify-content: center;
100 align-items: center;
101 }
102
103.backArrow {
104 position: absolute;
105 top: 0px;
106 left: 20px;
107 font-size: 2em;
108 color: #333;
109 cursor: pointer;
110 transition: all 0.3s ease;
111}
112
113.backArrow:hover {
114 color: #FFA550;
115 transform: translateX(-5px);
116}
117
Note: See TracBrowser for help on using the repository browser.