-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
114 lines (99 loc) · 1.97 KB
/
Copy pathstyles.css
File metadata and controls
114 lines (99 loc) · 1.97 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
body {
font-family: Arial, sans-serif;
background-color: #f0fff0; /* Light Green */
color: #2c5e2e;
text-align: center;
margin: 0;
padding: 0;
}
header {
background-color: #4CAF50;
color: white;
padding: 20px;
}
h1 {
margin: 0;
}
button {
background-color: #4CAF50;
color: white;
border: none;
padding: 10px 20px;
margin: 10px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #45a049;
}
/* Intro Page */
.intro-page {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
}
/* Forms */
form {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
input, select {
padding: 8px;
font-size: 16px;
width: 80%;
max-width: 300px;
}
/* Dashboard Styles */
.product-list {
margin-top: 20px;
}
.product {
border: 1px solid #4CAF50;
padding: 15px;
margin: 10px auto;
width: 80%;
max-width: 400px;
background-color: white;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
/* User Form Styling */
.user-details-container {
max-width: 400px;
margin: 50px auto;
padding: 20px;
background: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
.user-details-container h1 {
color: #4CAF50;
}
.user-details-container form {
display: flex;
flex-direction: column;
gap: 10px;
}
.user-details-container input,
.user-details-container select {
padding: 10px;
font-size: 16px;
width: 100%;
border: 1px solid #4CAF50;
border-radius: 5px;
}
.user-details-container button {
background-color: #4CAF50;
color: white;
padding: 10px;
font-size: 16px;
cursor: pointer;
border: none;
border-radius: 5px;
}
.user-details-container button:hover {
background-color: #45a049;
}