-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboolando.css
More file actions
81 lines (66 loc) · 967 Bytes
/
boolando.css
File metadata and controls
81 lines (66 loc) · 967 Bytes
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.contenitore{
margin: 30px auto;
max-width: 80%;
}
.box{
margin: auto;
display: inline-block;
padding: 10px;
}
.box-img{
width: 350px;
height: 550px;
position: relative
}
img{
width: 100%;
height: 100%;
}
.img-hover{
display: none;
}
.box-img:hover .img-top{
display: none;
}
.box-img:hover .img-hover{
display: initial;
}
.heart{
padding: 0px 10px;
font-size: 30px;
background-color: white;
position: absolute;
right: 0;
top: 10px;
}
.heart:hover{
color: red;
}
.mini-container{
position: absolute;
bottom: 20px;
}
.sconto, .sostenibile{
font-weight: bolder;
color: white;
padding: 5px;
}
.sconto{
background-color: red;
margin-right: 5px;
}
.sostenibile{
background-color: green;
}
.prezzo{
color: red;
}
.sbarrato{
text-decoration: line-through;
color: black;
}