-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
89 lines (80 loc) · 1.54 KB
/
Copy pathstyles.css
File metadata and controls
89 lines (80 loc) · 1.54 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
body {
font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
background: #f3f6fd;
color: #22223b;
margin: 0;
min-height: 100vh;
padding: 0;
}
nav {
display: flex;
justify-content: center;
align-items: center;
gap: 2rem;
background: #e0e7ff;
padding: 1.2rem 0;
box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
border-bottom: 1px solid #c7d2fe;
}
nav a {
color: white;
background: #6366f1;
font-weight: 600;
font-size: 1.1rem;
text-decoration: none;
padding: 0.5rem 1.2rem;
border-radius: 6px;
transition: background 0.2s, color 0.2s;
}
nav a[aria-current="page"] {
background: #6366f1;
color: #fff;
}
nav a:hover {
background: #a5b4fc;
color: #3730a3;
}
main {
max-width: 600px;
margin: 2.5rem auto 0 auto;
padding: 2rem;
background: #fff;
border-radius: 16px;
box-shadow: 0 8px 32px rgba(102, 126, 234, 0.10);
}
.projects {
display: flex;
flex-direction: column;
gap: 1.5rem;
align-items: center;
}
.project-link {
display: inline-block;
background: #6366f1;
color: #fff;
font-weight: 600;
font-size: 1.1rem;
padding: 0.9rem 2.2rem;
border-radius: 8px;
text-decoration: none;
box-shadow: 0 2px 8px rgba(102, 126, 234, 0.10);
transition: background 0.2s, box-shadow 0.2s;
border: none;
}
.project-link:hover {
background: #4f46e5;
box-shadow: 0 4px 16px rgba(102, 126, 234, 0.18);
}
@media (max-width: 600px) {
main {
padding: 1rem;
}
nav {
gap: 1rem;
padding: 0.7rem 0;
}
.project-link {
font-size: 1rem;
padding: 0.7rem 1.2rem;
}
}