-
Notifications
You must be signed in to change notification settings - Fork 0
/
img-grd.css
90 lines (87 loc) · 1.64 KB
/
img-grd.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
* {
font-weight: 400;
}
.pictures{
padding: 0;
width: 300px;
height: 250px;
z-index: 50;
margin-left: 10px;
margin-right: 10px;
object-fit: cover;
/* border-radius: 20px; */
margin: 10px 10px 10px 10px;
margin: auto;
margin-left: auto;
margin-right: auto;
cursor: pointer;
filter: saturate(0);
/* border: 1px solid #fff; */
}
.pictures:hover{
transform: translateY(-5px);
transition: 0.25s;
border: 15px solid;
border-image-source: url(/img/plus.png);
filter: saturate(2);
/* border-color: #fff;
border-style: solid;
border-width: 1px; */
/* box-shadow: 5px 5px 50px #ffffff7c; */
}
.grid-master{
display: grid;
column-gap: 50px;
row-gap: 50px;
border: none;
height: 100%;
margin-bottom: 50px;
}
.grid-master img{
display: flex;
flex-direction: row;
}
.img-info{
display: flex;
flex-direction: column;
padding: 20px;
z-index: 50;
margin-left: 10px;
margin-right: 10px;
object-fit: cover;
border-radius: 20px;
margin: 10px 10px 10px 10px;
margin-left: auto;
margin-right: auto;
cursor: pointer;
}
.caption{
font-size: 30px;
}
.cap-info{
font-size: 20px;
color: #fff;
}
.link{
color: #fff;
}
@media (min-width: 1500.01px){
.grid-master{
grid-template-columns: 1fr 1fr 1fr 1fr;
}
}
@media (min-width: 1150.01px) and (max-width: 1500px){
.grid-master{
grid-template-columns: 1fr 1fr 1fr;
}
}
@media (max-width: 1150px){
.grid-master{
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 740px){
.grid-master{
grid-template-columns: 1fr;
}
}