-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
176 lines (151 loc) · 3.44 KB
/
style.css
File metadata and controls
176 lines (151 loc) · 3.44 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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background:
radial-gradient(circle at top left, #2563eb 0%, transparent 40%),
radial-gradient(circle at top right, #7c3aed 0%, transparent 36%),
linear-gradient(180deg, #0b1220, #111827 46%, #0b1220);
color: #e5e7eb;
}
.container {
width: min(1120px, 92vw);
margin: 0 auto;
}
.site-header {
border-bottom: 1px solid rgba(148, 163, 184, 0.25);
backdrop-filter: blur(8px);
background: rgba(8, 13, 26, 0.5);
}
.site-header .container {
min-height: 78px;
display: flex;
align-items: center;
justify-content: space-between;
}
.site-header h1 {
font-size: clamp(1.7rem, 2.2vw, 2.2rem);
color: #f9fafb;
}
.github-link {
text-decoration: none;
color: #bfdbfe;
font-weight: 600;
border: 1px solid rgba(191, 219, 254, 0.4);
border-radius: 999px;
padding: 8px 14px;
transition: all 0.2s ease;
}
.github-link:hover {
background: rgba(59, 130, 246, 0.2);
border-color: rgba(191, 219, 254, 0.7);
color: #eff6ff;
}
main {
flex: 1;
}
.hero {
padding: 68px 0 36px;
}
.eyebrow {
color: #93c5fd;
font-size: 0.95rem;
margin-bottom: 12px;
letter-spacing: 0.08em;
text-transform: uppercase;
font-weight: 700;
}
.hero h2 {
font-size: clamp(2rem, 4.4vw, 3.4rem);
line-height: 1.12;
max-width: 900px;
color: #ffffff;
}
.subtitle {
margin-top: 18px;
font-size: clamp(1rem, 2vw, 1.15rem);
line-height: 1.65;
max-width: 760px;
color: #cbd5e1;
}
.primary-btn {
margin-top: 30px;
display: inline-flex;
text-decoration: none;
color: #0b1220;
background: linear-gradient(90deg, #93c5fd, #60a5fa);
padding: 13px 20px;
border-radius: 10px;
font-weight: 700;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.primary-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 24px rgba(96, 165, 250, 0.35);
}
.projects {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 16px;
padding: 18px 0 56px;
}
.project-card {
background: linear-gradient(165deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.92));
border: 1px solid rgba(148, 163, 184, 0.26);
border-radius: 14px;
padding: 22px 20px;
text-decoration: none;
color: #f8fafc;
transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
min-height: 190px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.project-card:hover {
transform: translateY(-6px);
border-color: rgba(96, 165, 250, 0.9);
box-shadow: 0 14px 30px rgba(2, 6, 23, 0.45);
}
.project-card h3 {
margin-bottom: 12px;
font-size: 1.28rem;
}
.project-card p {
color: #d1d5db;
line-height: 1.55;
font-size: 0.96rem;
}
.project-card span {
margin-top: 18px;
color: #93c5fd;
font-weight: 700;
font-size: 0.92rem;
}
footer {
text-align: center;
border-top: 1px solid rgba(148, 163, 184, 0.25);
padding: 22px 16px;
}
footer a {
color: #93c5fd;
text-decoration: none;
font-weight: 600;
}
footer a:hover {
text-decoration: underline;
}
@media (max-width: 640px) {
.hero {
padding-top: 44px;
}
.site-header .container {
min-height: 70px;
}
}