1
0

Added GitHub stats to projects page

This commit is contained in:
Michael Gordeev
2019-10-12 19:26:44 +03:00
parent b4ce7c9288
commit 8ae42444f4
2 changed files with 9 additions and 7 deletions
@@ -3,8 +3,8 @@
ViewData["Title"] = "My projects"; ViewData["Title"] = "My projects";
} }
<header> <header class="projects-header">
<div class="inline-header"> <div>
<h1>My projects</h1> <h1>My projects</h1>
<h3>Here is presented the most of projects I worked on</h3> <h3>Here is presented the most of projects I worked on</h3>
</div> </div>
+7 -5
View File
@@ -119,19 +119,21 @@ article a:visited {
transform: scale(1.25); transform: scale(1.25);
} }
.inline-header {
display: inline-block;
}
.github-stats { .github-stats {
margin-top: 20px; margin-top: 20px;
float: right; grid-column: 2 / 2;
display: none;
} }
.projects-block { .projects-block {
margin: 0px 10px; margin: 0px 10px;
} }
.projects-header {
display: grid;
margin-bottom: 20px;
grid-template-columns: 1fr auto;
}
.project-item { .project-item {
background-color: whitesmoke; background-color: whitesmoke;
margin-bottom: 10px; margin-bottom: 10px;