Skip to content

Commit

Permalink
Change files name (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentBrth authored Apr 2, 2022
1 parent 2ed647f commit cc82e4f
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 23 deletions.
13 changes: 7 additions & 6 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ h6 {
font-family: "Poppins", sans-serif;
}

.green {
color: var(--primary-color);
}

img {
width: 100%;
}
Expand Down Expand Up @@ -510,12 +514,12 @@ body.loaded #preloader {

#previewTextContent::before {
content: "{";
color:var(--primary-color);
color: var(--primary-color);
}
#previewTextContent::after {
content: "}";
color:var(--primary-color);
color: var(--primary-color);
}
.btn-circle {
Expand Down Expand Up @@ -1027,10 +1031,7 @@ tr.odd {
}

.section-title h2 {
font-size: 16px;
}

.section-title h2 {
font-size: 22px;
font-weight: 500;
width: 200px;
}
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<header id="navigation"></header>

<!-- Home -->
<div id="home" class="home-section-background" data-stellar-background-ratio="0.6">
<div id="home" class="home-section-background" data-stellar-background-ratio="0.3">
<div class="display-table">
<div class="display-table-cell">
<div class="container">
Expand Down Expand Up @@ -109,7 +109,7 @@ <h2><span class="typing"></span></h2>
<a href="#contact" class="section-title" id="contactTitleContent"></a>
</div>
</div>
<div class="text-center margin-top-10 margin-bottom-50">
<div class="text-center margin-top-50 margin-bottom-50">
<div class="row" id="contactInfoContent"></div>
</div>

Expand Down
6 changes: 2 additions & 4 deletions js/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,7 @@ function makeHeader(lang, isGet = false) {
<div class="margin-left-20">
<div class="row">
<div class="logo col-sm-4">
<a class="smoth-scroll" href="${
isGet ? "./" : "#navigation"
}"><img src="img/vb_black.png">Vincent <b>Berthet</b></a>
<a class="smoth-scroll" href="${isGet ? "./" : "#navigation"}"><img src="img/vb_black.png">Vincent <b>Berthet</b></a>
</div>
<div class="col-sm-8">
<div class="navigation-menu">
Expand Down Expand Up @@ -433,7 +431,7 @@ async function makeRelease() {
)
.then((response) => response.json())
.then((data) => {
$("#release").html(data[0]["name"]);
$("#release").html(data[0]["tag_name"]);
})
.catch((error) => console.log(error));
}
Expand Down
18 changes: 10 additions & 8 deletions js/get.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,14 +140,16 @@ async function makeNotes(data) {
const date = data[key]["created_at"].split("T")[0];
const url = data[key]["html_url"];
const body = data[key]["body"].replace(/(?:\r\n|\r|\n)/g, "<br>");
releasesHtml += `
<li>
<p>
<b><u>Version <a href="${url}" target="_blank">${version}</a> :</b></u> ${date}<br/>
${body}
</p>
</li>
`;
if (body) {
releasesHtml += `
<li>
<p>
<b><u>Version <a href="${url}" target="_blank">${version}</a> :</b></u> ${date}<br/>
${body}
</p>
</li>
`;
}
}
releasesHtml += "</ul></div>";
$("#home").html(`<div class="container">${releasesHtml}${todoHtml}</div>`);
Expand Down
2 changes: 1 addition & 1 deletion json/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@
"text": "[email protected]"
},
"resume": {
"class": "fas fa-download fa-2x color-4",
"class": "fas fa-download fa-2x color-4 green",
"title": "NA",
"text": "CV",
"get": {
Expand Down
2 changes: 1 addition & 1 deletion json/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
"title": "Old website",
"abstract": "Old release of this website (1.6)"
},
"ta": {
"towerAttack": {
"title": "Tower Attack",
"abstract": "Advanced Mobile Programming<br/>Tower Attack Game, implementing advanced features like queues, stacks, and pathways"
},
Expand Down
2 changes: 1 addition & 1 deletion json/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
"title": "Ancien site",
"abstract": "Ancienne version de ce site (1.6)"
},
"ta": {
"towerAttack": {
"title": "Tower Attack",
"abstract": "Programmation avancées pour support mobile"
},
Expand Down

0 comments on commit cc82e4f

Please sign in to comment.