gavin19

mfn

Mar 4th, 2016
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 56.78 KB | None | 0 0
  1. /*!
  2.  * Theme: /r/A_D
  3.  * Author: /u/postpics
  4.  * Comment: Add all custom CSS at the end so the base stylesheet can be updated
  5.  *   without losing changes. The sourceMappingURL line can be safely deleted.
  6.  */
  7.  
  8. .side .subButtons {
  9.     display: -webkit-box;
  10.     display: -webkit-flex;
  11.     display: -moz-flex;
  12.     display: -ms-flexbox;
  13.     display: flex;
  14. }
  15.  
  16. .side .subscribe-button a.active,
  17. .side .subButtons span.res-fancy-toggle-button,
  18. .sidebox:not(.create) .morelink a,
  19. .login-form-side .submit button,
  20. .side .md > p a[title="click"],
  21. .side .md blockquote a[title="click"],
  22. .usertext-buttons button.save,
  23. .BEFoot button:first-child,
  24. .spacer > button,
  25. .content .RESBigEditorPop,
  26. .usertext button.cancel,
  27. #url-field button,
  28. .BEFoot button:last-child {
  29.     display: inline-block;
  30.     padding: 0 12px;
  31.     font: normal 1.2rem/32px arial, sans-serif;
  32.     text-transform: uppercase;
  33.     text-align: center;
  34.     border: none;
  35.     border-radius: 0;
  36.     white-space: nowrap;
  37.     overflow: hidden;
  38.     vertical-align: middle;
  39. }
  40.  
  41. .side .subscribe-button a.active:hover,
  42. .side .subButtons span.res-fancy-toggle-button:hover,
  43. .sidebox:not(.create) .morelink a:hover,
  44. .login-form-side .submit button:hover,
  45. .side .md > p a[title="click"]:hover,
  46. .side .md blockquote a[title="click"]:hover,
  47. .usertext-buttons button.save:hover,
  48. .BEFoot button:hover:first-child,
  49. .spacer > button:hover,
  50. .content .RESBigEditorPop:hover,
  51. .usertext button.cancel:hover,
  52. #url-field button:hover,
  53. .BEFoot button:hover:last-child {
  54.     text-decoration: none;
  55. }
  56.  
  57. .side .subscribe-button a.active,
  58. .side .subButtons span.res-fancy-toggle-button,
  59. .sidebox:not(.create) .morelink a,
  60. .login-form-side .submit button,
  61. .side .md > p a[title="click"],
  62. .side .md blockquote a[title="click"],
  63. .usertext-buttons button.save,
  64. .BEFoot button:first-child,
  65. .spacer > button {
  66.     margin: 0 4px 0 0;
  67.     color: white;
  68.     background: #4d4d4d;
  69.     box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.24);
  70.     transition: background .2s, box-shadow .2s;
  71. }
  72.  
  73. .side .subscribe-button a.active:hover,
  74. .side .subButtons span.res-fancy-toggle-button:hover,
  75. .sidebox:not(.create) .morelink a:hover,
  76. .login-form-side .submit button:hover,
  77. .side .md > p a[title="click"]:hover,
  78. .side .md blockquote a[title="click"]:hover,
  79. .usertext-buttons button.save:hover,
  80. .BEFoot button:hover:first-child,
  81. .spacer > button:hover {
  82.     box-shadow: -3px 6px 0px 0px rgba(0, 0, 0, 0.2);
  83. }
  84.  
  85. .side .subscribe-button a.active:active,
  86. .side .subButtons span.res-fancy-toggle-button:active,
  87. .sidebox:not(.create) .morelink a:active,
  88. .login-form-side .submit button:active,
  89. .side .md > p a[title="click"]:active,
  90. .side .md blockquote a[title="click"]:active,
  91. .usertext-buttons button.save:active,
  92. .BEFoot button:active:first-child,
  93. .spacer > button:active {
  94.     background: black;
  95. }
  96.  
  97. .content .RESBigEditorPop,
  98. .usertext button.cancel,
  99. #url-field button,
  100. .BEFoot button:last-child {
  101.     color: black;
  102.     background: transparent;
  103.     transition: background .2s;
  104. }
  105.  
  106. .content .RESBigEditorPop:hover,
  107. .usertext button.cancel:hover,
  108. #url-field button:hover,
  109. .BEFoot button:hover:last-child {
  110.     background: rgba(0, 0, 0, 0.12);
  111. }
  112.  
  113. #header-bottom-right .pref-lang,
  114. #header-bottom-right .logout a {
  115.     display: inline-block;
  116.     width: 16px;
  117.     height: 16px;
  118.     line-height: 16px;
  119.     font: normal 0/1 sans-serif;
  120.     color: transparent;
  121.     vertical-align: middle;
  122.     background-repeat: no-repeat;
  123. }
  124.  
  125. .side .usertext,
  126. .side .linkinfo,
  127. .sidecontentbox,
  128. .sidebox .spacer,
  129. .login-form-side {
  130.     border: 1px solid rgba(0, 0, 0, 0.12);
  131.     background: white;
  132.     background-clip: padding-box;
  133.     border-radius: 5px;
  134. }
  135.  
  136. .thing .title {
  137.     color: #0073e6;
  138. }
  139.  
  140. .thing .title:visited,
  141. .thing.visited .title {
  142.     color: black;
  143. }
  144.  
  145. .thing a.title:hover,
  146. .md a:hover {
  147.     text-decoration: underline;
  148. }
  149.  
  150. .md a:visited {
  151.     color: #8114b8;
  152. }
  153.  
  154. html {
  155.     font: normal 62.5%/1 verdana, arial, sans-serif;
  156. }
  157.  
  158. body {
  159.     padding-bottom: 20px;
  160.     font-size: 1rem;
  161.     background: white;
  162. }
  163.  
  164. body.mod-toolbox {
  165.     overflow: visible;
  166. }
  167.  
  168. body.res-commentBoxes > .content {
  169.     padding-right: 10px !important;
  170. }
  171.  
  172. body.res-commentBoxes .comment {
  173.     overflow: visible;
  174. }
  175.  
  176. #sr-header-area {
  177.     position: absolute;
  178.     z-index: 1;
  179.     font-size: .9rem;
  180.     color: rgba(255, 255, 255, 0.4);
  181.     height: 22px;
  182.     line-height: 22px;
  183.     border: none;
  184.     transition-property: z-index, background;
  185.     transition-delay: .15s;
  186.     transition-duration: .4s;
  187.     background: none;
  188.     top: 0;
  189.     right: -320px;
  190.     bottom: auto;
  191.     left: 0;
  192. }
  193.  
  194. #sr-header-area a,
  195. #sr-header-area .separator,
  196. #sr-header-area .srSep {
  197.     color: white;
  198. }
  199.  
  200. #sr-header-area .drop-choices.srdrop {
  201.     border: none;
  202.     box-shadow: -3px 6px 0px 0px rgba(0, 0, 0, 0.2);
  203. }
  204.  
  205. #sr-header-area .drop-choices.srdrop a {
  206.     color: black;
  207. }
  208.  
  209. #sr-header-area #RESShortcutsEditContainer {
  210.     z-index: auto;
  211.     background: #444;
  212.     opacity: 0;
  213.     transition: visibility .4s .15s;
  214. }
  215.  
  216. #sr-header-area #sr-more-link,
  217. #sr-header-area #RESShortcutsSort,
  218. #sr-header-area #RESShortcutsRight,
  219. #sr-header-area #RESShortcutsLeft,
  220. #sr-header-area #RESShortcutsAdd,
  221. #sr-header-area #RESShortcutsTrash {
  222.     color: inherit;
  223.     height: 22px;
  224.     line-height: 20px;
  225.     background: transparent;
  226. }
  227.  
  228. #sr-header-area:hover {
  229.     z-index: 3;
  230.     background: #444;
  231. }
  232.  
  233. #sr-header-area:hover #sr-more-link {
  234.     background: #444;
  235. }
  236.  
  237. #sr-header-area:hover a,
  238. #sr-header-area:hover #RESShortcutsEditContainer {
  239.     opacity: 1;
  240. }
  241.  
  242. body.res #sr-header-area a.RESShortcutsCurrentSub,
  243. #sr-header-area .selected a {
  244.     color: white !important;
  245.     font-weight: normal;
  246. }
  247.  
  248. .sr-bar .separator {
  249.     color: rgba(255, 255, 255, 0.3);
  250. }
  251.  
  252. .dropdown.srdrop .selected {
  253.     color: rgba(255, 255, 255, 0.6);
  254.     background: none;
  255.     padding-right: 5px;
  256. }
  257.  
  258. .dropdown.srdrop .selected:after {
  259.     content: "";
  260.     display: inline-block;
  261.     height: 0px;
  262.     width: 1px;
  263.     border: 5px solid transparent;
  264.     border-top-color: rgba(255, 255, 255, 0.6);
  265.     position: relative;
  266.     left: 5px;
  267.     top: 3px;
  268. }
  269.  
  270. #header {
  271.     border: none;
  272.     margin-right: 320px;
  273.     font-size: 1rem;
  274.     z-index: 3;
  275.     background-color: gray;
  276.     background-repeat: no-repeat;
  277.     background-attachment: fixed;
  278.     background-position: right top;
  279.     transition: background-color .3s ease-in-out;
  280. }
  281.  
  282. #header .tabmenu {
  283.     position: absolute;
  284.     top: auto;
  285.     bottom: 0;
  286.     left: 0;
  287.     right: 0;
  288.     margin: 0;
  289.     text-transform: uppercase;
  290.     font-size: 1.2rem;
  291.     font-family: arial;
  292.     line-height: 28px;
  293.     background: #4d4d4d;
  294.     z-index: 1;
  295. }
  296.  
  297. #header .tabmenu li {
  298.     display: inline-block;
  299.     font-weight: normal;
  300.     margin: 0;
  301. }
  302.  
  303. #header .tabmenu li a {
  304.     display: block;
  305.     padding: 0 1rem;
  306.     color: white;
  307.     background: none;
  308.     transition: background .15s;
  309. }
  310.  
  311. #header .tabmenu li a:hover {
  312.     background: rgba(255, 255, 255, 0.15);
  313. }
  314.  
  315. #header .tabmenu li a:active {
  316.     background: black;
  317. }
  318.  
  319. #header .tabmenu li.selected a {
  320.     border: none;
  321.     color: black;
  322.     background: white;
  323.     z-index: auto;
  324.     box-shadow: 0 -8px 10px -7px rgba(255, 255, 255, 0.6);
  325. }
  326.  
  327. #header-bottom-left {
  328.     box-sizing: border-box;
  329.     height: 200px;
  330.     text-align: center;
  331.     border-bottom: 28px solid rgba(0, 0, 0, 0.2);
  332.     background: linear-gradient(rgba(0, 0, 0, 0.15) 0px, transparent 22px);
  333.     background-clip: padding-box;
  334. }
  335.  
  336. #header-img-a {
  337.     position: absolute;
  338.     left: 20px;
  339.     bottom: 28px;
  340.     margin: 0;
  341.     z-index: 1;
  342. }
  343.  
  344. #header-img-a #header-img {
  345.     display: block;
  346.     margin: 0;
  347. }
  348.  
  349. #header-img.default-header {
  350.     margin: 0;
  351.     vertical-align: inherit;
  352.     position: absolute;
  353.     left: 20px;
  354.     bottom: 28px;
  355.     z-index: 1;
  356. }
  357.  
  358. .pagename {
  359.     margin: auto;
  360.     font: normal 2.5rem/1 arial, sans-serif;
  361.     text-rendering: optimizeLegibility;
  362.     text-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
  363.     color: white;
  364.     height: 2.5rem;
  365.     position: absolute;
  366.     top: 0;
  367.     right: 0;
  368.     bottom: 0;
  369.     left: 0;
  370. }
  371.  
  372. .pagename a {
  373.     display: inline-block;
  374.     color: inherit;
  375.     text-transform: uppercase;
  376.     font-weight: bold;
  377. }
  378.  
  379. .pagename a:visited {
  380.     color: inherit;
  381. }
  382.  
  383. .pagename a:hover {
  384.     text-decoration: none;
  385.     border-bottom: 2px solid;
  386. }
  387.  
  388. #header-bottom-right {
  389.     position: fixed;
  390.     box-sizing: border-box;
  391.     top: 0 !important;
  392.     right: 0 !important;
  393.     bottom: auto !important;
  394.     left: auto !important;
  395.     width: 320px;
  396.     height: 30px;
  397.     padding: 0 5px 0 0;
  398.     font-size: 1.1rem;
  399.     line-height: 29px;
  400.     text-align: right;
  401.     border-width: 0 0 1px 1px;
  402.     border-style: solid;
  403.     border-color: rgba(0, 0, 0, 0.12);
  404.     color: black;
  405.     background: white;
  406.     border-radius: 0;
  407.     z-index: 2;
  408. }
  409.  
  410. #header-bottom-right .separator {
  411.     margin: 0;
  412.     visibility: hidden;
  413. }
  414.  
  415. #header-bottom-right a {
  416.     color: black;
  417. }
  418.  
  419. #header-bottom-right a:hover {
  420.     text-decoration: underline;
  421. }
  422.  
  423. #header-bottom-right #userbarToggle {
  424.     height: auto;
  425.     min-height: 0;
  426.     padding: 0 5px;
  427.     width: auto;
  428.     left: 0;
  429.     bottom: auto;
  430.     font-size: 16px;
  431.     line-height: 29px;
  432.     vertical-align: middle;
  433.     border: none;
  434.     border-radius: 0;
  435.     color: black;
  436.     background: inherit;
  437. }
  438.  
  439. #header-bottom-right .userkarma {
  440.     position: absolute;
  441.     top: 22px;
  442.     right: 5px;
  443.     font-weight: normal;
  444.     color: #999999;
  445.     cursor: help;
  446. }
  447.  
  448. #header-bottom-right .userkarma a {
  449.     color: inherit;
  450. }
  451.  
  452. #header-bottom-right #RESAccountSwitcherIcon {
  453.     margin-right: -10px;
  454.     position: relative;
  455. }
  456.  
  457. #header-bottom-right.res-userbar-toggle > .user {
  458.     margin-left: 5px;
  459. }
  460.  
  461. #header-bottom-right .gearIcon::after {
  462.     font-size: 16px;
  463.     color: black;
  464.     text-shadow: none;
  465. }
  466.  
  467. #header-bottom-right #mail {
  468.     color: transparent !important;
  469. }
  470.  
  471. #header-bottom-right #mail.nohavemail {
  472.     background-image: url(%sprite%);
  473.     background-position: -19px -87px;
  474. }
  475.  
  476. #header-bottom-right #modmail {
  477.     color: transparent !important;
  478.     font-size: 0;
  479.     background-image: url(%sprite%);
  480.     top: auto;
  481.     margin: 0;
  482.     vertical-align: middle;
  483. }
  484.  
  485. #header-bottom-right #modmail.nohavemail {
  486.     background-position: -18px -68px;
  487. }
  488.  
  489. #header-bottom-right #modmail.havemail {
  490.     background-position: -34px -68px;
  491. }
  492.  
  493. #header-bottom-right .pref-lang {
  494.     background-image: url(%sprite%);
  495.     background-position: -18px -52px;
  496.     position: relative;
  497. }
  498.  
  499. #header-bottom-right .pref-lang:hover:after {
  500.     content: "Reddit preferences";
  501. }
  502.  
  503. #header-bottom-right .logout a {
  504.     background-image: url(%sprite%);
  505.     background-position: -18px -36px;
  506.     position: relative;
  507. }
  508.  
  509. #header-bottom-right .logout a:hover:after {
  510.     content: "Logout";
  511. }
  512.  
  513. #header-bottom-right .pref-lang:after,
  514. #header-bottom-right .logout a:after {
  515.     position: absolute;
  516.     top: 24px;
  517.     right: 1px;
  518.     display: inline-block;
  519.     color: black;
  520.     padding: 5px;
  521.     border: 1px solid rgba(0, 0, 0, 0.12);
  522.     background: white;
  523.     box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.24);
  524.     font-size: 1.3rem;
  525. }
  526.  
  527. #header-bottom-right .message-count {
  528.     color: black;
  529.     display: inline;
  530. }
  531.  
  532. body.loggedin .user {
  533.     color: transparent;
  534. }
  535.  
  536. .side {
  537.     position: relative;
  538.     margin: -170px 0 0 0;
  539.     padding: 40px 10px 0 10px;
  540.     border-width: 0 0 1px 1px;
  541.     border-style: solid;
  542.     border-color: #e0e0e0;
  543.     background: #ededed;
  544.     width: 320px;
  545.     box-sizing: border-box;
  546. }
  547.  
  548. .side .subscribe-button a.active {
  549.     margin: 0px 5px 5px 0px;
  550.     padding: 0 12px;
  551.     background-color: gray;
  552.     display: block;
  553.     overflow: visible;
  554. }
  555.  
  556. .side .subscribe-button a.active:not(.remove) {
  557.     background-color: #f2330d;
  558. }
  559.  
  560. .side .subButtons {
  561.     border-width: 10px 0 10px 0;
  562.     border-style: solid;
  563.     border-color: transparent;
  564. }
  565.  
  566. .side .subButtons span {
  567.     width: 100%;
  568.     margin: 0;
  569.     box-sizing: border-box;
  570. }
  571.  
  572. .side .subButtons span.res-fancy-toggle-button {
  573.     margin: 0px 5px 5px 0px;
  574.     padding: 0;
  575.     font-size: 1.1rem;
  576.     display: block;
  577.     color: black;
  578.     background: white;
  579. }
  580.  
  581. .side .subButtons span.res-fancy-toggle-button.remove {
  582.     background: none;
  583.     box-shadow: none;
  584. }
  585.  
  586. .side .subButtons span:last-child {
  587.     margin-right: 0;
  588. }
  589.  
  590. .side .subButtons + .subscribers,
  591. .side .subButtons + .subscribers + .users-online {
  592.     font-size: 1.2rem;
  593. }
  594.  
  595. .side .subButtons .subscribe-button a.active {
  596.     padding: 0;
  597.     font-size: 1.1rem;
  598. }
  599.  
  600. .side .usertext {
  601.     margin: 10px 0;
  602.     padding: 10px;
  603. }
  604.  
  605. .side #search {
  606.     position: relative;
  607.     margin: 0 0 10px;
  608. }
  609.  
  610. .side #search input[type=text] {
  611.     width: 300px;
  612.     padding: 8px 8px 8px 5px;
  613.     border: 1px solid rgba(0, 0, 0, 0.12);
  614.     background: white;
  615.     background-clip: padding-box;
  616.     transition: border .2s;
  617. }
  618.  
  619. .side #search input[type=text]:hover,
  620. .side #search input[type=text]:focus {
  621.     border-color: rgba(0, 0, 0, 0.32);
  622.     outline: none;
  623. }
  624.  
  625. .side #search input[type=submit] {
  626.     width: 30px;
  627.     height: 30px;
  628.     margin-left: -30px;
  629.     opacity: .5;
  630.     background: url(%sprite%) no-repeat -13px 9px;
  631. }
  632.  
  633. .side #search input[type=submit]:hover {
  634.     background: url(%sprite%) no-repeat -13px 9px;
  635. }
  636.  
  637. .side #search #searchexpando {
  638.     margin: 0px 0 0 0;
  639.     padding: 20px 10px 0 10px;
  640.     border: 1px solid rgba(0, 0, 0, 0.12);
  641.     background: white;
  642.     border-radius: 0;
  643.     box-shadow: -3px 6px 0px 0px rgba(0, 0, 0, 0.2);
  644.     position: absolute;
  645.     width: 300px;
  646.     box-sizing: border-box;
  647.     z-index: 2147483647;
  648. }
  649.  
  650. .side #search #search_showmore:after {
  651.     display: inline-block;
  652.     margin: 1rem 0;
  653. }
  654.  
  655. .side #search #moresearchinfo {
  656.     padding: 20px 0 20px 0;
  657.     border-width: 0;
  658.     position: relative;
  659. }
  660.  
  661. .side #search #moresearchinfo + p {
  662.     margin: 10px 0 0 0;
  663. }
  664.  
  665. .side #search #moresearchinfo + p a {
  666.     line-height: 0;
  667.     font-size: 0;
  668. }
  669.  
  670. .side #search #moresearchinfo + p a:after {
  671.     text-indent: 0;
  672.     height: auto;
  673.     line-height: 1;
  674.     content: "More options...";
  675.     font-size: 12px;
  676. }
  677.  
  678. .side #search #moresearchinfo p:first-of-type {
  679.     font-weight: bold;
  680.     line-height: 1;
  681. }
  682.  
  683. .side #search #moresearchinfo #search_hidemore {
  684.     display: block;
  685.     color: transparent;
  686.     float: none;
  687.     text-align: center;
  688.     margin: 0 -10px 0px -10px;
  689.     padding: 0;
  690.     position: absolute;
  691.     top: auto;
  692.     right: 0;
  693.     bottom: 0;
  694.     left: 0;
  695.     font-size: 0;
  696.     line-height: 0;
  697.     border-bottom: 5px solid #F44336;
  698. }
  699.  
  700. .side #search #moresearchinfo #search_hidemore:after {
  701.     content: "";
  702.     display: inline-block;
  703.     border: 8px solid transparent;
  704.     border-bottom-color: #F44336;
  705. }
  706.  
  707. .side #search dt {
  708.     font-weight: normal;
  709.     margin-left: 0;
  710. }
  711.  
  712. .side #search dd {
  713.     margin: 0 0 5px;
  714.     color: #969696;
  715. }
  716.  
  717. .side > .spacer {
  718.     display: inline;
  719. }
  720.  
  721. .side .linkinfo {
  722.     padding: 10px;
  723.     color: black;
  724.     line-height: 1.5;
  725.     font-family: verdana, sans-serif;
  726. }
  727.  
  728. .side .linkinfo .shortlink,
  729. .side .linkinfo .shortlink input,
  730. .side .linkinfo .score .number,
  731. .side .linkinfo .score .word {
  732.     font-size: inherit;
  733. }
  734.  
  735. .side .linkinfo .shortlink input {
  736.     color: inherit;
  737.     background: none;
  738.     border-color: rgba(0, 0, 0, 0.12);
  739. }
  740.  
  741. .side .discuss-ad {
  742.     color: #999999;
  743.     font-size: 10px;
  744.     text-align: right;
  745. }
  746.  
  747. #moderation_tools li {
  748.     padding: 0;
  749.     margin: 0;
  750. }
  751.  
  752. #moderation_tools li a {
  753.     display: block;
  754.     padding: 3px 0;
  755. }
  756.  
  757. #moderation_tools li a:before {
  758.     display: inline-block !important;
  759.     float: none !important;
  760.     vertical-align: middle;
  761. }
  762.  
  763. #login_login-main,
  764. #moderation_tools,
  765. #ad_main,
  766. .sidebox.create,
  767. .sidecontentbox,
  768. .account-activity-box,
  769. .linkinfo,
  770. .titlebox {
  771.     margin: 20px 0;
  772.     clear: both;
  773. }
  774.  
  775. .sidecontentbox {
  776.     padding: 10px;
  777. }
  778.  
  779. .sidecontentbox .content {
  780.     border: none;
  781.     padding: 10px 0;
  782. }
  783.  
  784. .sidecontentbox .content li {
  785.     padding: 2px 0;
  786. }
  787.  
  788. .sidecontentbox .linkflairlabel {
  789.     display: none;
  790. }
  791.  
  792. .sidebox:not(.create) .morelink {
  793.     border: none;
  794.     background: none;
  795.     height: auto;
  796.     margin: 10px 0;
  797.     letter-spacing: 0;
  798. }
  799.  
  800. .sidebox:not(.create) .morelink a {
  801.     font-size: 1.4rem;
  802.     margin: 0;
  803.     display: block;
  804.     height: auto;
  805.     width: auto;
  806.     position: relative;
  807.     text-align: left;
  808.     padding-left: 40px;
  809. }
  810.  
  811. .sidebox:not(.create) .morelink a:before {
  812.     content: "";
  813.     position: absolute;
  814.     width: 24px;
  815.     height: 24px;
  816.     top: 4px;
  817.     left: 6px;
  818.     background: url(%sprite%) 0 -145px no-repeat;
  819.     opacity: .6;
  820. }
  821.  
  822. .sidebox:not(.create) .morelink:hover {
  823.     background: none;
  824. }
  825.  
  826. .sidebox.submit-text .morelink a:before {
  827.     background-position: 0 -169px;
  828.     top: 1px;
  829. }
  830.  
  831. .sidebox.submit.disabled .morelink a {
  832.     background: none;
  833.     color: gray;
  834.     box-shadow: none;
  835.     border: 1px solid rgba(0, 0, 0, 0.12);
  836. }
  837.  
  838. .sidebox.submit.disabled .morelink a:before {
  839.     content: none;
  840. }
  841.  
  842. .sidebox.submit.disabled .spacer {
  843.     border: none;
  844.     background: none;
  845. }
  846.  
  847. .sidebox .morelink .nub,
  848. .sidebox .morelink:hover .nub {
  849.     display: none;
  850. }
  851.  
  852. .titlebox {
  853.     margin-left: 0;
  854.     margin-right: 0;
  855.     background: transparent;
  856. }
  857.  
  858. .titlebox .subscribers,
  859. .titlebox .users-online {
  860.     display: inline-block;
  861.     font-size: 1.1rem;
  862.     font-family: arial, sans-serif;
  863.     vertical-align: baseline;
  864.     margin-top: 0;
  865.     margin-bottom: 10px;
  866. }
  867.  
  868. .titlebox .subscribers {
  869.     margin-right: 1rem;
  870. }
  871.  
  872. .titlebox .users-online:before {
  873.     content: none;
  874. }
  875.  
  876. .titlebox .users-online .number:after {
  877.     content: " here now";
  878. }
  879.  
  880. .titlebox .users-online .word {
  881.     display: none;
  882. }
  883.  
  884. .titlebox .bottom {
  885.     color: rgba(0, 0, 0, 0.6);
  886.     border: none;
  887.     padding: 10px 0 0 0;
  888. }
  889.  
  890. .titlebox .bottom a {
  891.     color: inherit;
  892. }
  893.  
  894. .titlebox h1.redditname {
  895.     position: absolute;
  896.     top: 10px;
  897.     color: black;
  898.     margin: 0;
  899.     font: normal 2rem/1 arial, sans-serif;
  900.     overflow: visible;
  901.     width: 300px;
  902. }
  903.  
  904. .titlebox h1.redditname a {
  905.     color: inherit;
  906. }
  907.  
  908. .titlebox h1.redditname a:before {
  909.     content: '/r/';
  910. }
  911.  
  912. .titlebox h1.redditname + div {
  913.     text-align: center;
  914. }
  915.  
  916. .titlebox form.toggle,
  917. .leavemoderator {
  918.     font-size: 1.1rem;
  919.     color: #4d4d4d;
  920.     background: none;
  921.     padding: 10px 0 0 0;
  922.     clear: left;
  923. }
  924.  
  925. .link .usertext-body .md {
  926.     border: none;
  927.     background: none;
  928.     border-radius: 0;
  929.     padding: 0 0 10px;
  930. }
  931.  
  932. .usertext-body > .md {
  933.     padding-right: 0;
  934. }
  935.  
  936. body > .content {
  937.     margin: 0 320px 0 0;
  938.     padding: 10px;
  939.     background: white;
  940.     z-index: 1;
  941. }
  942.  
  943. .content .spacer {
  944.     margin: 0;
  945. }
  946.  
  947. .footer-parent {
  948.     clear: none;
  949.     margin-right: 320px;
  950. }
  951.  
  952. .link {
  953.     margin: 0 0 0 0;
  954. }
  955.  
  956. .link .flat-list {
  957.     padding: 0;
  958.     margin-bottom: 8px;
  959. }
  960.  
  961. .link .entry {
  962.     overflow: visible;
  963.     margin-left: 64px;
  964.     padding: 5px 5px 0 5px;
  965. }
  966.  
  967. .link .entry:after {
  968.     content: "";
  969.     display: block;
  970.     clear: left;
  971. }
  972.  
  973. .link .title {
  974.     font: 1.8rem/1.1 arial, sans-serif;
  975.     text-rendering: optimizeLegibility;
  976.     margin: 0;
  977. }
  978.  
  979. .link .title + .expando-button {
  980.     margin: 7px 5px 0 0;
  981. }
  982.  
  983. .link .midcol {
  984.     font-weight: normal;
  985.     margin-top: 1px;
  986.     cursor: default;
  987.     line-height: 1;
  988. }
  989.  
  990. .link .tagline {
  991.     margin: 2px 0;
  992. }
  993.  
  994. .link .tagline:first-letter {
  995.     text-transform: capitalize;
  996. }
  997.  
  998. .link .rank {
  999.     position: absolute;
  1000.     left: 2px;
  1001.     margin-top: 20px;
  1002.     font-size: 1.2rem;
  1003. }
  1004.  
  1005. .link .score {
  1006.     color: gray;
  1007. }
  1008.  
  1009. .link .expando > form > .md-container {
  1010.     padding: 5px 10px;
  1011. }
  1012.  
  1013. @-webkit-keyframes slideDown {
  1014.     from {
  1015.         top: -10px;
  1016.         opacity: 0;
  1017.     }
  1018.     to {
  1019.         top: 0;
  1020.         opacity: 1;
  1021.     }
  1022. }
  1023.  
  1024. @-moz-keyframes slideDown {
  1025.     from {
  1026.         top: -10px;
  1027.         opacity: 0;
  1028.     }
  1029.     to {
  1030.         top: 0;
  1031.         opacity: 1;
  1032.     }
  1033. }
  1034.  
  1035. @-ms-keyframes slideDown {
  1036.     from {
  1037.         top: -10px;
  1038.         opacity: 0;
  1039.     }
  1040.     to {
  1041.         top: 0;
  1042.         opacity: 1;
  1043.     }
  1044. }
  1045.  
  1046. @-o-keyframes slideDown {
  1047.     from {
  1048.         top: -10px;
  1049.         opacity: 0;
  1050.     }
  1051.     to {
  1052.         top: 0;
  1053.         opacity: 1;
  1054.     }
  1055. }
  1056.  
  1057. @keyframes slideDown {
  1058.     from {
  1059.         top: -10px;
  1060.         opacity: 0;
  1061.     }
  1062.     to {
  1063.         top: 0;
  1064.         opacity: 1;
  1065.     }
  1066. }
  1067.  
  1068. body.comments-page .link a.title {
  1069.     font-size: 2.2rem;
  1070. }
  1071.  
  1072. body.listing-page .link .entry,
  1073. .commentarea .linklisting .link .entry {
  1074.     border-bottom: 1px solid #e0e0e0;
  1075. }
  1076.  
  1077. body.listing-page .link .expando > form {
  1078.     position: relative;
  1079.     -webkit-animation: slideDown 0.3s ease 1 normal forwards running;
  1080.     -moz-animation: slideDown 0.3s ease 1 normal forwards running;
  1081.     -ms-animation: slideDown 0.3s ease 1 normal forwards running;
  1082.     -o-animation: slideDown 0.3s ease 1 normal forwards running;
  1083.     animation: slideDown 0.3s ease 1 normal forwards running;
  1084. }
  1085.  
  1086. div.madeVisible {
  1087.     padding-bottom: 10px;
  1088. }
  1089.  
  1090. .thumbnail {
  1091.     margin: 5px 5px 5px 0;
  1092. }
  1093.  
  1094. .link .thumbnail + .entry {
  1095.     margin-left: 137px;
  1096. }
  1097.  
  1098. @media (min-width: 870px) {
  1099.     .link .thumbnail + .entry {
  1100.         margin-left: 165px;
  1101.     }
  1102.     body.comments-page .link:not(.self) .thumbnail:not(.default) + .entry {
  1103.         margin-left: 210px;
  1104.     }
  1105.     .link .thumbnail:hover {
  1106.         overflow: visible;
  1107.         z-index: 2;
  1108.     }
  1109.     .thing:not(.self) .thumbnail:not(.default):not(.nsfw) {
  1110.         width: 90px;
  1111.         height: 60px;
  1112.         position: relative;
  1113.     }
  1114.     .thing:not(.self) .thumbnail:not(.default) img {
  1115.         width: 90px;
  1116.         height: auto;
  1117.         display: block;
  1118.         position: absolute;
  1119.         top: 0;
  1120.         right: 0;
  1121.         pointer-events: none;
  1122.     }
  1123.     .thing:not(.self):not([data-domain="reddit.com"]) .thumbnail:not(.default):hover img {
  1124.         width: 140px;
  1125.         box-shadow: -3px 6px 0px 0px rgba(0, 0, 0, 0.2);
  1126.     }
  1127.     body.comments-page .thing:not(.self):not([data-domain="reddit.com"]) .thumbnail:not(.default) {
  1128.         width: auto;
  1129.         height: auto;
  1130.         margin: 0 10px 0 0;
  1131.         position: static;
  1132.     }
  1133.     body.comments-page .thing:not(.self):not([data-domain="reddit.com"]) .thumbnail:not(.default) img {
  1134.         width: auto;
  1135.         position: static;
  1136.     }
  1137.     .link div.madeVisible {
  1138.         overflow: visible;
  1139.         position: relative;
  1140.         background: white;
  1141.     }
  1142.     .link .thumbnail + .entry div.madeVisible {
  1143.         margin-left: -106px;
  1144.     }
  1145.     body.comments-page .link .thumbnail + .entry div.madeVisible {
  1146.         margin-left: -151px;
  1147.     }
  1148.     .thumbnail.default,
  1149.     .thumbnail.nsfw,
  1150.     .thumbnail.self {
  1151.         margin-left: 15px;
  1152.         margin-right: 15px;
  1153.     }
  1154. }
  1155.  
  1156. div.madeVisible a.madeVisible {
  1157.     overflow: visible;
  1158. }
  1159.  
  1160. div.madeVisible a.madeVisible video,
  1161. div.madeVisible a.madeVisible img {
  1162.     display: block;
  1163.     box-shadow: -3px 6px 0px 0px rgba(0, 0, 0, 0.2);
  1164. }
  1165.  
  1166. .error {
  1167.     color: #d92626;
  1168. }
  1169.  
  1170. #noresults {
  1171.     font-size: 0;
  1172.     text-align: center;
  1173.     margin-right: 0;
  1174.     color: transparent;
  1175. }
  1176.  
  1177. #noresults:after {
  1178.     font-size: 2rem;
  1179.     content: "Why not add something?";
  1180.     color: gray;
  1181.     display: block;
  1182.     margin: 2rem 0;
  1183. }
  1184.  
  1185. .nav-buttons {
  1186.     margin: 20px 0;
  1187. }
  1188.  
  1189. .thing.stickied.link a.title {
  1190.     font-weight: normal;
  1191.     color: #1b9844;
  1192. }
  1193.  
  1194. body > .content .link .midcol,
  1195. .midcol-spacer {
  1196.     width: 50px !important;
  1197.     position: relative;
  1198. }
  1199.  
  1200. .tagline {
  1201.     line-height: 1.4;
  1202.     transition: background .1s;
  1203. }
  1204.  
  1205. .tagline .stickied-tagline,
  1206. .search-result-meta .stickied-tagline,
  1207. .tagline .moderator,
  1208. .green,
  1209. .search-result-meta .moderator,
  1210. .res-nightmode .tagline .moderator,
  1211. .res-nightmode .tagline .moderator:visited {
  1212.     color: #1b9844;
  1213. }
  1214.  
  1215. .comment .tagline {
  1216.     display: block;
  1217. }
  1218.  
  1219. .tagline,
  1220. .search-result-meta {
  1221.     color: #333333;
  1222.     font-size: 1.1rem;
  1223. }
  1224.  
  1225. .tagline a,
  1226. .search-result-meta a {
  1227.     color: inherit;
  1228. }
  1229.  
  1230. .entry .buttons > li,
  1231. .entry .buttons > li + li {
  1232.     padding: 0;
  1233. }
  1234.  
  1235. .entry .buttons > li a {
  1236.     font-weight: normal;
  1237.     font-size: 1.1rem;
  1238.     color: #7b929d;
  1239.     text-transform: capitalize;
  1240.     padding: 2px 6px;
  1241.     border-radius: 3px;
  1242. }
  1243.  
  1244. .entry .buttons > li a:hover {
  1245.     color: black;
  1246.     text-decoration: none;
  1247. }
  1248.  
  1249. .entry .buttons > li:first-of-type a {
  1250.     padding-left: 0;
  1251. }
  1252.  
  1253. .panestack-title {
  1254.     margin: 10px -10px;
  1255.     padding: 15px 20px 10px 20px;
  1256.     border-top: 1px solid #e0e0e0;
  1257.     border-bottom: none;
  1258.     text-transform: capitalize;
  1259. }
  1260.  
  1261. .wiki-page .wikititle,
  1262. .wiki-page .pageactions {
  1263.     display: inline-block;
  1264.     margin: 0 10px 15px 0;
  1265. }
  1266.  
  1267. .wiki-page .wiki-page-content {
  1268.     margin: 0;
  1269. }
  1270.  
  1271. .wiki-page-content .md pre {
  1272.     border-color: #cccccc;
  1273. }
  1274.  
  1275. .commentarea .menuarea,
  1276. .sheets {
  1277.     margin-right: 0;
  1278. }
  1279.  
  1280. .gold-accent.comment-visits-box {
  1281.     max-width: none !important;
  1282.     display: block;
  1283. }
  1284.  
  1285. body.pinHeader-sub #sr-header-area:not(:hover),
  1286. body.pinHeader-subanduser #sr-header-area:not(:hover) {
  1287.     background: linear-gradient(rgba(0, 0, 0, 0.3) 0px, rgba(0, 0, 0, 0.15) 22px);
  1288. }
  1289.  
  1290. body.pinHeader-sub #header-bottom-left,
  1291. body.pinHeader-subanduser #header-bottom-left {
  1292.     margin-top: 0;
  1293.     background: none;
  1294. }
  1295.  
  1296. body.pinHeader-sub #header-bottom-right,
  1297. body.pinHeader-subanduser #header-bottom-right {
  1298.     top: 22px !important;
  1299. }
  1300.  
  1301. div.imgCaptions,
  1302. .md div.imgCaptions {
  1303.     white-space: normal;
  1304. }
  1305.  
  1306. .link .entry.RES-keyNav-activeElement {
  1307.     background-color: transparent !important;
  1308.     box-shadow: -3px 0 0 0 #0079d3;
  1309. }
  1310.  
  1311. .link .entry.RES-keyNav-activeElement .md-container {
  1312.     background-color: transparent !important;
  1313. }
  1314.  
  1315. .comment .entry.RES-keyNav-activeElement,
  1316. .comment .entry.RES-keyNav-activeElement .md-container {
  1317.     background-color: transparent !important;
  1318. }
  1319.  
  1320. .comment .entry.RES-keyNav-activeElement .tagline,
  1321. .thing.morechildren .entry.RES-keyNav-activeElement {
  1322.     color: black;
  1323.     background-color: rgba(0, 0, 0, 0.12) !important;
  1324.     border-radius: 5px;
  1325. }
  1326.  
  1327. .md h1,
  1328. .md h2,
  1329. .md h3,
  1330. .md h4,
  1331. .md h5,
  1332. .md h6,
  1333. .side .md h1,
  1334. .side .md h2,
  1335. .side .md h3,
  1336. .side .md h4,
  1337. .side .md h5,
  1338. .side .md h6,
  1339. .wiki-page-content .md h1,
  1340. .wiki-page-content .md h2,
  1341. .wiki-page-content .md h3,
  1342. .wiki-page-content .md h4,
  1343. .wiki-page-content .md h5,
  1344. .wiki-page-content .md h6,
  1345. h2#wiki_heading_2 {
  1346.     color: inherit;
  1347.     font-weight: normal;
  1348.     font-family: tahoma, arial, sans-serif;
  1349.     line-height: 1;
  1350.     margin: 1.2em 0 .5em;
  1351. }
  1352.  
  1353. .md h1 {
  1354.     font-size: 2rem;
  1355. }
  1356.  
  1357. .side .md h1,
  1358. .wiki-page-content .md h1 {
  1359.     font-size: 2.25rem;
  1360.     margin: .5em 0 .5em;
  1361. }
  1362.  
  1363. .side .md h2,
  1364. .wiki-page-content .md h2 {
  1365.     font-size: 2rem;
  1366. }
  1367.  
  1368. .side .md h3,
  1369. .wiki-page-content .md h3 {
  1370.     font-size: 1.75rem;
  1371.     font-weight: normal;
  1372. }
  1373.  
  1374. .side .md h4,
  1375. .wiki-page-content .md h4 {
  1376.     font-size: 1.6rem;
  1377.     font-style: normal;
  1378. }
  1379.  
  1380. .side .md h5,
  1381. .wiki-page-content .md h5 {
  1382.     font-size: 1.4rem;
  1383.     text-decoration: none;
  1384. }
  1385.  
  1386. .side .md h6,
  1387. .wiki-page-content .md h6 {
  1388.     font-size: 1.3rem;
  1389.     text-decoration: none;
  1390.     text-transform: none;
  1391. }
  1392.  
  1393. .side .md ul {
  1394.     padding-left: 16px;
  1395. }
  1396.  
  1397. .side .md ul,
  1398. .side .md ol {
  1399.     margin-top: 10px;
  1400.     margin-bottom: 10px;
  1401. }
  1402.  
  1403. .side .md ul li,
  1404. .side .md ol li {
  1405.     line-height: 1.6;
  1406. }
  1407.  
  1408. .side .md p {
  1409.     line-height: 1.6;
  1410. }
  1411.  
  1412.  
  1413. /*addon blockquote-cards*/
  1414.  
  1415. .side .md > blockquote {
  1416.     margin: 16px 0;
  1417.     padding: 10px;
  1418.     border-width: 0 0 3px 0;
  1419.     background: #0099cc;
  1420.     border-radius: 3px;
  1421.     border-style: solid;
  1422.     border-color: rgba(0, 0, 0, 0.18);
  1423.     color: white;
  1424. }
  1425.  
  1426. .side .md > blockquote h2 {
  1427.     margin: 0 0 10px 0;
  1428. }
  1429.  
  1430. .side .md > blockquote a,
  1431. .side .md > blockquote a:visited {
  1432.     color: white;
  1433.     border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  1434. }
  1435.  
  1436. .side .md > blockquote a:hover,
  1437. .side .md > blockquote a:visited:hover {
  1438.     border-bottom-color: rgba(255, 255, 255, 0.8);
  1439.     text-decoration: none;
  1440. }
  1441.  
  1442. .side .md > blockquote a[title="click"] {
  1443.     color: black;
  1444.     background-color: white;
  1445. }
  1446.  
  1447. .side .md > h1 + blockquote {
  1448.     background-color: #4d4d4d;
  1449. }
  1450.  
  1451. .side .md > h2 + blockquote {
  1452.     background-color: #c32222;
  1453. }
  1454.  
  1455. .side .md > h3 + blockquote {
  1456.     background-color: #da730b;
  1457. }
  1458.  
  1459. .side .md > h4 + blockquote {
  1460.     background-color: #c3228e;
  1461. }
  1462.  
  1463. .side .md > h5 + blockquote {
  1464.     background-color: #7322c3;
  1465. }
  1466.  
  1467. .side .md > h6 + blockquote {
  1468.     background-color: #11973e;
  1469. }
  1470.  
  1471.  
  1472. /*.end*/
  1473.  
  1474. .link .usertext .usertext-edit > .md {
  1475.     padding-left: 0;
  1476. }
  1477.  
  1478. .usertext .bottom-area {
  1479.     overflow: visible;
  1480.     width: auto;
  1481.     min-height: 32px;
  1482. }
  1483.  
  1484. .usertext .help-toggle,
  1485. .usertext a.reddiquette {
  1486.     line-height: 32px;
  1487.     margin: 0 5px;
  1488. }
  1489.  
  1490. .usertext .help-toggle a,
  1491. .usertext a.reddiquette {
  1492.     color: #999999;
  1493. }
  1494.  
  1495. body:not(.submit-page) .usertext-buttons {
  1496.     padding-bottom: 7px;
  1497. }
  1498.  
  1499. .usertext-buttons .status {
  1500.     font-size: 1rem;
  1501. }
  1502.  
  1503.  
  1504. /*addon side-menu*/
  1505.  
  1506. .side .md > h5 + ul {
  1507.     margin: 8px -10px 16px -10px;
  1508.     padding: 0;
  1509.     list-style: none;
  1510.     font-size: 1.4rem;
  1511.     cursor: default;
  1512. }
  1513.  
  1514. .side .md > h5 + ul > li {
  1515.     padding: 6px 8px 6px 24px;
  1516.     position: relative;
  1517.     transition: background .1s;
  1518. }
  1519.  
  1520. .side .md > h5 + ul > li:hover > ul {
  1521.     visibility: visible;
  1522.     opacity: 1;
  1523.     right: 296px;
  1524. }
  1525.  
  1526. .side .md > h5 + ul > li > sup,
  1527. .side .md > h5 + ul > li > p sup {
  1528.     position: absolute;
  1529.     top: 11px;
  1530.     left: 8px;
  1531.     display: block;
  1532.     overflow: hidden;
  1533.     text-indent: -1000px;
  1534.     width: 10px;
  1535.     height: 12px;
  1536.     opacity: .4;
  1537.     background-position: -20px -22px;
  1538.     background-image: url(%sprite%);
  1539.     pointer-events: none;
  1540. }
  1541.  
  1542. .side .md > h5 + ul > li > p,
  1543. .side .md > h5 + ul > li > ul > li > p {
  1544.     margin: 0;
  1545. }
  1546.  
  1547. .side .md > h5 + ul > li > a,
  1548. .side .md > h5 + ul > li > p > a {
  1549.     color: #0079d3;
  1550.     display: block;
  1551.     margin: -6px -8px -6px -32px;
  1552.     padding: 6px 8px 6px 32px;
  1553.     white-space: nowrap;
  1554.     overflow-x: hidden;
  1555.     text-overflow: ellipsis;
  1556.     text-decoration: none;
  1557. }
  1558.  
  1559. .side .md > h5 + ul > li:hover,
  1560. .side .md > h5 + ul > li > ul > li:hover > a {
  1561.     background: #ededed;
  1562. }
  1563.  
  1564. .side .md > h5 + ul > li:hover > p > a,
  1565. .side .md > h5 + ul > li > ul > li > a:hover,
  1566. .side .md > h5 + ul > li > ul > li > p a:hover {
  1567.     color: #0079d3;
  1568.     text-decoration: none;
  1569. }
  1570.  
  1571. .side .md > h5 + ul > li > ul {
  1572.     visibility: hidden;
  1573.     opacity: 0;
  1574.     position: absolute;
  1575.     top: 0px;
  1576.     right: 292px;
  1577.     width: 300px;
  1578.     max-height: 700px;
  1579.     overflow-y: auto;
  1580.     list-style: none;
  1581.     margin: 0;
  1582.     padding: 8px 0;
  1583.     z-index: 101;
  1584.     border: 1px solid rgba(0, 0, 0, 0.12);
  1585.     background: white;
  1586.     box-shadow: -3px 6px 0px 0px rgba(0, 0, 0, 0.2);
  1587.     transition-property: visibility opacity;
  1588.     transition-duration: .2s;
  1589.     transition-delay: .12s;
  1590. }
  1591.  
  1592. .side .md > h5 + ul > li > ul > li {
  1593.     padding: 6px 8px;
  1594. }
  1595.  
  1596. .side .md > h5 + ul > li > ul > li > a,
  1597. .side .md > h5 + ul > li > ul > li > p a {
  1598.     color: #0079d3;
  1599.     display: block;
  1600.     margin: -6px -8px;
  1601.     padding: 6px 8px;
  1602. }
  1603.  
  1604.  
  1605. /*.end*/
  1606.  
  1607. body.submit-page > .content {
  1608.     border: none;
  1609.     background: none;
  1610.     padding: 0;
  1611. }
  1612.  
  1613. body.submit-page .formtabs-content {
  1614.     width: auto;
  1615. }
  1616.  
  1617. body.submit-page .formtabs-content .roundfield {
  1618.     max-width: 520px;
  1619.     width: auto;
  1620.     box-sizing: border-box;
  1621.     background-color: #ededed;
  1622. }
  1623.  
  1624. body.submit-page .formtabs-content .submit_text > h1 {
  1625.     display: none;
  1626. }
  1627.  
  1628. body.submit-page:not(.res-nightmode) .formtabs-content .submit_text {
  1629.     padding: 20px 10px;
  1630. }
  1631.  
  1632. body.submit-page form .spacer:first-of-type,
  1633. body.submit-page form .spacer:last-of-type {
  1634.     margin: 0 auto 15px auto;
  1635.     width: 520px;
  1636. }
  1637.  
  1638. ul.tabmenu.formtab {
  1639.     margin: 0 0 5px;
  1640.     padding: 0;
  1641.     font-size: 1.3rem;
  1642.     text-transform: uppercase;
  1643.     text-align: center;
  1644. }
  1645.  
  1646. ul.tabmenu.formtab li {
  1647.     display: inline-block;
  1648. }
  1649.  
  1650. ul.tabmenu.formtab li.selected a {
  1651.     font-size: inherit;
  1652.     background: none;
  1653.     color: inherit;
  1654.     border-bottom: 2px solid;
  1655. }
  1656.  
  1657. ul.tabmenu.formtab a {
  1658.     display: block;
  1659.     padding: 5px 15px;
  1660.     border: none;
  1661.     color: gray;
  1662.     background: none;
  1663. }
  1664.  
  1665. ul.tabmenu.formtab a:hover {
  1666.     color: inherit;
  1667. }
  1668.  
  1669. .formtabs-content {
  1670.     border-top: none;
  1671. }
  1672.  
  1673. .formtabs-content .roundfield {
  1674.     border-radius: 0;
  1675. }
  1676.  
  1677. .formtabs-content .roundfield .usertext-edit {
  1678.     width: auto;
  1679. }
  1680.  
  1681. .submit_text.enabled {
  1682.     display: block;
  1683.     max-height: 500px;
  1684. }
  1685.  
  1686. .roundfield,
  1687. .linefield {
  1688.     margin: 1px auto;
  1689.     padding: 5px 10px 15px;
  1690. }
  1691.  
  1692. div.save-button,
  1693. form.submit > .spacer {
  1694.     margin: 20px auto;
  1695.     width: 520px;
  1696. }
  1697.  
  1698. .create-reddit .linefield:nth-of-type(3) .usertext::before {
  1699.     content: 'h5 followed by "* text" = menu | > = card | [text](/r/a "click") = button';
  1700.     display: block;
  1701.     margin: 10px -22px;
  1702.     padding: 5px;
  1703.     color: white;
  1704.     font: 1.2rem/1.2 consolas, monospace;
  1705.     background: #4d4d4d;
  1706.     text-align: center;
  1707. }
  1708.  
  1709. .organic-listing.loading {
  1710.     display: none;
  1711. }
  1712.  
  1713. .md hr,
  1714. hr {
  1715.     height: 1px;
  1716.     margin: 10px 0px;
  1717.     border: none;
  1718.     background: rgba(0, 0, 0, 0.12);
  1719. }
  1720.  
  1721. .side .md hr {
  1722.     margin: 10px -10px;
  1723.     background: rgba(0, 0, 0, 0.12);
  1724. }
  1725.  
  1726. .side .md > blockquote hr {
  1727.     width: auto;
  1728.     background: rgba(255, 255, 255, 0.12);
  1729. }
  1730.  
  1731. .menuarea {
  1732.     margin-bottom: 15px;
  1733.     padding: 0 0 10px 0;
  1734.     border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  1735. }
  1736.  
  1737. .commentarea .menuarea {
  1738.     margin-right: 0;
  1739.     color: #b3b3b3;
  1740. }
  1741.  
  1742. .commentarea .menuarea > div:hover {
  1743.     color: black;
  1744. }
  1745.  
  1746. .commentarea > .usertext {
  1747.     margin: 0 -10px 20px;
  1748.     padding: 10px 10px 7px 20px;
  1749. }
  1750.  
  1751. #REScommentNavToggle {
  1752.     display: inline;
  1753.     padding-left: 1rem;
  1754. }
  1755.  
  1756. #REScommentNavToggle > .commentNavSortType {
  1757.     font-weight: normal;
  1758.     color: #666666;
  1759.     border: none;
  1760.     margin: 0 5px;
  1761.     padding: 0;
  1762. }
  1763.  
  1764. #REScommentNavToggle > span:not(:first-of-type) {
  1765.     display: none;
  1766. }
  1767.  
  1768. body.moderator #REScommentNavToggle {
  1769.     display: block;
  1770.     padding: 1em 0 0;
  1771. }
  1772.  
  1773. .infobar {
  1774.     margin: 10px 0;
  1775.     padding: 10px;
  1776.     border-color: #e8d67d;
  1777.     background: #fcf5cf;
  1778. }
  1779.  
  1780. .domain {
  1781.     font-family: verdana, sans-serif;
  1782.     color: transparent;
  1783.     vertical-align: middle;
  1784. }
  1785.  
  1786. .domain a {
  1787.     color: #999999;
  1788. }
  1789.  
  1790. .domain a:hover {
  1791.     color: #333333;
  1792.     text-decoration: none;
  1793. }
  1794.  
  1795. .hover-bubble {
  1796.     border: 1px solid rgba(0, 0, 0, 0.12);
  1797.     box-shadow: -3px 6px 0px 0px rgba(0, 0, 0, 0.2);
  1798. }
  1799.  
  1800. .hover-bubble.anchor-right:before {
  1801.     border-left-color: rgba(0, 0, 0, 0.12);
  1802. }
  1803.  
  1804. .hover-bubble.multi-selector .title {
  1805.     padding: 5px 12px;
  1806. }
  1807.  
  1808. .hover-bubble.multi-selector strong,
  1809. .hover-bubble.multi-selector a.sr {
  1810.     font-weight: normal;
  1811.     text-align: left;
  1812.     font-size: 1.2rem;
  1813.     margin: 0;
  1814. }
  1815.  
  1816. .hover-bubble.multi-selector strong {
  1817.     font-size: 1.8rem;
  1818.     line-height: 1.4;
  1819.     text-transform: capitalize;
  1820. }
  1821.  
  1822. .hover-bubble.multi-selector a.sr {
  1823.     display: inline;
  1824.     color: #999999;
  1825. }
  1826.  
  1827. .hover-bubble.multi-selector .throbber {
  1828.     opacity: .2;
  1829. }
  1830.  
  1831. .subreddit-rules-page {
  1832.     max-width: none;
  1833. }
  1834.  
  1835. .subreddit-rules-page .subreddit-rule-item {
  1836.     border-top: 1px solid #e0e0e0;
  1837. }
  1838.  
  1839. .subreddit-rules-page .subreddit-rule-item:hover {
  1840.     background: none;
  1841. }
  1842.  
  1843. .subreddit-rules-page:before {
  1844.     top: auto;
  1845. }
  1846.  
  1847. .subreddit-rule-form .c-form-group .label,
  1848. .subreddit-rule-form .c-form-group .text-counter {
  1849.     color: inherit;
  1850. }
  1851.  
  1852. .login-form-side {
  1853.     padding: 10px;
  1854. }
  1855.  
  1856. .login-form-side input[type=text],
  1857. .login-form-side input[type=password] {
  1858.     box-sizing: border-box;
  1859.     border-color: rgba(0, 0, 0, 0.12);
  1860.     margin: 0;
  1861.     width: 136px;
  1862. }
  1863.  
  1864. .login-form-side input[type=text] {
  1865.     margin-right: 5px;
  1866. }
  1867.  
  1868. .login-form-side .submit {
  1869.     margin-right: 0;
  1870. }
  1871.  
  1872. .login-form-side .submit button {
  1873.     margin-right: 0;
  1874. }
  1875.  
  1876. ul#image-preview-list {
  1877.     margin-right: 0;
  1878.     font-size: 1.2rem;
  1879. }
  1880.  
  1881. ul#image-preview-list li {
  1882.     margin-bottom: 0;
  1883.     width: 50%;
  1884.     height: auto;
  1885.     float: none;
  1886.     display: inline-block;
  1887. }
  1888.  
  1889. body.submit-page > div.content > h1,
  1890. .searchpane h4,
  1891. body.submit-page .formtabs-content .spacer:last-of-type .title {
  1892.     display: none;
  1893. }
  1894.  
  1895. #reddit-field .title {
  1896.     font-size: 0;
  1897.     line-height: 0;
  1898. }
  1899.  
  1900. #reddit-field .title:after {
  1901.     content: "subreddit";
  1902.     font-size: large;
  1903.     line-height: 1;
  1904. }
  1905.  
  1906. .usertext button {
  1907.     margin: 0;
  1908. }
  1909.  
  1910. body.res .content .RESBigEditorPop {
  1911.     margin-top: 0;
  1912. }
  1913.  
  1914. body.with-listing-chooser .listing-chooser {
  1915.     z-index: 100;
  1916.     border-radius: 0 10px 0 0;
  1917. }
  1918.  
  1919. body.with-listing-chooser #header .tabmenu {
  1920.     margin-left: 0;
  1921. }
  1922.  
  1923. body.res .RESDropdownList {
  1924.     width: 200px;
  1925.     border-radius: 0;
  1926.     border: 1px solid rgba(0, 0, 0, 0.12);
  1927.     color: black;
  1928.     background-color: white;
  1929.     box-shadow: -3px 6px 0px 0px rgba(0, 0, 0, 0.2);
  1930. }
  1931.  
  1932. body.res .RESDropdownList li {
  1933.     font-weight: normal;
  1934.     font-size: 1.2rem;
  1935.     line-height: 1.5;
  1936.     height: auto;
  1937.     padding: 6px 10px;
  1938.     width: auto;
  1939.     border: none;
  1940. }
  1941.  
  1942. body.res .RESDropdownList li,
  1943. body.res .RESDropdownList li:hover,
  1944. body.res .RESDropdownList a,
  1945. body.res .RESDropdownList a:visited {
  1946.     color: inherit;
  1947. }
  1948.  
  1949. body.res .RESDropdownList li:hover,
  1950. body.res .RESDropdownList li a:hover {
  1951.     color: inherit;
  1952.     background-color: #ededed;
  1953. }
  1954.  
  1955. body.res .RESDropdownList .RESMenuItemButton {
  1956.     position: static;
  1957.     margin-left: -100%;
  1958.     float: right;
  1959. }
  1960.  
  1961. body.res .RESDropdownList .RESMenuItemButton:hover {
  1962.     color: inherit;
  1963.     background-color: #ededed;
  1964. }
  1965.  
  1966. body.res .res-floater-visibleAfterScroll {
  1967.     top: auto;
  1968.     bottom: 0;
  1969. }
  1970.  
  1971. body.res .res-floater-visibleAfterScroll #NREMail,
  1972. body.res .res-floater-visibleAfterScroll #NREMailCount {
  1973.     display: none;
  1974. }
  1975.  
  1976. body.res #progressIndicator {
  1977.     font-size: 1.2rem;
  1978.     width: auto;
  1979.     margin: 20px 0px 10px 0px;
  1980.     color: black;
  1981.     border-color: #d9d9d9;
  1982.     background-color: #f7f7f7;
  1983. }
  1984.  
  1985. body.res #progressIndicator h2 {
  1986.     display: none;
  1987. }
  1988.  
  1989. body.res #progressIndicator:hover {
  1990.     background-color: transparent;
  1991. }
  1992.  
  1993. body.res .NERPageMarker {
  1994.     font-size: 1.2rem;
  1995.     width: auto;
  1996.     margin: 20px 0px 10px 0px;
  1997.     line-height: 1.4;
  1998.     color: white;
  1999.     border-color: transparent;
  2000.     background-color: #4a4950;
  2001. }
  2002.  
  2003. .md pre {
  2004.     margin-left: 15px;
  2005.     border: 1px solid rgba(0, 0, 0, 0.12);
  2006. }
  2007.  
  2008. .link .md pre {
  2009.     background-color: rgba(0, 0, 0, 0.03);
  2010. }
  2011.  
  2012. .arrow.up,
  2013. .arrow.upmod,
  2014. .arrow.down,
  2015. .arrow.downmod {
  2016.     width: 16px !important;
  2017.     height: 16px !important;
  2018.     background-image: url(%sprite%) !important;
  2019.     background-repeat: no-repeat;
  2020. }
  2021.  
  2022. .arrow.up {
  2023.     background-position: -16px -100px !important;
  2024. }
  2025.  
  2026. .arrow.up:hover {
  2027.     background-position: -16px -100px !important;
  2028. }
  2029.  
  2030. .arrow.upmod {
  2031.     background-position: -32px -100px !important;
  2032. }
  2033.  
  2034. .arrow.down {
  2035.     background-position: -16px -117px !important;
  2036. }
  2037.  
  2038. .arrow.down:hover {
  2039.     background-position: -16px -117px !important;
  2040. }
  2041.  
  2042. .arrow.downmod {
  2043.     background-position: -32px -117px !important;
  2044. }
  2045.  
  2046. @media (max-width: 1600px) {
  2047.     #sr-header-area {
  2048.         right: 0;
  2049.     }
  2050.     #header {
  2051.         margin-right: 0;
  2052.     }
  2053.     #header #header-bottom-right {
  2054.         position: absolute;
  2055.         width: auto;
  2056.         padding-left: 15px;
  2057.         border: none;
  2058.         background: rgba(247, 247, 247, 0.9);
  2059.         border-radius: 0 0 0 5px;
  2060.         transition: background .2s;
  2061.         height: 22px;
  2062.         line-height: 21px;
  2063.     }
  2064.     #header #header-bottom-right:hover {
  2065.         background: #f7f7f7;
  2066.     }
  2067.     #header #header-bottom-right #userbarToggle {
  2068.         background: transparent;
  2069.         line-height: 22px;
  2070.     }
  2071.     #header #header-bottom-right .userkarma {
  2072.         position: static;
  2073.         color: #666666;
  2074.     }
  2075.     #header #header-bottom-right #RESAccountSwitcherIcon {
  2076.         margin-right: 0;
  2077.     }
  2078.     .side {
  2079.         margin-top: 0;
  2080.     }
  2081.     body.res .res-floater-visibleAfterScroll #NREMail,
  2082.     body.res .res-floater-visibleAfterScroll #NREMailCount {
  2083.         display: inline-block;
  2084.     }
  2085. }
  2086.  
  2087. .RESDialogSmall > h3 {
  2088.     z-index: auto;
  2089. }
  2090.  
  2091.  
  2092. /*addon banner-credit*/
  2093.  
  2094. #header-bottom-left:after {
  2095.     content: none;
  2096.     position: absolute;
  2097.     right: 0;
  2098.     bottom: 28px;
  2099.     font: italic 1.1rem/1.5 verdana, sans-serif;
  2100.     padding: 0 3px;
  2101.     background: rgba(0, 0, 0, 0.2);
  2102.     color: white;
  2103. }
  2104.  
  2105.  
  2106. /*.end*/
  2107.  
  2108.  
  2109. /*addon expandos*/
  2110.  
  2111. .expando-button {
  2112.     position: relative;
  2113.     color: transparent !important;
  2114. }
  2115.  
  2116. .expando-button:before {
  2117.     content: "";
  2118.     position: absolute;
  2119.     width: 7px;
  2120.     height: 8px;
  2121.     right: 3px;
  2122.     bottom: 2px;
  2123.     background: white;
  2124. }
  2125.  
  2126. .expando-button:after {
  2127.     content: "";
  2128.     position: absolute;
  2129.     right: 2px;
  2130.     bottom: 2px;
  2131.     width: 9px;
  2132.     height: 9px;
  2133.     background: url(%sprite%) -16px -135px no-repeat;
  2134.     transition: transform .2s ease-in-out;
  2135. }
  2136.  
  2137. .expando-button.expanded:after {
  2138.     -webkit-transform: rotate(45deg);
  2139.     -moz-transform: rotate(45deg);
  2140.     -ms-transform: rotate(45deg);
  2141.     transform: rotate(45deg);
  2142.     background-position: -16px -135px;
  2143. }
  2144.  
  2145. .expando-button:hover:after {
  2146.     background-position: -3px -135px;
  2147. }
  2148.  
  2149. .expando-button:hover:before {
  2150.     background-color: #369;
  2151. }
  2152.  
  2153. .md .expando-button {
  2154.     margin: 0 2px;
  2155. }
  2156.  
  2157.  
  2158. /*.end*/
  2159.  
  2160.  
  2161. /*addon flair-selector*/
  2162.  
  2163. .flairselector.drop-choices.active {
  2164.     border: 1px solid rgba(0, 0, 0, 0.12);
  2165.     padding: 0 !important;
  2166.     box-shadow: -3px 6px 0px 0px rgba(0, 0, 0, 0.2);
  2167. }
  2168.  
  2169. .flairoptionpane {
  2170.     text-align: left;
  2171.     margin: 10px 0;
  2172. }
  2173.  
  2174. .flairselector h2 {
  2175.     margin: 0 0 10px;
  2176.     padding: 5px;
  2177.     font: 1.6rem/1 arial, sans-serif;
  2178.     text-align: left;
  2179.     color: black;
  2180.     background: transparent;
  2181. }
  2182.  
  2183. .flairselector .flairoptionpane ul {
  2184.     width: auto !important;
  2185.     max-width: none;
  2186.     display: block;
  2187. }
  2188.  
  2189. .flairselector .flairoptionpane ul li {
  2190.     padding: 5px;
  2191. }
  2192.  
  2193. .flairselector .flairoptionpane ul li.selected {
  2194.     border: none;
  2195.     background: rgba(0, 0, 0, 0.12);
  2196. }
  2197.  
  2198. .flairselector form {
  2199.     border: none;
  2200.     padding: 5px;
  2201.     text-align: left;
  2202.     white-space: normal;
  2203. }
  2204.  
  2205. .flairselector form .flairremove {
  2206.     margin: 0 0 10px 0;
  2207.     color: transparent;
  2208. }
  2209.  
  2210. .flairselector form .flairremove a {
  2211.     color: crimson;
  2212.     padding: 0;
  2213. }
  2214.  
  2215. .flairselector form .linkflair,
  2216. .flairselector form .flair {
  2217.     display: none;
  2218. }
  2219.  
  2220. .flairselector form button {
  2221.     margin: 0 8px 0 0;
  2222. }
  2223.  
  2224. .flairselector li {
  2225.     padding: 3px 0;
  2226. }
  2227.  
  2228. .flairselector li:hover {
  2229.     border: none;
  2230.     background: rgba(0, 0, 0, 0.09);
  2231. }
  2232.  
  2233. .flairselector .status {
  2234.     font-size: 1.1rem;
  2235. }
  2236.  
  2237. .entry .buttons .flairselector .title {
  2238.     font-size: 1.2rem !important;
  2239.     color: black !important;
  2240.     padding: 0;
  2241. }
  2242.  
  2243.  
  2244. /*.end*/
  2245.  
  2246. @media (max-width: 870px) {
  2247.     body {
  2248.         overflow-x: hidden !important;
  2249.     }
  2250.     body > .content {
  2251.         margin-right: 30px;
  2252.     }
  2253.     .side {
  2254.         position: absolute;
  2255.         right: 0;
  2256.         margin-right: -310px;
  2257.         transition: margin-right .3s .15s ease-in-out;
  2258.         z-index: 101;
  2259.     }
  2260.     .side:before {
  2261.         content: "<>";
  2262.         position: absolute;
  2263.         width: 36px;
  2264.         text-align: center;
  2265.         top: 150px;
  2266.         left: -8px;
  2267.         font: bold 24px/36px arial, sans-serif;
  2268.         color: white;
  2269.         background: #00aaff;
  2270.         border-radius: 50%;
  2271.         box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
  2272.         transition: all .3s .15s;
  2273.         cursor: default;
  2274.     }
  2275.     .side:hover {
  2276.         margin-right: 0;
  2277.     }
  2278.     .side:hover:before {
  2279.         left: -36px;
  2280.         background: gray;
  2281.     }
  2282.     .footer-parent {
  2283.         margin-right: 30px;
  2284.     }
  2285. }
  2286.  
  2287.  
  2288. /*addon nightmode*/
  2289.  
  2290. .res-nightmode .side .linkinfo,
  2291. .res-nightmode .sidecontentbox,
  2292. .res-nightmode .login-form-side,
  2293. .res-nightmode .sidebox .spacer,
  2294. .res-nightmode .side form.usertext {
  2295.     color: #dedede;
  2296.     box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  2297.     background-color: #212121;
  2298. }
  2299.  
  2300. .res-nightmode {
  2301.     color: #dedede;
  2302.     background-color: #151515;
  2303. }
  2304.  
  2305. .res-nightmode .md a:visited {
  2306.     color: #8cb3d9;
  2307. }
  2308.  
  2309. .res-nightmode #header {
  2310.     background-color: #424242;
  2311. }
  2312.  
  2313. .res-nightmode #header .tabmenu li.selected a {
  2314.     color: white;
  2315.     background-color: #151515;
  2316.     box-shadow: none;
  2317. }
  2318.  
  2319. .res-nightmode #sr-header-area {
  2320.     background: none;
  2321. }
  2322.  
  2323. .res-nightmode #sr-header-area:hover {
  2324.     background-color: #444;
  2325. }
  2326.  
  2327. .res-nightmode .pagename {
  2328.     opacity: .88;
  2329. }
  2330.  
  2331. .res-nightmode .livePreview {
  2332.     background-color: #262626 !important;
  2333. }
  2334.  
  2335. .res-nightmode .link .rank {
  2336.     color: gray;
  2337. }
  2338.  
  2339. .res-nightmode .link div.madeVisible {
  2340.     color: #dedede;
  2341.     background-color: #262626;
  2342. }
  2343.  
  2344. .res-nightmode .thing .title {
  2345.     color: #dedede;
  2346. }
  2347.  
  2348. .res-nightmode .thing .title:visited,
  2349. .res-nightmode .thing.visited .title,
  2350. .res-nightmode .combined-search-page .search-result a:visited,
  2351. .res-nightmode .combined-search-page .search-result a:visited > mark {
  2352.     color: #a6a6a6;
  2353.     /* see also styleTweaks.js */
  2354. }
  2355.  
  2356. .res-nightmode .tagline,
  2357. .res-nightmode .search-result-meta {
  2358.     color: #bfbfbf;
  2359. }
  2360.  
  2361. .res-nightmode .tagline a,
  2362. .res-nightmode .search-result-meta a {
  2363.     color: inherit;
  2364. }
  2365.  
  2366. .res-nightmode .entry .buttons li a:hover {
  2367.     color: #bfbfbf;
  2368. }
  2369.  
  2370. .res-nightmode.listing-page .link .entry,
  2371. .res-nightmode .commentarea .linklisting .link .entry {
  2372.     border-bottom-color: rgba(255, 255, 255, 0.12);
  2373. }
  2374.  
  2375. .res-nightmode .content {
  2376.     background: #151515;
  2377. }
  2378.  
  2379. .res-nightmode .sidebox {
  2380.     background: none;
  2381. }
  2382.  
  2383. .res-nightmode .titlebox .bottom {
  2384.     color: gray;
  2385. }
  2386.  
  2387. .res-nightmode .side {
  2388.     color: #dedede;
  2389.     border-color: #1f1f1f;
  2390.     background-color: #303030;
  2391. }
  2392.  
  2393. .res-nightmode .side .spacer .titlebox .redditname {
  2394.     background-color: transparent;
  2395. }
  2396.  
  2397. .res-nightmode .side .titlebox,
  2398. .res-nightmode .side .content,
  2399. .res-nightmode .side .leavemoderator,
  2400. .res-nightmode .side .leavecontributor-button {
  2401.     background-color: transparent;
  2402. }
  2403.  
  2404. .res-nightmode .side .titlebox form.flairtoggle {
  2405.     background-color: transparent;
  2406. }
  2407.  
  2408. .res-nightmode .side .shortlink input {
  2409.     border-color: rgba(255, 255, 255, 0.1);
  2410. }
  2411.  
  2412. .res-nightmode .side .md > blockquote {
  2413.     color: white;
  2414. }
  2415.  
  2416. .res-nightmode .side .md > blockquote ul,
  2417. .res-nightmode .side .md > blockquote ol {
  2418.     background-color: transparent;
  2419. }
  2420.  
  2421. .res-nightmode .side .md > blockquote li,
  2422. .res-nightmode .side .md > blockquote p {
  2423.     color: white;
  2424. }
  2425.  
  2426. .res-nightmode .side .md ul {
  2427.     color: #dedede;
  2428.     background-color: #212121;
  2429. }
  2430.  
  2431. .res-nightmode .side .md hr {
  2432.     background: rgba(255, 255, 255, 0.12);
  2433. }
  2434.  
  2435. .res-nightmode .side .md h5 + ul > li:hover,
  2436. .res-nightmode .side .md h5 + ul > li > ul > li:hover > a {
  2437.     background-color: rgba(255, 255, 255, 0.12);
  2438. }
  2439.  
  2440. .res-nightmode .side .md h5 + ul > li > sup,
  2441. .res-nightmode .side .md h5 + ul > li > p sup {
  2442.     background-position: 0px -22px;
  2443. }
  2444.  
  2445. .res-nightmode .side .md h5 + ul > li > a,
  2446. .res-nightmode .side .md h5 + ul > li > p > a,
  2447. .res-nightmode .side .md h5 + ul > li > ul > li > a,
  2448. .res-nightmode .side .md h5 + ul > li > ul > li > p a {
  2449.     color: #8cb3d9;
  2450. }
  2451.  
  2452. .res-nightmode .side #search input[type=text] {
  2453.     background: #262626;
  2454.     box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  2455. }
  2456.  
  2457. .res-nightmode .side #search input[type=submit] {
  2458.     background-position: 9px 9px;
  2459. }
  2460.  
  2461. .res-nightmode .side #search #searchexpando {
  2462.     background-color: #151515;
  2463. }
  2464.  
  2465. .res-nightmode .panestack-title,
  2466. .res-nightmode .nav-buttons {
  2467.     border-top-color: rgba(255, 255, 255, 0.12);
  2468. }
  2469.  
  2470. .res-nightmode .flair,
  2471. .res-nightmode .linkflairlabel {
  2472.     background-color: transparent;
  2473. }
  2474.  
  2475. .res-nightmode .linkflairlabel {
  2476.     color: #6a98af;
  2477. }
  2478.  
  2479. .res-nightmode .RESDropdownList {
  2480.     color: #dedede;
  2481.     background-color: #303030;
  2482. }
  2483.  
  2484. .res-nightmode .RESDropdownList li,
  2485. .res-nightmode .RESDropdownList a,
  2486. .res-nightmode .RESDropdownList li:hover a,
  2487. .res-nightmode .RESDropdownList a:hover {
  2488.     background: none;
  2489. }
  2490.  
  2491. .res-nightmode .RESDropdownList li:hover {
  2492.     background: rgba(255, 255, 255, 0.12);
  2493. }
  2494.  
  2495. .res-nightmode .commentarea .menuarea > div:hover,
  2496. .res-nightmode .commentarea .menuarea > div a:hover {
  2497.     color: #dedede;
  2498. }
  2499.  
  2500. .res-nightmode #REScommentNavToggle > .commentNavSortType {
  2501.     color: gray;
  2502. }
  2503.  
  2504. .res-nightmode #REScommentNavToggle > .commentNavSortType:hover {
  2505.     color: #dedede;
  2506. }
  2507.  
  2508. .res-nightmode #progressIndicator {
  2509.     color: #dedede;
  2510.     border-color: rgba(255, 255, 255, 0.12);
  2511.     background-color: #424242;
  2512. }
  2513.  
  2514. .res-nightmode .link .entry.RES-keyNav-activeElement {
  2515.     box-shadow: -3px 0 0 0 #4d4d4d;
  2516. }
  2517.  
  2518. .res-nightmode .comment .entry.RES-keyNav-activeElement .tagline,
  2519. .res-nightmode .thing.morechildren .entry.RES-keyNav-activeElement {
  2520.     color: white;
  2521.     background-color: rgba(255, 255, 255, 0.12) !important;
  2522. }
  2523.  
  2524. .res-nightmode .RES-keyNav-activeElement .md-container > .md,
  2525. .res-nightmode .RES-keyNav-activeElement .md-container > .md p {
  2526.     color: #dedede !important;
  2527. }
  2528.  
  2529. .res-nightmode .side .subscribe-button a.remove,
  2530. .res-nightmode .subButtons .RESshortcut.remove,
  2531. .res-nightmode .subButtons .RESDashboardToggle.remove {
  2532.     color: #dedede;
  2533. }
  2534.  
  2535. .res-nightmode .usertext button:not(.save),
  2536. .res-nightmode #url-field button {
  2537.     color: #dedede;
  2538. }
  2539.  
  2540. .res-nightmode .usertext button:not(.save):hover,
  2541. .res-nightmode #url-field button:hover {
  2542.     background-color: rgba(255, 255, 255, 0.12);
  2543. }
  2544.  
  2545. .res-nightmode .subButtons .RESshortcut:not(.remove),
  2546. .res-nightmode .subButtons .RESDashboardToggle:not(.remove) {
  2547.     color: #dedede;
  2548.     background-color: #303030;
  2549. }
  2550.  
  2551. @media (min-width: 1601px) {
  2552.     .res-nightmode #header-bottom-right {
  2553.         background: gray;
  2554.     }
  2555. }
  2556.  
  2557.  
  2558. /*.end*/
  2559.  
  2560. button::-moz-focus-inner,
  2561. submit::-moz-focus-inner {
  2562.     border: none;
  2563.     padding: 0;
  2564. }
  2565.  
  2566.  
  2567. /*# sourceMappingURL=a_d.css.map */
  2568.  
  2569.  
  2570. /*addon logo*/
  2571.  
  2572. .pagename {
  2573.     height: 63px;
  2574. }
  2575.  
  2576. .pagename a {
  2577.     width: 600px;
  2578.     height: 100px;
  2579.     background: url(%logo%) no-repeat;
  2580.     display: inline-block;
  2581.     text-shadow: none;
  2582.     color: transparent;
  2583.     font-size: 0;
  2584.     overflow: hidden;
  2585.     border: none;
  2586. }
  2587.  
  2588.  
  2589. /*.end*/
  2590.  
  2591.  
  2592. /* ------------------------- */
  2593.  
  2594.  
  2595. /* BEGIN COPY */
  2596.  
  2597.  
  2598. /* "No Participation"-Mode, aka "Read Only"-Mode
  2599.  * (Only subscribers-version)
  2600.  * by /u/KortoloB
  2601.  * /r/NoParticipation
  2602.  *
  2603.  * Subscribers will see the full page, only non-subscribers will see the read-only version.
  2604.  * This is of course by no means fool-proof, but it should work for the average user.
  2605.  *  */
  2606.  
  2607. body:not(.subscriber) .arrow {
  2608.     visibility: hidden !important;
  2609. }
  2610.  
  2611. body:not(.subscriber) .usertext-edit,
  2612. body:not(.subscriber) .sidebox.submit,
  2613. body:not(.subscriber) .commentingAs,
  2614. body:not(.subscriber) .markdownEditor,
  2615. body:not(.subscriber) a[onclick*="return reply(this)"],
  2616. body:not(.subscriber) .helplink {
  2617.     display: none !important;
  2618. }
  2619.  
  2620. body:not(.subscriber) .entry.likes:not(.reddit-entry):before,
  2621. body:not(.subscriber) .entry.dislikes:not(.reddit-entry):before
  2622. /* Wiki protection */
  2623.  
  2624. body.wiki-page:not(.subscriber) span.pageactions a.wikiaction-edit:not(.wikiaction-current),
  2625. body.wiki-page:not(.subscriber) div.wiki-page-content form#editform label[for='reason'],
  2626. body.wiki-page:not(.subscriber) div.wiki-page-content form#editform input#wiki_revision_reason,
  2627. body.wiki-page:not(.subscriber) div.wiki-page-content form#editform input[type='submit'] {
  2628.     display: none !important;
  2629. }
  2630.  
  2631.  
  2632. /* END COPY */
  2633.  
  2634.  
  2635. /* ------------------------- */
  2636.  
  2637.  
  2638. /*addon flair-basic*/
  2639.  
  2640. .flair {
  2641.     padding: 0 5px;
  2642.     font-size: inherit;
  2643.     font-style: italic;
  2644.     border: none;
  2645.     color: inherit;
  2646.     background: none;
  2647.     max-width: 200px;
  2648.     white-space: nowrap;
  2649.     overflow: hidden;
  2650.     text-overflow: ellipsis;
  2651.     vertical-align: bottom;
  2652. }
  2653.  
  2654. .linkflairlabel {
  2655.     padding: 0 0px 0 0;
  2656.     max-width: 150px;
  2657.     font-size: 1.2rem;
  2658.     font-family: "arial black", sans-serif;
  2659.     font-weight: 900;
  2660.     color: #85a0ad;
  2661.     border: none;
  2662.     background: none;
  2663.     line-height: 1;
  2664.     vertical-align: middle;
  2665.     text-transform: uppercase;
  2666. }
  2667.  
  2668. .title + .linkflairlabel {
  2669.     padding: 0 0 0 5px;
  2670. }
  2671.  
  2672.  
  2673. /*.end*/
  2674.  
  2675. .author[href$="/user/ChippersRevenge"]:after {
  2676.     content: "CSS GUY";
  2677.     padding: 0.5em;
  2678.     color: darkblue;
  2679.     font-weight: bolder
  2680. }
  2681.  
  2682. .author[href$="/user/TheRetroGamer91"]:after {
  2683.     content: "Offline..sorta";
  2684.     padding: 0.5em;
  2685.     color: black;
  2686.     font-weight: bolder
  2687. }
  2688.  
  2689. .author[href$="/user/White_Lupin"]:after {
  2690.     content: "Offline";
  2691.     padding: 0.5em;
  2692.     color: violet;
  2693.     font-weight: bolder
  2694. }
  2695.  
  2696. .author[href$="/user/iamthebeast87"]:after {
  2697.     content: "2nd Spriter";
  2698.     padding: 0.5em;
  2699.     color: gold;
  2700.     font-weight: bolder
  2701. }
  2702.  
  2703. .author[href$="/user/LilCoach"]:after {
  2704.     content: "Voice of Friend";
  2705.     padding: 0.5em;
  2706.     color: darkgreen;
  2707.     font-weight: bolder
  2708. }
  2709.  
  2710. .author[href$="/user/EnderProGaming"]:after {
  2711.     content: "Sprites and Teasers";
  2712.     padding: 0.5em;
  2713.     color: pink;
  2714.     font-weight: bolder
  2715. }
  2716.  
  2717. .author[href$="/user/BlazingGamer2"]:after {
  2718.     content: "Friend and Supporter";
  2719.     padding: 0.5em;
  2720.     color: black;
  2721.     font-weight: bolder
  2722. }
  2723.  
  2724. @-webkit-keyframes rainbow {
  2725.     0% {
  2726.         color: #F00
  2727.     }
  2728.     17% {
  2729.         color: #FF0
  2730.     }
  2731.     33% {
  2732.         color: #0F0
  2733.     }
  2734.     50% {
  2735.         color: #0FF
  2736.     }
  2737.     67% {
  2738.         color: #00F
  2739.     }
  2740.     84% {
  2741.         color: #F0F
  2742.     }
  2743.     100% {
  2744.         color: #F00
  2745.     }
  2746. }
  2747.  
  2748. @keyframes rainbow {
  2749.     0% {
  2750.         color: #F00
  2751.     }
  2752.     17% {
  2753.         color: #FF0
  2754.     }
  2755.     33% {
  2756.         color: #0F0
  2757.     }
  2758.     50% {
  2759.         color: #0FF
  2760.     }
  2761.     67% {
  2762.         color: #00F
  2763.     }
  2764.     84% {
  2765.         color: #F0F
  2766.     }
  2767.     100% {
  2768.         color: #F00
  2769.     }
  2770. }
  2771.  
  2772. .author[href$="/True_Kronos"],
  2773. .comment .author[href$="/True_Kronos"] {
  2774.     -webkit-animation: rainbow 4s linear 0s infinite;
  2775.     animation: rainbow 4s linear 0s infinite;
  2776. }
  2777.  
  2778. .author[href$="/Freddy_Fnaf"],
  2779. .comment .author[href$="/Freddy_Fnaf"] {
  2780.     -webkit-animation: rainbow 4s linear 0s infinite;
  2781.     animation: rainbow 4s linear 0s infinite;
  2782. }
  2783.  
  2784. .author[href$="/superlolzreddit"],
  2785. .comment .author[href$="/superlolzreddit"] {
  2786.     -webkit-animation: rainbow 4s linear 0s infinite;
  2787.     animation: rainbow 4s linear 0s infinite;
  2788. }
  2789.  
  2790. .author[href$="/SpringPopo"],
  2791. .comment .author[href$="/SpringPopo"] {
  2792.     -webkit-animation: rainbow 4s linear 0s infinite;
  2793.     animation: rainbow 4s linear 0s infinite;
  2794. }
  2795.  
  2796. .flair-Developer {
  2797.     color: red;
  2798.     -webkit-animation: rainbow 4s linear infinite;
  2799.     -moz-animation: rainbow 4s linear infinite;
  2800.     animation: rainbow 4s linear infinite;
  2801. }
  2802.  
  2803. a[href="/spoiler"],
  2804. a[href="/happypuppy"],
  2805. a[href="/moderator"],
  2806. a[href="/sans"],
  2807. a[href="/papyrus"],
  2808. a[href="/threat"] {
  2809.     pointer-events: none;
  2810. }
  2811.  
  2812. @-webkit-keyframes moder {
  2813.     0% {
  2814.         color: #F00;
  2815.     }
  2816.     17% {
  2817.         color: #FF0;
  2818.     }
  2819.     33% {
  2820.         color: #0F0;
  2821.     }
  2822.     50% {
  2823.         color: #0FF;
  2824.     }
  2825.     67% {
  2826.         color: #00F;
  2827.     }
  2828.     84% {
  2829.         color: #F0F;
  2830.     }
  2831.     100% {
  2832.         color: #F00;
  2833.     }
  2834. }
  2835.  
  2836. @keyframes moder {
  2837.     0% {
  2838.         color: #F00;
  2839.     }
  2840.     17% {
  2841.         color: #FF0;
  2842.     }
  2843.     33% {
  2844.         color: #0F0;
  2845.     }
  2846.     50% {
  2847.         color: #0FF;
  2848.     }
  2849.     67% {
  2850.         color: #00F;
  2851.     }
  2852.     84% {
  2853.         color: #F0F;
  2854.     }
  2855.     100% {
  2856.         color: #F00;
  2857.     }
  2858. }
  2859.  
  2860. .save-button > a:hover,
  2861. a[href$="/moderator"] {
  2862.     -webkit-animation: moder 4s linear 0s infinite;
  2863.     animation: moder 4s linear 0s infinite;
  2864. }
  2865.  
  2866. .author[href$="/user/At_Witts_End"]:after {
  2867.     content: "Traitor";
  2868.     padding: 0.5em;
  2869.     color: black;
  2870.     font-weight: bolder
  2871. }
  2872.  
  2873. .author[href$="/user/AdventureFreddy"]:after {
  2874.     content: "BetaTester";
  2875.     padding: 0.5em;
  2876.     color: black;
  2877.     font-weight: bolder
  2878. }
  2879.  
  2880. .author[href$="/user/APersonIThink"]:after {
  2881.     content: "BetaTester";
  2882.     padding: 0.5em;
  2883.     color: black;
  2884.     font-weight: bolder
  2885. }
  2886.  
  2887. .author[href$="/user/GameboyJr"]:after {
  2888.     content: "BetaTester";
  2889.     padding: 0.5em;
  2890.     color: black;
  2891.     font-weight: bolder
  2892. }
  2893.  
  2894. .author[href$="/user/SpringSonic"]:after {
  2895.     content: "BetaTester";
  2896.     padding: 0.5em;
  2897.     color: black;
  2898.     font-weight: bolder
  2899. }
  2900.  
  2901. .author[href$="/user/Shadowfire_150"]:after {
  2902.     content: "Pixel Art Helper";
  2903.     padding: 0.5em;
  2904.     color: darkpink;
  2905.     font-weight: bolder
  2906. }
  2907.  
  2908. .author[href$="/user/Bonfim_BR"]:after {
  2909.     content: "Title Screen";
  2910.     padding: 0.5em;
  2911.     color: orange;
  2912.     font-weight: bolder
  2913. }
Advertisement
Add Comment
Please, Sign In to add comment