fix scroll
All checks were successful
Build craisin-cove / build (push) Successful in 5s

This commit is contained in:
2025-11-30 17:11:43 -08:00
parent 5d98b71f27
commit 2bc164718f
2 changed files with 39 additions and 29 deletions

View File

@@ -28,6 +28,8 @@ h2{
background-color: #FA8080; background-color: #FA8080;
border-radius: 5vw; border-radius: 5vw;
overflow-y: hidden;
} }
#content > * { #content > * {
@@ -36,11 +38,17 @@ h2{
} }
#scroller{
height: 80vh;
overflow-y: scroll;
}
#content { #content {
margin: 0px; margin: 0px;
padding: 5vw; padding: 5vw;
overflow-y: scroll;
} }

View File

@@ -12,40 +12,42 @@
<body> <body>
<div id="foreground"> <div id="foreground">
<div id="content"> <div id="scroller">
<img id="pfp" src="/static/pfp.png"> <div id="content">
<h1 id="title">@craisin</h1><br> <img id="pfp" src="/static/pfp.png">
<p>Hello👋! I am Cayden Yap, a young Python programmer (with an interest in competitive programming and ML), math enthusiast, and saber fencer.</p> <h1 id="title">@craisin</h1><br>
<h2>Profiles</h2> <p>Hello👋! I am Cayden Yap, a young Python programmer (with an interest in competitive programming and ML), math enthusiast, and saber fencer.</p>
<ul> <h2>Profiles</h2>
<li><a href="https://codeforces.com/profile/craisin">My Codeforces</a></li>
<li><a href="https://github.com/craisined"> My Github</a> (rarely used, see <a href="https://gitea.craisin.tech">this</a> instead)</li>
</ul>
<h2>Resources</h2>
<ul>
<li><a href="https://notes.craisin.tech">My notes (mostly math, some CS)</a></li>
<li><a href="https://gitea.craisin.tech">My projects</a></li>
</ul>
<h2>Things I've Done</h2>
<ul>
<li>Programming</li>
<ul> <ul>
<li>USACO Silver</li> <li><a href="https://codeforces.com/profile/craisin">My Codeforces</a></li>
<li>Max Expert Codeforces</li> <li><a href="https://github.com/craisined"> My Github</a> (rarely used, see <a href="https://gitea.craisin.tech">this</a> instead)</li>
<li>PHHS CS Club Officer</li>
</ul> </ul>
<li>Math</li> <h2>Resources</h2>
<ul> <ul>
<li>92 on AMC 10</li> <li><a href="https://notes.craisin.tech">My notes (mostly math, some CS)</a></li>
<li>President of PHHS Math Team</li> <li><a href="https://gitea.craisin.tech">My projects</a></li>
<li>Leading SMS Math Team</li>
</ul> </ul>
<li>Fencing</li> <h2>Things I've Done</h2>
<ul> <ul>
<li>Top 8 Div II MS @ 2024 Summer Nationals</li> <li>Programming</li>
<li>Top 32 Cadet MS @ 2025 October NAC</li> <ul>
<li>USACO Silver</li>
<li>Max Expert Codeforces</li>
<li>PHHS CS Club Officer</li>
</ul>
<li>Math</li>
<ul>
<li>92 on AMC 10</li>
<li>President of PHHS Math Team</li>
<li>Leading SMS Math Team</li>
</ul>
<li>Fencing</li>
<ul>
<li>Top 8 Div II MS @ 2024 Summer Nationals</li>
<li>Top 32 Cadet MS @ 2025 October NAC</li>
</ul>
</ul> </ul>
</ul> </div>
</div> </div>
</div> </div>
</body> </body>