:root {
--site-bg: url("https://file.garden/aJqMVbssVAla_2ig/Bg_2");

/* --cone: #FFFFFF;
--ctwo: #DADADA;
--cthr: #919191;
--test: #000000; */

--cone: #ffffff;
--ctwo: #E8C8C8;
--cthr: #C8C8CC;
  
--post-bg: white;
--post-text: #4E223D;
--post-header-text: #DA587E;
--border-color: #FB8AAB;
--border-shadow: #DA587E80;
  
--sidebar-text: #4E223D;
--sidebar-bg: #FB8AAB;
--sidebar-button-bg: #FFD2E0;
--sidebar-button-bg-hover: #FFE1C6;
--sidebar-button-text: #4E223D;
--sidebar-button-text-hover: #DA587E;
--sidebar-border-color: #DA587E;
  
/*status and tag filters*/
--pinned-text: #4E223D;
--pinned-bg: #FFD2E0;
/*tag filter button colors*/
--button-bg: #FFD2E0;
--button-bg-hover: #FFE1C6;
--button-bg-selected: #FB8AAB;
--button-text: #4E223D;
--button-border-color: #DA587E;
  
/*these next two colors are for when you highlight text on the page*/
--selected-bg: var(--cthr);
--selected-text: var(--cone); }

html {scroll-behavior: smooth;}
::selection {
  background: var(--cthr);
  color: var(--cone);
}
* {
  box-sizing: border-box;
  scrollbar-color: var(--cone) var(--ctwo);
  scrollbar-width: thin;
}

body {
font-family: "Pixelify Sans", "Delius Swash Caps", Verdana, Tahoma, sans-serif;
  font-size: 16px;
  margin: 0;
  background: var(--site-bg);
  color: var(--cone);
  line-height: 1.6em;
  background-attachment: fixed; }
  
summary time, time { font-family: "Pixelify Sans", "Delius Swash Caps", Verdana, Tahoma, sans-serif; }

/*use a pointer for the fake buttons*/
details > summary,
#tag-filters label {cursor: pointer;}

/*quick addon styles you can use in combination with anything*/
.center {text-align: center;}
.justify {text-align: justify;}
.small-text {font-size: smaller;}
.no-border {border: none; padding:0;}
.highlight {color: var(--cone); text-shadow: -1px -1px 0 var(--cthr), 1px -1px 0 var(--cthr), -1px  1px 0 var(--cthr), 1px 1px 0 var(--cthr);}

/*some parts of the layout can be hidden/shown depending on if you're on desktop or mobile*/
.mobile-only {display:none;}
.pc-only {display: block;}

/*this class makes stuff wrap around, very handy*/
.flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
/*this container will center the page contents better for larger screen sizes*/
#container {
  max-width:1200px;
  margin:auto;
}

main {
  /*here is the post width*/
  width: 600px;
  /*this part means it ignores all other elements when figuring out where to sit on the page*/
  position: absolute;
  /*because of that, we gotta tell it how much room to leave for the sidebar*/
  margin-left: 300px;
}

#sidebar {
  background: var(--cthr);
  margin-left: 20px;
  padding: 2em 1em;
  /*we left 300px of room for the sidebar, but we want the width to be less than that since there should be some spacing between*/
  width: 240px;
  
  /*i put dashed borders on each side, but you can change it to a different type or remove them*/
  border-inline: 2px dashed var(--cone);
  /*outlines go outside of the borders, so it makes it look like stitching on the edges. cute!*/
  outline: 4px solid var(--ctwo);
  
  /*the sidebar doesn't scroll with the rest of the page*/
  position: fixed;
  /*this stacks it on top of everything else*/
  z-index: 99;
  /*make sure it takes up the whole screen vertically*/
  height: 100%;
  /*and add a scrollbar if someone's window is too short to see all the content*/
  overflow-y: auto;
}

