-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
117 lines (97 loc) · 2.35 KB
/
styles.css
File metadata and controls
117 lines (97 loc) · 2.35 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
/* Global styles */
body {
font-family: 'Arial', sans-serif; /* Default font for main content */
margin: 0;
padding: 0;
background-color: rgb(152, 11, 143); /* Changed to lavender background color */
background-image: linear-gradient(to bottom right, #ff9a9e, #fad0c4); /* Gradient background */
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
nav ul {
list-style-type: none;
padding: 0;
font-family: 'Kode Mono', monospace; /* Font for navigation */
font-weight: 500; /* Adjust the font weight as needed */
font-style: normal;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
text-decoration: none;
color: #fff;
}
main {
padding: 20px;
font-family: 'Madimi One', sans-serif; /* Font for main content */
font-weight: 1000;
font-style: normal;
}
.additional-photos {
margin-top: 20px;
text-align: center;
}
.additional-photos .photo-pair {
display: flex;
justify-content: center;
}
.additional-photos .photo-pair img {
width: 150px; /* Reduced image width */
height: auto;
margin: 0 10px;
border-radius: 5px;
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
/* New styles */
.hero {
text-align: center;
}
.hero h2 {
margin-bottom: 20px;
color: #333; /* Changed h2 color */
}
.summary {
padding: 20px;
background-color: #f9f9f9; /* Changed to a light gray background */
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.summary h2 {
margin-bottom: 10px;
color: #333; /* Changed h2 color */
}
.summary p {
margin-bottom: 20px;
color: #666; /* Changed paragraph text color */
}
/* Media Queries */
@media screen and (min-width: 1200px) {
/* Large Desktop Viewport */
body {
background-image: none; /* Remove gradient background */
}
/* Additional styles for large desktop */
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
/* Desktop Viewport */
}
@media screen and (min-width: 768px) and (max-width: 991px) {
/* Tablet Viewport */
}
@media screen and (max-width: 767px) {
/* Mobile Viewport */
}
@media print {
/* Print Styles */
}