/*
CSS for xaringan slides in Middlebury College flavor
Author: Joseph V. Casillas
Updated: 06/29/2018
*/


/*
Blue (official): #0D395F, PMS 294
Blue accent 1:   #75A3CD, PMS 292
Blue accent 2:   #97BBD5, PMS 544
Grey accent 1:   #4C4B4C, PMS 426
Grey accent 2:   #AAA59F, PMS 401
Yellow:         #D57800
Blue:           #003865
Gray:            #97999B
*/

/* Package defaults that we slightly tweak */

a, a > code {
  color: #97BBD5; /* blue accent 2 */
  text-decoration: none;
}

/* slightly lower and bigger than default */
.footnote {
  position: absolute;
  bottom: 1em;
  padding-right: 4em;
  font-size: 95%;
}

/* important code slightly blue */
.remark-code-line-highlighted {
  background-color: #97BBD5 !important;
}

/* color tweak */
.inverse {
  background-color: #003865;
  color: white;
  text-shadow: 0 0 20px #333;
}

/* slightly spacing change */
.inverse h1, .inverse h2, .inverse h3 {
  color: #f3f3f3;
  line-height: 1.0em;
}

/* Two-column layout (slightly wider for aspect ration) */
.left-column {
  color: #777;
  width: 25%;
  height: 92%;
  float: left;
}

.left-column h2:last-of-type, .left-column h3:last-child {
  color: #000;
}

/* slightly thiner to suppor aspect ration */
.right-column {
  width: 70%;
  float: right;
  padding-top: 1em;
}

.pull-left {
  float: left;
  width: 45%;
}

.pull-right {
  float: right;
  width: 45%;
}

.pull-right + * {
  clear: both;
}

img, video, iframe {
  max-width: 100%;
}

blockquote {
  border-left: solid 5px lightgray;
  padding-left: 1em;
}

/* adjust table horizontal spacing */
th, td {
    padding:0 15px 0 15px;
}

/* remove color from tables */
table {
  margin: auto;
  border-top: none;
  border-bottom: none;
}

table thead th { border-bottom: none; }
thead, tfoot, tr:nth-child(even) { background: none; }

/* leave this alone */
@page { margin: 0; }
@media print {
  .remark-slide-scaler {
    width: 100% !important;
    height: 100% !important;
    transform: scale(1) !important;
    top: 0 !important;
    left: 0 !important;
  }
}

/*~~~~~>>~~~~~~~~~*/
/* MIDD additions */
/*~~~~~~~>>~~~~~~~*/

/* Title slide */

/* Add image and change bg color */
.title-slide {
  /*background-image: url("logos/IRENE_Batiment.png"), url("logos/IRENE/unine_FSE_IRENE_couleur.jpg"); */
  background-size: 40%, 15%;
  background-position: 100% 90%, 95% 5%;
  background-color: #fff;
  padding-left: 100px;  /* delete this for 4:3 aspect ratio */
}

/* H1 fonts */
.title-slide h1 {
  color: #003865; /* Middlebury blue */
  padding-top: 0px;
  font-weight: bold;
  font-size: 45px;
  /*line-height: 0.05; */
  text-align: left;
  text-shadow: none;
  padding-bottom: 18px;
  margin-bottom: 18px; 
}

/* H2 fonts */
.title-slide h2 {
  color: black; /* black */
  font-size: 35px;
  text-align: left;
  font-weight: bold;
  text-shadow: none;
  padding-top: 0px;
  margin-top: 0px;
}

/* H3 fonts */
.title-slide h3 {
  font-size: 28px;
  font-weight: normal;
  color: #4C4B4C; /* Middlebury grey accent 1 */
  text-align: left;
  text-shadow: none;
  padding: 0px;
  margin: 0px;
  line-height: 1;
}

/* Remove slide count */
.title-slide .remark-slide-number {
  text-shadow: none;
}

.hide-count .remark-slide-number {
  display: none;
}

/*~~~~~~~~~~~~~~~~~~*/
/* SECTION DIVIDERS */
/*~~~~~~~~~~~~~~~~~~*/

/* section divider blue */
.title-slide-section-blue {
  background-color: #003865;
  padding-left: 100px;  /* delete this for 4:3 aspect ratio */
}

/* section divider blue H1 fonts */
.title-slide-section-blue h1, .title-slide-section-blue h2, .title-slide-section-blue h3, .title-slide-section-blue p {
  color: #AAA59F;
}

.title-slide-section-blue p {
  color: #fff;
}

/* section divider grey */
.title-slide-section-grey {
  background-color: #4C4B4C;
  padding-left: 100px;  /* delete this for 4:3 aspect ratio */
}

/* section divider grey H1 fonts */
.title-slide-section-grey h1, .title-slide-section-grey h2, .title-slide-section-grey h3 {
  color: #AAA59F;
}

.title-slide-section-grey p {
  color: #fff;
}

/*~~~~~~~~~~~~~~~~~~*/
/* FINAL SLIDE      */
/*~~~~~~~~~~~~~~~~~~*/

.title-slide-final {
  background-color: #AAA59F;
  color: #fff;
  padding-left: 100px;
/*  text-shadow: 0 0 3px #333; */
  text-align: center;
}

.title-slide-final h1 {
  color: #4C4B4C;
}

.title-slide-final h2 {
  color: #4C4B4C;
}

.title-slide-final h3 {
  color: #003865;
}

/*~~~~~~~~~~~~~~~~~~~~*/
/* Global adjustments */
/*~~~~~~~~~~~~~~~~~~~~*/

/* Add padding to all slides for 16:9 aspect ratio */
.remark-slide-content {
  padding-left: 100px;  /* delete this for 4:3 aspect ratio */
}

.remark-slide-content h1{
  font-size: 45px;  /* delete this for 4:3 aspect ratio */
}


/* Color adjustments for text */

/* Make bold syntax compile to midd-blue */
strong {
  color: #003865;
}

.RUred {
  color: #cc0033;
}

/* Add blue tag */
.blue {
  color: #003865;
  font-weight: bold;
}

/* Add grey tag */
.grey {
  color: #4C4B4C;
}

.lightgrey {
  color: #AAA59F;
}

/* Force black */
.black {
  color: black;
  font-weight: bold;
}

/* Add white tag */
.white {
  color: white;
}


/* Color adjustments to headers */
h1 {
  color: #003865;
}

h3 {
  color: #4C4B4C;
}

/* Font size tags */
.big {
  font-size: 1.5em;
}

/* midd blockquote */
blockquote {
  display: block;
  /*margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 40px;
  margin-right: 40px; */
  border-left: solid 8px #D57800;
  background-color: #fff5e9;
  padding: 8px, 2px, 2px, 8px;
  color: black;
  /*-moz-border-radius: 4px;
  -webkit-border-radius: 4px; */
}

.large { font-size: 130% }
.big { font-size: 120% }
.small { font-size: 90% }

.box {border: 2px solid black;
  padding: 20px;}
  
.blocked {
	text-align: justify;
	text-align-last: none;
}
