Skip to content

Commit 140e1e9

Browse files
committed
Initial commit
0 parents  commit 140e1e9

File tree

3 files changed

+183
-0
lines changed

3 files changed

+183
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.idea

css/main.css

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
:root {
2+
--primary-color: #2c3e50;
3+
--secondary-color: #bac2de;
4+
--text-color: #cdd6f4;
5+
--background-color: #1e1e2e;
6+
--transition: all 0.3s ease-in-out;
7+
--project-background: #313244;
8+
--link-color: #fab387;
9+
--card-bg: #585b70;
10+
--bg-dark: #181825;
11+
}
12+
13+
body {
14+
line-height: 1.6;
15+
color: var(--text-color);
16+
background-color: var(--background-color);
17+
}
18+
19+
.funnel-display-title {
20+
font-family: "Funnel Display", sans-serif;
21+
font-optical-sizing: auto;
22+
font-style: normal;
23+
color: var(--text-color);
24+
}
25+
.home-title {
26+
font-family: "Funnel Display", sans-serif;
27+
display: flex;
28+
flex-direction: column;
29+
align-items: center;
30+
justify-content: center;
31+
width: 100%;
32+
height: 100%;
33+
color: var(--text-color);
34+
35+
}
36+
37+
.project-title {
38+
font-family: "Funnel Display", sans-serif;
39+
display: flex;
40+
flex-direction: column;
41+
align-items: center;
42+
justify-content: center;
43+
width: 100%;
44+
height: 100%;
45+
color: var(--secondary-color);
46+
}
47+
48+
.main-text{
49+
color: var(--secondary-color);
50+
}
51+
52+
.projects {
53+
background-color: var(--project-background);
54+
border-radius: 15px;
55+
padding: 10px 20px 20px 20px;
56+
}
57+
58+
a {
59+
color: var(--link-color);
60+
}
61+
62+
.skills-section {
63+
padding: 2rem;
64+
margin: 2rem auto;
65+
max-width: 1200px;
66+
background: var(--project-background);
67+
border-radius: 16px;
68+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
69+
}
70+
71+
.skills-title {
72+
color: var(--text-color);
73+
font-size: 2rem;
74+
margin-bottom: 2rem;
75+
text-align: center;
76+
}
77+
78+
.skills-grid {
79+
display: flex;
80+
flex-direction: row;
81+
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
82+
gap: 2rem;
83+
padding: 1rem;
84+
}
85+
86+
.skill-card {
87+
display: flex;
88+
flex-direction: column;
89+
align-items: center;
90+
padding: 1.5rem;
91+
background: var(--bg-dark);
92+
border-radius: 12px;
93+
transition: transform 0.3s ease, box-shadow 0.3s ease;
94+
}
95+
96+
.skill-icon {
97+
width: 64px;
98+
height: 64px;
99+
margin-bottom: 1rem;
100+
transition: transform 0.3s ease;
101+
}
102+
103+
.skill-name {
104+
color: var(--text-color);
105+
font-size: 1.1rem;
106+
text-align: center;
107+
margin: 0;
108+
}
109+
110+
@media (max-width: 768px) {
111+
.skills-grid {
112+
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
113+
gap: 1rem;
114+
}
115+
116+
.skill-card {
117+
padding: 1rem;
118+
}
119+
120+
.skill-icon {
121+
width: 48px;
122+
height: 48px;
123+
}
124+
}

index.html

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
5+
<meta charset="UTF-8">
6+
<title>My Portfolio</title>
7+
8+
<link rel="preconnect" href="https://fonts.googleapis.com">
9+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10+
<link href="https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap" rel="stylesheet">
11+
<link rel="stylesheet" href="css/main.css">
12+
13+
</head>
14+
15+
<body>
16+
<main class="home-title">
17+
<section class="header">
18+
<h1 class="funnel-display-title">Hi! I'm Nathan</h1>
19+
<p>
20+
I'm a Computer Science student at the University of Texas at El Paso
21+
</p>
22+
</section>
23+
<section class="skills-section">
24+
<h2 class="skills-title">Skills</h2>
25+
<div class="skills-grid">
26+
<div class="skill-card">
27+
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original.svg" class="skill-icon" alt="Python">
28+
<h3 class="skill-name">Python</h3>
29+
</div>
30+
<div class="skill-card">
31+
<img src="https://go.dev/blog/go-brand/Go-Logo/SVG/Go-Logo_Aqua.svg" class="skill-icon" alt="Go">
32+
<h3 class="skill-name">Go</h3>
33+
</div>
34+
<div class="skill-card">
35+
<img src="https://upload.wikimedia.org/wikipedia/commons/1/1b/R_logo.svg" class="skill-icon" alt="R">
36+
<h3 class="skill-name">R</h3>
37+
</div>
38+
<div class="skill-card">
39+
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/java/java-original-wordmark.svg" alt="Java" class="skill-icon">
40+
<h3 class="skill-name">Java</h3>
41+
</div>
42+
</div>
43+
</section>
44+
45+
<section class="projects">
46+
47+
<h2 class="project-title">Current project</h2>
48+
<p>I am working on QFuzz: Quantitative Fuzzing for Side Channels
49+
<a href="https://yannicnoller.github.io/assets/pdf/issta2021_noller_qfuzz.pdf">
50+
Read more about this project here</a>
51+
52+
</p>
53+
54+
</section>
55+
</main>
56+
57+
</body>
58+
</html>

0 commit comments

Comments
 (0)