File: fmt.css

package info (click to toggle)
fmtlib 11.1.1%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,772 kB
  • sloc: cpp: 22,591; ansic: 758; python: 504; sh: 53; makefile: 16; javascript: 4
file content (61 lines) | stat: -rw-r--r-- 1,267 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
:root {
  --md-primary-fg-color: #0050D0;
}

.md-grid {
  max-width: 960px;
}

@media (min-width: 400px) {
  .md-tabs {
    display: block;
  }
}

.docblock {
  border-left: .05rem solid var(--md-primary-fg-color);
}

.docblock-desc {
  margin-left: 1em;
}

pre > code.decl {
  white-space: pre-wrap;
}


code.decl > div {
  text-indent: -2ch; /* Negative indent to counteract the indent on the first line */
  padding-left: 2ch; /* Add padding to the left to create an indent */
}

.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 */
  }
}