#sidebar h1 {
  margin-block: .5em;
}
/*link text in the sidebar should be the same color*/
#sidebar a {
  color: var(--cone);
}
/*font size for your name in the sidebar*/
#sidebar h1 a {
  font-size: 1.2em;
}
/*no underline for your name, or hovered links in sidebar*/
#sidebar h1 a,
#sidebar a:hover {text-decoration: none;}

/*center the icon in the sidebar*/
#icon {margin:auto;}
#icon img {
  /*this makes it a circle, lower the number for a rounded square*/
  border-radius:50%;
  max-width:200px;
}
/*these styles are for when your icon image is being used as a link, it just makes it react on mouseover*/
#icon a img {
  outline: 2px solid var(--cone);
  /*adds animation to the outline*/
  transition: .2s;
}
#icon a img:hover {
  outline: 2px solid var(--cone);
  outline-offset: 4px;
}

/*profile text doesnt need as much spacing as the posts do*/
#profile p {
  margin-block: .3em;
  line-height: 1.5em;
}
/*styling the simple bio block*/
#bio {
  border-block: 2px dashed var(--ctwo);
  padding-block: .5em;
  margin-block: 1em;
  font-size: small;
}

/*for the rounded link buttons!*/
#sidebar nav ul {
  text-align: center;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 1em;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 8px;
  justify-content: space-evenly;
}
#sidebar nav li a {
  /*set a width so they're the same size*/
  min-width: 120px;
  display: inline-block;
  background: var(--cone);
  color: var(--cthr);
  font-weight: bold;
  border-radius: 1rem;
  outline: 2px solid #fff0;
  transition: .2s;
  text-decoration: none;
}
#sidebar nav li a:hover {
  background: var(--cone);
  color: var(--cthr);
  outline: 2px solid var(--ctwo);
  outline-offset: 3px;
}
/*and add some spacing around them too*/
#sidebar nav {
  margin-block:1.5em;
}

 /*for the collapsible sections at the top (status and tag filters)*/
.pinned {
  background: var(--cone);
  font-size: smaller;
  padding: .5em;
  border-radius: 1em;
  margin: 1em 0;
  border: 2px solid var(--ctwo);
  outline: 2px solid var(--cthr);
  box-shadow: 2px 2px 6px var(--cone);
}
/*the heading for those blocks*/
.pinned summary {
  color: var(--cthr);
  font-size: 1.5em;
  font-weight: bold;
  border-bottom: 2px dashed var(--ctwo);
  margin: .5em;
}
/*since the summary uses the special font, switch back to the other one for the timestamp*/
.pinned time {
  float: right;
  font-weight: normal;
  font-size: small;
}

/*the list with the alternating colors! (cute!!!)*/
#status ul {
  background: var(--ctwo);
  margin:.5em;
  padding:.5em;
  border-radius: .5em;
}
#status li {
  list-style-type: none;
  padding: .2em;
}
/*list title, ie "reading:"*/
#status li:nth-child(odd) {
  font-weight: bold;
  font-size: 1.2em;
  color: var(--cone);
}
/*list answer, ie "books about magic"*/
#status li:nth-child(even) {
  background: var(--cone);
  color: var(--cthr);
  border-radius: .3em;
  padding-inline: .8em;
}
/*make links the same as in posts*/
#status li a {color: var(--cthr);}
#status li a:hover {text-decoration: none;}

/*finally the post styles!!!*/
.post {
  background: var(--cone);
  color: var(--cthr);
  border-radius: 1rem;
  padding: 0 .8rem .2rem .8rem;
  margin-bottom: 1em;
  box-shadow: 2px 2px 6px var(--ctwo);
  min-width: 100%;
}
/*make sure images stay within the post*/
.post img {max-width:100%;}
/*add some space from the post header if you have an image first*/
.post div + img {margin-top: 1em;}

