-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7-Ecommerce ui
89 lines (89 loc) · 2.03 KB
/
7-Ecommerce ui
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ui</title>
<style>* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
width: 100%;
font-family: sans-serif;
}
.main {
display: flex;
position: relative;
}
.vl {
border-left:4px solid black;
height: 350px;
margin-left:0.5rem;
}
.ready {
border: 2px solid #32d367;
border-left: none;
border-radius: 0px 200px 21px 0px;
justify-content: center;
align-items: center;
height: 250px;
width: 65%;
margin-top: 3rem;
padding:4rem;
flex-direction: column;
}
.text {
color: #5553b7;
}
button {
height: 36px;
border-radius: 25px;
width: 120px;
margin-top:1rem;
}
.free {
background-color: #00ff00;
border:none;
color: rgb(244, 244, 244);
}
.demo {
background-color: white;
color: #5553b7;
border: 2px solid #5553b7;
}
.Second {
display: flex;
background-color: rgba(166, 166, 238, 0.4);
width: 55%;
height: 150px;
margin-top: 12rem;
margin-left: 35rem;
right:0;
transform: translateY(-50%);
border-radius: 200px 0px 0px 0px;
position: absolute;
backdrop-filter: blur(3px);
}
</style>
</head>
<body>
<!--Contents of the webpage-->
<div class="main">
<div class="vl"></div>
<div class="ready">
<h1>Ready to Automate your
<br>
<span class="text">E-Commerce store?</span>
</h1>
<button type="button" class="free">Try for free</button>
<button type="button" class="demo">Book a demo</button>
</div>
<div class="Second"></div>
</div>
</body>
</html>