Hi everybody,
in my recipe I wanted to override the default CSS of a news recipe. So I added:
Code:
extra_css = '''
.article_date {
color: black;
font-size: small;
display: block; }
.article_description {
color: gray;
display: block;
text-indent: 0;
font-size: large; }
'''
The change of the font size in the .article_date works as expected. Unfortunately, the font size of the .article_description does not.
What am I doing wrong here?