-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleM.css
66 lines (59 loc) · 1.26 KB
/
styleM.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
/* Responsive Design for Tablets */
@media (max-width: 1024px) {
.projects-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
}
/* Responsive Design for Mobile */
@media (max-width: 768px) {
.projects-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.project-card {
padding: 1rem;
border-radius: 0.75rem;
}
.project-info h3 {
font-size: 2rem;
margin: 0.75rem 0 0.5rem;
}
.project-info p {
margin-bottom: 0.75rem;
}
}
/* Additional adjustments for mobile devices */
@media (max-width: 768px) {
.experience-list {
display: flex;
flex-direction: column;
gap: 2rem;
}
.home .home-content{
margin-bottom: 90rem;
}
.cv {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: black;
color: white;
text-align: center;
margin-top: -10rem;
}
/* Theme Toggle Button */
.theme-toggle-btn {
position: fixed;
top: 20px;
left: 20px;
background: transparent;
border: none;
font-size: 3rem;
color: #b74b4b;
cursor: pointer;
z-index: 1002;
transition: color 0.3s ease;
}
}