-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.css
More file actions
113 lines (95 loc) · 1.74 KB
/
project.css
File metadata and controls
113 lines (95 loc) · 1.74 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
/* Project page specific styles */
.project-nav {
margin-bottom: 30px;
}
.back-link {
display: flex;
align-items: center;
gap: 0.5rem;
text-decoration: none;
color: #333;
font-family: 'Kameron', serif;
font-size: 1rem;
transition: opacity 0.2s;
}
.back-link:hover {
opacity: 0.7;
}
.back-arrow {
width: 20px;
height: auto;
}
.project-content {
max-width: 1200px;
margin: 0 auto;
padding: 6rem 2rem 4rem;
}
.project-header {
display: flex;
justify-content: space-between;
text-align: center;
margin-bottom: 4rem;
}
.project-header h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
align-items: baseline;
}
.project-subtitle {
font-family: 'Kameron', serif;
font-size: 1.2rem;
color: #666;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}
.project-hero {
margin-bottom: 4rem;
}
.hero-image {
width: 60%;
height: auto;
display: flex;
margin: 0 auto;
}
.project-overview,
.project-details {
max-width: 800px;
margin: 0 auto 4rem;
}
.project-overview h2,
.project-details h2 {
font-size: 2rem;
margin-bottom: 1rem;
}
.project-overview p,
.project-details p {
font-family: 'Kameron', serif;
font-size: 1.1rem;
line-height: 1.6;
color: #444;
margin-bottom: 2rem;
}
/* Responsive styles */
@media (max-width: 768px) {
.project-content {
padding: 5rem 1.5rem 3rem;
}
.project-header h1 {
font-size: 2.5rem;
}
.project-subtitle {
font-size: 1.1rem;
}
}
@media (max-width: 480px) {
.project-nav {
padding: 1rem 1.5rem;
}
.project-header h1 {
font-size: 2rem;
}
.project-content {
padding: 4rem 1rem 2rem;
}
}