/* General */ :root { --accent: aqua; --text: white; --foreground: #222; --background: #0F0F0F; --outside: #1F1F1F; --post: #161616; --highlighted: #333; --shadow: 0 1px 3px rgba(0,0,0,0.5); } ::selection { color: var(--background); background: var(--accent); } * { margin: 0; color: var(--text); font-family: sans-serif; } body { background: var(--background); font-size: 15px; } nav { display: flex; justify-content: space-between; align-items: center; color: var(--accent); background: var(--outside); padding: 5px 15px; font-size: 20px; min-height: 40px; position: fixed; width: calc(100% - 30px); top: 0; z-index: 1; } nav * { color: var(--text); } nav #reddit { color: var(--accent); } nav #version { opacity: 25%; } #settings_link { font-size: 18px; margin-left: 20px; opacity: 0.8; } main { display: flex; justify-content: center; max-width: 1000px; padding: 10px 20px; margin: 60px auto 20px auto } #column_one { max-width: 750px; border-radius: 5px; overflow: hidden; } footer { display: flex; justify-content: center; } footer > a { margin-right: 5px; } button { background: none; border: none; font-weight: bold; } hr { margin: 20px 0; } a { color: inherit; text-decoration: none; transition: 0.2s all; } a:not(.post_right):hover { text-decoration: underline; } img[src=""] { display: none; } aside { flex-grow: 1; margin: 20px 20px 0 10px; max-width: 350px; } .post, .panel { border: 1px solid var(--highlighted); } .dot { font-size: 12px; opacity: 0.5; } /* User & Subreddit */ #user, #subreddit, #sidebar { margin: 40px auto 0 auto; display: flex; flex-direction: column; align-items: center; height: max-content; background: var(--outside); border-radius: 5px; overflow: hidden; } #user *, #subreddit * { text-align: center; } #user, #sub_meta, #sidebar_contents { padding: 20px; } #sidebar, #sidebar_contents { margin-top: 10px; } #sidebar_label { padding: 10px; } #user_icon, #sub_icon { width: 100px; height: 100px; border: 2px solid var(--accent); border-radius: 100%; padding: 10px; margin: 10px; } #user_title, #sub_title { margin: 0 20px; font-size: 20px; font-weight: bold; } #user_description, #sub_description { margin: 0 20px; } #user_name, #user_description:not(:empty), #user_icon #sub_name, #sub_icon, #sub_description:not(:empty) { margin-bottom: 20px; } #user_details, #sub_details { display: grid; grid-template-columns: repeat(2, 1fr); grid-column-gap: 20px; } #user_details > label, #sub_details > label { color: var(--accent); } /* Wiki Pages */ #wiki { background: var(--foreground); padding: 35px; } #top { background: var(--highlighted); width: 100%; display: flex; } #top > * { flex-grow: 1; text-align: center; height: 35px; line-height: 35px; } #top > div { border-bottom: 2px solid var(--text); } /* Sorting and Search */ select { background: var(--outside); transition: 0.2s all; } select, #search { border: none; padding: 0 15px; height: 40px; appearance: none; border-radius: 5px 0px 0px 5px; } #searchbox { display: flex; box-shadow: var(--shadow); } #searchbox > *, #sort_submit { background: var(--highlighted); height: 40px; } #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; height: 40px; padding: 0 10px; } #restrict_sr { margin-right: 5px; } input[type="submit"] { border: 0; border-radius: 0px 5px 5px 0px; transition: 0.2s all; } select:hover { background: var(--foreground); } input[type="submit"]:hover { color: var(--accent); } #timeframe { margin: 0 2px; border-radius: 0; } #sort_options + #timeframe:not(#search_sort > #timeframe) { margin-left: 10px; border-radius: 5px 0px 0px 5px; } #search_sort { background: var(--highlighted); border-radius: 5px; overflow: auto; } #search_sort > #search { border: 0; background: transparent; } #search_sort > *, #searchbox > * { font-size: 15px; } #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; } #sort_options { height: 40px; } #sort, #search_sort { display: flex; align-items: center; margin-bottom: 20px; } #sort_options, footer > a { border-radius: 5px; box-shadow: var(--shadow); background: var(--outside); display: flex; overflow: auto; } #sort_options > a, footer > a { color: lightgrey; padding: 10px 20px; text-align: center; cursor: pointer; transition: 0.2s all; } #sort_options > a.selected { background: var(--accent); color: var(--background); } #sort_options > a:not(.selected):hover { background: var(--foreground); } /* Post */ .post { border-radius: 5px; background: var(--post); box-shadow: var(--shadow); display: flex; transition: 0.2s all; } .post:not(:last-child) { margin-bottom: 10px; } .post.highlighted { margin: 20px 0; } .post.highlighted > .post_right { flex-direction: column; } .post:hover { background: var(--foreground); } .post:hover > .post_left { background: var(--highlighted); } .post_left, .post_right { display: flex; overflow-wrap: break-word; } .post_left { text-align: center; background: var(--foreground); border-radius: 5px 0 0 5px; flex-direction: column; min-width: 50px; transition: 0.2s all; } .post_score { margin-top: 20px; color: var(--accent); } #post_footer { display: flex; justify-content: space-between; opacity: 0.5; font-size: 14px; } #post_links { display: flex; list-style: none; padding: 0; font-weight: bold; } #post_links > li { margin-right: 15px; } .post_subreddit { font-weight: bold; } .post_title { font-size: 16px; line-height: 1.5; margin-top: 10px; } .post_text { padding: 15px; display: flex; flex-direction: column; } .post_right { flex-grow: 1; flex-shrink: 1; justify-content: space-between; } .post_right > * { margin: 5px; } .post_media { max-width: 90%; align-self: center; margin-top: 15px; } .post_body { opacity: 0.9; font-weight: normal; margin: 10px 5px; } #post_url { color: var(--accent); margin-top: 10px; } .post_thumbnail { object-fit: cover; width: auto; border-radius: 5px; border: 1px solid var(--foreground); max-width: 20%; } .post_flair { background: var(--accent); color: var(--background); padding: 5px; border-radius: 5px; font-size: 12px; font-weight: bold; } .nsfw { color: #FF5C5D; margin-top: 20px; border: 1px solid #FF5C5D; padding: 5px; font-size: 12px; border-radius: 5px; font-weight: bold; } .stickied { --accent: #5cff85; border: 1px solid #5cff85; } /* Comment */ .comment { margin: 10px 0; border-radius: 5px; display: flex; } .comment_left, .comment_right { display: flex; flex-direction: column; } .comment_left { text-align: center; min-width: 50px; padding: 5px 0; align-items: center; } .comment_title { font-size: 20px; } .comment_link { text-decoration: underline; } .comment_author { opacity: 0.9; } .comment_author.op { color: var(--accent); font-weight: bold; } .author_flair { background: var(--highlighted); color: var(--text); padding: 5px; margin-right: 5px; border-radius: 5px; font-size: 12px; font-weight: bold; } .comment_subreddit { font-weight: bold; } .comment_score { color: var(--accent); background: var(--foreground); min-width: 40px; border-radius: 5px; padding: 10px 0; font-size: 16px; } .comment_right { word-wrap: anywhere; padding: 10px 25px 10px 5px; flex-grow: 1; flex-shrink: 1; } .comment_data > * { margin-right: 5px; } .comment_image { max-width: 500px; align-self: center; } .comment_body { opacity: 0.9; font-weight: normal; margin: 10px 5px; } .comment_body > p:not(:first-child) { margin-top: 20px; } .comment_body a { text-decoration: underline; color: var(--accent); } .deeper_replies { color: var(--accent); margin-left: 15px; } ::marker { color: var(--accent); } .replies > .comment { margin-left: -20px; padding: 5px; } .datetime { opacity: 0.5; } .line { width: 2px; height: 100%; background: var(--foreground); } /* Layouts */ #compact .post:not(.highlighted) { border-radius: 0; margin: 0; padding: 0; } #compact .post:first-of-type { border-radius: 5px 5px 0 0; overflow: hidden; } #compact .post:last-of-type { border-radius: 0 0 5px 5px; overflow: hidden; } #compact .post.highlighted { border-radius: 5px; } #compact .post:not(:last-of-type):not(.highlighted):not(.stickied) { border-bottom: 0; } #compact .post_left { border-radius: 0; } #compact .post_header { font-size: 14px; } #compact .post_title { margin-top: 5px; } #compact .post_text { padding: 10px; } #compact .post_thumbnail { max-width: 75px; max-height: 75px; } #compact footer { margin-top: 20px; } #card .post_right { flex-direction: column; } #card .post:not(.highlighted) .post_media { margin-top: 0; margin-bottom: 15px; } /* Settings */ #settings { display: flex; flex-direction: column; align-items: center; } #prefs { display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding: 20px; background: var(--post); border-radius: 5px; } #prefs > div { display: flex; justify-content: space-between; width: 100%; align-items: center; } #prefs > div:not(:last-of-type) { margin-bottom: 10px; } #prefs select { border-radius: 5px; box-shadow: var(--shadow); margin-left: 20px; } #save { background: var(--highlighted); padding: 10px 15px; border-radius: 5px; margin-top: 20px; } /* Markdown */ .md > *:not(:first-child) { margin-top: 20px; } .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 { padding-left: 6px; margin: 4px 0 4px 5px; border-left: 4px solid var(--highlighted); } .md a { color: var(--accent); } .md li { margin: 10px 0; } .toc_child { list-style: none; } .md pre { background: var(--outside); padding: 20px; margin-top: 10px; border-radius: 5px; box-shadow: var(--shadow); } .md table { margin: 5px; } .md code { font-family: monospace; font-size: 14px; } .md code:not(.md pre > code) { background: var(--highlighted); } /* Tables */ table { border: 3px var(--highlighted) solid; border-spacing: 0; } td, th { border: 1px var(--highlighted) solid; padding: 10px; } /* Mobile */ @media screen and (max-width: 480px) { .post { flex-direction: column-reverse; } .post_header { font-size: 14px; } .post_left { border-radius: 0 0 5px 5px; flex-direction: row; justify-content: center; align-items: center; } .nsfw { margin: 5px 0px 5px 10px; } .post_score { margin: 5px 0; } .replies > .comment { margin-left: -25px; padding: 5px 0; } .datetime { width: 100%; } } @media screen and (max-width: 800px) { main { flex-direction: column-reverse; padding: 10px; margin: 100px 0 10px 0; } nav { flex-direction: column; padding: 10px; width: calc(100% - 20px); } aside, #subreddit, #user { margin: 0; max-width: 100%; } #user, #sidebar { margin: 20px 0; } #logo { margin: 5px auto; } #searchbox { width: 100%; } #github { display: none; } }