Skip to content

Commit

Permalink
Deployed 49aff39 to dev with MkDocs 1.6.0 and mike 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Jun 3, 2024
1 parent 49aff39 commit 21e82e1
Show file tree
Hide file tree
Showing 4 changed files with 188 additions and 210 deletions.
30 changes: 30 additions & 0 deletions dev/fmt.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,33 @@
.docblock-desc {
margin-left: 1em;
}

.features-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center; /* Center the items horizontally */
}

.feature {
flex: 1 1 calc(50% - 20px); /* Two columns with space between */
max-width: 600px; /* Set the maximum width for the feature boxes */
box-sizing: border-box;
padding: 10px;
overflow: hidden; /* Hide overflow content */
text-overflow: ellipsis; /* Handle text overflow */
white-space: normal; /* Allow text wrapping */
}

.feature h2 {
margin-top: 0px;
font-weight: bold;
}

@media (max-width: 768px) {
.feature {
flex: 1 1 100%; /* Stack columns on smaller screens */
max-width: 100%; /* Allow full width on smaller screens */
white-space: normal; /* Allow text wrapping on smaller screens */
}
}
Loading

0 comments on commit 21e82e1

Please sign in to comment.