/*
* littlelink V1
* https://littlelink.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/21/2019
*
* Built using:
*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/

/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Code
- Spacing
- Utilities
*
* You'll find the button css in css/brands.css.
*
*/

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.container-left {
  position: relative;
  width: 100%;
  max-width: 600px;
  text-align: left;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.column {
  position: center;
  width: 100%;
  float: center;
  box-sizing: border-box;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0;
  }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%;
  }
  .column,
  .columns {
    margin-left: 0;
  }
  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }
}

/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */

html {
  font-size: 100%;
  color-scheme: light dark;
}
body {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;

}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1 {
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 800;
}
h1 {
  font-size: 24px;
  line-height: 64px;
  letter-spacing: 0;
}

/* Larger than phablet */
@media (min-width: 550px) {
  h1 {
    font-size: 48px;
    line-height: 96px;
  }
}

p {
  margin-top: 0;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #2457F5;
}
a:hover {
  color: #083BDA; 
}
a:focus {
  outline: #7AB8FF solid 2px;
  border-radius: 2px;
}         

/* Link Color Dark Theme */
@media (prefers-color-scheme: dark) {
a {
    color: #eee;
}
a:hover {
  color: #7AB8FF;
}
a:focus {
  outline: #7AB8FF solid 2px;
  border-radius: 2px;
}
.avatar { 
  filter: brightness(0) invert(1);
}
}

/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: 0.2rem 0.5rem;
  margin: 0 0.2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #f1f1f1;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem;
}
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}
pre,
blockquote,
dl,
figure,
p,
ol {
  margin-bottom: 2.5rem;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #e1e1e1;
}
/* Radius values:

10%-40%: Squircles
50% (default): True circle
*/
.avatar {
  /* width: 128px; */
  height: 128px;
  /* object-fit: cover; */
  /* background-position: center; */
  /* border-radius: 50%; */
}

/* design based on this codepen - https://codepen.io/borntofrappe/pen/ZZaaOe */
table {
  /* position relative to include a band on the left of the container */
  margin-left: 0.5rem;
  position: relative;
  /* cap the width of the table, allowing for a sizeable portion of white space if allowed by the viewport */
  width: calc(100% - 0.5rem);
  /* spacing to separate the table rows vertically */
  border-spacing: 0 1rem;
}

/* with a pseudo element add a band with a repeating linear gradient */
@media (prefers-color-scheme: dark) {
  table:before {
    position: absolute;
    content: "";
    right: calc(100% + 1rem);
    top: 0;
    height: 100%;
    width: 1.5rem;
    border-radius: 5px;
    border: 1px solid #38383f;
    background: repeating-linear-gradient(-45deg,
        #15151e 0px,
        #15151e 4px,
        #38383f 4px,
        #38383f 8px);
  }
}

@media (prefers-color-scheme: light) {
  table:before {
    position: absolute;
    content: "";
    right: calc(100% + 1rem);
    top: 0;
    height: 100%;
    width: 1.5rem;
    border-radius: 5px;
    border: 1px solid #76316e;
    background: repeating-linear-gradient(-45deg,
        #76316e 4px,
        #ffffff 8px);
  }
}

/* center every element nested in a table row */
table tr>* {
  text-align: center;
  padding: 0.5rem;
}

/* align every second item of each row to the left */
table tr>*:nth-child(2) {
  text-align: left;
}

/* style the headings to have thin uppercase titles for the columns */
table th {
  font-weight: 300;
  letter-spacing: 0.04rem;
  font-size: 0.9rem;
  /* color: #eee; */
  text-transform: uppercase;
}

/* slightly increase the weight of the cell describing the position */
table td.position {
  font-weight: 500;
}

/* style the cell with the team visually separating the first, last name and team */
table td.team {
  padding-left: 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.05rem;
}

table td.team strong {
  text-transform: uppercase;
  font-weight: 500;
}

table td.team span, td.subtle, td span.subtle{
  text-transform: capitalize;
  margin-left: 0.75rem;
  font-size: 0.8rem;
  color: #999;
  letter-spacing: initial;
}

/* style the span nested in the last cell to have the gap in a rounded rectangle */
table td.time span {
  background: #76316e;
  border-radius: 30px;
  color: white;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
}
