-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
130 lines (111 loc) · 1.98 KB
/
styles.css
File metadata and controls
130 lines (111 loc) · 1.98 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#wrapper {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.container {
flex: 1;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.container h1 {
margin: 20px 100px;
text-align: center;
margin-bottom: 20px;
font-size: 3rem;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.card {
width: 32%;
position: relative;
margin-bottom: 20px;
border-radius: 10px;
overflow: hidden;
}
.card img {
width: 100%;
height: 100%;
filter: grayscale(100%);
box-shadow: 0 0 20px #333;
object-fit: cover;
}
.card:hover {
transform: scale(1.03);
transition: 0.5s;
filter: drop-shadow(0 0 10px #333);
}
.card:hover img {
filter: grayscale(0%);
}
.card figcaption {
position: absolute;
bottom: 0;
left: 0;
padding: 25px;
width: 100%;
height: 20%;
font-size: 20px;
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);
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 20px 0;
box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
margin-top: 20px;
}
footer .contact-container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
footer .contact-container h2 {
margin-top: 0;
font-size: 2rem;
}
footer .contact-container p {
margin: 10px 0;
}
footer .contact-container a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
}
footer .contact-container a:hover {
color: #ffcc00;
}
footer .social-media {
margin-top: 20px;
}
footer .social-icon {
display: inline-block;
margin: 0 10px;
padding: 10px;
border: 1px solid white;
border-radius: 50%;
transition: background-color 0.3s ease, color 0.3s ease;
}
footer .social-icon:hover {
background-color: white;
color: #333;
}