Renaming + CSS

This commit is contained in:
2024-12-13 21:52:50 +01:00
parent 5875cc785b
commit f18f82fb99
34 changed files with 203 additions and 3062 deletions

View File

@@ -214,5 +214,25 @@
}
main > section > div > h4 {
}
small > em {
font-size: 1.4rem; // Standard size for line-height control
line-height: 1.4rem; // Maintain exact line spacing
transform: scale(0.75); // Scale text down to 75%
display: inline-block; // Required for proper box rendering
color: rgba(0, 0, 0, 0.20); // Light text color
font-family: _font(family-heading);
font-weight: 300;
font-style: italic;
// Add light borders
border: 1px solid rgba(0, 0, 0, 0.1); // Light, subtle border
border-radius: 8px;
padding: 0.25em 0.5em; // Padding inside the box
// Allow text to flow around it
float: right; // Box floats to the right
margin: 0 0 0.5em 0.5em; // Add spacing around the box
background-color: rgba(0, 0, 0, 0.01); // Optional: Light background for contrast
}