Skip to content

Commit

Permalink
Updated clock font
Browse files Browse the repository at this point in the history
  • Loading branch information
udontur committed Dec 3, 2024
1 parent c389773 commit fb06ab3
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 111 deletions.
67 changes: 0 additions & 67 deletions src/blog/noyapcpp.html

This file was deleted.

19 changes: 13 additions & 6 deletions src/env/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ <h3 style="color: #4ade80; font-size: 80px;">
<h3 style="font-weight: 400 !important">
@udontur - Computer Science and Math enthusiast
</h3>
<script type="module" src="https://unpkg.com/@splinetool/[email protected]/build/spline-viewer.js"></script>
<spline-viewer url="https://prod.spline.design/YyuFLwwFuQ30nGDx/scene.splinecode"></spline-viewer>
</div>
<br>
<br>
Expand Down Expand Up @@ -109,35 +111,40 @@ <h1 class="itemtitle">About</h1>
<iconify-icon style="color: #4ade80;" icon="mingcute:target-line"></iconify-icon>
Passionate in
<span style="color: #4ade80; font-weight: bold;">Problem-Solving</span>
and
<span style="color: #4ade80; font-weight: bold;">Optimization</span>
,
<span style="color: #4ade80; font-weight: bold;">Optimization</span>
, and
<span style="color: #4ade80; font-weight: bold;">Customization</span>
since childhood
</p>
<p>
<iconify-icon style="color: #4ade80;" icon="bx:brain"></iconify-icon>
Enthusiastic in
<span style="color: #4ade80; font-weight: bold;">Competitive Programming</span>,
<span style="color: #4ade80; font-weight: bold;">Software Engineering</span>,
<span style="color: #4ade80; font-weight: bold;">Competitive Programming</span>,
<span style="color: #4ade80; font-weight: bold;">Computer Science</span>,
and
<span style="color: #4ade80; font-weight: bold;">Math</span>
</p>
<p>
<iconify-icon style="color: white;" icon="material-symbols:speed-outline"></iconify-icon>
Enjoy building projects that
<span style="color: white; font-weight: bold;">streamline functions</span>
<span style="color: white; font-weight: bold;">"assist people in streamlining processes"</span>
</p>
<p>
<iconify-icon style="color: white;" icon="ant-design:linux-outlined"></iconify-icon>
Tinkering with
<span style="color: white; font-weight: bold;">Linux</span>,
I use Arch btw™
I use Arch Hyprland (
<a href="https://github.com/udontur/hyprland">The DotFiles</a>
)
</p>
<p>
<iconify-icon style="color: white;" icon="lucide:turtle"></iconify-icon>
<span style="color: white; font-weight: bold;">Udon</span>
is my pet
<span style="color: white; font-weight: bold;">turtle</span>,
my mascot since I started programming
my buddy and mascot
</p>
<p>
<iconify-icon icon="material-symbols:skillet-cooktop-outline"></iconify-icon>
Expand Down
13 changes: 0 additions & 13 deletions src/page/blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,6 @@ <h3>Judgel's Development</h3>
</div>
</div>
<br>
<div>
<h1 class="itemtitle">Tutorial</h1>
<div class="itemblock-clickable">
<button>
<a href="https://hadrianlau.com/blog/no-yap-cpp-compiler-guide">
<h3>No Yapping C++ Compiler Installation Guide</h3>
<p>Short and precise guide for installing a C++ compiler on Windows 11</p>
<p>Jul 2024</p>
</a>
</button>
</div>
</div>
<br>
<br>
</body>
</html>
38 changes: 13 additions & 25 deletions src/projects/clock.html
Original file line number Diff line number Diff line change
@@ -1,22 +1,16 @@

<!--
---
permalink: /clock
---
<!--
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Simple dark mode clock - Made by Hadrian Lau (@udontur)"
/>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-SQB118V6BD"
></script>
<meta name="description" content="Simple dark mode clock"/>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SQB118V6BD"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
Expand All @@ -25,17 +19,10 @@
gtag("js", new Date());
gtag("config", "G-SQB118V6BD");
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Geologica:[email protected]&family=Inter:[email protected]&display=swap"
rel="stylesheet"
/>
<link
rel="icon"
type="image/webp"
href="/asset/icon/favicon-clock.webp"
/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<link rel="icon" type="image/webp" href="/asset/icon/favicon-clock.webp"/>
<title>Clock</title>
<style>
::-moz-selection {
Expand All @@ -52,9 +39,10 @@

body {
height: 100vh;
font-family: "Inter", sans-serif;
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal;
font-variant-numeric: tabular-nums;
font-weight: 500;
background-color: #000000;
color: #ffffff;
display: flex;
Expand Down Expand Up @@ -89,11 +77,11 @@
}
const second = get_query_string("seconds");
if (second === "false") {
document.body.style.fontSize = "34vw";
document.body.style.fontSize = "40vw";
second_false();
setInterval(second_false, 1000);
} else {
document.body.style.fontSize = "22vw";
document.body.style.fontSize = "25vw";
second_true();
setInterval(second_true, 1000);
}
Expand Down

0 comments on commit fb06ab3

Please sign in to comment.