forked from CodeYourFuture/HTML-CSS-Module-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.css
More file actions
146 lines (119 loc) · 2.34 KB
/
Copy pathstore.css
File metadata and controls
146 lines (119 loc) · 2.34 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
header {
background-color: #fff;
padding: 20px;
}
header nav {
display: flex;
justify-content: space-between;
align-items: center;
}
header nav .logo {
font-size: 1.5rem;
font-weight: bold;
color: #ff6633; /* Logo color */
}
header nav ul {
display: flex;
list-style: none;
}
header nav ul li {
margin-left: 20px;
}
header nav ul li a {
font-size: 1rem;
color: #333;
}
#store-container {
display: flex;
flex-direction: row-reverse;
justify-content: space-between;
align-items: flex-start;
gap: 40px; /* Adds space between image and form */
padding: 20px;
background-color: #f5f0ef;
}
#store-image-section {
width: 100%; /* Adjust size to fit layout */
}
.store-image {
width: 100%;
height: auto;
object-fit: cover;
}
#store-form-section {
width: 100%; /* Adjust size to fit layout */
}
.store-form {
display: flex;
flex-direction: column;
gap: 15px; /* Add space between form fields */
}
.store-form h2 {
margin-bottom: 20px;
text-align: center;
font-size: 2rem;
color: rgb(250, 166, 10);
}
.store-form label {
margin-bottom: 5px;
font-weight: bold;
}
.store-form input,
.store-form select {
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1rem;
}
.store-form input[type="radio"],
.store-form input[type="checkbox"] {
width: auto;
margin-right: 10px;
}
.store-form button {
padding: 10px 20px;
background-color: #e15526;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1.2rem;
}
.store-form button:hover {
background-color: #d0441e;
}
.form-group {
margin-bottom: 1.5rem;
}
.input-group {
display: flex;
justify-items: flex-start;
margin-bottom: 1rem; /* Add space between form fields */
}
input[type="checkbox"], input[type="radio"] {
margin-left: 10px; /* Add space between input and label */
}
/* Footer Styles */
footer {
padding: 20px;
background-color: #fff;
text-align: center;
border-top: 1px solid #ddd;
}
footer p {
margin-bottom: 10px;
font-size: 0.9rem;
color: #666;
}
footer .social {
list-style: none;
display: flex;
justify-content: center;
gap: 15px;
}
footer .social li {
display: inline-block;
}
footer .social li img {
width: 25px;
}