/* page-list.css */
 .page-list {
   max-width: 700px;
   margin: auto;
   margin-top: .5in;
 }
 
 .updated {
   color: #222;
   font-size: 9pt;
 }
 
 .updated::before {
   content: '(updated:';
 }
 
 .updated::after {
   content: ')';
 }
 
 .title::before {
   content: 'Recent articles';
 }
 
 li {
   margin: 5px;
 }
 
 .page-list a {
   text-decoration: none;
 }