-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyles.css
104 lines (92 loc) · 1.58 KB
/
styles.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
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
body{
box-sizing: border-box;
margin: 0;
padding: 0;
}
.navbar{
font-family: 'Montserrat Alternates', sans-serif;
}
#category{
padding: 5% 6%;
}
#product-cards{
padding: 5% 10%;
}
#footer{
margin-bottom: 2%;
margin-top: 2%;
}
.filter-btns{
text-align: center;
}
.filter-btn{
background: none;
cursor: pointer;
border: none;
font-family: inherit;
text-transform: uppercase;
display: inline-block;
margin: 10px 30px;
font-size: 16px;
color: #d3d3d3;
font-weight: 600;
letter-spacing: 2px;
position: relative;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.filter-btn::after{
content: "";
position: absolute;
top: 110%;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
height: 2px;
width: 0;
background-color: #555;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out
}
.filter-btn:hover{
color: #555;
}
.filter-btn:hover::after{
width: 100%;
}
/* active button */
.active-btn{
color: #555;
}
.active-btn::after{
width: 100%;
}
.canvas-title{
text-align: center;
}
/* Shopping Cart */
.btn-purchase{
text-align: center;
margin: auto;
padding: 2%;
width: 50%;
}
#shopping-cart{
padding: 5% 5%;
}
.cart-total{
text-align: right;
font-size: 1.3rem;
}
.up-icon{
color: black;
position: fixed;
float: right;
z-index: 1;
left: 95%;
top: 85%;
font-size: 2rem;
}