51 lines
1.2 KiB
CSS
51 lines
1.2 KiB
CSS
header {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
grid-template-rows: auto auto;
|
|
grid-column-gap: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
article {
|
|
margin: 0px 10px;
|
|
}
|
|
|
|
.github-stats {
|
|
margin-top: 20px;
|
|
width: 200px;
|
|
height: 110px;
|
|
}
|
|
|
|
.project-item {
|
|
display: grid;
|
|
padding: 20px;
|
|
padding-top: 0px;
|
|
grid-template-rows: auto auto;
|
|
grid-row-gap: 20px;
|
|
background-color: whitesmoke;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.badge {
|
|
height: 25px;
|
|
width: 25px;
|
|
margin-right: 10px;
|
|
display: inline-block;
|
|
background-size: contain;
|
|
}
|
|
|
|
.csharp { background-image: url(../images/Badges/csharp.png); }
|
|
.dotnet { background-image: url("../images/Badges/dotnet.png"); }
|
|
.xamarin { background-image: url("../images/Badges/xamarin.png"); }
|
|
.unity { background-image: url("../images/Badges/unity.png"); }
|
|
.android { background-image: url("../images/Badges/android.png"); }
|
|
.uwp { background-image: url("../images/Badges/windows.png"); }
|
|
.win32 { background-image: url("../images/Badges/windows.png"); }
|
|
.windows { background-image: url("../images/Badges/windows.png"); }
|
|
.ios { background-image: url("../images/Badges/ios.png"); }
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
.github-stats {
|
|
grid-row: 2;
|
|
}
|
|
} |