a:link {
  color: #00a;
  text-decoration: none;
  border-bottom: none;
}

a:visited {
  color: #808;
  text-decoration: none;
  border-bottom: 1px dotted #b8b;
}

a:hover {
  color: #800;
  background-color: #fee;
  border-bottom: none;
  text-decoration: none;
}

a:active {
  color: #f00;
}

span.here {
  color: #800;
  background-color: #ffb;
}

body {
  font-family: Lato, Sans-serif;
  font-weight: 400;
  hyphens: auto;
}

h1 {
  font-weight: 900;
}

h2, h3 {
  font-weight: 700;
}

b {
  font-weight: 700;
}

td {
  font-weight: 400;
}

pre code {
  background: #f6f8fa;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  padding: 0rem 1rem 0.75rem;
  overflow-x: auto;       /* horizontal scroll if lines are long */
  font-size: 0.9rem;      /* optional: shrink a bit */
  line-height: 1.45;
}


.row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

.ico {
    grid-column: span 1;
    vertical-align: top;
    border-left: 2px solid #cfcfcf;
    position: relative;
}
.ico img {
    border-radius: 5px;
    width: 100%;
    max-width: 80px;
    margin-left: 10px;
}
.desc {
    grid-column: span 10;
    vertical-align: top;
    font-size: 17px;
    padding-left: 20px;
    padding-bottom: 20px;
}
.entry {
}
.entry-dot {
    position: absolute;
    top: 0px;
    left: -8px;
    width: 10px;
    height: 10px;
    border-radius: 7px;
    background-color: #cfcfcf;
    border: 2px solid white;
}
.timespan {
    grid-column: span 1;
    font-size: 14px;
    text-align: right;
    padding-right: 5px;
    color: #bbb;
}

#history {
  max-width: 760px;
  margin: 70px auto 60px;
  padding: 0 16px;
}

#history .row {
  display: grid;
  grid-template-columns: 140px 80px 1fr;  /* timespan | icon | description */
  column-gap: 24px;
  align-items: start;
}

#history .entry { margin-bottom: 18px; }
#history .entry:last-child { margin-bottom: 0; }

/* Override the global span rules inside #history */
#history .timespan { grid-column: 1; text-align: right; padding-right: 10px; color: #bbb; white-space: nowrap;}
#history .ico { grid-column: 2; position: relative; border-left: 2px solid #cfcfcf; padding-left: 12px; }
#history .desc { grid-column: 3; padding-left: 0; }

/* Keep the dot aligned with the vertical line */
#history .entry-dot { position: absolute; top: 0; left: -7px; }

/* Fix icon sizing so it doesn’t stretch/shrink with the grid */
#history .ico img { width: 70px; height: auto; max-width: none; margin-left: 10px; }