/*the top of the post where you put your username*/
.post-header {
  color: var(--cthr);
  font-weight: bold;
  padding: .5em 0;
  margin: .2em;
  border-bottom: 2px dashed var(--ctwo);
}
/*and the post's timestamp*/
.post time {
  float: right;
  font-weight: normal;
  font-size: smaller;
  margin: .2em;
}
/*link styling*/
.post a {color:var(--cthr);}

/*this is for lists*/
.post li {
/*you can change the normal dot to anything you want :)*/
  /*list-style-type: "♥ ";*/
/*i used stars to match the bg image!*/
  list-style-image: url("images/star.png");
}

/*"read more" button for long posts*/
.readmore {
  margin-bottom: 1em;
}
.readmore summary {
  font-weight: bold;
  color: var(--thr);
  /*this gets rid of the arrow*/
  list-style-type: none;
}
/*hide the "read more" button after it's clicked (delete this line to keep it there)*/
.readmore[open] > summary {display:none;}
/*optional border to denote a border was there before*/
.readmore[open] {
  border-top: 2px dashed var(--ctwo);
  padding-top:1em;
}

.tags {
  border-top: 2px dashed var(--ctwo);
  padding: .4em 0;
}
.tags a {color: var(--cthr);}
.tags span {color: var(--cthr);}
.tags a,
.tags span {
  font-size: small;
  padding: .2em .5em;
  border-radius: 1em;
  text-decoration: none;
}
.tags a:hover {
  background:var(--ctwo);
  text-decoration: underline;
}

/*css for hiding posts*/
.tagged:has(input:checked) article {display: none;}

/*add new tags to filter here!
 * follow the class naming conventions (no spaces, don't start it with a number)
 * remember on the actual page you can write the tag however you want!*/
.tagged:has(#all:checked) article,
.tagged:has(#about:checked) article[class~="about"],
.tagged:has(#personal:checked) article[class~="personal"],
.tagged:has(#secret:checked) article[class~="secret"],
.tagged:has(#fun:checked) article[class~="fun"] {display: inline-block;}

/*tag filter button styles (there's a lot)*/
#tag-filters label, .pglink {
  background: var(--cone);
  border: 1px solid var(--ctwo);
  border-radius: .5em;
  display: inline-block;
  margin-left: .5em;
  margin-block: .3em;
  padding: 0 .8em 0 .1em;
  color: var(--cthr);
}
/*hovering filter buttons (normal)*/
#tag-filters label:hover, .pglink:hover {
  background: var(--cthr);
  text-decoration: underline;
}
/*selected filters*/
#tag-filters label:has(input:checked) {
  background: var(--cthr);
  color: var(--cone);
  text-decoration: underline;
  font-weight: bold;
}

/*hide the radio button for tags*/
#tag-filters input {appearance: none;}

/*for the "back to top" link at the bottom of the page*/
#page-nav a {color:var(--cone);}
#page-nav a:hover {text-decoration: none;}

footer {
  color: var(--cone);
  background: var(--cthr);
  z-index: 100;
  position: fixed;
  margin-left:22px;
  width:236px;
  bottom:4px;
  font-size: small;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  .mobile-only {display: block;}
  .pc-only {display: none;}
  #container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  
  #sidebar,
  main {
    position: static;
    height: auto;
    flex: 100%;
    max-width: none;
  }
  #sidebar {
    border-inline: none;
    margin-left:0;
    padding: 1em;
    padding-bottom:0;
  }
  #icon {
    max-width:40%;
    margin-right: .5em;
  }
  #icon img {max-width: 100%;}
  
  #sidebar nav {margin-block:.5em;}
  
  main {
    left: 0;
    margin-inline: 1em;
  }

  #profile {flex: 2;}
  #profile p {
    margin-block: 0;
    margin-left:10px;
  }

  #bio {
    border: none;
    padding-block: 0;
  }

  footer {
    position:static;
    text-align:center;
    background:none;
    margin:0;
    width:100%;
    opacity:100%;
  }
}

.pxl1
{ width:11px; height:10px; }













/* END */