-
Notifications
You must be signed in to change notification settings - Fork 1
/
sportinghuthome_css.html
69 lines (59 loc) · 1.07 KB
/
sportinghuthome_css.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
<style>
* {
font-family: 'Bungee', cursive;
}
html, body {
margin: 0;
padding: 0;
}
#banner {
display: flex;
position: fixed;
justify-content: space-between;
box-shadow: 0 5px 5px #3a3a3a;
padding: 10px 30px;
width: 100%;
background-color: white;
}
#banner_image {
width: 100%;
padding-top: 80px;
}
#banner input {
margin: 20px;
padding: 0 10px;
width: 40vw;
}
#banner i {
cursor: pointer;
font-size: 30px!important;
transform: translateY(30%)!important;
}
#products_container {
display: grid;
grid-template-columns: auto auto;
grid-row-gap: 40px;
text-align: center;
padding: 60px 200px;
}
.product {
cursor: pointer;
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.product img {
width: 200px;
}
#product_highlight {
display: grid;
grid-template-columns: auto auto;
text-align: center;
grid-gap: 5px;
padding: 30px 50px 30px 0;
}
#product_highlight img{
width: 500px;
}
</style>