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

@@ -317,6 +317,23 @@ main > section > div > h4 {
font-weight: 700;
}
small > em {
font-size: 1.4rem;
line-height: 1.4rem;
transform: scale(0.75);
display: inline-block;
color: rgba(0, 0, 0, 0.2);
font-family: "Roboto Slab", serif;
font-weight: 300;
font-style: italic;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 8px;
padding: 0.25em 0.5em;
float: right;
margin: 0 0 0.5em 0.5em;
background-color: rgba(0, 0, 0, 0.01);
}
/* Row */
.row {
display: flex;

File diff suppressed because one or more lines are too long

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
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long