2021-01-18 15:11:36 +13:00
|
|
|
/* Define themes */
|
2020-10-26 09:25:59 +13:00
|
|
|
|
2021-01-18 15:11:36 +13:00
|
|
|
/* Constants */
|
2020-12-20 16:54:46 +13:00
|
|
|
:root {
|
2021-01-18 12:42:55 +13:00
|
|
|
--nsfw: #ff5c5d;
|
2021-01-17 12:02:24 +13:00
|
|
|
--admin: #ea0027;
|
2023-01-12 21:46:56 +13:00
|
|
|
|
|
|
|
/* Reddit redirect warning constants */
|
|
|
|
--popup-red: #ea0027;
|
|
|
|
--popup-black: #111;
|
|
|
|
--popup-text: #fff;
|
|
|
|
--popup-background-1: #0f0f0f;
|
|
|
|
--popup-background-2: #220f0f;
|
|
|
|
--popup-reddit-url: var(--popup-red);
|
|
|
|
|
|
|
|
--popup-background: repeating-linear-gradient(
|
|
|
|
-45deg,
|
|
|
|
var(--popup-background-1),
|
|
|
|
var(--popup-background-1) 50px,
|
|
|
|
var(--popup-background-2) 50px,
|
|
|
|
var(--popup-background-2) 100px
|
|
|
|
);
|
|
|
|
|
|
|
|
--popup-toreddit-background: var(--popup-black);
|
|
|
|
--popup-toreddit-text: var(--popup-red);
|
|
|
|
--popup-goback-background: var(--popup-red);
|
|
|
|
--popup-goback-text: #222;
|
|
|
|
--popup-border: 1px solid var(--popup-red);
|
2024-01-06 16:49:38 +13:00
|
|
|
|
|
|
|
--footer-height: 30px;
|
2020-12-20 16:54:46 +13:00
|
|
|
}
|
|
|
|
|
2021-05-20 11:09:08 +12:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Inter';
|
|
|
|
src: url('/Inter.var.woff2') format('woff2-variations');
|
|
|
|
font-style: normal;
|
2024-06-12 03:46:44 +12:00
|
|
|
font-weight: 100 900;
|
2021-05-20 11:09:08 +12:00
|
|
|
}
|
|
|
|
|
2021-01-18 15:11:36 +13:00
|
|
|
/* Automatic theme selection */
|
|
|
|
:root, .dark{
|
|
|
|
/* Default & fallback theme (dark) */
|
|
|
|
--accent: aqua;
|
|
|
|
--green: #5cff85;
|
|
|
|
--text: white;
|
|
|
|
--foreground: #222;
|
|
|
|
--background: #0f0f0f;
|
|
|
|
--outside: #1f1f1f;
|
|
|
|
--post: #161616;
|
2021-01-19 18:32:25 +13:00
|
|
|
--panel-border: 1px solid #333;
|
2021-01-18 15:11:36 +13:00
|
|
|
--highlighted: #333;
|
2021-07-19 09:53:08 +12:00
|
|
|
--visited: #aaa;
|
2021-01-18 15:11:36 +13:00
|
|
|
--shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
|
2023-01-12 21:46:56 +13:00
|
|
|
--popup: #b80a27;
|
2024-06-22 22:38:13 +12:00
|
|
|
--spoiler: #ddd;
|
2022-12-27 10:57:04 +13:00
|
|
|
|
|
|
|
/* Hint color theme to browser for scrollbar */
|
|
|
|
color-scheme: dark;
|
2021-01-18 15:11:36 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Browser-defined light theme */
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
:root {
|
|
|
|
--accent: #009a9a;
|
|
|
|
--green: #00a229;
|
|
|
|
--text: black;
|
|
|
|
--foreground: #f5f5f5;
|
|
|
|
--background: #ddd;
|
|
|
|
--outside: #ececec;
|
|
|
|
--post: #eee;
|
2021-01-19 18:32:25 +13:00
|
|
|
--panel-border: 1px solid #ccc;
|
2021-01-18 15:11:36 +13:00
|
|
|
--highlighted: white;
|
2021-07-19 09:53:08 +12:00
|
|
|
--visited: #555;
|
2021-01-18 15:11:36 +13:00
|
|
|
--shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
2024-06-22 22:38:13 +12:00
|
|
|
--spoiler: #0f0f0f;
|
2022-12-27 10:57:04 +13:00
|
|
|
|
|
|
|
/* Hint color theme to browser for scrollbar */
|
|
|
|
color-scheme: light;
|
2021-01-18 15:11:36 +13:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-21 13:41:31 +12:00
|
|
|
/* Other themes are located in the "themes" folder */
|
2021-11-25 08:31:19 +13:00
|
|
|
|
2023-12-27 09:45:12 +13:00
|
|
|
/* Tokyo Night theme setting */
|
|
|
|
.tokyoNight {
|
|
|
|
--accent: #565f89;
|
|
|
|
--green: #73daca;
|
|
|
|
--text: #a9b1d6;
|
|
|
|
--foreground: #24283b;
|
|
|
|
--background: #1a1b26;
|
|
|
|
--outside: #24283b;
|
|
|
|
--post: #1a1b26;
|
|
|
|
--panel-border: 1px solid #a9b1d6;
|
|
|
|
--highlighted: #414868;
|
|
|
|
--visited: #414868;
|
|
|
|
--shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
|
2021-01-18 15:11:36 +13:00
|
|
|
/* General */
|
|
|
|
|
2021-01-01 12:54:13 +13:00
|
|
|
::selection {
|
2021-01-11 15:15:34 +13:00
|
|
|
color: var(--foreground);
|
2021-01-01 12:54:13 +13:00
|
|
|
background: var(--accent);
|
|
|
|
}
|
|
|
|
|
2021-02-14 10:38:12 +13:00
|
|
|
:focus-visible {
|
2021-02-01 17:56:13 +13:00
|
|
|
outline: 2px solid var(--accent);
|
|
|
|
}
|
|
|
|
|
2021-01-09 18:57:36 +13:00
|
|
|
html, body, div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote,
|
|
|
|
pre, form, fieldset, table, th, td, select, input {
|
2022-05-16 07:56:25 +12:00
|
|
|
accent-color: var(--accent);
|
2020-12-29 15:42:46 +13:00
|
|
|
margin: 0;
|
2021-01-07 07:51:13 +13:00
|
|
|
color: var(--text);
|
2021-05-27 15:30:08 +12:00
|
|
|
font-family: "Inter", sans-serif;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2024-04-08 02:52:59 +12:00
|
|
|
html.fixed_navbar {
|
|
|
|
scroll-padding-top: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 800px) {
|
|
|
|
html.fixed_navbar {
|
|
|
|
scroll-padding-top: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-20 16:54:46 +13:00
|
|
|
body {
|
|
|
|
background: var(--background);
|
2024-01-07 10:53:58 +13:00
|
|
|
padding-bottom: var(--footer-height);
|
2021-01-04 16:44:44 +13:00
|
|
|
font-size: 15px;
|
2024-01-07 10:53:58 +13:00
|
|
|
position: relative;
|
2022-06-19 09:53:30 +12:00
|
|
|
}
|
|
|
|
|
2024-01-07 10:53:58 +13:00
|
|
|
body.card {
|
|
|
|
min-height: calc(100vh - 30px);
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2024-01-06 16:49:38 +13:00
|
|
|
body.fixed_navbar {
|
2024-01-07 10:53:58 +13:00
|
|
|
min-height: calc(100vh - 90px);
|
2024-01-06 16:49:38 +13:00
|
|
|
padding-top: 60px;
|
|
|
|
}
|
|
|
|
|
2020-12-21 14:45:26 +13:00
|
|
|
nav {
|
2021-01-18 10:24:44 +13:00
|
|
|
display: grid;
|
2021-01-31 11:52:18 +13:00
|
|
|
grid-template-areas: "logo searchbox links";
|
2021-01-18 10:24:44 +13:00
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
justify-content: space-between;
|
2021-01-01 12:54:13 +13:00
|
|
|
align-items: center;
|
2021-01-18 10:24:44 +13:00
|
|
|
|
2020-12-22 18:39:55 +13:00
|
|
|
color: var(--accent);
|
2020-12-20 16:54:46 +13:00
|
|
|
background: var(--outside);
|
2021-01-18 10:24:44 +13:00
|
|
|
box-shadow: var(--shadow);
|
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
font-size: 20px;
|
2021-01-18 10:24:44 +13:00
|
|
|
|
2021-01-30 23:21:54 +13:00
|
|
|
z-index: 2;
|
2021-01-18 10:24:44 +13:00
|
|
|
top: 0;
|
|
|
|
padding: 5px 15px;
|
2022-06-19 09:53:30 +12:00
|
|
|
margin-bottom: 10px;
|
2021-01-01 13:45:10 +13:00
|
|
|
min-height: 40px;
|
2021-01-08 07:46:00 +13:00
|
|
|
width: calc(100% - 30px);
|
2022-06-19 09:53:30 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
nav.fixed_navbar {
|
2021-01-18 10:24:44 +13:00
|
|
|
position: fixed;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2021-01-07 07:51:13 +13:00
|
|
|
nav * { color: var(--text); }
|
2021-02-01 10:22:11 +13:00
|
|
|
nav #reddit, #code > span { color: var(--accent); }
|
|
|
|
nav #code > svg { stroke: var(--accent); }
|
2021-02-01 07:41:32 +13:00
|
|
|
|
|
|
|
nav #logo {
|
|
|
|
grid-area: logo;
|
|
|
|
white-space: nowrap;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2021-01-31 11:52:18 +13:00
|
|
|
|
2021-01-31 17:18:57 +13:00
|
|
|
nav #links {
|
|
|
|
grid-area: links;
|
|
|
|
margin-left: 10px;
|
2021-02-01 10:22:11 +13:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav #links svg {
|
|
|
|
display: none;
|
2021-01-31 17:18:57 +13:00
|
|
|
}
|
|
|
|
|
2023-12-27 12:25:52 +13:00
|
|
|
nav #redlib {
|
2021-01-31 17:18:57 +13:00
|
|
|
vertical-align: -2px;
|
|
|
|
}
|
2020-11-23 13:29:05 +13:00
|
|
|
|
2024-04-10 10:33:13 +12:00
|
|
|
figcaption {
|
|
|
|
margin-top: 5px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2021-01-06 15:16:32 +13:00
|
|
|
#settings_link {
|
|
|
|
opacity: 0.8;
|
2021-11-15 15:39:33 +13:00
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2023-01-12 21:46:56 +13:00
|
|
|
.popup {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
overflow: clip;
|
|
|
|
opacity: 0;
|
|
|
|
position: fixed;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
transition: all 0.1s ease-in-out;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fallback for firefox esr */
|
|
|
|
.popup {
|
|
|
|
background-color: #000000fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* all other browsers */
|
|
|
|
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
|
|
|
|
.popup {
|
|
|
|
-webkit-backdrop-filter: blur(.25rem) brightness(15%);
|
|
|
|
backdrop-filter: blur(.25rem) brightness(15%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-inner {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
max-width: 600px;
|
|
|
|
max-height: 500px;
|
|
|
|
width: fit-content;
|
|
|
|
height: fit-content;
|
|
|
|
padding: 1rem;
|
|
|
|
background: var(--popup-background);
|
|
|
|
border: var(--popup-border);
|
|
|
|
border-radius: 5px;
|
|
|
|
transition: all 0.1s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-inner svg {
|
|
|
|
display: unset !important;
|
|
|
|
width: 35%;
|
|
|
|
stroke: none;
|
|
|
|
margin: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-inner h1 {
|
|
|
|
color: var(--popup-text);
|
|
|
|
margin: 1.5rem 1.5rem 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-inner p {
|
|
|
|
color: var(--popup-text);
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-inner a {
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 2%;
|
|
|
|
width: 80%;
|
|
|
|
margin: 0.5rem;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: all 0.1s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#goback {
|
|
|
|
background: var(--popup-goback-background);
|
|
|
|
color: var(--popup-goback-text);
|
|
|
|
}
|
|
|
|
|
|
|
|
#goback:not(.selected):hover {
|
2021-11-15 15:39:33 +13:00
|
|
|
opacity: 0.8;
|
2021-01-06 15:16:32 +13:00
|
|
|
}
|
|
|
|
|
2023-01-12 21:46:56 +13:00
|
|
|
#toreddit {
|
|
|
|
background: var(--popup-toreddit-background);
|
|
|
|
color: var(--popup-toreddit-text);
|
|
|
|
border: 1px solid var(--popup-red);
|
|
|
|
}
|
|
|
|
|
|
|
|
#toreddit:not(.selected):hover {
|
|
|
|
background: var(--popup-toreddit-text);
|
|
|
|
color: var(--popup-toreddit-background);
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup:target {
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#reddit_url {
|
|
|
|
width: 80%;
|
|
|
|
color: var(--popup-reddit-url);
|
|
|
|
font-weight: 600;
|
|
|
|
line-break: anywhere;
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
|
|
|
|
2021-02-01 10:22:11 +13:00
|
|
|
#code {
|
2021-11-15 15:39:33 +13:00
|
|
|
margin-left: 10px;
|
2021-02-01 10:22:11 +13:00
|
|
|
}
|
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
main {
|
2020-12-24 19:16:04 +13:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2021-01-01 17:21:56 +13:00
|
|
|
max-width: 1000px;
|
2020-12-24 19:16:04 +13:00
|
|
|
padding: 10px 20px;
|
2021-01-30 18:00:55 +13:00
|
|
|
margin: 0 auto;
|
2023-03-09 18:14:43 +13:00
|
|
|
padding-bottom: 4em;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2021-01-11 10:08:36 +13:00
|
|
|
.wide main {
|
|
|
|
max-width: calc(100% - 40px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.wide #column_one {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-01-02 19:21:43 +13:00
|
|
|
#column_one {
|
2022-11-10 05:16:51 +13:00
|
|
|
width: 100%;
|
2021-01-02 19:21:43 +13:00
|
|
|
max-width: 750px;
|
|
|
|
border-radius: 5px;
|
2021-11-25 15:08:27 +13:00
|
|
|
overflow: inherit;
|
2021-01-02 19:21:43 +13:00
|
|
|
}
|
2021-01-01 17:21:56 +13:00
|
|
|
|
2023-01-03 22:39:45 +13:00
|
|
|
/* Body footer. */
|
|
|
|
body > footer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2023-03-09 18:14:43 +13:00
|
|
|
align-items: center;
|
2023-03-24 00:43:45 +13:00
|
|
|
width: 100%;
|
2023-03-09 18:14:43 +13:00
|
|
|
background: var(--post);
|
2024-01-06 16:49:38 +13:00
|
|
|
position: absolute;
|
2023-03-09 18:14:43 +13:00
|
|
|
bottom: 0;
|
2023-01-03 22:39:45 +13:00
|
|
|
}
|
|
|
|
|
2023-03-09 18:14:43 +13:00
|
|
|
.footer-button {
|
2023-01-30 22:02:43 +13:00
|
|
|
align-items: center;
|
|
|
|
border-radius: .25rem;
|
2023-01-03 22:39:45 +13:00
|
|
|
box-sizing: border-box;
|
2023-01-30 22:02:43 +13:00
|
|
|
color: var(--text);
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-flex;
|
2023-03-09 18:14:43 +13:00
|
|
|
padding-left: 1em;
|
|
|
|
opacity: 0.8;
|
2023-01-03 22:39:45 +13:00
|
|
|
}
|
2023-01-30 22:02:43 +13:00
|
|
|
|
2023-01-03 22:39:45 +13:00
|
|
|
/* / Body footer. */
|
|
|
|
|
|
|
|
/* Footer in content block. */
|
|
|
|
main > * > footer {
|
2020-11-20 10:49:32 +13:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2021-01-09 17:55:40 +13:00
|
|
|
margin-top: 20px;
|
2020-11-20 10:49:32 +13:00
|
|
|
}
|
|
|
|
|
2023-01-03 22:39:45 +13:00
|
|
|
main > * > footer > a {
|
2021-01-01 12:54:13 +13:00
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2023-01-03 22:39:45 +13:00
|
|
|
/* / Footer in content block. */
|
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
button {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
font-weight: bold;
|
2023-04-30 06:16:02 +12:00
|
|
|
cursor: pointer;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2020-12-29 15:42:46 +13:00
|
|
|
hr {
|
|
|
|
margin: 20px 0;
|
|
|
|
}
|
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2021-01-18 08:39:57 +13:00
|
|
|
a:hover {
|
2020-10-26 09:25:59 +13:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2021-01-18 12:51:03 +13:00
|
|
|
svg {
|
|
|
|
stroke: var(--text);
|
|
|
|
}
|
|
|
|
|
2020-12-29 15:42:46 +13:00
|
|
|
img[src=""] {
|
|
|
|
display: none;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2020-12-24 19:16:04 +13:00
|
|
|
aside {
|
|
|
|
flex-grow: 1;
|
2021-01-04 16:44:44 +13:00
|
|
|
margin: 20px 20px 0 10px;
|
2020-12-29 15:42:46 +13:00
|
|
|
max-width: 350px;
|
2020-12-24 19:16:04 +13:00
|
|
|
}
|
|
|
|
|
2021-01-06 15:04:49 +13:00
|
|
|
.post, .panel {
|
2021-01-19 18:32:25 +13:00
|
|
|
border: var(--panel-border);
|
2021-01-04 16:44:44 +13:00
|
|
|
}
|
|
|
|
|
2021-01-05 16:26:41 +13:00
|
|
|
.dot {
|
|
|
|
font-size: 12px;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2020-12-24 19:16:04 +13:00
|
|
|
/* User & Subreddit */
|
2020-10-26 09:25:59 +13:00
|
|
|
|
2020-12-29 15:42:46 +13:00
|
|
|
#user, #subreddit, #sidebar {
|
|
|
|
margin: 40px auto 0 auto;
|
2020-10-26 09:25:59 +13:00
|
|
|
display: flex;
|
2020-12-24 19:16:04 +13:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2020-12-29 15:42:46 +13:00
|
|
|
height: max-content;
|
|
|
|
background: var(--outside);
|
|
|
|
border-radius: 5px;
|
2021-01-02 19:21:43 +13:00
|
|
|
overflow: hidden;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
2023-06-07 22:51:27 +12:00
|
|
|
#subreddit, #sidebar { min-width: 350px; }
|
2020-10-26 09:25:59 +13:00
|
|
|
|
2021-01-01 17:21:56 +13:00
|
|
|
#user *, #subreddit * { text-align: center; }
|
|
|
|
|
2021-01-04 16:44:44 +13:00
|
|
|
#user, #sub_meta, #sidebar_contents { padding: 20px; }
|
2021-01-02 19:21:43 +13:00
|
|
|
|
2021-01-04 16:44:44 +13:00
|
|
|
#sidebar, #sidebar_contents { margin-top: 10px; }
|
2023-06-07 22:51:27 +12:00
|
|
|
#sidebar_label, #subreddit_label {
|
|
|
|
padding: 10px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2020-12-29 15:42:46 +13:00
|
|
|
|
2021-01-02 19:21:43 +13:00
|
|
|
#user_icon, #sub_icon {
|
2020-10-26 09:25:59 +13:00
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
2020-12-24 19:16:04 +13:00
|
|
|
border: 2px solid var(--accent);
|
2020-10-26 09:25:59 +13:00
|
|
|
border-radius: 100%;
|
2020-12-24 19:16:04 +13:00
|
|
|
padding: 10px;
|
|
|
|
margin: 10px;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2021-01-02 19:21:43 +13:00
|
|
|
#user_title, #sub_title {
|
2021-01-01 17:21:56 +13:00
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
2020-11-23 13:29:05 +13:00
|
|
|
}
|
|
|
|
|
2021-01-02 19:21:43 +13:00
|
|
|
#user_description, #sub_description {
|
2021-02-23 09:56:23 +13:00
|
|
|
margin: 0 15px;
|
|
|
|
text-align: left;
|
2021-11-28 15:49:41 +13:00
|
|
|
overflow-wrap: anywhere;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2021-02-23 09:56:23 +13:00
|
|
|
#user_name, #user_description:not(:empty), #user_icon,
|
2021-01-04 16:44:44 +13:00
|
|
|
#sub_name, #sub_icon, #sub_description:not(:empty) {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2021-01-01 17:21:56 +13:00
|
|
|
|
2021-11-26 17:02:04 +13:00
|
|
|
#user_details, #sub_details, #sub_actions, #user_actions {
|
2020-12-24 19:16:04 +13:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
grid-column-gap: 20px;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2021-01-02 19:21:43 +13:00
|
|
|
#user_details > label, #sub_details > label {
|
2020-12-24 19:16:04 +13:00
|
|
|
color: var(--accent);
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2021-01-30 21:33:38 +13:00
|
|
|
/* Subscriptions */
|
2021-01-30 18:00:55 +13:00
|
|
|
|
2021-11-26 17:02:04 +13:00
|
|
|
#sub_subscription, #user_subscription, #user_filter, #sub_filter {
|
2021-01-30 20:00:00 +13:00
|
|
|
margin-top: 20px;
|
2021-01-30 18:00:55 +13:00
|
|
|
}
|
|
|
|
|
2021-02-13 17:47:54 +13:00
|
|
|
#multisub {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2021-11-26 17:02:04 +13:00
|
|
|
.subscribe, .unsubscribe, .filter, .unfilter {
|
2021-01-30 18:00:55 +13:00
|
|
|
padding: 10px 20px;
|
|
|
|
border-radius: 5px;
|
2021-01-31 17:18:57 +13:00
|
|
|
cursor: pointer;
|
2021-01-30 21:33:38 +13:00
|
|
|
}
|
|
|
|
|
2021-11-26 17:02:04 +13:00
|
|
|
.subscribe, .filter {
|
2021-01-30 18:00:55 +13:00
|
|
|
color: var(--foreground);
|
2021-01-30 21:33:38 +13:00
|
|
|
background-color: var(--accent);
|
2021-01-30 18:00:55 +13:00
|
|
|
}
|
|
|
|
|
2021-11-26 17:02:04 +13:00
|
|
|
.unsubscribe, .unfilter {
|
2021-01-30 21:33:38 +13:00
|
|
|
color: var(--text);
|
|
|
|
background-color: var(--highlighted);
|
|
|
|
}
|
2021-01-30 18:00:55 +13:00
|
|
|
|
2021-02-02 14:50:00 +13:00
|
|
|
/* Feeds */
|
2021-01-30 21:33:38 +13:00
|
|
|
|
2021-02-02 14:50:00 +13:00
|
|
|
#feeds {
|
2021-01-30 23:21:54 +13:00
|
|
|
position: relative;
|
|
|
|
border-radius: 5px;
|
2021-01-31 11:52:18 +13:00
|
|
|
border: var(--panel-border);
|
2021-01-30 23:21:54 +13:00
|
|
|
background-color: var(--outside);
|
|
|
|
align-items: center;
|
|
|
|
box-sizing: border-box;
|
2021-01-31 11:52:18 +13:00
|
|
|
font-size: 15px;
|
2021-01-31 15:16:42 +13:00
|
|
|
display: inline-block;
|
2021-01-30 23:21:54 +13:00
|
|
|
}
|
|
|
|
|
2021-02-02 14:50:00 +13:00
|
|
|
#feeds > summary {
|
2021-01-31 17:18:57 +13:00
|
|
|
padding: 8px 15px;
|
2021-01-30 23:21:54 +13:00
|
|
|
}
|
|
|
|
|
2021-02-02 14:50:00 +13:00
|
|
|
#feed_list {
|
2021-01-30 23:21:54 +13:00
|
|
|
position: absolute;
|
|
|
|
display: flex;
|
|
|
|
min-width: 100%;
|
2021-02-12 06:18:32 +13:00
|
|
|
max-height: 500px;
|
2021-01-30 18:00:55 +13:00
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: var(--shadow);
|
|
|
|
background: var(--outside);
|
2021-01-30 23:21:54 +13:00
|
|
|
flex-direction: column;
|
2021-01-30 18:00:55 +13:00
|
|
|
overflow: auto;
|
2021-01-30 23:21:54 +13:00
|
|
|
z-index: 1;
|
2021-01-30 18:00:55 +13:00
|
|
|
}
|
|
|
|
|
2021-02-02 14:50:00 +13:00
|
|
|
#feed_list > p {
|
|
|
|
font-size: 13px;
|
|
|
|
opacity: 0.5;
|
|
|
|
padding: 5px 20px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#feed_list > a {
|
2021-01-30 18:00:55 +13:00
|
|
|
padding: 10px 20px;
|
2021-01-30 23:21:54 +13:00
|
|
|
transition: 0.2s background;
|
2021-01-30 18:00:55 +13:00
|
|
|
}
|
|
|
|
|
2021-02-02 14:50:00 +13:00
|
|
|
#feed_list > .selected {
|
2021-01-30 18:00:55 +13:00
|
|
|
background-color: var(--accent);
|
|
|
|
color: var(--foreground);
|
|
|
|
}
|
|
|
|
|
2021-02-02 14:50:00 +13:00
|
|
|
#feed_list > a:not(.selected):hover {
|
2021-01-30 23:21:54 +13:00
|
|
|
background-color: var(--foreground);
|
|
|
|
}
|
|
|
|
|
2021-01-02 19:21:43 +13:00
|
|
|
/* Wiki Pages */
|
|
|
|
|
|
|
|
#wiki {
|
|
|
|
background: var(--foreground);
|
|
|
|
padding: 35px;
|
2021-11-30 19:29:41 +13:00
|
|
|
overflow-wrap: anywhere;
|
2021-01-02 19:21:43 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
#top {
|
|
|
|
background: var(--highlighted);
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#top > * {
|
|
|
|
flex-grow: 1;
|
|
|
|
text-align: center;
|
2021-01-04 16:44:44 +13:00
|
|
|
height: 35px;
|
|
|
|
line-height: 35px;
|
2021-01-02 19:21:43 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
#top > div {
|
2021-01-07 07:51:13 +13:00
|
|
|
border-bottom: 2px solid var(--text);
|
2021-01-02 19:21:43 +13:00
|
|
|
}
|
|
|
|
|
2021-01-01 12:54:13 +13:00
|
|
|
/* Sorting and Search */
|
2020-10-26 09:25:59 +13:00
|
|
|
|
2022-03-14 08:06:27 +13:00
|
|
|
select, #search, #sort_options, #listing_options, #inside, #searchbox > *, #sort_submit {
|
2021-12-28 10:43:44 +13:00
|
|
|
height: 38px;
|
2021-01-18 13:20:17 +13:00
|
|
|
}
|
|
|
|
|
2021-01-13 04:47:39 +13:00
|
|
|
.search_label {
|
2021-01-13 16:52:02 +13:00
|
|
|
max-width: 300px;
|
2021-01-13 04:47:39 +13:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2021-01-01 12:54:13 +13:00
|
|
|
select {
|
2020-12-21 18:49:31 +13:00
|
|
|
background: var(--outside);
|
2021-01-18 16:16:15 +13:00
|
|
|
transition: 0.2s background;
|
2023-04-30 06:16:02 +12:00
|
|
|
cursor: pointer;
|
2021-01-01 12:54:13 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
select, #search {
|
2021-01-04 16:44:44 +13:00
|
|
|
border: none;
|
2021-12-28 10:43:44 +13:00
|
|
|
padding: 0 10px;
|
2021-01-18 13:20:17 +13:00
|
|
|
|
2020-12-21 18:49:31 +13:00
|
|
|
appearance: none;
|
2021-01-09 09:26:29 +13:00
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
2021-01-01 12:54:13 +13:00
|
|
|
border-radius: 5px 0px 0px 5px;
|
|
|
|
}
|
|
|
|
|
2023-06-01 05:39:18 +12:00
|
|
|
.commentQuery {
|
|
|
|
background: var(--post);
|
|
|
|
}
|
|
|
|
|
2021-01-01 12:54:13 +13:00
|
|
|
#searchbox {
|
2021-01-18 10:24:44 +13:00
|
|
|
grid-area: searchbox;
|
2021-01-01 12:54:13 +13:00
|
|
|
display: flex;
|
2021-01-07 07:51:13 +13:00
|
|
|
box-shadow: var(--shadow);
|
2021-01-11 15:15:34 +13:00
|
|
|
border-radius: 5px;
|
2021-01-01 12:54:13 +13:00
|
|
|
}
|
|
|
|
|
2021-01-18 13:20:17 +13:00
|
|
|
#searchbox > *, #sort_submit { background: var(--highlighted); }
|
2021-01-01 12:54:13 +13:00
|
|
|
|
|
|
|
#search {
|
|
|
|
border-right: 2px var(--outside) solid;
|
|
|
|
min-width: 0;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#inside {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
border-right: 2px var(--outside) solid;
|
|
|
|
padding: 0 10px;
|
2021-01-29 12:50:18 +13:00
|
|
|
max-width: 50%;
|
2020-12-21 18:49:31 +13:00
|
|
|
}
|
|
|
|
|
2021-01-01 12:54:13 +13:00
|
|
|
#restrict_sr { margin-right: 5px; }
|
|
|
|
|
2021-01-18 12:51:03 +13:00
|
|
|
input[type="submit"], button.submit {
|
2021-01-01 12:54:13 +13:00
|
|
|
border: 0;
|
|
|
|
border-radius: 0px 5px 5px 0px;
|
|
|
|
}
|
|
|
|
|
2021-01-18 13:03:14 +13:00
|
|
|
button.submit {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2021-01-01 12:54:13 +13:00
|
|
|
select:hover { background: var(--foreground); }
|
2021-01-18 12:51:03 +13:00
|
|
|
|
2021-01-18 16:16:15 +13:00
|
|
|
input[type="submit"]:hover { color: var(--accent); }
|
|
|
|
button.submit:hover > svg { stroke: var(--accent); }
|
2021-01-01 12:54:13 +13:00
|
|
|
|
2020-12-30 14:11:47 +13:00
|
|
|
#timeframe {
|
2021-01-04 16:44:44 +13:00
|
|
|
margin: 0 2px;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sort_options + #timeframe:not(#search_sort > #timeframe) {
|
2021-01-01 12:54:13 +13:00
|
|
|
margin-left: 10px;
|
2021-01-04 16:44:44 +13:00
|
|
|
border-radius: 5px 0px 0px 5px;
|
2020-12-30 14:11:47 +13:00
|
|
|
}
|
|
|
|
|
2022-03-14 08:06:27 +13:00
|
|
|
#listing_options + #sort_select {
|
|
|
|
margin-left: 10px;
|
|
|
|
border-radius: 5px 0px 0px 5px;
|
|
|
|
}
|
|
|
|
|
2021-01-01 12:54:13 +13:00
|
|
|
#search_sort {
|
2020-12-21 18:49:31 +13:00
|
|
|
background: var(--highlighted);
|
2021-01-01 12:54:13 +13:00
|
|
|
border-radius: 5px;
|
2021-01-01 13:45:10 +13:00
|
|
|
overflow: auto;
|
2021-01-01 12:54:13 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
#search_sort > #search {
|
2020-12-29 15:42:46 +13:00
|
|
|
border: 0;
|
2021-01-01 12:54:13 +13:00
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2021-01-04 16:44:44 +13:00
|
|
|
#search_sort > *, #searchbox > * { font-size: 15px; }
|
|
|
|
|
2021-01-01 12:54:13 +13:00
|
|
|
#search_sort > :not(:first-child), #search_sort > #sort_options {
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
border-right: 0;
|
|
|
|
border-left: 2px solid var(--background);
|
|
|
|
box-shadow: none;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2023-03-25 13:41:26 +13:00
|
|
|
#commentQueryForms {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
#allCommentsLink {
|
|
|
|
color: var(--green);
|
|
|
|
}
|
|
|
|
|
2021-01-01 12:54:13 +13:00
|
|
|
#sort, #search_sort {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2020-12-29 15:42:46 +13:00
|
|
|
|
2023-01-03 22:39:45 +13:00
|
|
|
#sort_options, #listing_options, main > * > footer > a {
|
2021-01-01 12:54:13 +13:00
|
|
|
border-radius: 5px;
|
2021-12-28 10:43:44 +13:00
|
|
|
align-items: center;
|
2021-01-07 07:51:13 +13:00
|
|
|
box-shadow: var(--shadow);
|
2020-12-20 16:54:46 +13:00
|
|
|
background: var(--outside);
|
2021-01-01 12:54:13 +13:00
|
|
|
display: flex;
|
2023-02-04 21:02:32 +13:00
|
|
|
overflow-y: hidden;
|
2021-01-01 12:54:13 +13:00
|
|
|
}
|
|
|
|
|
2023-01-03 22:39:45 +13:00
|
|
|
#sort_options > a, #listing_options > a, main > * > footer > a {
|
2021-01-11 15:15:34 +13:00
|
|
|
color: var(--text);
|
2020-10-26 09:25:59 +13:00
|
|
|
padding: 10px 20px;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
2021-01-18 16:16:15 +13:00
|
|
|
transition: 0.2s background;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2022-03-14 08:06:27 +13:00
|
|
|
#sort_options > a.selected, #listing_options > a.selected {
|
2020-12-22 18:39:55 +13:00
|
|
|
background: var(--accent);
|
2021-01-11 15:15:34 +13:00
|
|
|
color: var(--foreground);
|
2020-11-23 13:29:05 +13:00
|
|
|
}
|
|
|
|
|
2022-03-14 08:06:27 +13:00
|
|
|
#sort_options > a:not(.selected):hover, #listing_options > a:not(.selected):hover {
|
2020-12-20 16:54:46 +13:00
|
|
|
background: var(--foreground);
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2021-01-15 07:22:50 +13:00
|
|
|
#search_subreddits {
|
|
|
|
border-radius: 5px;
|
|
|
|
background: var(--post);
|
|
|
|
box-shadow: var(--shadow);
|
2021-01-18 16:16:15 +13:00
|
|
|
transition: 0.2s background;
|
2021-01-19 18:32:25 +13:00
|
|
|
border: var(--panel-border);
|
2021-01-15 07:22:50 +13:00
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search_subreddit {
|
|
|
|
padding: 16px 20px;
|
2021-03-19 17:32:54 +13:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search_subreddit_left {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search_subreddit_left:not(:empty) {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search_subreddit_left img {
|
|
|
|
width: 35px;
|
|
|
|
height: 35px;
|
|
|
|
border-radius: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search_subreddit_right {
|
|
|
|
overflow: auto;
|
2021-01-15 07:22:50 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
a.search_subreddit:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
background: var(--foreground);
|
|
|
|
}
|
|
|
|
|
|
|
|
.search_subreddit:not(:last-child) {
|
|
|
|
border-bottom: 1px solid var(--highlighted);
|
|
|
|
}
|
|
|
|
|
|
|
|
.search_subreddit_header {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search_subreddit_name {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search_subreddit_description {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2021-11-24 19:24:23 +13:00
|
|
|
#more_subreddits {
|
|
|
|
justify-content: center;
|
|
|
|
color: var(--accent);
|
|
|
|
font-weight: 600;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
/* Post */
|
|
|
|
|
2021-01-16 23:00:15 +13:00
|
|
|
.sep {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-01-09 12:08:58 +13:00
|
|
|
.thread {
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
|
2021-02-13 06:16:59 +13:00
|
|
|
.thread_nav {
|
|
|
|
color: var(--accent);
|
|
|
|
font-weight: bold;
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
.post {
|
|
|
|
border-radius: 5px;
|
2020-12-20 16:54:46 +13:00
|
|
|
background: var(--post);
|
2021-01-07 07:51:13 +13:00
|
|
|
box-shadow: var(--shadow);
|
2021-01-18 08:39:57 +13:00
|
|
|
display: grid;
|
2021-01-18 16:16:15 +13:00
|
|
|
transition: 0.2s background;
|
2021-01-18 08:39:57 +13:00
|
|
|
grid-template: "post_score post_header post_thumbnail" auto
|
|
|
|
"post_score post_title post_thumbnail" 1fr
|
|
|
|
"post_score post_media post_thumbnail" auto
|
|
|
|
"post_score post_body post_thumbnail" auto
|
2023-03-24 01:21:09 +13:00
|
|
|
"post_score post_poll post_thumbnail" auto
|
2021-05-10 13:25:52 +12:00
|
|
|
"post_score post_notification post_thumbnail" auto
|
2021-01-18 08:39:57 +13:00
|
|
|
"post_score post_footer post_thumbnail" auto
|
2021-01-21 08:59:57 +13:00
|
|
|
/ minmax(40px, auto) minmax(0, 1fr) fit-content(min(20%, 152px));
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2021-01-04 16:44:44 +13:00
|
|
|
.post:not(:last-child) { margin-bottom: 10px; }
|
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
.post:hover {
|
2020-12-20 16:54:46 +13:00
|
|
|
background: var(--foreground);
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2021-01-18 08:39:57 +13:00
|
|
|
.post_score {
|
2021-12-28 10:43:44 +13:00
|
|
|
padding-top: 19px;
|
2021-11-21 17:07:45 +13:00
|
|
|
padding-left: 12px;
|
2021-01-19 18:32:25 +13:00
|
|
|
font-size: 13px;
|
|
|
|
font-weight: bold;
|
2021-01-18 08:39:57 +13:00
|
|
|
color: var(--accent);
|
|
|
|
grid-area: post_score;
|
2021-11-21 17:07:45 +13:00
|
|
|
text-align: center;
|
2020-12-29 15:42:46 +13:00
|
|
|
border-radius: 5px 0 0 5px;
|
2021-01-18 17:35:49 +13:00
|
|
|
transition: 0.2s background;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2021-01-18 08:39:57 +13:00
|
|
|
.post_score .label {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-01-04 10:06:49 +13:00
|
|
|
|
2021-01-18 08:39:57 +13:00
|
|
|
.post_header {
|
2021-11-21 17:07:45 +13:00
|
|
|
margin: 15px 20px 5px 12px;
|
2021-01-18 08:39:57 +13:00
|
|
|
grid-area: post_header;
|
2021-11-25 15:08:27 +13:00
|
|
|
line-height: 25px;
|
2021-01-04 10:06:49 +13:00
|
|
|
}
|
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
.post_subreddit {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:20:24 +13:00
|
|
|
.post_title {
|
2021-01-04 16:44:44 +13:00
|
|
|
font-size: 16px;
|
2021-11-21 10:13:50 +13:00
|
|
|
font-weight: 500;
|
2021-01-01 12:54:13 +13:00
|
|
|
line-height: 1.5;
|
2022-03-14 08:59:15 +13:00
|
|
|
overflow-wrap: anywhere;
|
2021-11-21 17:07:45 +13:00
|
|
|
margin: 5px 15px 5px 12px;
|
2021-01-18 08:39:57 +13:00
|
|
|
grid-area: post_title;
|
2020-12-08 08:20:24 +13:00
|
|
|
}
|
|
|
|
|
2021-07-19 09:53:08 +12:00
|
|
|
.post:not(.highlighted) .post_title a:visited {
|
|
|
|
color: var(--visited);
|
|
|
|
}
|
|
|
|
|
2021-05-10 13:25:52 +12:00
|
|
|
.post_notification {
|
|
|
|
grid-area: post_notification;
|
|
|
|
margin: 5px 15px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_notification a {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2021-01-18 08:39:57 +13:00
|
|
|
.post_flair {
|
|
|
|
background: var(--accent);
|
|
|
|
color: var(--background);
|
|
|
|
padding: 4px;
|
|
|
|
margin-right: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
2021-01-05 16:26:41 +13:00
|
|
|
}
|
|
|
|
|
2021-11-25 15:08:27 +13:00
|
|
|
.awards {
|
|
|
|
background-color: var(--foreground);
|
|
|
|
border-radius: 5px;
|
|
|
|
margin: auto;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.awards .award {
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.award {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.award > img {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2021-03-18 13:08:43 +13:00
|
|
|
.author_flair:empty, .post_flair:empty {
|
2021-02-22 17:28:04 +13:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-01-18 08:39:57 +13:00
|
|
|
.emoji {
|
2021-03-18 13:08:43 +13:00
|
|
|
width: 1.25em;
|
|
|
|
height: 1.25em;
|
2021-01-18 08:39:57 +13:00
|
|
|
display: inline-block;
|
|
|
|
background-size: contain;
|
|
|
|
background-position: 50% 50%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
vertical-align: middle;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2021-01-18 08:39:57 +13:00
|
|
|
.nsfw {
|
|
|
|
color: var(--nsfw);
|
|
|
|
margin-left: 5px;
|
|
|
|
border: 1px solid var(--nsfw);
|
|
|
|
padding: 3px;
|
|
|
|
font-size: 12px;
|
|
|
|
border-radius: 5px;
|
|
|
|
font-weight: bold;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2024-06-22 22:38:13 +12:00
|
|
|
.spoiler {
|
|
|
|
color: var(--spoiler);
|
|
|
|
margin-left: 5px;
|
|
|
|
border: 1px solid var(--spoiler);
|
|
|
|
padding: 3px;
|
|
|
|
font-size: 12px;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
2022-09-27 14:35:23 +13:00
|
|
|
.post_media_content, .post .__NoScript_PlaceHolder__, .gallery {
|
2021-01-18 08:39:57 +13:00
|
|
|
max-width: calc(100% - 40px);
|
2021-02-04 08:11:04 +13:00
|
|
|
grid-area: post_media;
|
|
|
|
margin: 15px auto 5px auto;
|
2022-09-27 14:35:23 +13:00
|
|
|
width: auto;
|
2021-02-08 13:22:14 +13:00
|
|
|
height: auto;
|
2022-09-27 14:35:23 +13:00
|
|
|
overflow: hidden;
|
2021-02-08 13:22:14 +13:00
|
|
|
}
|
|
|
|
|
2022-09-27 14:35:23 +13:00
|
|
|
.post_media_video {
|
2021-02-08 13:22:14 +13:00
|
|
|
width: auto;
|
2022-09-27 14:35:23 +13:00
|
|
|
height: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 512px;
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
2021-02-04 08:11:04 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
.post_media_image.short svg, .post_media_image.short img{
|
|
|
|
width: auto;
|
2022-09-27 14:35:23 +13:00
|
|
|
height: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 512px;
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_nsfw_blur {
|
|
|
|
filter: blur(1.5rem);
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_nsfw_blur:hover {
|
|
|
|
filter: none;
|
2021-02-04 08:11:04 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
.post_media_image svg{
|
|
|
|
max-width: 100%;
|
2021-01-22 10:04:06 +13:00
|
|
|
height: auto;
|
2020-10-26 09:25:59 +13:00
|
|
|
align-self: center;
|
2021-01-18 08:39:57 +13:00
|
|
|
background-color: var(--highlighted);
|
2021-01-22 10:04:06 +13:00
|
|
|
background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 100 100' width='100' height='100' xmlns='http://www.w3.org/2000/svg'><path d='M15,20 h70 a10,10 0 0 1 10,10 v45 a10,10 0 0 1 -10,10 h-70 a10,10 0 0 1 -10,-10 v-45 a10,10 0 0 1 10,-10 z' fill='none' stroke='rgba(128,128,128,0.5)' stroke-width='3' /><path d='M15,75 l25,-35 l15,20 l10,-10 l20, 25 z' stroke='none' fill='rgba(128,128,128,0.5)' /><circle cx='75' cy='35' r='7' stroke='none' fill='rgba(128,128,128,0.5)'/></svg>");
|
|
|
|
background-position: 50%;
|
|
|
|
background-repeat: no-repeat;
|
2021-02-04 10:01:46 +13:00
|
|
|
vertical-align: bottom;
|
2021-01-21 12:12:54 +13:00
|
|
|
}
|
|
|
|
|
2021-02-04 08:11:04 +13:00
|
|
|
.post_media_image img {
|
2021-02-02 08:27:56 +13:00
|
|
|
max-width: 100%;
|
2021-02-04 10:01:46 +13:00
|
|
|
vertical-align: bottom;
|
2021-02-02 08:27:56 +13:00
|
|
|
}
|
|
|
|
|
2021-02-07 09:05:11 +13:00
|
|
|
.gallery img {
|
|
|
|
max-width: 100%;
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery .outbound_url {
|
|
|
|
color: var(--accent);
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
display: block;
|
|
|
|
padding-top: 5px;
|
|
|
|
}
|
|
|
|
|
2021-01-18 08:39:57 +13:00
|
|
|
#post_url {
|
|
|
|
color: var(--accent);
|
2021-12-28 20:16:01 +13:00
|
|
|
margin: 5px 12px;
|
2021-01-18 08:39:57 +13:00
|
|
|
grid-area: post_media;
|
2022-03-27 08:55:53 +13:00
|
|
|
overflow-wrap: anywhere;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
.post_body {
|
|
|
|
opacity: 0.9;
|
|
|
|
font-weight: normal;
|
2021-11-22 12:17:52 +13:00
|
|
|
padding: 5px 15px 5px 12px;
|
2021-01-18 08:39:57 +13:00
|
|
|
grid-area: post_body;
|
2021-02-25 08:28:26 +13:00
|
|
|
width: calc(100% - 30px);
|
2022-05-21 16:26:53 +12:00
|
|
|
overflow-wrap: anywhere;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2024-04-08 04:07:53 +12:00
|
|
|
.post_body img {
|
|
|
|
max-width: 100%;
|
2024-04-10 10:33:13 +12:00
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2024-04-08 04:07:53 +12:00
|
|
|
}
|
|
|
|
|
2023-03-24 01:21:09 +13:00
|
|
|
.post_poll {
|
|
|
|
grid-area: post_poll;
|
|
|
|
padding: 5px 15px 5px 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll_option {
|
|
|
|
position: relative;
|
|
|
|
margin-right: 15px;
|
|
|
|
margin-top: 14px;
|
|
|
|
z-index: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll_chart {
|
|
|
|
padding: 14px 0;
|
|
|
|
background-color: var(--accent);
|
|
|
|
opacity: 0.2;
|
|
|
|
border-radius: 5px;
|
|
|
|
z-index: -1;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll_option span {
|
|
|
|
margin-left: 8px;
|
|
|
|
color: var(--text);
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll_option span:nth-of-type(1) {
|
|
|
|
min-width: 10%;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.most_voted {
|
|
|
|
opacity: 0.45;
|
2023-04-02 01:31:39 +13:00
|
|
|
width: 100%;
|
2023-03-24 01:21:09 +13:00
|
|
|
}
|
|
|
|
|
2021-11-22 12:17:52 +13:00
|
|
|
/* Used only for text post preview */
|
2021-11-21 10:13:50 +13:00
|
|
|
.post_preview {
|
2021-11-23 05:40:36 +13:00
|
|
|
-webkit-mask-image: linear-gradient(180deg,#000 60%,transparent);;
|
2021-11-21 10:13:50 +13:00
|
|
|
mask-image: linear-gradient(180deg,#000 60%,transparent);
|
|
|
|
opacity: 0.8;
|
2021-11-22 12:17:52 +13:00
|
|
|
max-height: 250px;
|
2021-11-23 05:40:36 +13:00
|
|
|
overflow: hidden;
|
2021-11-21 10:13:50 +13:00
|
|
|
}
|
|
|
|
|
2021-01-18 08:39:57 +13:00
|
|
|
.post_footer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
opacity: 0.5;
|
|
|
|
font-size: 14px;
|
|
|
|
grid-area: post_footer;
|
2021-12-28 20:16:01 +13:00
|
|
|
margin: 5px 20px 15px 12px;
|
2021-01-18 08:39:57 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
.post_comments {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2023-01-17 09:05:53 +13:00
|
|
|
#comment_count {
|
|
|
|
font-weight: 500;
|
|
|
|
opacity: 0.9;
|
|
|
|
}
|
|
|
|
|
|
|
|
#comment_count > #sorted_by {
|
|
|
|
font-weight: normal;
|
|
|
|
opacity: 0.7;
|
|
|
|
margin-right: 7px;
|
|
|
|
}
|
|
|
|
|
2021-01-18 08:39:57 +13:00
|
|
|
#post_links {
|
|
|
|
display: flex;
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
#post_links > li {
|
|
|
|
margin-right: 15px;
|
2020-12-12 17:36:06 +13:00
|
|
|
}
|
|
|
|
|
2024-07-05 13:32:12 +12:00
|
|
|
.desktop_item {
|
2022-11-10 05:16:51 +13:00
|
|
|
display: auto;
|
|
|
|
}
|
|
|
|
|
2024-04-08 09:23:24 +12:00
|
|
|
@media screen and (min-width: 481px) {
|
2024-07-05 13:32:12 +12:00
|
|
|
.mobile_item {
|
2022-11-10 05:16:51 +13:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
.post_thumbnail {
|
2021-01-04 16:44:44 +13:00
|
|
|
border-radius: 5px;
|
2021-01-19 18:32:25 +13:00
|
|
|
border: var(--panel-border);
|
2021-01-12 11:08:12 +13:00
|
|
|
display: grid;
|
|
|
|
overflow: hidden;
|
2021-01-18 17:35:49 +13:00
|
|
|
background-color: var(--background);
|
2021-01-18 08:39:57 +13:00
|
|
|
grid-area: post_thumbnail;
|
|
|
|
margin: 5px;
|
2021-01-12 11:08:12 +13:00
|
|
|
}
|
|
|
|
|
2022-09-27 14:35:23 +13:00
|
|
|
.post_thumbnail div {
|
2021-01-12 11:08:12 +13:00
|
|
|
grid-area: 1 / 1 / 2 / 2;
|
|
|
|
object-fit: cover;
|
|
|
|
align-self: center;
|
|
|
|
justify-self: center;
|
2022-09-27 14:35:23 +13:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_thumbnail div svg {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_thumbnail span {
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumb_nsfw_blur {
|
|
|
|
filter: blur(0.3rem)
|
2021-01-12 11:08:12 +13:00
|
|
|
}
|
|
|
|
|
2021-01-15 09:45:43 +13:00
|
|
|
.post_thumbnail.no_thumbnail {
|
2021-01-18 08:39:57 +13:00
|
|
|
background-color: var(--highlighted);
|
2021-01-15 09:45:43 +13:00
|
|
|
}
|
|
|
|
|
2021-01-22 10:04:06 +13:00
|
|
|
.post_thumbnail.no_thumbnail svg {
|
2021-01-15 09:45:43 +13:00
|
|
|
grid-area: 1 / 1 / 2 / 2;
|
|
|
|
align-self: center;
|
|
|
|
justify-self: center;
|
2021-01-18 08:39:57 +13:00
|
|
|
max-width: 100%;
|
2021-01-15 09:45:43 +13:00
|
|
|
}
|
|
|
|
|
2021-01-12 11:08:12 +13:00
|
|
|
.post_thumbnail span {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-align: center;
|
2021-01-15 09:45:43 +13:00
|
|
|
background-color: rgba(0,0,0,0.8);
|
2021-01-12 11:08:12 +13:00
|
|
|
color: white;
|
|
|
|
grid-area: 1 / 1 / 2 / 2;
|
|
|
|
padding: 5px;
|
|
|
|
align-self: end;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2021-02-02 09:02:38 +13:00
|
|
|
.post_thumbnail img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-01-04 16:44:44 +13:00
|
|
|
.stickied {
|
2021-01-11 10:08:36 +13:00
|
|
|
--accent: var(--green);
|
|
|
|
border: 1px solid var(--green);
|
2021-01-04 16:44:44 +13:00
|
|
|
}
|
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
/* Comment */
|
|
|
|
|
|
|
|
.comment {
|
2021-01-04 16:44:44 +13:00
|
|
|
margin: 10px 0;
|
2020-10-26 09:25:59 +13:00
|
|
|
border-radius: 5px;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2024-04-08 04:07:53 +12:00
|
|
|
.comment img {
|
|
|
|
max-width: 50%;
|
2024-04-08 11:24:55 +12:00
|
|
|
height: auto;
|
2024-04-08 04:07:53 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 500px) {
|
|
|
|
.comment img {
|
|
|
|
max-width: 80%;
|
2024-04-08 11:24:55 +12:00
|
|
|
height: auto;
|
2024-04-08 04:07:53 +12:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-10 10:51:32 +12:00
|
|
|
.comment figure {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
.comment_left, .comment_right {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment_left {
|
|
|
|
text-align: center;
|
|
|
|
min-width: 50px;
|
2020-12-29 15:42:46 +13:00
|
|
|
padding: 5px 0;
|
2020-12-20 16:54:46 +13:00
|
|
|
align-items: center;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2020-12-29 15:42:46 +13:00
|
|
|
.comment_title { font-size: 20px; }
|
|
|
|
.comment_link { text-decoration: underline; }
|
|
|
|
.comment_author { opacity: 0.9; }
|
2020-12-20 16:54:46 +13:00
|
|
|
|
2020-12-21 08:29:23 +13:00
|
|
|
.author_flair {
|
|
|
|
background: var(--highlighted);
|
2021-01-07 07:51:13 +13:00
|
|
|
color: var(--text);
|
2020-12-21 08:29:23 +13:00
|
|
|
padding: 5px;
|
|
|
|
margin-right: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
.comment_score {
|
2020-12-22 18:39:55 +13:00
|
|
|
color: var(--accent);
|
2020-12-20 16:54:46 +13:00
|
|
|
background: var(--foreground);
|
|
|
|
min-width: 40px;
|
|
|
|
border-radius: 5px;
|
2020-12-29 15:42:46 +13:00
|
|
|
padding: 10px 0;
|
2021-11-23 09:19:51 +13:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 600;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
.comment_right {
|
2020-10-26 15:05:09 +13:00
|
|
|
word-wrap: anywhere;
|
2021-01-08 07:49:00 +13:00
|
|
|
padding: 10px 0 10px 5px;
|
2020-10-26 09:25:59 +13:00
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2021-01-21 14:55:04 +13:00
|
|
|
min-width: 0;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2024-07-02 09:15:50 +12:00
|
|
|
.comment:has([id]) .comment_data > * {
|
2021-01-05 16:26:41 +13:00
|
|
|
margin-right: 5px;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2024-07-02 09:15:50 +12:00
|
|
|
.comment:not([id]) .comment_data {
|
|
|
|
display: inline-flex;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment:not([id]) .comment_data > * {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment:not([id]) .comment_data > .comment_link {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 1;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
word-break: break-all;
|
|
|
|
overflow: hidden;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
}
|
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
.comment_image {
|
|
|
|
max-width: 500px;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment_body {
|
|
|
|
opacity: 0.9;
|
|
|
|
font-weight: normal;
|
2021-02-13 06:16:59 +13:00
|
|
|
padding: 5px 5px;
|
|
|
|
margin: 5px 0;
|
2021-05-29 07:01:20 +12:00
|
|
|
overflow: auto;
|
2021-02-13 06:16:59 +13:00
|
|
|
}
|
|
|
|
|
2021-11-26 17:02:04 +13:00
|
|
|
.comment_body.highlighted, .comment_body_filtered.highlighted {
|
2021-02-13 06:16:59 +13:00
|
|
|
background: var(--highlighted);
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
.comment_body > p:not(:first-child) {
|
2020-12-22 18:39:55 +13:00
|
|
|
margin-top: 20px;
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
.comment_body a {
|
|
|
|
text-decoration: underline;
|
2020-12-22 18:39:55 +13:00
|
|
|
color: var(--accent);
|
2020-10-26 15:55:00 +13:00
|
|
|
}
|
|
|
|
|
2021-11-26 17:02:04 +13:00
|
|
|
.comment_body_filtered {
|
|
|
|
opacity: 0.4;
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: italic;
|
|
|
|
padding: 5px 5px;
|
|
|
|
margin: 5px 0;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2020-12-22 14:17:40 +13:00
|
|
|
.deeper_replies {
|
2020-12-22 18:39:55 +13:00
|
|
|
color: var(--accent);
|
|
|
|
margin-left: 15px;
|
2020-12-22 14:17:40 +13:00
|
|
|
}
|
|
|
|
|
2020-12-20 16:54:46 +13:00
|
|
|
::marker {
|
2020-12-22 18:39:55 +13:00
|
|
|
color: var(--accent);
|
2020-12-20 16:54:46 +13:00
|
|
|
}
|
|
|
|
|
2020-12-21 18:49:31 +13:00
|
|
|
.replies > .comment {
|
|
|
|
margin-left: -20px;
|
2020-12-22 14:17:40 +13:00
|
|
|
padding: 5px;
|
2020-12-20 16:54:46 +13:00
|
|
|
}
|
|
|
|
|
2021-01-17 08:40:32 +13:00
|
|
|
.created {
|
2021-01-05 16:26:41 +13:00
|
|
|
opacity: 0.5;
|
2020-12-20 16:54:46 +13:00
|
|
|
}
|
|
|
|
|
2021-02-15 11:53:09 +13:00
|
|
|
.edited {
|
|
|
|
opacity: 0.4;
|
|
|
|
font-style: italic;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2020-12-20 16:54:46 +13:00
|
|
|
.line {
|
|
|
|
width: 2px;
|
|
|
|
height: 100%;
|
|
|
|
background: var(--foreground);
|
|
|
|
}
|
|
|
|
|
2021-09-20 07:00:07 +12:00
|
|
|
summary.comment_data {
|
2021-11-24 19:24:23 +13:00
|
|
|
cursor: pointer;
|
2021-09-20 07:00:07 +12:00
|
|
|
}
|
|
|
|
|
2024-07-18 13:27:13 +12:00
|
|
|
.user_comment_data_divider {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user_comment_data_divider .dot {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-01-17 12:02:24 +13:00
|
|
|
.moderator, .admin { opacity: 1; }
|
|
|
|
.op, .moderator, .admin { font-weight: bold; }
|
|
|
|
|
|
|
|
.op { color: var(--accent); }
|
|
|
|
.moderator { color: var(--green); }
|
|
|
|
.admin { color: var(--admin); }
|
|
|
|
|
2021-01-06 15:04:49 +13:00
|
|
|
/* Layouts */
|
|
|
|
|
2021-01-11 10:08:36 +13:00
|
|
|
.compact .post:not(.highlighted) {
|
2021-01-06 15:04:49 +13:00
|
|
|
border-radius: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:08:36 +13:00
|
|
|
.compact .post:first-of-type {
|
2021-01-06 15:16:32 +13:00
|
|
|
border-radius: 5px 5px 0 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:08:36 +13:00
|
|
|
.compact .post:last-of-type {
|
2021-01-06 15:16:32 +13:00
|
|
|
border-radius: 0 0 5px 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2021-01-18 13:20:17 +13:00
|
|
|
.compact .post.highlighted { border-radius: 5px; }
|
|
|
|
.compact .post:not(:last-of-type):not(.highlighted):not(.stickied) { border-bottom: 0; }
|
2021-01-06 15:04:49 +13:00
|
|
|
|
2021-01-18 08:39:57 +13:00
|
|
|
.compact .post_score {
|
|
|
|
padding-top: 15px;
|
2021-01-06 15:04:49 +13:00
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2021-01-11 10:08:36 +13:00
|
|
|
.compact .post_header {
|
2021-11-25 15:08:27 +13:00
|
|
|
margin: 11px 15px 2.5px 12px;
|
2021-01-06 15:04:49 +13:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2021-01-18 08:39:57 +13:00
|
|
|
.compact .post_title, .compact #post_url, .compact .post_body {
|
|
|
|
margin: 2.5px 15px;
|
2021-01-06 15:04:49 +13:00
|
|
|
}
|
|
|
|
|
2021-11-21 15:05:37 +13:00
|
|
|
.compact .post_preview {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-01-18 08:39:57 +13:00
|
|
|
.compact .post_media {
|
|
|
|
max-width: calc(100% - 30px);
|
|
|
|
margin: 2.5px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compact .post_footer {
|
|
|
|
margin: 5px 15px 15px 15px;
|
2021-01-06 15:04:49 +13:00
|
|
|
}
|
|
|
|
|
2021-01-11 10:08:36 +13:00
|
|
|
.compact .post_thumbnail {
|
2021-01-12 11:08:12 +13:00
|
|
|
width: 75px;
|
|
|
|
height: 75px;
|
2021-01-06 15:04:49 +13:00
|
|
|
}
|
|
|
|
|
2021-01-11 10:08:36 +13:00
|
|
|
.compact footer {
|
2021-01-06 15:16:32 +13:00
|
|
|
margin-top: 20px;
|
2021-01-06 15:04:49 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Settings */
|
|
|
|
|
2021-02-14 09:55:23 +13:00
|
|
|
#settings {
|
|
|
|
max-width: 450px;
|
2021-01-06 15:04:49 +13:00
|
|
|
}
|
|
|
|
|
2021-01-09 17:55:40 +13:00
|
|
|
#settings_note {
|
|
|
|
font-size: 14px;
|
|
|
|
margin-top: 10px;
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
|
|
|
|
2021-02-14 09:55:23 +13:00
|
|
|
#settings_note a {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
|
2021-01-31 00:27:49 +13:00
|
|
|
.prefs {
|
2023-01-01 21:56:09 +13:00
|
|
|
padding: 10px 20px 20px;
|
2021-01-06 15:04:49 +13:00
|
|
|
background: var(--post);
|
|
|
|
border-radius: 5px;
|
2021-02-14 09:55:23 +13:00
|
|
|
margin-bottom: 20px;
|
2021-01-06 15:04:49 +13:00
|
|
|
}
|
|
|
|
|
2023-01-01 21:56:09 +13:00
|
|
|
.prefs fieldset {
|
|
|
|
border: 0;
|
|
|
|
padding: 10px 0;
|
|
|
|
margin: 0 0 5px;
|
2021-01-08 05:38:05 +13:00
|
|
|
}
|
|
|
|
|
2021-12-28 10:43:44 +13:00
|
|
|
.prefs legend {
|
2021-11-22 19:30:44 +13:00
|
|
|
font-weight: 500;
|
2021-12-28 10:43:44 +13:00
|
|
|
border-bottom: 1px solid var(--highlighted);
|
|
|
|
font-size: 18px;
|
|
|
|
padding-bottom: 10px;
|
2023-01-01 21:56:09 +13:00
|
|
|
margin-bottom: 7px;
|
|
|
|
width: 100%;
|
|
|
|
float: left; /* places the legend inside the (invisible) border, instead of vertically centered on top border*/
|
2021-12-28 10:43:44 +13:00
|
|
|
}
|
|
|
|
|
2023-01-01 21:56:09 +13:00
|
|
|
.prefs-group {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
height: 35px;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prefs-group > *:not(:last-child) {
|
|
|
|
margin-right: 1ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prefs-group > *:last-child {
|
|
|
|
margin-left: auto;
|
2021-11-22 19:30:44 +13:00
|
|
|
}
|
|
|
|
|
2021-01-31 00:27:49 +13:00
|
|
|
.prefs select {
|
2021-01-06 15:04:49 +13:00
|
|
|
border-radius: 5px;
|
2021-01-08 05:38:05 +13:00
|
|
|
box-shadow: var(--shadow);
|
2021-01-06 15:04:49 +13:00
|
|
|
margin-left: 20px;
|
2021-01-11 15:15:34 +13:00
|
|
|
background: var(--foreground);
|
2021-01-06 15:04:49 +13:00
|
|
|
}
|
|
|
|
|
2021-01-31 17:42:12 +13:00
|
|
|
aside.prefs {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
2021-01-06 15:04:49 +13:00
|
|
|
#save {
|
|
|
|
background: var(--highlighted);
|
|
|
|
padding: 10px 15px;
|
|
|
|
border-radius: 5px;
|
2023-01-01 21:56:09 +13:00
|
|
|
margin-top: 5px;
|
|
|
|
width: 100%
|
2021-01-06 15:04:49 +13:00
|
|
|
}
|
|
|
|
|
2021-01-09 09:26:29 +13:00
|
|
|
input[type="submit"] {
|
|
|
|
appearance: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
}
|
2021-01-31 00:27:49 +13:00
|
|
|
|
2021-01-31 18:21:46 +13:00
|
|
|
#settings_subs .unsubscribe {
|
2021-01-31 00:27:49 +13:00
|
|
|
margin-left: 30px;
|
|
|
|
}
|
|
|
|
|
2021-11-22 19:30:44 +13:00
|
|
|
#settings_subs a {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
|
2021-11-26 17:02:04 +13:00
|
|
|
#settings_filters .unsubscribe {
|
|
|
|
margin-left: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#settings_filters a {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
|
2021-11-24 19:43:25 +13:00
|
|
|
.helper {
|
|
|
|
padding: 10px;
|
|
|
|
width: 250px;
|
|
|
|
background: var(--highlighted) !important;
|
|
|
|
}
|
2023-01-30 22:02:43 +13:00
|
|
|
/* Info page */
|
|
|
|
.unset {
|
|
|
|
color: lightslategrey;
|
|
|
|
}
|
2021-11-24 19:43:25 +13:00
|
|
|
|
2020-12-29 15:42:46 +13:00
|
|
|
/* Markdown */
|
|
|
|
|
2021-02-25 06:31:58 +13:00
|
|
|
.md {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2024-05-24 12:31:40 +12:00
|
|
|
.md > p:not(:first-child):not(:last-child) {
|
2020-12-29 15:42:46 +13:00
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
2024-05-23 08:40:57 +12:00
|
|
|
.md > figure:first-of-type {
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.md > figure:not(:first-of-type) {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2020-12-29 15:42:46 +13:00
|
|
|
.md h1 { font-size: 22px; }
|
|
|
|
.md h2 { font-size: 20px; }
|
|
|
|
.md h3 { font-size: 18px; }
|
|
|
|
.md h4 { font-size: 16px; }
|
|
|
|
.md h5 { font-size: 14px; }
|
|
|
|
.md h6 { font-size: 12px; }
|
|
|
|
|
|
|
|
.md blockquote {
|
2021-01-18 19:32:42 +13:00
|
|
|
padding: 10px;
|
2021-01-04 16:44:44 +13:00
|
|
|
margin: 4px 0 4px 5px;
|
2020-12-29 15:42:46 +13:00
|
|
|
border-left: 4px solid var(--highlighted);
|
2021-01-19 18:32:25 +13:00
|
|
|
background: var(--post);
|
2020-12-29 15:42:46 +13:00
|
|
|
}
|
|
|
|
|
2021-01-09 18:57:36 +13:00
|
|
|
.md a, .md a * {
|
2020-12-29 15:42:46 +13:00
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
|
2022-11-04 17:30:35 +13:00
|
|
|
.md .md-spoiler-text, .md-spoiler-text a {
|
2021-01-09 18:57:36 +13:00
|
|
|
background: var(--highlighted);
|
|
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
|
2022-11-04 17:30:35 +13:00
|
|
|
.md-spoiler-text:hover {
|
2021-01-09 18:57:36 +13:00
|
|
|
background: var(--foreground);
|
|
|
|
color: var(--text);
|
|
|
|
}
|
|
|
|
|
2022-11-04 17:30:35 +13:00
|
|
|
.md-spoiler-text:hover a {
|
|
|
|
background: var(--foreground);
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
|
2020-12-29 15:42:46 +13:00
|
|
|
.md li { margin: 10px 0; }
|
2021-01-02 19:21:43 +13:00
|
|
|
.toc_child { list-style: none; }
|
2020-12-20 19:25:00 +13:00
|
|
|
|
2020-12-29 15:42:46 +13:00
|
|
|
.md pre {
|
2020-12-20 19:25:00 +13:00
|
|
|
background: var(--outside);
|
|
|
|
padding: 20px;
|
|
|
|
margin-top: 10px;
|
|
|
|
border-radius: 5px;
|
2021-01-07 07:51:13 +13:00
|
|
|
box-shadow: var(--shadow);
|
2021-01-13 06:53:10 +13:00
|
|
|
overflow: auto;
|
2020-12-20 19:25:00 +13:00
|
|
|
}
|
|
|
|
|
2021-01-04 16:44:44 +13:00
|
|
|
.md table {
|
|
|
|
margin: 5px;
|
2021-04-17 09:47:42 +12:00
|
|
|
overflow-x: auto;
|
2022-04-03 16:24:20 +12:00
|
|
|
display: block;
|
|
|
|
max-width: fit-content;
|
2021-01-04 16:44:44 +13:00
|
|
|
}
|
|
|
|
|
2020-12-29 15:42:46 +13:00
|
|
|
.md code {
|
2021-05-27 15:30:08 +12:00
|
|
|
font-family: monospace, sans-serif;
|
2020-12-20 19:25:00 +13:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2020-12-29 15:42:46 +13:00
|
|
|
.md code:not(.md pre > code) { background: var(--highlighted); }
|
|
|
|
|
2020-10-26 15:55:00 +13:00
|
|
|
/* Tables */
|
|
|
|
|
2021-01-19 18:32:25 +13:00
|
|
|
table, td, th { border: var(--panel-border); }
|
|
|
|
|
2020-10-26 15:55:00 +13:00
|
|
|
table {
|
2021-01-19 18:32:25 +13:00
|
|
|
border-width: 3px;
|
2020-12-22 18:39:55 +13:00
|
|
|
border-spacing: 0;
|
2020-10-26 15:55:00 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
td, th {
|
2020-12-22 18:39:55 +13:00
|
|
|
padding: 10px;
|
2020-12-06 17:54:43 +13:00
|
|
|
}
|
|
|
|
|
2021-02-22 07:11:17 +13:00
|
|
|
/* Errors */
|
|
|
|
|
|
|
|
#error { text-align: center; }
|
|
|
|
#error h1 { margin-bottom: 10px; }
|
|
|
|
#error h3 { opacity: 0.85; }
|
|
|
|
#error a { color: var(--accent); }
|
|
|
|
|
2022-11-10 05:16:51 +13:00
|
|
|
/* Messages */
|
|
|
|
|
|
|
|
#duplicates_msg h3 {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Warnings */
|
|
|
|
|
|
|
|
.listing_warn {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 10px;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listing_warn a {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
|
2023-01-03 22:39:45 +13:00
|
|
|
/* NSFW Landing Page */
|
|
|
|
|
|
|
|
#nsfw_landing {
|
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#nsfw_landing h1 {
|
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#nsfw_landing p {
|
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#nsfw_landing a {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
|
2020-12-06 17:54:43 +13:00
|
|
|
/* Mobile */
|
|
|
|
|
2020-12-24 19:16:04 +13:00
|
|
|
@media screen and (max-width: 800px) {
|
2022-06-19 09:53:30 +12:00
|
|
|
body.fixed_navbar { padding-top: 120px }
|
2021-01-30 18:00:55 +13:00
|
|
|
|
2021-01-03 17:50:23 +13:00
|
|
|
main {
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
padding: 10px;
|
2021-01-30 18:00:55 +13:00
|
|
|
margin: 0 0 10px 0;
|
2021-01-11 15:48:08 +13:00
|
|
|
max-width: 100%;
|
2021-01-03 17:50:23 +13:00
|
|
|
}
|
2021-01-04 16:44:44 +13:00
|
|
|
|
2021-01-03 17:50:23 +13:00
|
|
|
nav {
|
2021-01-31 11:52:18 +13:00
|
|
|
grid-template-areas: 'logo links' 'searchbox searchbox';
|
2021-01-03 19:40:22 +13:00
|
|
|
padding: 10px;
|
2021-01-08 07:46:00 +13:00
|
|
|
width: calc(100% - 20px);
|
2021-01-03 17:50:23 +13:00
|
|
|
}
|
2020-12-24 19:16:04 +13:00
|
|
|
|
2021-01-31 17:42:12 +13:00
|
|
|
nav #links { margin-left: auto; }
|
2021-02-01 10:22:11 +13:00
|
|
|
nav #links span { display: none; }
|
|
|
|
nav #links svg { display: block; }
|
2021-01-31 11:52:18 +13:00
|
|
|
|
2021-01-30 23:21:54 +13:00
|
|
|
#subscriptions { position: unset; }
|
|
|
|
|
|
|
|
#sub_list {
|
|
|
|
left: 10px;
|
|
|
|
right: 10px;
|
|
|
|
min-width: auto;
|
2021-01-30 21:33:38 +13:00
|
|
|
}
|
2021-02-14 09:55:23 +13:00
|
|
|
|
|
|
|
#settings {
|
|
|
|
max-width: unset;
|
|
|
|
}
|
2021-01-30 18:00:55 +13:00
|
|
|
|
2021-01-01 17:21:56 +13:00
|
|
|
aside, #subreddit, #user {
|
|
|
|
margin: 0;
|
2020-12-29 15:42:46 +13:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-01-01 13:45:10 +13:00
|
|
|
#user, #sidebar { margin: 20px 0; }
|
2021-01-31 17:42:12 +13:00
|
|
|
#logo, #links { margin-bottom: 5px; }
|
2021-01-29 12:50:18 +13:00
|
|
|
#searchbox { width: calc(100vw - 35px); }
|
2023-03-25 13:41:26 +13:00
|
|
|
|
2021-01-02 04:46:36 +13:00
|
|
|
}
|
2021-03-11 12:10:59 +13:00
|
|
|
|
|
|
|
@media screen and (max-width: 480px) {
|
2022-06-19 09:53:30 +12:00
|
|
|
body.fixed_navbar { padding-top: 100px; }
|
2021-03-11 12:10:59 +13:00
|
|
|
#version { display: none; }
|
|
|
|
|
|
|
|
.post {
|
|
|
|
grid-template: "post_header post_header post_thumbnail" auto
|
|
|
|
"post_title post_title post_thumbnail" 1fr
|
|
|
|
"post_media post_media post_thumbnail" auto
|
|
|
|
"post_body post_body post_thumbnail" auto
|
2023-03-24 01:21:09 +13:00
|
|
|
"post_poll post_poll post_thumbnail" auto
|
2021-05-10 13:25:52 +12:00
|
|
|
"post_notification post_notification post_thumbnail" auto
|
2021-03-11 12:10:59 +13:00
|
|
|
"post_score post_footer post_thumbnail" auto
|
|
|
|
/ auto 1fr fit-content(min(20%, 152px));
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_score {
|
|
|
|
margin: 5px 0px 20px 15px;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2023-03-24 01:21:09 +13:00
|
|
|
|
|
|
|
.post_poll {
|
|
|
|
padding: 5px 15px 10px 12px;
|
|
|
|
}
|
2021-03-11 12:10:59 +13:00
|
|
|
|
|
|
|
.compact .post_score { padding: 0; }
|
|
|
|
|
|
|
|
.post_score::before { content: "↑" }
|
|
|
|
|
|
|
|
.post_header { font-size: 14px; }
|
|
|
|
.post_footer { margin-left: 15px; }
|
|
|
|
|
|
|
|
.replies > .comment {
|
|
|
|
margin-left: -12px;
|
|
|
|
padding: 5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment_left {
|
|
|
|
min-width: auto;
|
|
|
|
padding: 5px 0px;
|
|
|
|
align-items: initial;
|
|
|
|
margin-top: -5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.line {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* .thread { margin-left: -5px; } */
|
|
|
|
.comment_right { padding: 5px 0 10px 2px; }
|
2021-03-21 09:03:05 +13:00
|
|
|
.comment_author { margin-left: 12px; }
|
2021-03-11 12:10:59 +13:00
|
|
|
.comment_data { margin-left: 12px; }
|
2024-07-18 13:27:13 +12:00
|
|
|
|
|
|
|
.user-comment .comment_data {
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
row-gap: 5px;
|
|
|
|
}
|
|
|
|
|
2021-03-21 09:03:05 +13:00
|
|
|
.comment_data::marker { font-size: 25px; }
|
2024-07-18 13:27:13 +12:00
|
|
|
.user-comment .comment_data > .comment_link { order: 2 }
|
|
|
|
.user_comment_data_divider { order: 1; }
|
|
|
|
|
|
|
|
.user_comment_data_divider .dot {
|
|
|
|
display: unset;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.created-in { display: none; }
|
2021-03-11 12:10:59 +13:00
|
|
|
|
|
|
|
.comment_score {
|
|
|
|
min-width: 32px;
|
|
|
|
height: 20px;
|
|
|
|
font-size: 15px;
|
|
|
|
padding: 7px 0px;
|
|
|
|
margin-right: -5px;
|
|
|
|
}
|
2022-11-10 05:16:51 +13:00
|
|
|
|
|
|
|
#post_links > li { margin-right: 10px }
|
|
|
|
.post_footer > p > span#upvoted { display: none }
|
2023-02-08 20:22:37 +13:00
|
|
|
|
2024-07-05 13:32:12 +12:00
|
|
|
.desktop_item { display: none }
|
|
|
|
.mobile_item { display: auto }
|
|
|
|
|
2023-01-12 21:46:56 +13:00
|
|
|
.popup {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2023-02-15 16:07:51 +13:00
|
|
|
.popup-inner {
|
|
|
|
max-width: 80%;
|
2023-01-12 21:46:56 +13:00
|
|
|
}
|
2023-03-25 13:41:26 +13:00
|
|
|
|
|
|
|
#commentQueryForms {
|
|
|
|
display: initial;
|
|
|
|
justify-content: initial;
|
|
|
|
}
|
|
|
|
}
|
2024-02-07 09:27:23 +13:00
|
|
|
|
|
|
|
.quality-selector {
|
|
|
|
border: 2px var(--outside) solid;
|
|
|
|
margin-top: 8px;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.quality-selector option {
|
|
|
|
background-color: var(--background);
|
|
|
|
color: var(--text);
|
|
|
|
}
|
|
|
|
|
|
|
|
.quality-selector option:hover {
|
|
|
|
background-color: var(--accent);
|
|
|
|
color: var(--text);
|
2024-04-08 02:52:59 +12:00
|
|
|
}
|