-
Notifications
You must be signed in to change notification settings - Fork 0
/
opction.html
188 lines (164 loc) · 4.64 KB
/
opction.html
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<title>Bid Bazzar</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #800080;
}
<<<<<<< HEAD
.container {
=======
.container {
>>>>>>> origin/main
display: flex;
justify-content: space-around;
align-items: center;
height: 100vh;
}
.login-option {
width: 28%;
padding: 20px;
border-radius: 10px;
text-align: center;
color: #fff;
cursor: pointer;
transition: all 0.5s ease;
}
#user{
animation: fadeInLeft;
animation-duration: 2s;
}
#login{
animation: fadeInRight;
animation-duration: 2s;
}
#vender{
animation: fadeIn;
animation-duration: 3s;
}
.login-option:hover {
transform: scale(1.05);
box-shadow: 0px 1px 5px black;
}
.login-user {
background-color: #A569BD;
}
.login-vendor {
background:linear-gradient(90deg,#A569BD, #2C3E50);
}
.login-again {
background-color: #2C3E50;
}
.login-option h2 {
margin: 0;
padding-bottom: 10px;
}
.btn,.sbtn,.btnlogin{
background-color: #A569BD;
width: 20%;
height: 6vh;
border-radius: 5px;
border:2px solid white;
transition: all ease 0.5s;
font-weight: bold;
color: white;
}
.sbtn{
background:linear-gradient(90deg, #A569BD, #2C3E50);
}
.sbtn:hover{
transform: scale(1.09);
background:linear-gradient(90deg,#df8dff, #17202a);
color: white;
}
.btn:hover{
transform: scale(1.09);
background-color: #800080;
color: aliceblue;
}
.btnlogin{
background-color: #2C3E50;
}
.btnlogin:hover{
transform: scale(1.09);
background-color: #434547;
color: white;
}
<<<<<<< HEAD
=======
@media screen and (max-width: 768px) {
.container {
display: block;
justify-content: space-around;
align-items: center;
height: 100vh;
}
.login-vendor {
background:linear-gradient(180deg,#A569BD, #2C3E50);
}
.sbtn{
background:linear-gradient(180deg, #A569BD, #2C3E50);
}
.login-option {
width: 80%;
margin-left:15px;
margin-top:15px;
padding: 20px;
border-radius: 10px;
text-align: center;
color: #fff;
cursor: pointer;
transition: all 0.5s ease;
}
#user{
margin-top:17%;
}
.btn,.sbtn,.btnlogin{
background-color: #A569BD;
width: 30%;
height: 6vh;
border-radius: 5px;
border:2px solid white;
transition: all ease 0.5s;
font-weight: bold;
color: white;
}
.btnlogin{
background-color: #2C3E50;
}
}
>>>>>>> origin/main
</style>
</head>
<body>
<div class="container">
<div class="login-option login-user" id="user">
<!-- <div class="animate__animated animate__fadeInLeft"> -->
<h2 >SignUp as User</h2>
<p>Click here to SignUp as a User</p>
<a href="singup.php" style="color: #fff; text-decoration: none;"><button class="btn">SignUp</button></a>
<!-- </div> -->
</div>
<div class="login-option login-vendor" id="vender">
<h2>SignUp as Vendor</h2>
<p>Click here to SignUp as a Vendor</p>
<a href="vender_singup.php" style="color: #fff; text-decoration: none;"><button class="sbtn">SignUp</button></a>
</div>
<div class="login-option login-again" id="login">
<h2>Back To Login</h2>
<p>Click here to Login</p>
<a href="login.php" style="color: #fff; text-decoration: none;"><button class="btnlogin">Login</button></a>
</div>
</div>
</body>
</html>