12 lines
508 B
CSS
12 lines
508 B
CSS
/* docs/source/_static/custom.css */
|
|
|
|
/* Style for the custom 'big-text' role */
|
|
.big-text {
|
|
font-size: 2.5em; /* Adjust the size as needed (e.g., 2em, 3em) */
|
|
font-weight: bold; /* Make it bold for emphasis */
|
|
color: #cc0000; /* Optional: Change color for more emphasis */
|
|
display: block; /* Make it a block element to put it on its own line */
|
|
margin-top: 1em; /* Add some space above */
|
|
margin-bottom: 1em; /* Add some space below */
|
|
text-align: center; /* Center the text */
|
|
} |