@font-face{
  font-family: coolvetica;
  src: url(/stylesheets/fonts/Coolvetica-Regular.woff2);
}

*{
  box-sizing: border-box;
  image-rendering: pixelated;
  margin: 0;
}

::selection{
  color: #fff;
  background: #a9bfc7;
}

::-webkit-scrollbar{
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track{
  border-radius: 3px;
}
 
::-webkit-scrollbar-thumb{
  border: 1px dotted #a5948d;
  border-radius: 3px;
  background: #fff;
}

::-webkit-scrollbar-thumb:hover{
  background: #e1e8ec; 
}

body{
  display: flex;
  color: #887269;
  font-family: coolvetica, Arial;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-left: 5%;

  &::before{
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: -999;
    inset: 0;
    background: url("/images/records/microblog/bg.png") center / cover;
  }
}

.wrap{
  background: #fff;
  width: fit-content;
  padding: 0 0.25em;
  border: dotted #a5948d;
  border-width: 0 1px;
  box-shadow: 1px 1px 0 #887269;
  max-height: 150vh;
}

.fc, .fr{
  position: relative;
  display: flex;
}

.fc{
  flex-direction: column;
}

main{
  flex: 1;
  gap: 0.5em;
  overflow: hidden;
}

a{
  color: #95a8a8;
  text-decoration: 1px underline dashed #c9bfba;
}

a:hover{
  color: #c5cbd3;
}

hr{
  border: 0;
  border-top: 1px dotted #ddd8d6;
  margin-top: 0.25em;
}

section, aside, main, nav,
#info{
  border: dashed #a5948d;
}

main, #info{
  border-width: 0 1px;
}

section{
  background: url(/images/records/microblog/bg1.png);
  width: 450px;
  gap: 0.75em;
  overflow-y: scroll;
  border-width: 0 1px 0 0;
}

aside{
  background: url(/images/records/microblog/bg2.png);
  width: 175px;
  font-size: 10px;
  gap: 0.5em;
  border-width: 0 0 0 1px;

  .fc, .fr{
    gap: 0.35em;
  }
}

section, aside{
  background-color: #fff;
  padding: 0.5em;

  > div{
    background: #fff url(/images/other/t-twill-transparent.png);
    padding: 0.75em;
    border: 1px solid #c2b1aa;
    outline: 1px dotted #ddd8d6;
    outline-offset: -3px;
    box-shadow: 1px 1px 0 #a5948d;
  }

  img{
    display: block;
    width: 100%;
    border: 1px solid #a5948d;
    user-select: none;
  }
}

#header{
  display: block;
  width: 100%;
  height: 200px;
}

nav{
  height: 20px;
  border-width: 1px 0;
}

nav a{
  flex: 1;
  text-align: center;
  background: #f8f7f6;
  border: 1px solid #a19e9c;
  outline: 1px dotted #c9c7c6;
  outline-offset: -3px;
  color: #36312e;
  font-family: coolvetica, sans-serif;
  font-size: 12px;
  text-decoration: none;
  box-shadow: 1px 1px 0 #7c7977;
  transition: all 0.1s;
  padding: 0.35em 0.75em;
}

/* main */

.post{
  display: flex;
  gap: 0.75em;

  .fc{
    width: 100%;
    gap: 0.25em;
  }

  a{
    align-self: flex-start;
  }

  img:not(.icon){
    image-rendering: auto;
    margin-top: 0.25em;
    filter: saturate(0.5) brightness(1.1);
    transition: all 0.2s;
  }

  img:not(.icon):hover{
    cursor: zoom-in;
    filter: none;
  }
}

.icon{
  width: 45px;
  height: 45px;
  outline: 1px dotted #c2b1aa;
  outline-offset: 1px;
}

.user{
  background: #f5f1f0 url(/images/other/bg-stripe-l.png);
  padding: 0 0.5em;
  justify-content: space-between;
  gap: 0.75em;
  border: 1px dotted #ddd8d6;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;

  span{
    color: #887269;
    font-weight: bold;
    letter-spacing: 3px;
    font-size: 12px;
  }

  .fr{
    align-items: center;
    color: #c2b1aa;
    gap: 0.75em;
    font-size: 10px;
  }
}

.photo::before{
  content: "";
  pointer-events: none;
  background-image: url(/images/other/t-twill-white.png);
  position: absolute;
  z-index: 999;
  inset: 0;
  opacity: 0.25;
}

/* sidebar */

#following{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5em;

  img:hover{
    filter: brightness(1.05);
  }
}

.info-span{
  display: flex;
  justify-content: space-between;

  > span{
    color: #a6af78;
    text-decoration: 1px underline dashed #c2b1aa;
    margin-right: 1em;
  }

  p{
    text-align: right;
  }
}

.info-title{
  text-align: center;
  font-weight: bold;
  font-size: 10px;
  letter-spacing: 3px;
  border: 1px dotted #fff;
  box-shadow: 1px 1px 0 #a5948d;
  background: url(/images/other/bg-stripe-l.png);
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

#statuscafe-username{
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35em;

  a{
    text-transform: uppercase;
  }
}

.lace img{
  height: 50vh;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(1px 1px 0 #a5948d);
}