-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductos.css
111 lines (95 loc) · 1.68 KB
/
productos.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
105
106
107
108
109
110
111
.title-products{
font-weight: lighter;
text-align: center;
margin: 10px 0 30px 0;
}
.search-input{
float: left;
padding: 10px;
width: 50%;
border: 0;
outline: 0;
background: transparent;
border-image: none;
outline-offset: -2px;
border-color: transparent;
outline-color: transparent;
box-shadow: none;
-webkit-appearance: none;
border-bottom: 1px solid var(--color-gray);
}
.search-input:focus{
box-shadow: none;
}
.select-order{
float: right;
padding: 10px;
cursor: pointer;
border: 0;
outline: 0;
background: transparent;
border-image: none;
outline-offset: -2px;
border-color: transparent;
outline-color: transparent;
box-shadow: none;
}
.product-box{
text-align: center;
color: black;
text-decoration: none;
}
a:hover{
color: var(--color-primary-dark);
text-decoration: none;
}
.product-box img{
transition: all .5s ease;
}
.product-box:hover img{
transform: scale(1.1);
}
.product-box h3{
font-size: 14px;
font-weight: normal;
margin: 5px;
overflow: hidden;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
white-space: nowrap;
}
.product-box .offer{
color: red;
text-transform: uppercase;
font-weight: bold;
}
.product-box .offer.hidden{
visibility: hidden;
}
.product-box strong del{
font-size: 14px;
font-weight: normal;
margin-bottom: 5px;
}
.product-box .price{
font-size: 18px;
}
.pagination{
text-align: center;
list-style: none;
margin-right: 10px;
font-size: 18px;
}
.pagination li{
display:inline-block;
}
.pagination li a{
color: black;
padding: 5px;
width: 30px;
text-align: center;
display: inline-block;
}
.pagination li a.active{
border: 1px solid black;
}