diff --git a/index.html b/index.html index 8117f5f..f7d3e6b 100644 --- a/index.html +++ b/index.html @@ -41,7 +41,7 @@

My current status :

-

Might update my blog someday...

+

A new update of my blog is out!

@@ -98,14 +98,14 @@

Welcome to my website

- Hi, I'm Guams, a french developer. - +

Hi, I'm Guams, a french developer.

+

I'm currently studying computer science, especially web development. My hobbies are giving life to my ideas thanks to my coding skills, reading books and watching anime. On my free time I share my thoughts on the works I play or read on my - blog. -

- I'm still studying, and I mostly learned Java. But since I'm very curious, I'm interested in all kinds of programming languages, such as: + blog. +



+

I'm still studying, and I mostly learned Java. But since I'm very curious, I'm interested in all kinds of programming languages, such as:

  • Python
  • C
  • @@ -115,9 +115,9 @@
  • PHP (never again)
  • R (also never again)
- You can also take a look at one of my friend's website +

You can also take a look at one of my friend's website

- + friend's website
diff --git a/projects.html b/projects.html index d33666b..f8cb448 100644 --- a/projects.html +++ b/projects.html @@ -5,6 +5,13 @@ + + + + + + My projects @@ -34,7 +41,7 @@

My current status :

-

Might update my blog someday...

+

A new update of my blog is out!

@@ -105,7 +112,7 @@
- + screen of my gitea @@ -131,7 +138,7 @@
- + screen of abonentendeur @@ -143,8 +150,7 @@
- + diff --git a/src/gitea.js b/src/gitea.js index 5f4eac0..3b45c5f 100644 --- a/src/gitea.js +++ b/src/gitea.js @@ -10,11 +10,11 @@ xhr.onload = () => { const ul = document.getElementById("changelog-content"); const li = document.createElement("li"); const h2 = document.createElement("h2"); - const span = document.createElement("span"); + const p = document.createElement("p"); h2.innerText = new Date(commit.created).toLocaleDateString(); - span.innerText = commit.commit.message; + p.innerText = commit.commit.message; li.appendChild(h2); - li.appendChild(span); + li.appendChild(p); ul.appendChild(li); }) } diff --git a/src/style.css b/src/style.css index 2d49806..cad5610 100644 --- a/src/style.css +++ b/src/style.css @@ -272,8 +272,42 @@ h1 { flex-direction: row; } +.pub { + margin-left:auto; + display:block; + margin-right:auto; + max-width:732px; + width:100%; + height:94px; + border:none; +} + +.image-link { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} + /* Responsive */ +@media (max-width: 450px) { + + .projects { + width: 100%; + } + + .presentation { + width: 100%; + } + + .content { + display: flex; + flex-direction: column; + justify-content: space-between; + } +} + @media (max-width: 850px) { * { font-size: 12px; @@ -314,6 +348,10 @@ h1 { width: 100%; } + .presentation { + min-width: 0; + } + .banner-div { display: block; max-width: 100%;