-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
76 lines (74 loc) · 1.32 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Poppins', sans-serif;
color:#333;
}
.wrapper{
height:100vh;
overflow-x:hidden;
overflow-y: auto;
}
.container{
height:100%;
width:1200px;
padding:20px;
margin: 0 auto;
}
.container h1{
text-align: center;
font-size: 40px;
font-weight: bold;
margin-bottom: 20px;
margin: 20px 0;
}
.gallery{
display: flex;
flex-wrap:wrap;
justify-content: space-between;
}
.card{
width:32%;
margin-bottom: 20px;
border-radius: 10px;
position: relative;
overflow: hidden;
object-fit: cover;
}
.card img{
width:100%;
height: 100%;
filter:grayscale(100%);
box-shadow: 0 0 20px #333;
}
.card:hover{
transform: scale(1.03);
filter:drop-shadow(0 0 10px #333);
box-shadow: 0 0 20px #333;
transition: 0.3s;
}
.card figcaption{
position: absolute;
bottom: 0;
left: 0;
padding: 25px;
width: 100%;
height: 20%;
font-size: 16px;
font-weight: 500;
color: #fff;
opacity: 0;
border-radius: 0 0 10px 10px;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
transition: 0.3s;
}
.card:hover figcaption{
opacity: 1;
transform:scale(1.03);
}
.card:hover img{
filter:grayscale(0%);
}