hfs+ update

This commit is contained in:
2026-01-22 16:03:38 +01:00
parent 8a39d708a1
commit 42e2c4e2b5
4 changed files with 470 additions and 3 deletions

View File

@@ -234,4 +234,58 @@ h1 {
.error {
color: #ff8888;
font-style: italic;
}
}
/* Info sections and boxes for filesystem-specific notes */
.info-section {
background-color: #2a2a2a;
border: 1px solid #404040;
border-radius: 6px;
padding: 15px;
margin-bottom: 20px;
}
.info-section h2 {
color: #ffaa44;
margin-bottom: 12px;
font-size: 1.1em;
}
.info-section h3 {
color: #66aaff;
margin-top: 12px;
margin-bottom: 8px;
font-size: 1em;
}
.info-box {
background-color: #1a1a1a;
border-left: 3px solid #ffaa44;
padding: 12px;
margin-bottom: 10px;
border-radius: 4px;
}
.info-box:last-child {
margin-bottom: 0;
}
.info-box p {
margin-bottom: 6px;
}
.info-box p:last-child {
margin-bottom: 0;
}
.info-box code {
background-color: #2a2a2a;
padding: 2px 6px;
border-radius: 3px;
color: #88ff88;
font-family: 'Consolas', monospace;
}
.info-box strong {
color: #ffaa44;
}