-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
155 lines (133 loc) · 2.87 KB
/
app.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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/* General Styles */
body {
margin: 0;
font-family: 'Inter', Arial, sans-serif; /* Modern and clean font */
color: #4a4a4a; /* Neutral gray for text */
background-color: #f5f0ea; /* Light earth-tone beige */
}
/* Navigation Bar */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #2e2b27; /* Deep earthy brown */
color: #f5f0ea; /* Complementary beige */
padding: 15px 30px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
.logo {
font-size: 1.8em;
font-weight: 700;
}
.burger-menu {
position: relative;
}
#menu {
display: none;
position: absolute;
right: 0;
top: 50px;
background-color: #3d3a36; /* Slightly lighter brown */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
overflow: hidden;
}
#menu a {
display: block;
color: #f5f0ea;
text-decoration: none;
padding: 12px 20px;
font-size: 0.95em;
}
#menu a:hover {
background-color: #514f4a; /* Darker hover effect */
color: #fcecc9; /* Warm ivory */
}
/* Title Page */
.title-page {
text-align: center;
padding: 100px 20px;
background: linear-gradient(180deg, #2e2b27, #514f4a); /* Earthy gradient */
color: #fcecc9;
font-size: 1.8em;
font-weight: 600;
letter-spacing: 0.5px;
}
/* Projects Section */
.projects-section {
padding: 40px 20px;
background-color: #f5f0ea;
}
.project {
margin-bottom: 30px;
padding: 25px;
background-color: #ffffff; /* Clean white for cards */
border-radius: 12px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Softer shadow */
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.project-info {
margin-bottom: 20px;
color: #4a4a4a;
}
.project-images {
position: relative;
overflow: hidden;
border-radius: 10px;
}
.image-slider {
display: flex;
transition: transform 0.5s ease-in-out;
}
.image-slider img {
width: 100%;
height: auto;
flex-shrink: 0;
}
.prev, .next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 0, 0, 0.6);
color: #f5f0ea;
border: none;
padding: 12px;
cursor: pointer;
z-index: 10;
border-radius: 50%;
transition: background-color 0.3s;
}
.prev:hover, .next:hover {
background-color: rgba(0, 0, 0, 0.8);
}
.prev {
left: 15px;
}
.next {
right: 15px;
}
/* Footer */
footer {
text-align: center;
padding: 15px;
background-color: #2e2b27;
color: #f5f0ea;
}
footer .social-media {
display: flex;
justify-content: center;
gap: 12px;
}
footer .icon {
color: #f5f0ea;
text-decoration: none;
font-size: 1.4em;
transition: color 0.3s;
}
footer .icon:hover {
color: #fcecc9;
}