/* styles */
/* called by your view template */

* {
  box-sizing: border-box;
}

body {
  font-family: "Benton Sans", "Helvetica Neue", helvetica, arial, sans-serif;
  margin: 2em;
}

p {
  max-width: 600px;
}

li {
  margin-bottom: 5px;
}

footer {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid lightgrey;
}

blockquote {
  border-left: 4px solid lightgrey;
  padding-left: 5px;
  margin-left: 20px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

select {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  font-size: inherit;
}

header {
  font-size: 18px;
  margin-bottom: 10px;
}

header > * {
  margin-right: 20px;
}

.title {
  font-style: italic;
  font-weight: bold;
  font-size: 36px;
  color: #373fff;
}


.subthread {
  padding: 5px;
  border: 2px solid lightgrey;
  border-radius: 10px;
  margin-left: 10px;
  margin-bottom: 5px;
}

.new-comment {
  border-top: 2px solid #5a5;
}

.new-text {
  display: none;
  color: #C5C5C5;
}

.new-comment .new-text {
  display: inline;
}

.hider {
  color: #777;
  font-family: monospace;
}

.author {
  display: inline-block;
  color: #369;
  text-decoration: none;
  font-weight: bold;
}

.submitter {
  color: blue;
}

.moderator {
  color: green;
}

.admin {
  color: red;
}

.score {
  color: #777;
}

.date {
  color: black;
}

.parent-link:visited {
  color: blue;
}

.permalink:visited {
  color: blue;
}

.gilding {
  color: #ffd700;
  text-shadow: 0 0 3px #000, 0 0 5px #000;
}

.comment-header > * {
  margin-right: 10px;
}

.replies {
  display: flex;
  flex-direction: column;
}