User:Pharillon/monobook.css

In today's world, User:Pharillon/monobook.css has been the subject of debate and analysis in various areas. From psychology to politics, User:Pharillon/monobook.css has captured the attention of experts and citizens alike. In a context in which information constantly flows through social networks and the media, it is inevitable to be curious about User:Pharillon/monobook.css and its impact on our society. In this article, we will explore in detail the implications of User:Pharillon/monobook.css in different areas, as well as possible implications for the future. Without a doubt, User:Pharillon/monobook.css has become an essential element in everyday life and its relevance cannot be underestimated.
/* indent 1st lines of paragraphs and set font size*/
p {
   text-indent: 1em;
   font-size: medium;
}

/* make a few corners round, only supported by moz/firefox/other gecko browsers for now */
#p-cactions ul li, #p-cactions ul li a {  
  -moz-border-radius-topleft: 1em;
  -moz-border-radius-topright: 1em;
}
#content { 
  -moz-border-radius-topleft: 1em; 
  -moz-border-radius-bottomleft: 1em;
}
div.pBody {
  -moz-border-radius-topright: 1em;
  -moz-border-radius-bottomright: 1em;
}

/* same following the css3 draft specs, any browsers supporting this? */
#p-cactions ul li, #p-cactions ul li a {  
  border-radius-topleft: 1em;
  border-radius-topright: 1em;
}
#content { 
  border-radius-topleft: 1em;
  border-radius-bottomleft: 1em;
}
div.pBody {
  border-radius-topright: 1em;
  border-radius-bottomright: 1em;
}