File size: 2,487 Bytes
bd33eac |
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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
.wy-nav-content {
max-width: 1280px;
}
a.icon-home {
font-size: 1.4em;
}
dl.class > dt {
width: 100%;
}
dd > dl {
width: 100%;
}
.toctree-l1 > ul {
margin-top: 0px !important;
}
.wy-side-nav-search .wy-dropdown>a:hover, .wy-side-nav-search>a:hover {
background: none;
}
.project-name {
font-size: 1.4em;
}
.wy-side-nav-search {
padding-top: 0px;
}
.components {
display: flex;
flex-flow: row wrap;
gap: 1rem; /* Use gap for consistent spacing */
}
.components > .box {
flex: 0 0 auto; /* Don't grow or shrink, use natural size */
margin: 0; /* Remove margin since we're using gap */
padding: 1rem;
border-style: solid;
border-width: 1px;
border-radius: 0.5rem;
border-color: rgb(55 65 81);
background-color: #e3e3e3;
color: #404040;
width: 11.3rem;
box-sizing: border-box;
}
.components > .box:nth-child(1) > .header {
background-image: linear-gradient(to bottom right, #60a5fa, #3b82f6);
}
.components > .box:nth-child(2) > .header {
background-image: linear-gradient(to bottom right, #fb923c, #f97316);
}
.components > .box:nth-child(3) > .header {
background-image: linear-gradient(to bottom right, #f472b6, #ec4899);
}
.components > .box:nth-child(4) > .header {
background-image: linear-gradient(to bottom right, #a78bfa, #8b5cf6);
}
.components > .box:nth-child(5) > .header {
background-image: linear-gradient(to bottom right, #34d399, #10b981);
}
.components > .box:nth-child(6) > .header {
background-image: linear-gradient(to bottom right, #fbbf24, #f59e0b);
}
.components > .optional {
background: repeating-linear-gradient(
135deg,
#f1f1f1,
#f1f1f1 25px,
#e3e3e3 25px,
#e3e3e3 50px
);
}
.components > .box > .header {
border-style: solid;
border-width: 1px;
border-radius: 0.5rem;
border-color: rgb(55 65 81);
padding: 0.5rem 0.2rem;
text-align: center;
margin-bottom: 0.5rem;
font-weight: bold;
color: white;
}
.sidebar p {
font-size: 100% !important;
}
.training-arguments {
background-color: #f3f6f6;
border: 1px solid #e1e4e5;
}
.training-arguments > .header {
font-weight: 700;
padding: 6px 12px;
background: #e1e4e5;
}
.training-arguments > .table {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
}
.training-arguments > .table > a {
padding: 0.5rem;
border: 1px solid #e1e4e5;
}
|