-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
71 lines (67 loc) · 1.83 KB
/
styles.css
File metadata and controls
71 lines (67 loc) · 1.83 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
body {
max-width: 980px;
margin: auto;
padding: 20px;
font-family: 'Helvetica Neue', Arial, sans-serif; /* Body text font */
/* line-height: 1.6; */
background-color: #ffffff; /* Background color */
color: #222; /* Font color */
}
header {
text-align: center;
font-family: 'Montserrat', sans-serif; /* Main title font */
font-size: 1em; /* Main title size */
color: #333; /* Title color */
margin-bottom: 40px;
}
h2 {
font-family: 'Montserrat', sans-serif; /* Section title font */
font-size: 1.8em; /* Section title size */
color: #444; /* Section title color */
}
h1 {
font-family: 'Montserrat', sans-serif; /* Main title font */
font-size: 2.5em; /* Main title size */
color: #333; /* Title color */
}
p {
font-size: 1.2em; /* Paragraph text size */
color: #555; /* Paragraph text color */
}
section {
margin-bottom: 30px;
}
footer {
text-align: center;
font-size: 0.8em;
text-align: center;
padding: 20px 0;
background-color: #f4f4f4; /* Footer background color */
color: #666; /* Footer text color */
}
/* Styling the table */
.gallery-table {
width: 100%;
background-color: #f0f0f0; /* Light gray background */
border-collapse: separate;
border-spacing: 15px; /* Spacing between cells */
}
.gallery-table td {
background-color: #fff; /* White background for images */
padding: 10px;
border-radius: 10px; /* Rounded corners */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
text-align: center; /* Centering images */
}
.gallery-table img {
width: 100%;
max-width: 300px; /* Ensures images fit within cells */
height: auto;
border-radius: 8px; /* Rounded corners for images */
}
/* For small screens */
@media (max-width: 768px) {
.gallery-table td {
padding: 5px;
}
}