Side-by-side styles

This commit is contained in:
2025-05-13 16:43:04 +02:00
parent b2cf33d4f4
commit e7fcfb2944
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
.side-by-side {
display: flex;
width: 100%;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
}
.side-by-side-item {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
@media only screen and (min-width: 999px) {
.side-by-side {
flex-direction: row;
}
.side-by-side-item {
width: 48%;
margin: 0.5%;
}
}

View File

@@ -4,6 +4,7 @@
<!-- CSS -->
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/side-by-side.css">
<!-- SEO -->
<title>janishutz.com - Solving your software needs with passion</title>