Skip to content

Commit e41aee5

Browse files
committed
Meta AI changed their logo 4 some reason, also more projects
1 parent 7fa618f commit e41aee5

4 files changed

Lines changed: 31 additions & 14 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ This is the repository for my personal website containing info about me as well
88

99
[Fonts used](https://fonts.google.com/share?selection.family=Doto:wght@100..900|Playpen+Sans:wght@100..800|Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700)
1010

11-
[Icons](https://www.iconfinder.com/)
11+
[Icons (some of them are made by me)](https://www.iconfinder.com/)

img/metaai.webp

1.41 KB
Loading

index.html

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<meta name="description" content="Personal Portofolio Website">
88
<meta name="author" content="document10">
9-
<meta name="keywords" content="HTML, CSS, JS, PY, Python, GO, CPP, AI, USV, Personal, Portofolio, Website, Skills, Art, Dev, Developement, Software">
9+
<meta name="keywords" content="HTML, CSS, JS, PY, Python, GO, CPP, C#, TS, Java, AI, USV, Personal, Portofolio, Website, Skills, Art, Dev, Developement, Frontend, Backend, Fullstack, Software">
1010
<meta name="theme-color" content="#1DD2EB">
1111
<meta property="og:url" content="https://document10.github.io">
1212
<meta property="og:site_name" content="document10.github.io">
@@ -91,12 +91,24 @@ <h1>document10</h1>
9191
</a>
9292
<a class="proj" href="https://github.com/document10/godot-jigsaw-puzzle">
9393
<p class="projtitle">Godot Jigsaw Puzzle</p>
94-
<p class="projdesc">This was a university team project, made in Godot since I'm comfortable with it. The game is 90% complete, with polishing features still to be added.</p>
94+
<p class="projdesc">This was a university team project, made in Godot since I'm comfortable with it. It features multiple levels, images and varying difficulties. The game is 90% complete, with polishing features still to be added.</p>
9595
</a>
9696
<a class="proj" href="https://github.com/document10?tab=repositories&q=deno-fresh">
9797
<p class="projtitle">Deno Projects</p>
9898
<p class="projdesc">I have made a couple demo projects using Deno, Fresh (1.0) and Prisma. These days I use Bun, but these demos may still be useful for learning purposes.</p>
9999
</a>
100+
<a class="proj" href="https://github.com/document10/elcatalog">
101+
<p class="projtitle">Electronics Catalog</p>
102+
<p class="projdesc">This app was built as a university project to learn more about C#, .NET, WinForms and UI design in general. The purpose of the app is to manage the inventory of an electronics store.</p>
103+
</a>
104+
<a class="proj" href="https://github.com/document10/projPOO">
105+
<p class="projtitle">PC Store Manager</p>
106+
<p class="projdesc">This was another university project which implements aspects of Object-Oriented Programming (OOP), data structures and UI design (using RayGUI) in C++. The app allows a PC store owner to manage the inventory of PCs and their components.</p>
107+
</a>
108+
<a class="proj" href="https://github.com/document10/taiga">
109+
<p class="projtitle">TAIGA</p>
110+
<p class="projdesc">This is a project made during summer break to quickly configure various graphical interfaces on some *Nix systems. I used Python since it made the development process relatively simple for such a small tool.</p>
111+
</a>
100112
</div>
101113
<div id="footer">
102114
<a href="https://www.gentube.app/image/jn7bzt4zde70fs3d3fpn3877as80g252?sid=user_38VweWrmhApWGh82EpamCfH93cV&_cid=share-copy-link" class="footer">Background</a>

styles.css

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ a {
109109

110110
#projects {
111111
display: grid;
112-
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
112+
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
113113
justify-content: space-evenly;
114114
align-content: center;
115115
background-color: #010440aa;
@@ -194,7 +194,7 @@ a {
194194
.proj:hover {
195195
background-color: #f2e00f99;
196196
backdrop-filter: blur(10px);
197-
transform: scale(105%);
197+
transform: scale(105%) rotate(1deg);
198198
}
199199

200200
.projtitle {
@@ -254,6 +254,20 @@ a {
254254
text-shadow: 6px 6px 5px #365959;
255255
}
256256

257+
@media screen and (max-width: 1100px) {
258+
#projects {
259+
display: flex;
260+
flex-flow: column wrap;
261+
justify-content: space-evenly;
262+
align-content: center;
263+
padding: 0%;
264+
margin: 1vw 2vw;
265+
}
266+
.project {
267+
text-wrap: wrap;
268+
}
269+
}
270+
257271
@media screen and (max-width: 700px) {
258272
h1 {
259273
font-size: 11vw;
@@ -289,15 +303,6 @@ a {
289303
margin: 1%;
290304
}
291305

292-
#projects {
293-
display: flex;
294-
flex-flow: column wrap;
295-
justify-content: space-evenly;
296-
align-content: center;
297-
padding: 0%;
298-
margin: 1vw 2vw;
299-
}
300-
301306
.ext {
302307
font-size: 5.5vw;
303308
line-height: 5.5vw;

0 commit comments

Comments
 (0)