-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles5.css
More file actions
92 lines (81 loc) · 1.63 KB
/
styles5.css
File metadata and controls
92 lines (81 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #dec5ab98; /* Soft cream background */
color: #4A4A4A;
line-height: 1.6;
padding: 20px;
}
.container {
max-width: 600px;
margin: 0 auto;
background-color: #FFFFFF;
padding: 30px;
border-radius: 15px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #363533; /* Soft peach */
margin-bottom: 30px;
font-size: 2.2em;
}
h2 {
color: #5e5d57;
margin: 20px 0 15px 0;
font-size: 1.5em;
}
input, select {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: 1px solid #5e5e57; /* Light peach border */
border-radius: 8px;
font-size: 16px;
transition: border-color 0.3s ease;
}
input:focus, select:focus {
outline: none;
border-color: #fffefe;
box-shadow: 0 0 5px rgba(255, 154, 139, 0.3);
}
button {
width: 100%;
padding: 15px;
background-color: #4a4544;
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
margin-top: 20px;
}
button:hover {
background-color: #474443;
}
#cart-summary {
margin-bottom: 30px;
padding: 15px;
background-color: #FFF9F8; /* Very light peach */
border-radius: 8px;
}
#order-total {
margin: 20px 0;
padding: 15px;
background-color: #ffffff;
border-radius: 8px;
font-weight: bold;
text-align: right;
}
@media (max-width: 768px) {
.container {
padding: 20px;
margin: 10px;
}
}