-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
45 lines (40 loc) · 1.4 KB
/
test.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
<html>
<head></head>
<style>
.wrapper {
display: flex;
position: relative;
flex-direction: column;
background-color: #FF5C00;
width: 100%;
align-items: center;
justify-content: center;
background-color: #FF5C00;
}
@media screen and (min-width: 750px) {
.wrapper {
width: 100%;
/* min-height: 56rem; */
flex-direction:row;
align-items: center;
justify-content: center;
}
}
.lower, .top{
height: 400px;
}
</style>
<body>
<a href="https://sparklytails.com/collections/all" target="_blank">
<div class="wrapper">
<div class="top">
<img src="https://cdn.shopify.com/s/files/1/0684/2020/6894/files/1_ea56fedb-9a1c-4f7c-8b6e-afd8e9344a69.png"/>
</div>
<div class="lower">
<img src="https://cdn.shopify.com/s/files/1/0684/2020/6894/files/2_e66dcb73-e4e9-406a-816f-4f64b93f3296.png" />
</div>
</div>
<div><a href="https://sparklytails.com/collections/all" class="button button--primary">Shop All</a></div>
</a>
</body>
</html>