Include fmt 11.0.2
[openal-soft.git] / fmt-11.0.2 / doc / fmt.css
blob994d6e2e9de07466148be3261f41b5cc87221706
1 :root {
2 --md-primary-fg-color: #0050D0;
5 .md-grid {
6 max-width: 960px;
9 @media (min-width: 400px) {
10 .md-tabs {
11 display: block;
15 .docblock {
16 border-left: .05rem solid var(--md-primary-fg-color);
19 .docblock-desc {
20 margin-left: 1em;
23 pre > code.decl {
24 white-space: pre-wrap;
28 code.decl > div {
29 text-indent: -2ch; /* Negative indent to counteract the indent on the first line */
30 padding-left: 2ch; /* Add padding to the left to create an indent */
33 .features-container {
34 display: flex;
35 flex-wrap: wrap;
36 gap: 20px;
37 justify-content: center; /* Center the items horizontally */
40 .feature {
41 flex: 1 1 calc(50% - 20px); /* Two columns with space between */
42 max-width: 600px; /* Set the maximum width for the feature boxes */
43 box-sizing: border-box;
44 padding: 10px;
45 overflow: hidden; /* Hide overflow content */
46 text-overflow: ellipsis; /* Handle text overflow */
47 white-space: normal; /* Allow text wrapping */
50 .feature h2 {
51 margin-top: 0px;
52 font-weight: bold;
55 @media (max-width: 768px) {
56 .feature {
57 flex: 1 1 100%; /* Stack columns on smaller screens */
58 max-width: 100%; /* Allow full width on smaller screens */
59 white-space: normal; /* Allow text wrapping on smaller screens */