-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles2.css
68 lines (58 loc) · 1.42 KB
/
styles2.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
body {
margin: 0;
padding: 0;
font-family: 'Poppins', Arial, sans-serif;
background-color: #1e1e1e; /* Dark background color */
color: #fff;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.navbar {
margin-bottom: 20px;
}
.navbar-list {
list-style-type: none;
padding: 0;
display: flex;
gap: 15px;
}
.navbar-item {}
.navbar-link {
background: none;
border: none;
color: white;
font-family: 'Poppins', sans-serif;
font-size: 1em;
cursor: pointer;
text-decoration: none;
}
.navbar-link.active {
font-weight: 600; /* Bold font for active link */
}
.images {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
gap: 20px; /* Add space between the image wrappers */
}
.image-wrapper {
width: 90%; /* Adjust width as needed */
padding: 10px;
background-color: #2e2e2e; /* Greyish-black background */
border: 1px solid #888; /* Small grey border */
border-radius: 15px; /* Rounded corners */
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); /* Subtle white glow */
transition: transform 0.3s, box-shadow 0.3s;
}
.image-wrapper:hover {
transform: scale(1.05); /* Slight zoom effect on hover */
box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); /* Increased glow on hover */
}
.image-wrapper img {
width: 100%;
border-radius: 10px; /* Rounded corners for the image */
}