/*
 * General stylesheet -- cxl webpages
 *
 */

@import 'layout.css';
@import 'header.css';
@import 'navmenu.css';
@import 'fonts.css';
@import 'publications.css';

/*
 * General typesetting
 */

/* Emphasis in latex style */
em { 
  font-style: italics;  
  }

/* Unordered lists: triangles (from icomoon font) as bullet points  */
ul {
  margin-left: 0px;
  padding-left: 15px;
} 

ul>li {
  margin-left: 0.5em;
  list-style-type: none;
  text-indent: -0.8em;
}

ul>li:before {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-size: 70%;
  content: "\ea1c";
  padding-right: 5px;
  /* color: blue; naahh... */
  width: 0.8em;
}


table {
  font-weight: normal;
  }

h1 {
  font-weight: bold ;
  font-size: 16pt;
  }

h2 {
  font-weight: bold;
  font-size: 14pt;
  }

H3, H4, H5, H6, H7 {
  font-weight: bold;
  font-size: 12pt;
  }

a {
  color: #2265b9;
  text-decoration: none;
}

/* links with "->" icon */
a.external:before {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  content: "\ea7d";
  padding-right: 0.2em;
}

/* Links to pdf files */
a.pdflink:before {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  content: "\eadf";
  padding-right: 0.1ex;
}

/* Links to downloads */
a.download:before {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  content: "\e9c5";
  padding-right: 0.1ex;
}

/* Links which display a block */
a.morelink:before {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  content: "\ea43";
  padding-right: 0.1ex;
}


a.external, a.pdflink, a.download, a.morelink {
  margin-right: 1ex;
  }

a:visited {
  color: #2f8bff;
  }

a:hover {
    text-decoration: underline;
}


