/* line 2, app/assets/stylesheets/mastodon.scss */
.mastodon-post a {
  color: #a5a6ff;
  text-decoration: underline;
  text-decoration-color: rgba(165, 166, 255, 0.35);
  text-underline-offset: 2px;
}

/* line 9, app/assets/stylesheets/mastodon.scss */
.mastodon-post a:hover {
  color: #ffff00;
  text-decoration-color: #ffff00;
}

/* line 14, app/assets/stylesheets/mastodon.scss */
.mastodon-post p {
  margin-bottom: 0.75rem;
}

/* line 18, app/assets/stylesheets/mastodon.scss */
.mastodon-post p:last-child {
  margin-bottom: 0;
}
/* line 2, app/assets/stylesheets/image-stream-component.scss */
.image-stream-component img {
  filter: saturate(0);
}

/* line 6, app/assets/stylesheets/image-stream-component.scss */
.image-stream-component img:hover {
  filter: saturate(1);
}
/*
 * Styles for markdown (Kramdown) rendered content inside .post-text.
 */

.post-text h1,
.post-text h2,
.post-text h3,
.post-text h4,
.post-text h5,
.post-text h6 {
  font-family: 'Space Grotesk', serif;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.post-text p {
  margin-bottom: 1.25rem;
}

.post-text a {
  color: rgba(250, 204, 21, 1);
  text-decoration: underline;
  text-decoration-color: rgba(250, 204, 21, 0.4);
}

.post-text a:hover {
  color: rgba(0, 0, 0, 1);
  background-color: rgba(250, 204, 21, 1);
}

.post-text ul,
.post-text ol {
  margin: 0 0 1.25rem 1.5rem;
}

.post-text ul {
  list-style-type: disc;
}

.post-text ol {
  list-style-type: decimal;
}

.post-text blockquote {
  margin: 0 0 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(250, 204, 21, 0.4);
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

.post-text code {
  font-family: 'Courier New', Courier, monospace;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
}

.post-text pre {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.post-text pre code {
  background-color: transparent;
  padding: 0;
}

.post-text img {
  max-width: 100%;
  height: auto;
}

.post-text hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.post-text table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
}

.post-text th,
.post-text td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  text-align: left;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *




 */


/*

27 Jul 2024 - NOTE FROM TAILWIND INSTALL

Normally, the above comment has a line above require_self which says:

```
require_tree .
```

If you do this, then `application.tailwind.css` will be included everywhere
that `application.css` is included. This is NOT the correct behavior. 
The stuff which is written in `application.tailwind.css` should NEVER BE ABLE
to style things which only include `application.css`.

The reverse, however, is not true. Page layouts are configured in such a way
that styles used in `application.css` DO APPLY to pages using Tailwind. This
is, however, ONLY BECAUSE OF the layout file. Not due to how application.tailwind.css
is written.

*/

@font-face {
    font-family: 'Return of Ganon';
    src: url(/fonts/retganon.woff2) format('woff2'),
         url(/fonts/retganon.woff) format('woff');
    font-weight: normal;
    font-style: normal;

}

.font-retganon {
    font-family: 'Return of Ganon';
    font-smooth: never;
    -webkit-font-smoothing: none;
}

.mastodon-post .invisible {
    display: none;
}

