9 lines
256 B
CSS
9 lines
256 B
CSS
/* Change the font color of the text in the upper grey blocks */
|
|
.upper-grey-blocks {
|
|
color: #333; /* Darker color */
|
|
}
|
|
|
|
/* If the text is inside a specific element, you can target it directly */
|
|
.upper-grey-blocks p {
|
|
color: #333; /* Darker color */
|
|
} |