-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (71 loc) · 1.41 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
font-family: 'Poppins', sans-serif;
}
header {
height: 100vh;
width: 100%;
background-image: linear-gradient(90deg, rgb(0, 0, 0, 0.8), rgb(0, 0, 0, 0.8)), url("images/LMC_20220912_132023.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
}
.header-social-icons {
display: flex;
justify-content: center;
align-items: center;
}
.header-social-icons a {
color: rgb(150, 147, 147);
transition: all 0.3s ease;
text-decoration: none;
}
.header-social-icons a:hover {
color: #fff;
}
.header-social-icons a i {
font-size: 28px;
margin: 0 10px;
}
.bg-black {
background: #000;
}
.information {
margin-top: 50px;
}
.information img {
height: 480px;
}
.margin-top-50px {
margin-top: 50px;
}
.padding-bottom-150px {
padding-bottom: 150px;
}
.my-gallery-pic img {
/* width: 300px; */
border: 2px solid #ffbb00;
padding: 5px;
margin: 5px 0;
}
.family-gallery-pic img {
height: 500px;
object-position: top;
object-fit: cover;
}
.footer-copy {
color: rgb(204, 198, 198);
margin-bottom: 0;
}
.who-gallery {
max-width: 600px;
margin: 0 auto;
}
.who-gallery img {
height: 500px;
object-fit: contain;
object-position: center;
}