-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathecommerce3.css
75 lines (60 loc) · 1 KB
/
ecommerce3.css
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: rgb(239,239,239);
}
.navbar-nav{
width: 100%;
}
.navbar{
height: 3rem;
}
.top-title{
padding: 30px 0 30px 0;
}
.nav-under{
position: absolute;
left: 10%;
right: 10%;
background-color: white;
}
.sect1{
background-color: white;
}
.cement-breaker{
background-color: rgb(239,239,239);
height: 2rem;
}
.products{
background-color: white;
width: 100%;
}
#product-image{
height: 13rem;
width: 150px;
border: 5px double rgb(239,239,239);
}
.boxes{
margin-top: 2.5rem;
text-align: center;
}
.boxes h4{
margin-left: 20px;
font-size: 20px;
color: rgb(0, 153, 255);
}
.boxes p{
margin-left: 10px;
font-weight: bold;
}
.boxes button{
margin-left: 20px;
margin-top: -.3rem;
}
.products {
display: grid;
grid-template-columns: repeat(4,1fr);
}