-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Quarto GHA Workflow Runner
committed
Nov 6, 2024
1 parent
c4c21de
commit 06cbe36
Showing
19 changed files
with
3,093 additions
and
597 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
41a8e71a | ||
e944f18f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,45 @@ | ||
.column { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: flex-start; | ||
background-color: #f0f0f0; | ||
box-sizing: border-box; | ||
text-align: center; | ||
flex: 1; | ||
} | ||
|
||
.column img { | ||
width: 100%; | ||
height: 150px; /* Fixed image height */ | ||
object-fit: cover; | ||
border-radius: 8px; | ||
} | ||
|
||
|
||
.column div { | ||
text-align: center; | ||
margin-top: 10px; | ||
margin-bottom: 10px; | ||
text-align: center; | ||
flex-grow: 1; | ||
} | ||
|
||
.grid-cell img { | ||
max-width: 50%; /* Make the image responsive */ | ||
height: 50%; /* Maintain aspect ratio */ | ||
} | ||
|
||
.layout-border { | ||
background-color: #f0f0f0; | ||
padding: 20px; | ||
} | ||
max-width: 150px; /* Make the image responsive */ | ||
object-fit: cover; /* Crop to fit while preserving aspect ratio */ | ||
border-radius: 8px; | ||
} | ||
|
||
.layout-border { | ||
background-color: #f0f0f0; | ||
align-items: stretch; /* Stretch the columns to the same height */ | ||
display: flex; | ||
box-sizing: border-box; /* Ensure padding/margin does not affect width/height */ | ||
justify-content: space-evenly; | ||
height:100%; | ||
width: 100%; | ||
gap: 0; /* Remove extra space between columns */ | ||
margin: 0; | ||
padding: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.