Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 50.51 KB | None | 0 0
  1. button,
  2. input:focus,
  3. textarea:focus {
  4.     outline: 0
  5. }
  6.  
  7. #hsts_pixel,
  8. #jumpToContent,
  9. .listing-chooser,
  10. .sidebox.create .spacer,
  11. .trending-subreddits {
  12.     display: none
  13. }
  14.  
  15. button,
  16. ul.tabmenu li a {
  17.     text-transform: uppercase
  18. }
  19.  
  20. #header #header-bottom-left .redditname a,
  21. .goldvertisement h2,
  22. .md,
  23. .side .titlebox h1.redditname,
  24. .submit-page div.content form.content button[type=submit],
  25. body {
  26.     font-family: helvetica, verdana, arial, sans-serif
  27. }
  28.  
  29. * {
  30.     box-sizing: border-box;
  31.     -moz-box-sizing: border-box
  32. }
  33.  
  34. #RESConsoleContainer *,
  35. #tb-bottombar,
  36. #tb-bottombar *,
  37. .RESDialogSmall.livePreview *,
  38. .goldvertisement .inner a,
  39. button {
  40.     box-sizing: content-box
  41. }
  42.  
  43. .spacer {
  44.     margin: 0!important
  45. }
  46.  
  47. .link.last-clicked {
  48.     border: none;
  49.     overflow: visible
  50. }
  51.  
  52. .md {
  53.     color: #444;
  54.     font-size: 12px
  55. }
  56.  
  57. .md a,
  58. a {
  59.     color: #5777A8
  60. }
  61.  
  62. a:visited {
  63.     color: #8D5BA4
  64. }
  65.  
  66. .md a:hover,
  67. a:hover {
  68.     color: #8aa0c1
  69. }
  70.  
  71. button {
  72.     padding: 6px 16px;
  73.     border-radius: 0;
  74.     background: rgba(255, 255, 255, .8);
  75.     border: 1px solid #DDD;
  76.     -webkit-transition: background .2s;
  77.     transition: background .2s
  78. }
  79.  
  80. .content input[type=email],
  81. .content input[type=password],
  82. .content input[type=text],
  83. .content input[type=url],
  84. .content textarea {
  85.     padding: 8px;
  86.     border: 1px solid #DDD;
  87.     -webkit-transition: background .2s;
  88.     transition: background .2s;
  89.     background: rgba(255, 255, 255, .8);
  90.     border-radius: 0;
  91.     box-shadow: none
  92. }
  93.  
  94. .content input[type=email]:focus,
  95. .content input[type=password]:focus,
  96. .content input[type=text]:focus,
  97. .content input[type=url]:focus,
  98. .content textarea:focus,
  99. button:hover {
  100.     background: rgba(0, 0, 0, .1)
  101. }
  102.  
  103. .content input[type=email]:disabled,
  104. .content input[type=password]:disabled,
  105. .content input[type=text]:disabled,
  106. .content input[type=url]:disabled,
  107. .content textarea:disabled,
  108. button:disabled {
  109.     background: rgba(0, 0, 0, .1);
  110.     cursor: not-allowed
  111. }
  112.  
  113. .content input[type=email]:active,
  114. .content input[type=password]:active,
  115. .content input[type=text]:active,
  116. .content input[type=url]:active,
  117. .content textarea:active,
  118. button:active {
  119.     background: rgba(0, 0, 0, .2)
  120. }
  121.  
  122. body {
  123.     position: relative;
  124.     -webkit-flex-direction: row;
  125.     -ms-flex-direction: row;
  126.     flex-direction: row;
  127.     padding: 210px 0 0;
  128.     background: url(%%background%%) no-repeat #474f52;
  129.     background-size: 100% auto;
  130.     color: #444
  131. }
  132.  
  133. body::before {
  134.     position: absolute;
  135.     width: 100%;
  136.     height: 100%;
  137.     content: "";
  138.     background: url(%%tile%%);
  139.     opacity: .4;
  140.     top: 0;
  141.     z-index: -1
  142. }
  143.  
  144. .debuginfo {
  145.     position: absolute;
  146.     right: 10px;
  147.     bottom: 10px
  148. }
  149.  
  150. .flair,
  151. .linkflairlabel {
  152.     margin: 0 4px 0 0;
  153.     padding: 2px 8px;
  154.     border-radius: 0;
  155.     border: 1px solid #e7e7e7;
  156.     font-size: 10px
  157. }
  158.  
  159. .side .flair {
  160.     border-color: #BBB
  161. }
  162.  
  163. .menuarea {
  164.     text-align: center;
  165.     border-bottom: none;
  166.     padding-top: 12px
  167. }
  168.  
  169. ul.tabmenu,
  170. ul.tabmenu li {
  171.     margin: 0;
  172.     display: inline-block
  173. }
  174.  
  175. ul.tabmenu {
  176.     font-size: 12px;
  177.     max-width: 100%;
  178.     white-space: normal
  179. }
  180.  
  181. ul.tabmenu li {
  182.     height: 48px;
  183.     line-height: 48px;
  184.     padding: 0 8px;
  185.     min-width: 60px;
  186.     -webkit-transition: background .2s;
  187.     transition: background .2s
  188. }
  189.  
  190. #noresults,
  191. ul.tabmenu li a {
  192.     display: block;
  193.     font-weight: 100
  194. }
  195.  
  196. ul.tabmenu li:hover {
  197.     background: rgba(255, 255, 255, .1);
  198.     border-bottom: 3px solid rgba(255, 255, 255, .1)
  199. }
  200.  
  201. ul.tabmenu li.selected {
  202.     border-bottom: 3px solid #9CD3E6
  203. }
  204.  
  205. ul.tabmenu li.selected a {
  206.     background: 0 0;
  207.     border: none;
  208.     color: #FF5C72!important
  209. }
  210.  
  211. ul.tabmenu li a {
  212.     letter-spacing: 1px;
  213.     background: 0 0;
  214.     color: #EEE;
  215.     height: 100%
  216. }
  217.  
  218. .sheets {
  219.     margin-right: 0
  220. }
  221.  
  222. .stylesheet-customize-container h2 {
  223.     margin-left: 10px;
  224.     text-transform: capitalize
  225. }
  226.  
  227. #noresults {
  228.     text-align: center;
  229.     width: 100%;
  230.     padding: 80px;
  231.     font-size: 25px;
  232.     color: #BF4040
  233. }
  234.  
  235. #header {
  236.     position: absolute;
  237.     width: 100%;
  238.     top: 0;
  239.     background: 0 0;
  240.     border-bottom: none;
  241.     height: 210px;
  242.     z-index: 4
  243. }
  244.  
  245. #header #header-bottom-left {
  246.     position: absolute;
  247.     bottom: 0;
  248.     left: 60px;
  249.     right: 400px;
  250.     background: rgba(50, 60, 70, .8);
  251.     border-top-left-radius: 2px;
  252.     border-top-right-radius: 2px;
  253.     text-align: center;
  254.     min-height: 48px;
  255.     font-size: 0
  256. }
  257.  
  258. @media (max-width:1150px) {
  259.     #header #header-bottom-left {
  260.         right: 288px;
  261.         left: 8px
  262.     }
  263. }
  264.  
  265. .side,
  266. .thing .entry .flat-list.buttons .del-button .option.error.active {
  267.     right: 0
  268. }
  269.  
  270. .submit-page #header #header-bottom-left {
  271.     visibility: hidden
  272. }
  273.  
  274. #header #header-bottom-left #header-img {
  275.     visibility: visible;
  276.     position: absolute;
  277.     left: -40px;
  278.     top: -150px;
  279.     background-image: url(%%spritesheet%%);
  280.     background-position: -68px -68px;
  281.     width: 64px;
  282.     height: 64px;
  283.     margin-top: 10px;
  284.     opacity: .8;
  285.     -webkit-transition: opacity .2s;
  286.     transition: opacity .2s
  287. }
  288.  
  289. @media (max-width:1150px) {
  290.     #header #header-bottom-left #header-img {
  291.         left: 4px
  292.     }
  293. }
  294.  
  295. #header #header-bottom-left #header-img:hover {
  296.     opacity: 1
  297. }
  298.  
  299. #header #header-bottom-left .redditname {
  300.     visibility: visible;
  301.     position: absolute;
  302.     height: 80px;
  303.     line-height: 80px;
  304.     top: -80px;
  305.     left: 0;
  306.     width: 100%;
  307.     color: #fff
  308. }
  309.  
  310. #header #header-bottom-left .redditname a {
  311.     color: #fff;
  312.     font-size: 50px;
  313.     font-weight: 100;
  314.     letter-spacing: 14px;
  315.     font-variant: small-caps;
  316.     text-transform: lowercase
  317. }
  318.  
  319. #header #header-bottom-left .redditname a:hover {
  320.     text-decoration: none
  321. }
  322.  
  323. #header #header-bottom-left .redditname a::before {
  324.     content: '/r/'
  325. }
  326.  
  327. #header #header-bottom-right {
  328.     position: absolute;
  329.     top: 25px;
  330.     bottom: initial;
  331.     background: 0 0;
  332.     margin: 10px 18px 10px 10px
  333. }
  334.  
  335. #header #header-bottom-right:not(.res-navTop) {
  336.     padding: 12px;
  337.     background: rgba(255, 255, 255, .5);
  338.     border-radius: 0
  339. }
  340.  
  341. #header #header-bottom-right .beta-hint,
  342. #header #header-bottom-right .beta-hint[style] {
  343.     display: none!important
  344. }
  345.  
  346. .side #search input[type=submit],
  347. .side .sidebox .nub,
  348. .side .sidebox.create {
  349.     display: none
  350. }
  351.  
  352. #header #header-bottom-right .message-count {
  353.     background: rgba(255, 92, 92, .63)
  354. }
  355.  
  356. #header #header-bottom-right #userbarToggle {
  357.     border-radius: 0;
  358.     background: rgba(60, 60, 60, .8);
  359.     -webkit-transition: background .2s, color .2s;
  360.     transition: background .2s, color .2s;
  361.     border: none;
  362.     width: 40px;
  363.     left: -40px;
  364.     text-align: center;
  365.     line-height: 35px;
  366.     padding: 0;
  367.     font-size: 40px;
  368.     font-weight: 100;
  369.     color: #DDD
  370. }
  371.  
  372. #header #header-bottom-right #userbarToggle:hover {
  373.     color: #FFF;
  374.     background: rgba(60, 60, 60, .9)
  375. }
  376.  
  377. #header #header-bottom-right.res-navTop {
  378.     background: rgba(40, 40, 40, .3);
  379.     margin-right: 0;
  380.     height: 40px;
  381.     line-height: 40px;
  382.     font-size: 11px;
  383.     font-weight: 100
  384. }
  385.  
  386. #header #sr-header-area,
  387. #header #sr-header-area .dropdown.srdrop .selected,
  388. #header #sr-header-area a {
  389.     line-height: 24px;
  390.     color: #AAA;
  391.     height: 24px
  392. }
  393.  
  394. #header #header-bottom-right.res-navTop * {
  395.     text-transform: capitalize;
  396.     font-weight: 400
  397. }
  398.  
  399. #header #header-bottom-right.res-navTop a,
  400. #header #header-bottom-right.res-navTop a:visited {
  401.     color: #fff
  402. }
  403.  
  404. #header #header-bottom-right.res-navTop .separator {
  405.     margin: 0 10px;
  406.     width: 1px;
  407.     height: 100%;
  408.     text-indent: 10px;
  409.     background: #999
  410. }
  411.  
  412. #header #header-bottom-right.res-navTop .message-count {
  413.     border-radius: 0;
  414.     width: 30px;
  415.     text-align: center;
  416.     font-size: 12px;
  417.     margin-left: 6px
  418. }
  419.  
  420. #header #header-bottom-right.res-navTop .user {
  421.     margin-left: 12px
  422. }
  423.  
  424. #header #header-bottom-right.res-navTop .logout {
  425.     margin-right: 12px
  426. }
  427.  
  428. #header #sr-header-area {
  429.     background: rgba(0, 0, 0, .2);
  430.     border: none;
  431.     padding: 0 12px
  432. }
  433.  
  434. #header #sr-header-area .dropdown.srdrop .selected:hover,
  435. #header #sr-header-area a:hover {
  436.     color: #DDD
  437. }
  438.  
  439. #header #sr-header-area #RESShortcutsEditContainer,
  440. #header #sr-header-area #RESShortcutsEditContainer>* {
  441.     background: 0 0;
  442.     color: #AAA;
  443.     height: 24px;
  444.     line-height: 24px
  445. }
  446.  
  447. #header #sr-header-area #RESShortcutsEditContainer>:hover {
  448.     color: #DDD
  449. }
  450.  
  451. .side {
  452.     z-index: 1;
  453.     min-width: 0;
  454.     width: 340px;
  455.     background: rgba(255, 255, 255, .8);
  456.     -webkit-order: 10;
  457.     -ms-flex-order: 10;
  458.     order: 10;
  459.     padding: 20px 25px;
  460.     margin: 40px 35px 40px 0;
  461.     box-shadow: 0 0 5px 0 rgba(0, 0, 0, .3);
  462.     position: relative
  463. }
  464.  
  465. .side::before {
  466.     content: ""
  467. }
  468.  
  469. @media (max-width:1150px) {
  470.     .side {
  471.         width: 280px;
  472.         margin-right: 0
  473.     }
  474. }
  475.  
  476. .side #login_login-main {
  477.     margin-top: 12px;
  478.     background: rgba(255, 255, 255, .3);
  479.     padding: 16px;
  480.     border: 1px solid #BBB
  481. }
  482.  
  483. .side #login_login-main>input {
  484.     width: 100%;
  485.     margin: 4px 0
  486. }
  487.  
  488. .side #search input[type=text] {
  489.     border: 1px solid #CCC;
  490.     padding: 12px;
  491.     text-transform: uppercase;
  492.     width: 100%
  493. }
  494.  
  495. .side #search input:focus {
  496.     border: 1px solid #BBB
  497. }
  498.  
  499. .side #search #searchexpando {
  500.     padding: 12px;
  501.     background: #FAFAFA;
  502.     border: 1px solid #DDD;
  503.     margin-bottom: 40px
  504. }
  505.  
  506. .side #search #searchexpando p {
  507.     margin: 0
  508. }
  509.  
  510. .side #search #searchexpando #moresearchinfo {
  511.     color: #555
  512. }
  513.  
  514. .side #search #searchexpando #moresearchinfo #search_hidemore {
  515.     letter-spacing: 4px
  516. }
  517.  
  518. .side #search #searchexpando #moresearchinfo p:first-of-type::first-letter {
  519.     text-transform: uppercase
  520. }
  521.  
  522. .side #search #searchexpando #moresearchinfo p:last-child {
  523.     text-align: center;
  524.     margin-top: 10px
  525. }
  526.  
  527. .side #search #searchexpando #moresearchinfo dt,
  528. .side .linkinfo {
  529.     margin-top: 12px
  530. }
  531.  
  532. .side .linkinfo {
  533.     border: 1px solid #BBB;
  534.     background: #FAFAFA;
  535.     padding: 12px;
  536.     border-radius: 0;
  537.     font-size: 12px;
  538.     color: #444;
  539.     text-align: center
  540. }
  541.  
  542. .side .linkinfo .date {
  543.     padding-bottom: 3px;
  544.     margin-bottom: 5px;
  545.     border-bottom: 1px solid #CCC
  546. }
  547.  
  548. .side .linkinfo .date span {
  549.     font-size: 0
  550. }
  551.  
  552. .side .linkinfo .date span::before {
  553.     font-size: 12px;
  554.     content: 'Submitted on '
  555. }
  556.  
  557. .side .linkinfo .score {
  558.     font-weight: 300
  559. }
  560.  
  561. .side .linkinfo .score .number {
  562.     font-size: 35px
  563. }
  564.  
  565. .side .linkinfo .score .word {
  566.     text-transform: uppercase
  567. }
  568.  
  569. .side .linkinfo .shortlink>input[type=text] {
  570.     border: 1px solid #BBB
  571. }
  572.  
  573. .side .sidebox {
  574.     margin: 12px 0
  575. }
  576.  
  577. .side .sidebox a {
  578.     font-weight: 100;
  579.     letter-spacing: 2px;
  580.     text-transform: uppercase;
  581.     color: #fff;
  582.     padding: 8px 12px
  583. }
  584.  
  585. .side .sidebox .morelink {
  586.     background: rgba(60, 94, 111, .8);
  587.     height: initial;
  588.     height: auto;
  589.     border: none;
  590.     -webkit-transition: background .4s;
  591.     transition: background .4s
  592. }
  593.  
  594. .side .sidebox:hover .morelink {
  595.     background: #3c5e6f
  596. }
  597.  
  598. .side .titlebox {
  599.     margin-top: 12px
  600. }
  601.  
  602. .side .titlebox .md hr {
  603.     height: 1px;
  604.     margin: 12px 0;
  605.     color: #BBB
  606. }
  607.  
  608. .side .titlebox .md blockquote {
  609.     margin-left: 12px;
  610.     border-left: 2px solid #BFBFBF
  611. }
  612.  
  613. .side .titlebox h1.redditname {
  614.     overflow: hidden;
  615.     font-size: 24px;
  616.     text-align: center;
  617.     margin: 30px 0 12px;
  618.     padding-bottom: 2px;
  619.     border-bottom: 1px solid #BBB
  620. }
  621.  
  622. .side .titlebox h1.redditname a {
  623.     color: #777;
  624.     text-decoration: none;
  625.     text-transform: uppercase;
  626.     font-weight: 100;
  627.     letter-spacing: 3px
  628. }
  629.  
  630. .side .titlebox h1.redditname a:hover {
  631.     color: #000
  632. }
  633.  
  634. .side .titlebox .fancy-toggle-button {
  635.     background: 0 0;
  636.     height: 25px;
  637.     margin: 12px 0;
  638.     display: block;
  639.     text-align: center
  640. }
  641.  
  642. .side .titlebox .fancy-toggle-button a {
  643.     background-image: none;
  644.     -webkit-transition: background .3s;
  645.     transition: background .3s;
  646.     border-radius: 0;
  647.     margin-right: 10px;
  648.     padding: 5px 24px;
  649.     text-transform: uppercase;
  650.     font-weight: 100;
  651.     border: none
  652. }
  653.  
  654. .side .titlebox .fancy-toggle-button a.active {
  655.     display: inline-block
  656. }
  657.  
  658. .side .titlebox .fancy-toggle-button.subscribe-button a {
  659.     background: rgba(134, 36, 53, .6)
  660. }
  661.  
  662. .side .titlebox .fancy-toggle-button.subscribe-button a:hover {
  663.     background: rgba(134, 36, 53, .8)
  664. }
  665.  
  666. .side .titlebox .fancy-toggle-button.unsubscribe-button a {
  667.     background: rgba(38, 134, 36, .6)
  668. }
  669.  
  670. .side .titlebox .fancy-toggle-button.unsubscribe-button a:hover {
  671.     background: rgba(38, 134, 36, .8)
  672. }
  673.  
  674. .side .titlebox .subButtons {
  675.     text-align: center;
  676.     margin: 12px 0
  677. }
  678.  
  679. .side .titlebox .subButtons span.RESshortcut,
  680. .side .titlebox .subButtons span.REStoggle {
  681.     display: inline-block;
  682.     padding: 4px 12px;
  683.     width: auto;
  684.     width: initial;
  685.     border-radius: 0;
  686.     border: 1px solid #BBB;
  687.     background: rgba(255, 255, 255, .4);
  688.     font-weight: 100;
  689.     text-transform: uppercase;
  690.     -webkit-transition: background .2s;
  691.     transition: background .2s;
  692.     margin-bottom: 12px;
  693.     color: #555
  694. }
  695.  
  696. .side .titlebox .subButtons span.RESshortcut:hover,
  697. .side .titlebox .subButtons span.REStoggle:hover {
  698.     background: rgba(255, 255, 255, .8)
  699. }
  700.  
  701. .side .titlebox .users-online {
  702.     display: -webkit-flex;
  703.     display: -ms-flexbox;
  704.     display: flex;
  705.     -webkit-align-items: center;
  706.     -ms-flex-align: center;
  707.     align-items: center;
  708.     text-transform: capitalize
  709. }
  710.  
  711. #siteTable .thing .entry .report-action-form .reason-prompt:first-letter,
  712. .goldvertisement .inner a,
  713. .goldvertisement h2,
  714. .side .account-activity-box,
  715. .side .titlebox .usertext h2,
  716. .thing .entry .flat-list.buttons,
  717. .thing .entry .flat-list.buttons li.first {
  718.     text-transform: uppercase
  719. }
  720.  
  721. .side .titlebox .users-online .number {
  722.     margin-right: 4px
  723. }
  724.  
  725. .side .titlebox .users-online::before {
  726.     background: #50914e;
  727.     border-radius: 50%;
  728.     height: 10px;
  729.     width: 10px;
  730.     display: inline-block
  731. }
  732.  
  733. .side .titlebox form.flairtoggle {
  734.     background: 0 0
  735. }
  736.  
  737. .side .titlebox .users-online,
  738. .side .titlebox form.flairtoggle {
  739.     color: #555;
  740.     font-size: 11px
  741. }
  742.  
  743. .side .titlebox>.tagline {
  744.     padding: 8px 12px;
  745.     display: table;
  746.     margin: 10px auto 24px;
  747.     background: rgba(255, 255, 255, .4);
  748.     border: 1px solid #CCC
  749. }
  750.  
  751. .side .titlebox .subscribers {
  752.     display: block;
  753.     text-align: center;
  754.     margin-bottom: 18px;
  755.     float: right;
  756.     color: #777;
  757.     font-size: 11px
  758. }
  759.  
  760. .side .titlebox .leavemoderator,
  761. .side .titlebox form.leavecontributor-button {
  762.     background: #FAFAFA;
  763.     padding: 12px;
  764.     font-size: 11px;
  765.     border: 1px solid #BBB
  766. }
  767.  
  768. .side .titlebox .leavemoderator {
  769.     margin-top: 12px;
  770.     border-bottom: none
  771. }
  772.  
  773. .side .titlebox form.leavecontributor-button {
  774.     margin-bottom: 12px;
  775.     border-top: none
  776. }
  777.  
  778. .side .titlebox .bottom {
  779.     margin-top: 10px;
  780.     border-top: 1px solid #BBB
  781. }
  782.  
  783. .side .titlebox .usertext p {
  784.     margin-top: 12px
  785. }
  786.  
  787. .side .titlebox .usertext table th {
  788.     background: rgba(0, 0, 0, .05)
  789. }
  790.  
  791. .side .titlebox .usertext table td,
  792. .side .titlebox .usertext table th {
  793.     border-color: #BBB
  794. }
  795.  
  796. .side .titlebox .usertext pre {
  797.     border: 1px solid #BBB;
  798.     background: #FAFAFA;
  799.     padding: 12px;
  800.     border-radius: 0;
  801.     font-size: 12px
  802. }
  803.  
  804. .side .titlebox .usertext h2 {
  805.     text-align: center;
  806.     margin-top: 40px;
  807.     font-weight: 700
  808. }
  809.  
  810. .side .titlebox .usertext h2 strong::after,
  811. .side .titlebox .usertext h2 strong::before {
  812.     content: "";
  813.     height: 50%;
  814.     width: 30px;
  815.     display: inline-block;
  816.     margin: 0 12px;
  817.     border-bottom: 1px solid #777;
  818.     position: relative;
  819.     top: -6px
  820. }
  821.  
  822. .side .titlebox .usertext h4 {
  823.     font-size: 15px;
  824.     background: #DBDBDB;
  825.     left: 14px;
  826.     top: 10px;
  827.     display: inline;
  828.     padding: 0 6px;
  829.     font-weight: 100;
  830.     line-height: 20px;
  831.     position: relative
  832. }
  833.  
  834. .side .titlebox .usertext h4+blockquote {
  835.     border: 1px solid #AAA;
  836.     margin-left: 0;
  837.     padding: 14px 16px 16px;
  838.     margin-top: 0;
  839.     margin-bottom: 10px
  840. }
  841.  
  842. .side .titlebox .usertext h4+blockquote blockquote {
  843.     max-height: 0;
  844.     -webkit-transition: max-height .4s ease;
  845.     transition: max-height .4s ease;
  846.     overflow: hidden
  847. }
  848.  
  849. .side .titlebox .usertext h4+blockquote:hover blockquote {
  850.     max-height: 400px
  851. }
  852.  
  853. .side .titlebox .usertext h6 {
  854.     display: none
  855. }
  856.  
  857. .side .titlebox .usertext h6+h1,
  858. .side .titlebox .usertext h6+h2,
  859. .side .titlebox .usertext h6+h3,
  860. .side .titlebox .usertext h6+h5 {
  861.     text-align: center;
  862.     margin: 20px 0;
  863.     padding: 0 30px;
  864.     line-height: initial
  865. }
  866.  
  867. .side #ad_main,
  868. .side .sidecontentbox {
  869.     margin-top: 30px
  870. }
  871.  
  872. .side .titlebox .usertext h6+h1 a,
  873. .side .titlebox .usertext h6+h2 a,
  874. .side .titlebox .usertext h6+h3 a,
  875. .side .titlebox .usertext h6+h5 a {
  876.     font-size: 15px;
  877.     text-transform: uppercase;
  878.     font-weight: 100;
  879.     color: #EEE;
  880.     display: block;
  881.     padding: 12px 24px;
  882.     -webkit-transition: background .3s;
  883.     transition: background .3s
  884. }
  885.  
  886. .side .titlebox .usertext h6+h5 a {
  887.     background: rgba(110, 110, 110, .8)
  888. }
  889.  
  890. .side .titlebox .usertext h6+h5 a:hover {
  891.     background: #6e6e6e
  892. }
  893.  
  894. .side .titlebox .usertext h6+h1 a {
  895.     background: rgba(60, 94, 111, .8)
  896. }
  897.  
  898. .side .titlebox .usertext h6+h1 a:hover {
  899.     background: #3c5e6f
  900. }
  901.  
  902. .side .titlebox .usertext h6+h2 a {
  903.     background: rgba(60, 111, 67, .8)
  904. }
  905.  
  906. .side .titlebox .usertext h6+h2 a:hover {
  907.     background: #3c6f43
  908. }
  909.  
  910. .side .titlebox .usertext h6+h3 a {
  911.     background: rgba(111, 60, 60, .8)
  912. }
  913.  
  914. .side .titlebox .usertext h6+h3 a:hover {
  915.     background: #6f3c3c
  916. }
  917.  
  918. .side #ad_main {
  919.     width: 100%
  920. }
  921.  
  922. .side .sidecontentbox li.more {
  923.     border-top: 1px solid #BBB;
  924.     padding-top: 3px;
  925.     margin-top: 8px
  926. }
  927.  
  928. .side .sidecontentbox .linkflairlabel {
  929.     display: none
  930. }
  931.  
  932. .side .sidecontentbox .title {
  933.     padding: 4px;
  934.     text-align: center;
  935.     border-bottom: 1px solid #AAA;
  936.     margin-bottom: 20px;
  937.     color: #444
  938. }
  939.  
  940. .side .sidecontentbox .title h1 {
  941.     color: #444
  942. }
  943.  
  944. .side .sidecontentbox .content {
  945.     padding: 0;
  946.     border: 0
  947. }
  948.  
  949. .side .sidecontentbox .content .right a {
  950.     font-size: 0
  951. }
  952.  
  953. .side .sidecontentbox .content .right a::after {
  954.     font-size: 10px;
  955.     content: '[ CLEAR ]'
  956. }
  957.  
  958. .side .sidecontentbox .midcol .arrow {
  959.     margin-right: 0;
  960.     margin-left: 0
  961. }
  962.  
  963. .side .sidecontentbox .entry {
  964.     margin: 6px 0;
  965.     position: relative;
  966.     left: -8px
  967. }
  968.  
  969. .side .sidecontentbox a.reddit-link-title {
  970.     font-weight: 100;
  971.     color: #555;
  972.     border-bottom: 1px solid #CCC;
  973.     display: inline-block;
  974.     padding-bottom: 3px;
  975.     margin-bottom: 1px;
  976.     width: 100%
  977. }
  978.  
  979. .side .sidecontentbox a.reddit-link-title:hover {
  980.     color: #888
  981. }
  982.  
  983. .side .sidecontentbox .reddit-entry small {
  984.     font-weight: 100;
  985.     padding-left: 1px
  986. }
  987.  
  988. .side .icon-menu a {
  989.     background: 0 0
  990. }
  991.  
  992. .goldvertisement {
  993.     margin: 50px 0;
  994.     border: none;
  995.     box-shadow: none;
  996.     padding: 10px
  997. }
  998.  
  999. .goldvertisement h2 {
  1000.     padding: 4px;
  1001.     text-align: center;
  1002.     border-bottom: 1px solid #AAA;
  1003.     color: #444;
  1004.     margin-bottom: 10px
  1005. }
  1006.  
  1007. .goldvertisement .progress .bar {
  1008.     border-radius: 0;
  1009.     border-color: #A19868
  1010. }
  1011.  
  1012. .goldvertisement .progress .bar span {
  1013.     background-image: none;
  1014.     border-radius: 0;
  1015.     background-color: #BFB57C
  1016. }
  1017.  
  1018. .goldvertisement .inner {
  1019.     border: none
  1020. }
  1021.  
  1022. .goldvertisement .inner a {
  1023.     -webkit-transition: background .3s;
  1024.     transition: background .3s;
  1025.     border: 1px solid #BFBFBF;
  1026.     background: #FAFAFA;
  1027.     padding: 3px 12px 2px;
  1028.     height: 16px;
  1029.     line-height: 16px;
  1030.     font-size: 0;
  1031.     margin: 0;
  1032.     color: #666;
  1033.     border-radius: 1px
  1034. }
  1035.  
  1036. .goldvertisement .inner a:hover,
  1037. body>.content {
  1038.     background: #fff
  1039. }
  1040.  
  1041. .goldvertisement .inner a::before {
  1042.     content: "Support Reddit";
  1043.     font-size: 9px
  1044. }
  1045.  
  1046. body>.content {
  1047.     z-index: 3;
  1048.     position: relative;
  1049.     border-radius: 2px;
  1050.     margin: 0 375px 0 35px!important;
  1051.     box-shadow: 0 0 5px 0 rgba(0, 0, 0, .3)
  1052. }
  1053.  
  1054. @media (max-width:1150px) {
  1055.     body>.content {
  1056.         margin-left: 0!important;
  1057.         margin-right: 280px!important
  1058.     }
  1059. }
  1060.  
  1061. body.submit-page>.content {
  1062.     z-index: 4
  1063. }
  1064.  
  1065. #siteTable {
  1066.     padding-bottom: 45px
  1067. }
  1068.  
  1069. #siteTable .thing {
  1070.     padding: 8px 20px;
  1071.     margin: 0
  1072. }
  1073.  
  1074. @media (max-width:1150px) {
  1075.     #siteTable .thing {
  1076.         padding: 8px
  1077.     }
  1078. }
  1079.  
  1080. #siteTable .thing:first-child {
  1081.     padding-top: 20px
  1082. }
  1083.  
  1084. #siteTable .thing:hover {
  1085.     background: #F2F2F2
  1086. }
  1087.  
  1088. #siteTable .thing .entry {
  1089.     overflow: visible;
  1090.     position: relative;
  1091.     padding-right: 15px;
  1092.     display: -webkit-flex;
  1093.     display: -ms-flexbox;
  1094.     display: flex;
  1095.     -webkit-flex-wrap: wrap;
  1096.     -ms-flex-wrap: wrap;
  1097.     flex-wrap: wrap;
  1098.     margin-left: 150px
  1099. }
  1100.  
  1101. @media (max-width:1150px) {
  1102.     #siteTable .thing .entry {
  1103.         margin-left: 120px
  1104.     }
  1105. }
  1106.  
  1107. .res #siteTable .thing .entry {
  1108.     padding: 4px 10px 10px 12px;
  1109.     border-radius: 3px
  1110. }
  1111.  
  1112. #siteTable .thing .entry .tagline {
  1113.     height: 22px;
  1114.     line-height: 22px
  1115. }
  1116.  
  1117. #siteTable .thing .entry .expando-button {
  1118.     height: 18px;
  1119.     margin-top: 0;
  1120.     background: 0 0;
  1121.     margin-bottom: 0;
  1122.     cursor: pointer;
  1123.     opacity: .6;
  1124.     position: relative
  1125. }
  1126.  
  1127. #siteTable .thing .entry .expando-button.image,
  1128. #siteTable .thing .entry .expando-button.video {
  1129.     background-image: url(%%spritesheet%%);
  1130.     background-position: -36px -136px;
  1131.     width: 18px;
  1132.     height: 18px;
  1133.     top: 2px
  1134. }
  1135.  
  1136. #siteTable .thing .entry .expando-button.image:hover,
  1137. #siteTable .thing .entry .expando-button.video:hover {
  1138.     background-image: url(%%spritesheet%%);
  1139.     background-position: -18px -136px;
  1140.     width: 18px;
  1141.     height: 18px
  1142. }
  1143.  
  1144. #siteTable .thing .entry .expando-button.selftext {
  1145.     background-image: url(%%spritesheet%%);
  1146.     background-position: -136px -116px;
  1147.     width: 18px;
  1148.     height: 18px;
  1149.     top: 1px
  1150. }
  1151.  
  1152. #siteTable .thing .entry .expando-button.selftext:hover {
  1153.     background-image: url(%%spritesheet%%);
  1154.     background-position: -136px -98px;
  1155.     width: 18px;
  1156.     height: 18px
  1157. }
  1158.  
  1159. #siteTable .thing .entry .expando {
  1160.     width: 100%
  1161. }
  1162.  
  1163. #siteTable .thing .entry .expando .usertext-body .md {
  1164.     border: 1px solid #DDD;
  1165.     border-radius: 0
  1166. }
  1167.  
  1168. #siteTable .thing .entry .post-sharing,
  1169. #siteTable .thing .entry .report-action-form {
  1170.     background: #FAFAFA;
  1171.     border-radius: 0;
  1172.     padding: 12px;
  1173.     max-width: none;
  1174.     border: 1px solid #BBB;
  1175.     width: 100%;
  1176.     margin: 12px 65% 12px 12px
  1177. }
  1178.  
  1179. #siteTable .thing .entry .report-action-form .reason-prompt {
  1180.     display: inline-block;
  1181.     padding-bottom: 2px;
  1182.     margin-bottom: 8px;
  1183.     border-bottom: 1px solid #DDD;
  1184.     width: 80%;
  1185.     font-weight: 700
  1186. }
  1187.  
  1188. .thing .midcol .arrow.down,
  1189. .thing .midcol .arrow.downmod,
  1190. .thing .midcol .arrow.up,
  1191. .thing .midcol .arrow.upmod {
  1192.     background-image: url(%%spritesheet%%);
  1193.     width: 18px;
  1194.     height: 20px
  1195. }
  1196.  
  1197. #siteTable .thing .entry .report-action-form label>input[type=radio] {
  1198.     margin-right: 12px
  1199. }
  1200.  
  1201. #siteTable .thing .entry .report-action-form button[type=submit] {
  1202.     margin-right: 6px
  1203. }
  1204.  
  1205. #siteTable .thing .entry .post-sharing .post-sharing-main {
  1206.     pointer-events: none
  1207. }
  1208.  
  1209. .thing .rank {
  1210.     display: none
  1211. }
  1212.  
  1213. .thing .midcol {
  1214.     min-width: 40px!important;
  1215.     margin: 8px 0 0;
  1216.     overflow: visible
  1217. }
  1218.  
  1219. .thing .midcol .score {
  1220.     font-weight: 400;
  1221.     color: #757575
  1222. }
  1223.  
  1224. .thing .midcol .arrow {
  1225.     opacity: .5;
  1226.     -webkit-transition: opacity .3s;
  1227.     transition: opacity .3s
  1228. }
  1229.  
  1230. .thing .midcol .arrow:hover {
  1231.     opacity: 1
  1232. }
  1233.  
  1234. .thing .midcol .arrow.up {
  1235.     background-position: -136px -60px
  1236. }
  1237.  
  1238. .thing .midcol .arrow.down {
  1239.     background-position: -136px -20px
  1240. }
  1241.  
  1242. .thing .midcol .arrow.up,
  1243. .thing .midcol .arrow.upmod {
  1244.     margin-bottom: 3px
  1245. }
  1246.  
  1247. .thing .midcol .arrow.down,
  1248. .thing .midcol .arrow.downmod {
  1249.     margin-top: 3px
  1250. }
  1251.  
  1252. .thing .midcol .arrow.upmod {
  1253.     background-position: -136px -40px;
  1254.     opacity: 1
  1255. }
  1256.  
  1257. .thing .midcol .arrow.downmod {
  1258.     background-position: -136px 0;
  1259.     opacity: 1
  1260. }
  1261.  
  1262. .thing .midcol .arrow.upmod,
  1263. .thing .midcol .score.likes {
  1264.     color: #B37159
  1265. }
  1266.  
  1267. .thing .midcol .arrow.downmod,
  1268. .thing .midcol .link .score.dislikes {
  1269.     color: #5959B3
  1270. }
  1271.  
  1272. .thing .thumbnail {
  1273.     background: #475866;
  1274.     height: 70px!important;
  1275.     min-width: 70px;
  1276.     margin: 6px 20px 0;
  1277.     border-radius: 5px;
  1278.     border: 1px solid #DDD;
  1279.     overflow: hidden;
  1280.     text-align: center;
  1281.     position: relative
  1282. }
  1283.  
  1284. @media (max-width:1150px) {
  1285.     .thing .thumbnail {
  1286.         margin: 0 0 6px
  1287.     }
  1288. }
  1289.  
  1290. .thing .thumbnail.default::before,
  1291. .thing .thumbnail.nsfw::before,
  1292. .thing .thumbnail.self::before,
  1293. .thing .thumbnail::after {
  1294.     position: absolute;
  1295.     display: block;
  1296.     height: 100%;
  1297.     width: 100%;
  1298.     top: 0;
  1299.     left: 0;
  1300.     content: "";
  1301.     overflow: hidden
  1302. }
  1303.  
  1304. .thing .thumbnail.default,
  1305. .thing .thumbnail.nsfw,
  1306. .thing .thumbnail.self {
  1307.     background-image: none
  1308. }
  1309.  
  1310. .thing .thumbnail::after {
  1311.     background: #fff;
  1312.     opacity: 0;
  1313.     pointer-events: none;
  1314.     -webkit-transition: opacity .2s;
  1315.     transition: opacity .2s
  1316. }
  1317.  
  1318. .thing .thumbnail.default::before,
  1319. .thing .thumbnail.nsfw::before,
  1320. .thing .thumbnail.self::before {
  1321.     background-image: url(%%spritesheet%%);
  1322.     width: 68px;
  1323.     height: 68px
  1324. }
  1325.  
  1326. .thing .thumbnail:hover::after {
  1327.     opacity: .2
  1328. }
  1329.  
  1330. .thing .thumbnail.default::before {
  1331.     background-position: 0 -68px
  1332. }
  1333.  
  1334. .thing .thumbnail.self::before {
  1335.     background-position: -68px 0
  1336. }
  1337.  
  1338. .thing .thumbnail.nsfw::before {
  1339.     background-position: 0 0
  1340. }
  1341.  
  1342. .thing .thumbnail img {
  1343.     display: inline-block;
  1344.     height: 100%;
  1345.     width: auto
  1346. }
  1347.  
  1348. .thing .entry>.madeVisible {
  1349.     display: block;
  1350.     width: 100%;
  1351.     margin: 30px
  1352. }
  1353.  
  1354. .thing .entry p.title {
  1355.     line-height: 20px;
  1356.     padding: 7px 30px 7px 0;
  1357.     margin: 5px 0 2px;
  1358.     border-bottom: 1px solid #DDD;
  1359.     width: 100%
  1360. }
  1361.  
  1362. .thing .entry p.title a.title {
  1363.     color: #444
  1364. }
  1365.  
  1366. .thing .entry p.title a.title:hover {
  1367.     color: #5777A8
  1368. }
  1369.  
  1370. .thing .entry p.title a.title:visited {
  1371.     color: #666
  1372. }
  1373.  
  1374. .thing .entry p.title a.title:visited:hover {
  1375.     color: #8D5BA4
  1376. }
  1377.  
  1378. .thing .entry .tagline {
  1379.     -webkit-order: 2;
  1380.     -ms-flex-order: 2;
  1381.     order: 2;
  1382.     line-height: 12px;
  1383.     font-size: 0;
  1384.     -webkit-align-items: center;
  1385.     -ms-flex-align: center;
  1386.     align-items: center
  1387. }
  1388.  
  1389. .thing .entry .tagline .RESUserTag,
  1390. .thing .entry .tagline .author,
  1391. .thing .entry .tagline time {
  1392.     font-size: 10px
  1393. }
  1394.  
  1395. .thing .entry .tagline time::after {
  1396.     content: 'by';
  1397.     padding: 0 3px
  1398. }
  1399.  
  1400. .thing .entry .tagline .flair {
  1401.     display: inline;
  1402.     margin-left: 4px
  1403. }
  1404.  
  1405. .thing .entry .domain,
  1406. .thing .entry .linkflairlabel {
  1407.     display: inline
  1408. }
  1409.  
  1410. .thing .entry .domain,
  1411. .thing .entry .domain a {
  1412.     color: #BBB;
  1413.     font-weight: 100
  1414. }
  1415.  
  1416. .thing .entry .flat-list.buttons {
  1417.     margin-right: 14px;
  1418.     height: 22px;
  1419.     line-height: 22px;
  1420.     padding: 0
  1421. }
  1422.  
  1423. .thing .entry .flat-list.buttons li.first {
  1424.     line-height: 18px
  1425. }
  1426.  
  1427. .thing .entry .flat-list.buttons li a {
  1428.     font-weight: 400;
  1429.     font-size: 9px
  1430. }
  1431.  
  1432. .thing .entry .flat-list.buttons .nsfw-stamp {
  1433.     border-radius: 1px;
  1434.     color: #B93F4F;
  1435.     border-color: #B93F4F
  1436. }
  1437.  
  1438. .thing .entry .flat-list.buttons .option.error.active {
  1439.     background: #fafafa;
  1440.     padding: 12px;
  1441.     display: block;
  1442.     z-index: 999;
  1443.     opacity: 1;
  1444.     color: #333;
  1445.     font-weight: 300;
  1446.     font-size: 0;
  1447.     position: absolute;
  1448.     border: 1px solid #BBB
  1449. }
  1450.  
  1451. .thing .entry .flat-list.buttons .option.error.active::before {
  1452.     font-size: 14px;
  1453.     content: "Are you sure?";
  1454.     margin-bottom: 12px;
  1455.     display: block
  1456. }
  1457.  
  1458. .thing .entry .flat-list.buttons .option.error.active .no,
  1459. .thing .entry .flat-list.buttons .option.error.active .yes {
  1460.     display: inline;
  1461.     margin: 0 8px;
  1462.     font-size: 12px
  1463. }
  1464.  
  1465. .thing .entry .flat-list.buttons .option.error.active .no:hover,
  1466. .thing .entry .flat-list.buttons .option.error.active .yes:hover {
  1467.     color: #000
  1468. }
  1469.  
  1470. .thing .entry .flat-list.buttons .option.error.active .no::after,
  1471. .thing .entry .flat-list.buttons .option.error.active .yes::after {
  1472.     display: none
  1473. }
  1474.  
  1475. .thing .entry .flat-list.buttons .del-button .option.error.active .no,
  1476. .thing .entry .flat-list.buttons .del-button .option.error.active .yes {
  1477.     opacity: 1;
  1478.     color: #333;
  1479.     position: static
  1480. }
  1481.  
  1482. @media (min-width:1150px) {
  1483.     .loggedin.listing-page .thing:hover .flat-list.buttons li.share,
  1484.     .loggedin.listing-page .thing:hover .flat-list.buttons li.share~li {
  1485.         opacity: 1
  1486.     }
  1487.     .loggedin.listing-page .thing .flat-list.buttons li.share,
  1488.     .loggedin.listing-page .thing .flat-list.buttons li.share~li {
  1489.         opacity: 0;
  1490.         white-space: nowrap;
  1491.         width: 15px;
  1492.         position: absolute;
  1493.         top: 0;
  1494.         text-align: center;
  1495.         color: #fff
  1496.     }
  1497.     .loggedin.listing-page .thing .flat-list.buttons li.share::after,
  1498.     .loggedin.listing-page .thing .flat-list.buttons li.share~li::after {
  1499.         opacity: .6;
  1500.         position: absolute;
  1501.         top: 0;
  1502.         left: 0;
  1503.         right: 0;
  1504.         bottom: 0;
  1505.         text-align: center;
  1506.         background-repeat: no-repeat;
  1507.         content: '';
  1508.         width: 18px;
  1509.         height: 18px;
  1510.         pointer-events: none;
  1511.         -webkit-transition: opacity .15s;
  1512.         transition: opacity .15s
  1513.     }
  1514.     .loggedin.listing-page .thing .flat-list.buttons li.share:hover::after,
  1515.     .loggedin.listing-page .thing .flat-list.buttons li.share~li:hover::after {
  1516.         opacity: 1
  1517.     }
  1518.     .loggedin.listing-page .thing .flat-list.buttons li.share a,
  1519.     .loggedin.listing-page .thing .flat-list.buttons li.share~li a {
  1520.         opacity: 0;
  1521.         position: absolute;
  1522.         top: -20px;
  1523.         left: 0;
  1524.         bottom: 0;
  1525.         display: block;
  1526.         height: 40px;
  1527.         color: #fff;
  1528.         font-weight: 100;
  1529.         text-transform: uppercase
  1530.     }
  1531.     .loggedin.listing-page .thing .flat-list.buttons li.share a:hover,
  1532.     .loggedin.listing-page .thing .flat-list.buttons li.share~li a:hover {
  1533.         text-decoration: none;
  1534.         opacity: .9
  1535.     }
  1536.     .loggedin.listing-page .thing .flat-list.buttons li.share a::after,
  1537.     .loggedin.listing-page .thing .flat-list.buttons li.share~li a::after {
  1538.         content: "";
  1539.         border-radius: 2px;
  1540.         background: rgba(0, 0, 0, .7);
  1541.         display: block;
  1542.         height: 22px;
  1543.         position: absolute;
  1544.         top: -3px;
  1545.         left: -7px;
  1546.         right: -7px;
  1547.         padding-right: 10px;
  1548.         z-index: -1
  1549.     }
  1550.     .moderator.listing-page .thing .flat-list.buttons li.first+li:not(.share),
  1551.     .moderator.listing-page .thing .flat-list.buttons li.share+li+li+li~li,
  1552.     .res.loggedin.listing-page .thing .flat-list.buttons li.report-button+li {
  1553.         opacity: 1;
  1554.         position: static;
  1555.         width: auto;
  1556.         width: initial
  1557.     }
  1558.     .moderator.listing-page .thing .flat-list.buttons li.share+li+li+li~li a {
  1559.         opacity: 1;
  1560.         position: static;
  1561.         height: initial;
  1562.         font-weight: initial;
  1563.         color: #777
  1564.     }
  1565.     .listing-page .flat-list.buttons li.share+li+li+li~li::after,
  1566.     .moderator.listing-page .thing .flat-list.buttons li.share+li+li+li~li a::after {
  1567.         display: none
  1568.     }
  1569.     .listing-page .flat-list.buttons li.share {
  1570.         right: 131px
  1571.     }
  1572.     .listing-page .flat-list.buttons li.share::after {
  1573.         background-image: url(%%spritesheet%%);
  1574.         background-position: -108px -136px;
  1575.         width: 18px;
  1576.         height: 18px
  1577.     }
  1578.     .listing-page .flat-list.buttons li.link-save-button,
  1579.     .listing-page .flat-list.buttons li.link-unsave-button {
  1580.         right: 94px
  1581.     }
  1582.     .listing-page .flat-list.buttons li.link-save-button::after,
  1583.     .listing-page .flat-list.buttons li.link-unsave-button::after {
  1584.         background-image: url(%%spritesheet%%);
  1585.         background-position: -154px 0;
  1586.         width: 18px;
  1587.         height: 18px
  1588.     }
  1589.     .listing-page .flat-list.buttons li.report-button {
  1590.         right: 57px
  1591.     }
  1592.     .listing-page .flat-list.buttons li.report-button::after {
  1593.         background-image: url(%%spritesheet%%);
  1594.         background-position: 0 -136px;
  1595.         width: 18px;
  1596.         height: 18px
  1597.     }
  1598.     .listing-page .flat-list.buttons li.share+li+li {
  1599.         right: 20px
  1600.     }
  1601.     .listing-page .flat-list.buttons li.share+li+li::after {
  1602.         background-image: url(%%spritesheet%%);
  1603.         background-position: -126px -136px;
  1604.         width: 18px;
  1605.         height: 18px
  1606.     }
  1607.     .moderator.listing-page .flat-list.buttons li.share+li+li+li {
  1608.         right: 57px
  1609.     }
  1610.     .moderator.listing-page .flat-list.buttons li.share+li+li+li::after {
  1611.         background-image: url(%%spritesheet%%);
  1612.         background-position: 0 -136px;
  1613.         width: 18px;
  1614.         height: 18px
  1615.     }
  1616.     .content .infobar {
  1617.         border: 1px solid #DDD;
  1618.         background: #FAFAFA;
  1619.         margin: 15px auto 0;
  1620.         max-width: 500px;
  1621.         width: 100%;
  1622.         text-align: center
  1623.     }
  1624.     .content .nav-buttons {
  1625.         height: 50px;
  1626.         line-height: 50px;
  1627.         text-align: right;
  1628.         padding-right: 30px;
  1629.         position: absolute;
  1630.         bottom: 0;
  1631.         width: 100%
  1632.     }
  1633.     .content .nav-buttons .next-suggestions a::before,
  1634.     .content .nav-buttons .nextprev a {
  1635.         border-radius: 0;
  1636.         padding: 4px 12px;
  1637.         font-weight: 100;
  1638.         color: #444;
  1639.         height: 24px;
  1640.         line-height: 24px;
  1641.         border: 1px solid #AAA;
  1642.         background: #FAFAFA;
  1643.         -webkit-transition: background .3s;
  1644.         transition: background .3s
  1645.     }
  1646.     .content .nav-buttons .next-suggestions a:hover::before,
  1647.     .content .nav-buttons .nextprev a:hover {
  1648.         background: #CCC
  1649.     }
  1650.     .content .nav-buttons .next-suggestions a:active::before,
  1651.     .content .nav-buttons .nextprev a:active {
  1652.         background: #BBB
  1653.     }
  1654.     .content .nav-buttons .nextprev {
  1655.         text-transform: capitalize;
  1656.         margin-right: 24px
  1657.     }
  1658.     .content .nav-buttons .nextprev a {
  1659.         text-transform: uppercase
  1660.     }
  1661.     .content .nav-buttons .next-suggestions a {
  1662.         visibility: hidden;
  1663.         font-size: 0
  1664.     }
  1665.     .content .nav-buttons .next-suggestions a::before {
  1666.         visibility: visible;
  1667.         font-size: 12px;
  1668.         content: 'Explore Subreddits';
  1669.         margin-left: 4px
  1670.     }
  1671. }
  1672.  
  1673. .comments-page .thing a.title:visited {
  1674.     color: #444
  1675. }
  1676.  
  1677. .commentarea {
  1678.     padding: 12px;
  1679.     color: #555
  1680. }
  1681.  
  1682. .commentarea .comment-visits-box {
  1683.     border: 1px solid #BBB;
  1684.     border-radius: 0;
  1685.     background: #FAFAFA;
  1686.     padding: 10px 24px
  1687. }
  1688.  
  1689. .commentarea .panestack-title {
  1690.     border-bottom: 1px solid #DDD;
  1691.     text-transform: capitalize;
  1692.     text-align: center;
  1693.     width: 75%;
  1694.     margin: 0 auto
  1695. }
  1696.  
  1697. .commentarea .panestack-title .title {
  1698.     font-size: 18px;
  1699.     font-weight: 100
  1700. }
  1701.  
  1702. .commentarea .panestack-title #REScommentSubToggle {
  1703.     padding: 4px 12px;
  1704.     border-radius: 0;
  1705.     background: #FAFAFA;
  1706.     -webkit-transition: background .2s;
  1707.     transition: background .2s;
  1708.     color: #666;
  1709.     font-weight: 400
  1710. }
  1711.  
  1712. .commentarea .panestack-title #REScommentSubToggle:hover {
  1713.     background: #DDD
  1714. }
  1715.  
  1716. .commentarea .menuarea {
  1717.     margin: 12px 0 0;
  1718.     font-weight: 100;
  1719.     text-align: center;
  1720.     display: block;
  1721.     overflow: visible
  1722. }
  1723.  
  1724. .commentarea .menuarea .loadFlat {
  1725.     margin-left: 12px
  1726. }
  1727.  
  1728. .commentarea .menuarea>.spacer:first-child {
  1729.     display: block;
  1730.     height: 35px;
  1731.     width: 100%
  1732. }
  1733.  
  1734. .commentarea .menuarea>.spacer+.spacer {
  1735.     width: 100%
  1736. }
  1737.  
  1738. .commentarea .menuarea #REScommentNavToggle [id^=nav],
  1739. .commentarea .menuarea .toggle .togglebutton {
  1740.     font-size: 12px;
  1741.     font-weight: 400;
  1742.     text-transform: capitalize;
  1743.     -webkit-transition: color .15s;
  1744.     transition: color .15s
  1745. }
  1746.  
  1747. .commentarea .menuarea #REScommentNavToggle [id^=nav]:hover,
  1748. .commentarea .menuarea .toggle .togglebutton:hover {
  1749.     color: #000
  1750. }
  1751.  
  1752. .commentarea .menuarea form.toggle:first-child {
  1753.     margin-left: 0
  1754. }
  1755.  
  1756. .commentarea .menuarea .spacer .dropdown-title:first-letter {
  1757.     text-transform: uppercase
  1758. }
  1759.  
  1760. .commentarea .menuarea .spacer .dropdown {
  1761.     text-transform: uppercase;
  1762.     border: 1px solid #DDD;
  1763.     margin-left: 4px;
  1764.     padding: 5px 5px 5px 12px;
  1765.     text-decoration: none;
  1766.     -webkit-transition: background .2s;
  1767.     transition: background .2s;
  1768.     background: rgba(0, 0, 0, .1)
  1769. }
  1770.  
  1771. .commentarea .menuarea .spacer .dropdown:hover {
  1772.     background: rgba(0, 0, 0, .2);
  1773.     cursor: pointer
  1774. }
  1775.  
  1776. .commentarea .menuarea .spacer .dropdown .selected {
  1777.     text-decoration: none;
  1778.     font-weight: 400
  1779. }
  1780.  
  1781. .commentarea .menuarea .spacer .drop-choices {
  1782.     margin-top: 14px;
  1783.     background: 0 0
  1784. }
  1785.  
  1786. .commentarea .menuarea .spacer .drop-choices>:first-child {
  1787.     border-top-left-radius: 2px;
  1788.     border-top-right-radius: 2px
  1789. }
  1790.  
  1791. .commentarea .menuarea .spacer .drop-choices>:last-child {
  1792.     border-bottom-right-radius: 2px;
  1793.     border-bottom-left-radius: 2px
  1794. }
  1795.  
  1796. .commentarea .menuarea .spacer .drop-choices a {
  1797.     background: rgba(60, 60, 60, .9);
  1798.     padding: 6px 24px;
  1799.     color: #EEE;
  1800.     text-transform: capitalize;
  1801.     text-align: left
  1802. }
  1803.  
  1804. .commentarea .menuarea .spacer .drop-choices a:hover {
  1805.     background: rgba(60, 60, 60, .95)
  1806. }
  1807.  
  1808. .commentarea .usertext-edit {
  1809.     width: 100%;
  1810.     max-width: 500px;
  1811.     margin: 20px auto 60px
  1812. }
  1813.  
  1814. .commentarea .usertext-edit .usertext-buttons button {
  1815.     background: rgba(0, 0, 0, .05);
  1816.     font-size: 11px;
  1817.     letter-spacing: 2px;
  1818.     color: #777;
  1819.     margin-top: 0
  1820. }
  1821.  
  1822. .commentarea .usertext-edit .usertext-buttons button:hover {
  1823.     background: rgba(0, 0, 0, .15)
  1824. }
  1825.  
  1826. .commentarea .usertext-edit .usertext-buttons button:active {
  1827.     background: rgba(0, 0, 0, .25)
  1828. }
  1829.  
  1830. .commentarea>.sitetable>.comment {
  1831.     background: #FAFAFA;
  1832.     padding: 12px;
  1833.     border-radius: 2px;
  1834.     margin: 0!important;
  1835.     overflow: visible
  1836. }
  1837.  
  1838. .commentarea .comment {
  1839.     overflow: visible!important;
  1840.     border: none!important;
  1841.     background: 0 0!important;
  1842.     padding: 0!important;
  1843.     margin: 0!important
  1844. }
  1845.  
  1846. .commentarea .comment .child {
  1847.     margin-left: 20px;
  1848.     margin-top: 0;
  1849.     border-left: none
  1850. }
  1851.  
  1852. .commentarea .comment.collapsed .entry {
  1853.     padding-bottom: 14px
  1854. }
  1855.  
  1856. .commentarea .comment .entry {
  1857.     position: relative;
  1858.     overflow: visible;
  1859.     padding: 14px 18px 12px;
  1860.     margin: 12px 12px 12px 40px;
  1861.     background: #FAFAFA;
  1862.     border-left: 3px solid #86abbe
  1863. }
  1864.  
  1865. .commentarea .comment .entry .flat-list.buttons {
  1866.     position: relative
  1867. }
  1868.  
  1869. .commentarea .comment .entry .usertext {
  1870.     clear: none;
  1871.     margin-top: 6px
  1872. }
  1873.  
  1874. .commentarea .comment .entry .usertext .md-container {
  1875.     display: inline-block;
  1876.     position: relative
  1877. }
  1878.  
  1879. .commentarea .comment .entry .usertext .md-container .md {
  1880.     background: 0 0!important
  1881. }
  1882.  
  1883. .commentarea .comment .entry .tagline {
  1884.     font-size: 10px;
  1885.     line-height: 16px;
  1886.     height: 16px;
  1887.     display: inline-block
  1888. }
  1889.  
  1890. .commentarea .comment .entry .tagline .author,
  1891. .commentarea .comment .entry .tagline .usertext-edit,
  1892. .commentarea .comment .entry .tagline span {
  1893.     position: relative
  1894. }
  1895.  
  1896. .commentarea .comment .entry .tagline .author.submitter {
  1897.     padding: 1px 6px;
  1898.     border-radius: 0;
  1899.     font-weight: 100;
  1900.     background: #6594ac!important;
  1901.     -webkit-transition: background .15s;
  1902.     transition: background .15s;
  1903.     color: #fff
  1904. }
  1905.  
  1906. .commentarea .comment .entry .tagline .author.submitter:hover {
  1907.     background: #3c5e6f!important
  1908. }
  1909.  
  1910. .commentarea .comment .entry .tagline blockquote {
  1911.     color: #777
  1912. }
  1913.  
  1914. .commentarea .comment .entry .tagline .author {
  1915.     font-size: 12px;
  1916.     font-weight: 400
  1917. }
  1918.  
  1919. .commentarea .comment .entry .tagline .submitter {
  1920.     color: #af882a
  1921. }
  1922.  
  1923. .commentarea .comment .entry .tagline time::after {
  1924.     display: none
  1925. }
  1926.  
  1927. .commentarea .comment .comment {
  1928.     margin-left: 18px!important
  1929. }
  1930.  
  1931. .commentarea .expand {
  1932.     margin-right: 4px
  1933. }
  1934.  
  1935. .footer-parent {
  1936.     position: relative
  1937. }
  1938.  
  1939. .footer-parent .footer {
  1940.     border-radius: 0;
  1941.     border: none;
  1942.     background: rgba(255, 255, 255, .1)
  1943. }
  1944.  
  1945. .footer-parent .footer a {
  1946.     color: #7D92B3
  1947. }
  1948.  
  1949. .footer-parent .footer a:first-letter {
  1950.     text-transform: uppercase
  1951. }
  1952.  
  1953. .footer-parent .footer a:visited {
  1954.     color: #A27DB3
  1955. }
  1956.  
  1957. .footer-parent .footer a.buygold {
  1958.     font-weight: 400
  1959. }
  1960.  
  1961. .footer-parent .footer .col {
  1962.     border-color: #666
  1963. }
  1964.  
  1965. .footer-parent .footer .col .title {
  1966.     color: #CCC;
  1967.     text-transform: uppercase;
  1968.     font-weight: 100;
  1969.     font-size: 14px;
  1970.     text-align: center;
  1971.     padding-bottom: 4px;
  1972.     margin-bottom: 10px;
  1973.     border-bottom: 1px solid #777
  1974. }
  1975.  
  1976. .submit-page div.content {
  1977.     text-align: center;
  1978.     padding-top: 34px;
  1979.     padding-bottom: 50px
  1980. }
  1981.  
  1982. .submit-page div.content .md {
  1983.     color: #666
  1984. }
  1985.  
  1986. .submit-page div.content input,
  1987. .submit-page div.content textarea {
  1988.     border: 1px solid #DFDFDF;
  1989.     font-size: 16px;
  1990.     text-align: center
  1991. }
  1992.  
  1993. .submit-page div.content>h1 {
  1994.     border-bottom: 1px solid #DDD;
  1995.     padding-bottom: 4px;
  1996.     font-size: 30px;
  1997.     font-weight: 100;
  1998.     text-transform: capitalize;
  1999.     width: 95%;
  2000.     margin: 0 auto 10px
  2001. }
  2002.  
  2003. .submit-page div.content form.content {
  2004.     margin: 0;
  2005.     width: 100%;
  2006.     max-width: 700px;
  2007.     display: inline-block
  2008. }
  2009.  
  2010. .submit-page div.content form.content .formtabs-content {
  2011.     width: 100%;
  2012.     text-align: center;
  2013.     border: none
  2014. }
  2015.  
  2016. .submit-page div.content form.content .formtabs-content .spacer {
  2017.     display: inline-block;
  2018.     width: 100%
  2019. }
  2020.  
  2021. .submit-page div.content form.content .formtabs-content .spacer .roundfield {
  2022.     font-size: inherit;
  2023.     margin: 12px!important;
  2024.     width: inherit;
  2025.     padding: 12px;
  2026.     background: #FAFAFA;
  2027.     border: 1px solid #DDD;
  2028.     border-radius: 2px;
  2029.     color: #666
  2030. }
  2031.  
  2032. .submit-page div.content form.content .formtabs-content .spacer .roundfield .usertext-edit {
  2033.     margin: 0 auto
  2034. }
  2035.  
  2036. .submit-page div.content form.content .formtabs-content .spacer .roundfield label {
  2037.     font-size: 13px
  2038. }
  2039.  
  2040. .submit-page div.content form.content .formtabs-content .spacer .roundfield #suggested-reddits h3 {
  2041.     margin-top: 16px;
  2042.     margin-bottom: 6px;
  2043.     text-transform: capitalize
  2044. }
  2045.  
  2046. .submit-page div.content form.content .formtabs-content .spacer .roundfield#url-field #suggest-title {
  2047.     text-align: center;
  2048.     margin-top: 10px
  2049. }
  2050.  
  2051. .submit-page div.content form.content .formtabs-content .spacer .roundfield#url-field #suggest-title button {
  2052.     margin: 0;
  2053.     display: inline-block
  2054. }
  2055.  
  2056. .submit-page div.content form.content .formtabs-content .spacer .roundfield.submit_text {
  2057.     color: inherit;
  2058.     max-height: none
  2059. }
  2060.  
  2061. .submit-page div.content form.content .formtabs-content .spacer .roundfield.submit_text .content {
  2062.     text-align: left
  2063. }
  2064.  
  2065. .submit-page div.content form.content .formtabs-content .spacer .roundfield.submit_text .md {
  2066.     font-size: inherit
  2067. }
  2068.  
  2069. .submit-page div.content form.content .formtabs-content .spacer .roundfield.submit_text .md>h1,
  2070. .submit-page div.content form.content .formtabs-content .spacer .roundfield.submit_text .md>p {
  2071.     text-align: center
  2072. }
  2073.  
  2074. .submit-page div.content form.content .formtabs-content .spacer .roundfield.submit_text .md>h1 {
  2075.     font-size: 22px;
  2076.     padding-bottom: 0;
  2077.     text-align: left;
  2078.     border: none;
  2079.     font-weight: 700
  2080. }
  2081.  
  2082. .submit-page div.content form.content .spacer>.roundfield .title,
  2083. .submit-page div.content form.content h1 {
  2084.     color: #444;
  2085.     text-transform: capitalize;
  2086.     display: block;
  2087.     width: 100%;
  2088.     border-bottom: 1px solid #DDD;
  2089.     padding-bottom: 2px;
  2090.     margin-bottom: 10px;
  2091.     font-weight: 100;
  2092.     font-size: 18px;
  2093.     position: relative
  2094. }
  2095.  
  2096. .submit-page div.content form.content .spacer>.roundfield .title .RESCharCounter,
  2097. .submit-page div.content form.content h1 .RESCharCounter {
  2098.     position: absolute;
  2099.     right: 0
  2100. }
  2101.  
  2102. .submit-page div.content form.content .tabmenu {
  2103.     position: absolute;
  2104.     z-index: 50;
  2105.     left: 15px;
  2106.     right: 15px;
  2107.     top: -48px;
  2108.     background: rgba(0, 0, 0, .5);
  2109.     border-top-left-radius: 2px;
  2110.     border-top-right-radius: 2px;
  2111.     padding: 0;
  2112.     text-align: center
  2113. }
  2114.  
  2115. .submit-page div.content form.content .tabmenu li a {
  2116.     border: none;
  2117.     background: 0 0
  2118. }
  2119.  
  2120. .submit-page div.content form.content .tabmenu li:selected a {
  2121.     font-size: inherit
  2122. }
  2123.  
  2124. .submit-page div.content form.content .info-notice {
  2125.     width: 80%;
  2126.     font-size: 13px;
  2127.     margin-left: auto!important;
  2128.     margin-right: auto!important
  2129. }
  2130.  
  2131. .submit-page div.content form.content button[type=submit] {
  2132.     padding: 14px 80px;
  2133.     background: #4d6e80;
  2134.     font-size: 18px;
  2135.     font-weight: 100;
  2136.     letter-spacing: 2px;
  2137.     margin-top: 40px;
  2138.     color: #EEE
  2139. }
  2140.  
  2141. .submit-page div.content form.content button[type=submit]:focus,
  2142. .submit-page div.content form.content button[type=submit]:hover {
  2143.     background: #395260
  2144. }
  2145.  
  2146. .submit-page div.content form.content button[type=submit]:active {
  2147.     background: #304550
  2148. }
  2149.  
  2150. .wiki-page .infobar {
  2151.     margin-bottom: 30px
  2152. }
  2153.  
  2154. .wiki-page .wikititle {
  2155.     width: 100%;
  2156.     display: block;
  2157.     text-align: center;
  2158.     margin-top: 40px
  2159. }
  2160.  
  2161. .wiki-page .wikititle strong {
  2162.     font-weight: 100;
  2163.     text-transform: uppercase;
  2164.     font-size: 30px
  2165. }
  2166.  
  2167. .wiki-page .pageactions {
  2168.     margin: 0;
  2169.     width: 100%;
  2170.     border-right: none;
  2171.     border-left: none;
  2172.     text-align: center;
  2173.     padding: 0;
  2174.     height: 50px;
  2175.     border-radius: 0;
  2176.     background: #FAFAFA
  2177. }
  2178.  
  2179. .wiki-page .pageactions a.wikiaction {
  2180.     margin: 0;
  2181.     border-radius: 0;
  2182.     width: 90px;
  2183.     padding: 0;
  2184.     text-align: center;
  2185.     text-transform: uppercase;
  2186.     font-weight: 300;
  2187.     height: 50px;
  2188.     line-height: 50px
  2189. }
  2190.  
  2191. .wiki-page .wiki-page-content {
  2192.     padding: 20px 100px 100px;
  2193.     width: 100%;
  2194.     margin: 0;
  2195.     font-size: 12px
  2196. }
  2197.  
  2198. .wiki-page .wiki-page-content em,
  2199. .wiki-page .wiki-page-content li,
  2200. .wiki-page .wiki-page-content p {
  2201.     font-size: 12px;
  2202.     font-family: helvetica, verdana, arial, sans-serif
  2203. }
  2204.  
  2205. .wiki-page .wiki-page-content em {
  2206.     color: #999
  2207. }
  2208.  
  2209. .wiki-page .wiki-page-content .wiki>.toc>ul {
  2210.     background: #FAFAFA;
  2211.     border: 1px solid #BBB;
  2212.     font-size: 13px;
  2213.     max-width: 400px;
  2214.     padding: 16px 34px
  2215. }
  2216.  
  2217. .wiki-page .wiki-page-content .wiki>.toc>ul ul {
  2218.     border-left: 1px solid #CCC
  2219. }
  2220.  
  2221. .flair-settings {
  2222.     padding-top: 20px
  2223. }
  2224.  
  2225. .flair-settings>h1 {
  2226.     text-align: center;
  2227.     text-transform: capitalize;
  2228.     font-weight: 300
  2229. }
  2230.  
  2231. .flair-settings>h1 strong {
  2232.     font-weight: 300;
  2233.     text-transform: none
  2234. }
  2235.  
  2236. .flair-settings .linefield {
  2237.     margin: 15px auto;
  2238.     border: 1px solid #BBB;
  2239.     background: #FAFAFA;
  2240.     padding: 12px;
  2241.     border-radius: 0;
  2242.     font-size: 12px
  2243. }
  2244.  
  2245. .flair-settings .linefield .title {
  2246.     color: #222;
  2247.     font-weight: 300;
  2248.     text-transform: capitalize;
  2249.     font-size: 14px;
  2250.     margin-bottom: 8px;
  2251.     display: block;
  2252.     border-bottom: 1px solid #CCC;
  2253.     padding-bottom: 4px
  2254. }
  2255.  
  2256. .flair-settings .linefield label,
  2257. .tabpane-content .linefield.flair-jump .linefield-content {
  2258.     font-size: 12px
  2259. }
  2260.  
  2261. .flair-settings .save-button {
  2262.     text-align: center
  2263. }
  2264.  
  2265. .flair-settings+.tabmenu {
  2266.     text-align: center;
  2267.     width: 100%;
  2268.     background: #EEE;
  2269.     margin-top: 50px;
  2270.     display: block;
  2271.     border-bottom: 1px solid #BBB;
  2272.     border-top: 1px solid #BBB
  2273. }
  2274.  
  2275. .flair-settings+.tabmenu li.selected {
  2276.     border-color: #2F6C82
  2277. }
  2278.  
  2279. .flair-settings+.tabmenu li.selected a {
  2280.     color: #B92035!important
  2281. }
  2282.  
  2283. .flair-settings+.tabmenu li:hover {
  2284.     background: rgba(0, 0, 0, .1)
  2285. }
  2286.  
  2287. .flair-settings+.tabmenu li:hover a {
  2288.     color: #333
  2289. }
  2290.  
  2291. .tabpane-content {
  2292.     background: #FAFAFA;
  2293.     border: none;
  2294.     padding: 30px 30px 50px
  2295. }
  2296.  
  2297. .tabpane-content .linefield.flair-jump {
  2298.     margin: 0 auto 15px;
  2299.     background: #E4E4E4
  2300. }
  2301.  
  2302. li .flairselector {
  2303.     background: #FAFAFA;
  2304.     padding: 12px!important
  2305. }
  2306.  
  2307. li .flairselector h2 {
  2308.     margin-bottom: 14px;
  2309.     font-weight: 300;
  2310.     color: #333;
  2311.     text-transform: capitalize;
  2312.     font-size: 14px;
  2313.     background: 0 0
  2314. }
  2315.  
  2316. li .flairselector .linkflair {
  2317.     text-align: center
  2318. }
  2319.  
  2320. li .flairselector .flairoptionpane ul {
  2321.     width: 100%
  2322. }
  2323.  
  2324. li .flairselector .flairoptionpane ul>li,
  2325. li .flairselector .flairselection .linkflair {
  2326.     padding: 6px
  2327. }
  2328.  
  2329. li .flairselector .flairoptionpane ul .linkflair a.title,
  2330. li .flairselector .flairselection .linkflair a {
  2331.     display: inline!important
  2332. }
  2333.  
  2334. #userTaggerToolTip {
  2335.     border-radius: 0;
  2336.     height: auto;
  2337.     height: initial!important
  2338. }
  2339.  
  2340. #userTaggerToolTip h3 {
  2341.     height: 40px;
  2342.     background: #FAFAFA;
  2343.     color: #444;
  2344.     font-weight: 300
  2345. }
  2346.  
  2347. #userTaggerToolTip #userTaggerClose {
  2348.     border-radius: 0
  2349. }
  2350.  
  2351. #userTaggerToolTip #userTaggerPreview,
  2352. #userTaggerToolTip #userTaggerToolTip input[type=text],
  2353. #userTaggerToolTip .userTagLink.hasTag {
  2354.     border-radius: 0;
  2355.     padding: 3px 6px;
  2356.     height: auto;
  2357.     height: initial
  2358. }
  2359.  
  2360. #userTaggerToolTip #userTaggerPreview {
  2361.     min-height: 22px
  2362. }
  2363.  
  2364. #userTaggerToolTip #userTaggerToolTip #userTaggerSave {
  2365.     border-radius: 0;
  2366.     border: 1px solid #64AF70;
  2367.     border: none;
  2368.     padding: 6px 16px;
  2369.     font-weight: 100;
  2370.     text-transform: uppercase;
  2371.     background: rgba(91, 136, 98, .85);
  2372.     -webkit-transition: background .2s;
  2373.     transition: background .2s
  2374. }
  2375.  
  2376. #userTaggerToolTip #userTaggerToolTip #userTaggerSave:hover {
  2377.     background: #5b8862
  2378. }
  2379.  
  2380. #userTaggerToolTip #userTaggerToolTip .toggleButton {
  2381.     height: initial;
  2382.     width: 100px;
  2383.     display: -webkit-flex;
  2384.     display: -ms-flexbox;
  2385.     display: flex
  2386. }
  2387.  
  2388. #userTaggerToolTip #userTaggerToolTip .toggleButton:not(.enabled) .toggleOn {
  2389.     background: rgba(16, 122, 196, .8);
  2390.     border-right: none
  2391. }
  2392.  
  2393. #userTaggerToolTip #userTaggerToolTip .toggleButton.enabled .toggleOff {
  2394.     border-left: none;
  2395.     background: rgba(208, 32, 32, .8)
  2396. }
  2397.  
  2398. #userTaggerToolTip #userTaggerToolTip .toggleButton .toggleOff,
  2399. #userTaggerToolTip #userTaggerToolTip .toggleButton .toggleOn {
  2400.     box-sizing: content-box;
  2401.     border-radius: 0;
  2402.     border: 1px solid #BBB;
  2403.     -webkit-transition: background .2s;
  2404.     transition: background .2s;
  2405.     text-transform: uppercase;
  2406.     font-weight: 300;
  2407.     width: 100%
  2408. }
  2409.  
  2410. #RESShortcutsAdd,
  2411. #RESShortcutsEditContainer,
  2412. #RESShortcutsLeft,
  2413. #RESShortcutsRight,
  2414. #RESShortcutsSort,
  2415. #RESShortcutsTrash {
  2416.     background: 0 0!important;
  2417.     color: #EEE!important
  2418. }
  2419.  
  2420. .RESDialogSmall.livePreview {
  2421.     margin-top: 20px
  2422. }
  2423.  
  2424. @media (min-width:1150px) {
  2425.     #header #header-bottom-right:not(.res-navTop) {
  2426.         padding: 0;
  2427.         background: 0 0
  2428.     }
  2429.     #header #header-bottom-right:not(.res-navTop) a {
  2430.         color: #FFF;
  2431.         font-weight: 100;
  2432.         font-size: 13px
  2433.     }
  2434.     #header #header-bottom-right:not(.res-navTop) .separator {
  2435.         background: rgba(60, 60, 60, .9);
  2436.         width: 45px;
  2437.         height: 45px;
  2438.         line-height: 45px;
  2439.         text-align: center;
  2440.         display: block;
  2441.         overflow: hidden;
  2442.         font-size: 0;
  2443.         margin: 0;
  2444.         position: absolute;
  2445.         top: 0;
  2446.         right: 0;
  2447.         z-index: -1;
  2448.         border-radius: 2px
  2449.     }
  2450.     #header #header-bottom-right:not(.res-navTop) .separator::before {
  2451.         content: '☰';
  2452.         color: #fff;
  2453.         font-size: 20px
  2454.     }
  2455.     #header #header-bottom-right:not(.res-navTop) .separator~.separator {
  2456.         display: none;
  2457.         padding: 12px
  2458.     }
  2459.     #header #header-bottom-right:not(.res-navTop):hover .separator {
  2460.         background: #3c3c3c
  2461.     }
  2462.     #header #header-bottom-right:not(.res-navTop):hover .message-count {
  2463.         display: none
  2464.     }
  2465.     #header #header-bottom-right:not(.res-navTop)>.user a,
  2466.     #header #header-bottom-right:not(.res-navTop)>a#mail,
  2467.     #header #header-bottom-right:not(.res-navTop)>a#modmail,
  2468.     #header #header-bottom-right:not(.res-navTop)>form.logout a,
  2469.     #header #header-bottom-right:not(.res-navTop)>ul a {
  2470.         padding: 13px 10px 13px 40px;
  2471.         display: inline-block;
  2472.         text-decoration: none
  2473.     }
  2474.     #header #header-bottom-right:not(.res-navTop):hover>a#modmail {
  2475.         display: block
  2476.     }
  2477.     #header #header-bottom-right:not(.res-navTop)>a#modmail {
  2478.         display: none;
  2479.         margin: 0;
  2480.         background: rgba(60, 60, 60, .9);
  2481.         width: 100%;
  2482.         position: static;
  2483.         text-transform: capitalize
  2484.     }
  2485.     #header #header-bottom-right:not(.res-navTop)>a#modmail:hover {
  2486.         background: #3c3c3c
  2487.     }
  2488.     #header #header-bottom-right:not(.res-navTop):hover>a#mail {
  2489.         display: block
  2490.     }
  2491.     #header #header-bottom-right:not(.res-navTop)>a#mail {
  2492.         display: none;
  2493.         margin: 0;
  2494.         background: rgba(60, 60, 60, .9);
  2495.         width: 100%;
  2496.         position: static;
  2497.         text-transform: capitalize
  2498.     }
  2499.     #header #header-bottom-right:not(.res-navTop)>a#mail:hover {
  2500.         background: #3c3c3c
  2501.     }
  2502.     #header #header-bottom-right:not(.res-navTop):hover>ul {
  2503.         display: block
  2504.     }
  2505.     #header #header-bottom-right:not(.res-navTop)>ul {
  2506.         display: none;
  2507.         margin: 0;
  2508.         background: rgba(60, 60, 60, .9);
  2509.         width: 100%;
  2510.         position: static;
  2511.         text-transform: capitalize
  2512.     }
  2513.     #header #header-bottom-right:not(.res-navTop)>ul:hover {
  2514.         background: #3c3c3c
  2515.     }
  2516.     #header #header-bottom-right:not(.res-navTop):hover>.user {
  2517.         display: block
  2518.     }
  2519.     #header #header-bottom-right:not(.res-navTop)>.user {
  2520.         display: none;
  2521.         margin: 0;
  2522.         background: rgba(60, 60, 60, .9);
  2523.         width: 100%;
  2524.         position: static;
  2525.         text-transform: capitalize
  2526.     }
  2527.     #header #header-bottom-right:not(.res-navTop)>.user:hover {
  2528.         background: #3c3c3c
  2529.     }
  2530.     #header #header-bottom-right:not(.res-navTop):hover>form.logout {
  2531.         display: block
  2532.     }
  2533.     #header #header-bottom-right:not(.res-navTop)>form.logout {
  2534.         display: none;
  2535.         margin: 0;
  2536.         background: rgba(60, 60, 60, .9);
  2537.         width: 100%;
  2538.         position: static;
  2539.         text-transform: capitalize
  2540.     }
  2541.     #header #header-bottom-right:not(.res-navTop)>form.logout:hover {
  2542.         background: #3c3c3c
  2543.     }
  2544.     #header #header-bottom-right:not(.res-navTop) #mail,
  2545.     #header #header-bottom-right:not(.res-navTop) #modmail {
  2546.         text-indent: 0;
  2547.         height: initial
  2548.     }
  2549.     #header #header-bottom-right:not(.res-navTop) .user {
  2550.         margin-top: 50px;
  2551.         padding-right: 55px;
  2552.         font-size: 0
  2553.     }
  2554.     #header #header-bottom-right:not(.res-navTop)>a#mail.havemail {
  2555.         background: rgba(105, 38, 38, .6)
  2556.     }
  2557.     #header #header-bottom-right:not(.res-navTop)>a#mail.havemail:hover {
  2558.         background: rgba(105, 38, 38, .7)
  2559.     }
  2560. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement