/* Windex directory listing
------------------------- */

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #333;
  background: #EEE;
  padding-bottom: 120px;
}

.container {
  max-width: 600px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #15E;
}
a:visited { color: #818;}
a:hover { color: #038;}

/* table */
table {
  width: 100%;
  border-collapse: collapse;
}

/* hide header row */
tr:first-child { display: none; }

/* icon */
td:nth-child(1) {
  width: 24px;
  vertical-align: middle;
}

td:nth-child(1) a { display: block; }

/* file name */
td:nth-child(2) {
  width: 100%;
}

td:nth-child(2) a {
  display: block;
  padding: 8px 10px;
  border-radius: 4px;
  position: relative;
}

/* pointer for folders */
td:nth-child(2) a[href$="/"]:after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  right: 15px;
  top: 11px;
  transform: rotate(45deg);
  border-style: solid;
  border-width: 3px 3px 0 0;
  border-color: #08F;
}

/* Parent directory */
/* select href="/folder/" but not "folder/" */
td:nth-child(2) a[href^="/"][href$="/"]:after {
  border-width:  0 0 3px 3px;
  border-color: #AAA;
  right: 11px
}

td:nth-child(2) a:hover {
  background: #CDF;
}

/* size */
td:nth-child(3) {
  color: #888;
  font-size: 0.9rem;
}

/*
.container:before {
 background: transparent url(/play/chunk-logo/chunk-arch-2000.png) no-repeat center top;
  background-size: 450px;
  display: inline-block;
  width: 100%;
  height: 100px;
  content:"";
}
*/



body {
  font-family: Calibri, Tahoma, system-ui, -apple-system, 'Segoe UI', sans-serif;
}


.wrap {
  margin: 50px auto 80px;
  padding: 100px 0;
  background: transparent url(//jsanders.us/play/chunk-logo/chunk-arch-2000.png) no-repeat center top;
  background-size: 450px
}


.container {
    background: white;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 8px hsla(0,0%,0%,.2);
}

.container > h1 {
  font-size:1.5em;
}

.container > h1:before {
  content: "Index of ";
  font-weight:100;
}

td:nth-child(2) a {
  padding: 4px;
}

