-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (83 loc) · 2.8 KB
/
index.html
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
<!-- Common Head -->
<!DOCTYPE html>
<script src="/scripts/head.js"></script>
<!-- Unique Head -->
<title>Vince14Genius</title>
<style>
.h-stack {
display: flex;
flex-direction: row;
justify-content: center;
}
.flex-wrap {
flex-wrap: wrap;
}
.flex-spacing {
column-gap: 2rem;
row-gap: 0;
}
.flex-spacing bordered-section {
margin-top: 0;
margin-bottom: 0;
}
.spacer {
flex-grow: 1;
}
.h-stack-element {
flex-grow: 0;
}
</style>
<!-- Common Body -->
<div id="universal-nav"></div>
<script src="/scripts/nav.js"></script>
<!-- Unique Body -->
<main id="main-content" class="centered" lang="en">
<div class="main-width-wrapper">
<img class="content-img centered profile-icon" src="/images/profile.png">
<h1 class="branding-name-heading">Vince14Genius</h1>
<p class="brading-name-subheading">(Vincent C.)</p>
<section class="bordered-section">
<h2 class="compatibility-hidden">Social Media</h2>
<p class="centered">
<a class="social-media-link" href="https://github.com/Vince14Genius">
<img alt="GitHub" src="/images/socialmedia-github.svg">
</a>
<a class="social-media-link" href="https://www.instagram.com/vince14genius_0/">
<img alt="Instagram" src="/images/socialmedia-instagram.svg">
</a>
<a class="social-media-link" href="https://youtube.com/@vince14genius">
<img alt="YouTube" src="/images/socialmedia-youtube.svg">
</a>
</p>
</section>
<div class="h-stack flex-wrap flex-spacing">
<section class="bordered-section spacer">
<h2>About</h2>
<p>Coder. Designer. Linguist. 打ち師. ボカロ/vtuber厨.</p>
<p>🔱 UCSD '23 CS+Ling | 🍏 Apple SWE Intern '22 </p>
<p>🧡 WWDC 17/20/23 Swift Student Challenge winner</p>
<div class="h-stack">
<div class="spacer"></div>
<div class="quaternary-box">
<p class="leading"><span class="language-inline-label-native">Native:</span> English, 中文, <span class="language-inline-label-fluent">Fluent:</span> 日本語,</p>
<p class="leading"><span class="language-inline-label-conversational">Conversational:</span> Esperanto, <span class="language-inline-label-beginner">Beginner:</span> (...)</p>
</div>
<div class="spacer"></div>
</div>
<p><a href="/about">Learn More ></a></p>
</section>
<section class="bordered-section spacer">
<h2>Projects</h2>
<p><a href="/projects">See More ></a></p>
</section>
</div>
</div>
</main>
<!-- Footer -->
<footer>
<div class="exterior-width-wrapper">
<hr class="compatibility-hidden">
<div id="universal-footer"></div>
<script src="/scripts/footer.js"></script>
</div>
</footer>