/**
 * @file
 * Visual styles for nodes.
 */

/*
.node--unpublished {
  background-color: #fff4f4;
}
*/



/**
 * ===== NODE UNPUBLISHED =====
 */
.node--unpublished {}

/**/
body.user-logged-in .node--unpublished {
  position: relative;
}
body.user-logged-in .node--unpublished::after {
  background-color: red;
  bottom: 0;
  color: #FFFFFF;
  content: "UN-PUBLISHED";
  display: none;
  opacity: 0.2;
  padding: 0.5rem 1.0rem;
  position: absolute;
  right: 0;
}




/**
 * ===== NODE SUBMITTED =====
 */
article.node p.node__submitted {}
article.node p.node__submitted span.user {}
article.node p.node__submitted span.user a {}
article.node p.node__submitted span.date {}




/**
 * ===== NODE LINKS =====
 */
article.node .node__links {}
article.node .node__links a {}
article.node .node__links a:hover {}
