-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy.css
More file actions
114 lines (100 loc) · 2.08 KB
/
my.css
File metadata and controls
114 lines (100 loc) · 2.08 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
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #180909;
animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.login-page {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background:url(shopping\ 2.jpg) ;
}
.login-container {
background: rgba(25, 137, 107, 0.922);
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
text-align: center;
width: 300px;
}
h1, h2 {
color: #333;
}
.form-container input[type="text"], .form-container input[type="password"] {
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 5px;
border: 1px solid #ddd;
}
button {
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
opacity: 0.9;
}
/* Store Page Styles (Enhanced Colors and Animations) */
header {
background: #6a11cb;
color: #fff;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
#cart {
font-size: 1.2em;
cursor: pointer;
}
.product {
background: #fff;
border: 1px solid #ddd;
border-radius: 5px;
margin: 15px;
padding: 15px;
width: 220px;
text-align: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: transform 0.2s, box-shadow 0.2s;
}
.product:hover {
transform: scale(1.05);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* Modal Styles */
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
background-color: #fff;
margin: 15% auto;
padding: 20px;
border-radius: 5px;
width: 80%;
max-width: 600px;
}
.close-button {
color: #aaa;
font-size: 28px;
font-weight: bold;
float: right;
cursor: pointer;
}