Advertisement
Guest User

Pink Lynx WIP webring incl CSS

a guest
Jan 18th, 2022
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 15.67 KB | None | 0 0
  1. pink
  2.  
  3. /* Small text in post area */
  4. .small {
  5.   font-size: 75%;
  6.   text-decoration: none;
  7. }
  8.  
  9. /* "rules" in post area */
  10. .small a {
  11.   color: #80002c;
  12.   text-decoration: none;
  13. }
  14.  
  15. /* "rules" hover in post area */
  16. .small a:hover {
  17.   color: #c48899;
  18. }
  19.  
  20. /* Theme selector */
  21. #themeSelector {
  22.   color: #80002c;
  23.   background: #ffdddc;
  24.   font-size: 100%;
  25.   border: 1px solid #80002c;
  26. }
  27.  
  28. /* Horizontal line */
  29. hr {
  30.   height: 0px;
  31.   border-width: 2px medium medium;
  32.   border-style: dashed none none;
  33.   border-color: #80002c;
  34. }
  35.  
  36. /* Links in nav, "hide file", some side catalog text and signs before "Anonymous" */
  37. .coloredIcon {
  38.   color: #80002c;
  39.   cursor: pointer;
  40. }
  41.  
  42. /* nav links and buttons before "/fa/g" hover */
  43. .coloredIcon:hover,
  44. span.hideButton:hover,
  45. span.extraMenuButton:hover,
  46. span.watchButton:hover {
  47.   color: #c48899;
  48.   text-shadow: none;
  49. }
  50.  
  51. /* Links, includes side catalog text */
  52. a {
  53.   color: #c48899;
  54.   text-decoration: none;
  55. }
  56.  
  57. /* Mouse hover over elements with <a> tag */
  58. a:hover, .glowOnHover:hover {
  59.   text-shadow: none;
  60.   color:  #4d4dff;
  61. }
  62.  
  63. /* Area for inputing text */
  64. input, select, textarea {
  65.   box-shadow: none;
  66.   border: 1px solid #80002c;
  67.   border-radius: 0px;
  68.   background: #ffe6ea;
  69.   color: #80002c;
  70.   font-family: 'Hack', monospace, sans-serif;
  71.   font-size: 80%;
  72. }
  73.  
  74.  
  75. [type="text"],
  76. [type="password"],
  77. [type="number"],
  78. textarea {
  79.   background-color: white;
  80.   color: black;
  81.  
  82.   box-shadow: none;
  83.   border: 1px solid #80002c;
  84.   border-radius: 0px;
  85.   padding: 0.25rem;
  86.   background: #ffe6ea;
  87. }
  88.  
  89. /* Buttons */
  90. input[type=button], input[type=submit], button, .dropzone, .selectedCell
  91.   {
  92.   border: 0px #07371F;
  93.   border-radius: 5px;
  94.   background: #ffcccb;
  95.   color: #80002c;
  96.   padding-left: 0.25em;
  97.   font-family: 'Hack', monospace, sans-serif;
  98.   font-size: 80%;
  99.   font-weight: bold;
  100.   margin-top: 0.5em;
  101.   margin-bottom: 0.5em;
  102.   cursor: pointer;
  103. }
  104.  
  105. /* body styles, inherited by whole page */
  106. body {
  107.   position: relative;
  108.   color: #80002c;
  109.   background: #ffe4e6;
  110.   font-family: 'Hack', monospace, sans-serif;
  111.   font-size: 100%;
  112.   margin: 0px;
  113. }
  114.  
  115. /* header and nav / top of page styles */
  116.  
  117. /* Navigator bar */
  118. .top-nav { position:sticky; }
  119. .top-nav {
  120.   top: 0;
  121.   width: 100%;
  122.   background-color: #ffdddc;
  123.   box-shadow: 0px 2px 5px;
  124.   border-bottom: 0px;
  125.   padding-bottom: 3px;
  126.   font-size: 70%;
  127.   text-align: center;
  128.   z-index: 1;
  129.   max-width:100vw;
  130. }
  131.  
  132.  .divMessage{max-width:100%;text-overflow:wrap;word-break:break-word;overflow:hidden;float:left}
  133.  
  134.  
  135. /* Text in navigator bar */
  136. nav span, nav a {
  137.   display: inline-block;
  138.   text-decoration: none;
  139.   margin: 0 0.2em;
  140. }
  141.  
  142. /* That small logo after "rules" in post area */
  143. a.rules:after {
  144.   font-family: Icons;
  145.   content: "\e052";
  146.   margin-right: 0.5em;
  147.   color: #80002c;
  148.   height: 80%;
  149.   font-size: 80%;
  150.   padding-left: 0.25em;
  151.   vertical-align: middle;
  152. }
  153.  
  154. /* markdown */
  155. .greenText {
  156.   color: #789922;
  157. }
  158.  
  159. .redText {
  160.   color: #AF0A0F;
  161.   font-weight: bold;
  162.   font-size: 125%;
  163. }
  164.  
  165. span.spoiler {
  166.   background: #000000;
  167.   color: #000000;
  168.   padding: 0 1px;
  169. }
  170.  
  171. /* Mouse hover over spoiler text */  
  172. .spoiler:hover {
  173.   color: #80002c;
  174.   background: none;
  175. }
  176.  
  177. /* footer styles */
  178. footer {
  179.   width: 100%;
  180.   margin: 3em 0px 2em 0px;
  181.   text-align: center;
  182.   font-size: 75%;
  183. }
  184.  
  185. /* this has to go down here to override anything above it */
  186. .hidden {
  187.   display: none;
  188. }
  189.  
  190. #settingsWrapper input.hidden {
  191.   display: none;
  192.   box-shadow: none;
  193. }
  194.  
  195. /* Settings menu header text */
  196. .floatingMenu .headerLabel {
  197.   font-size: 80%;
  198. }
  199.  
  200. /* menu buttons */
  201. .menuClose {
  202.   color: #80002c;
  203.   cursor: pointer;
  204.   float: right;
  205.  
  206.   font-size: 1.5rem;
  207.   line-height: 1.5rem;
  208. }
  209.  
  210. /* Floating menu header */
  211. .floatingMenu .header, .floatingMenu .headerLabel {
  212.   cursor: pointer;
  213. }
  214.  
  215. /* Settings, post and quick reply fields */
  216. #newPostFieldset, #quick-reply table, .modalDecorationPanel,
  217. .floatingMenu, #settingsFieldset, .reportFieldset {
  218.   border: 1px dashed #80002c;
  219.   background: #ffdddc;
  220. }
  221.  
  222. .settingsTab {
  223.   background-color: #ffe6ea;
  224.   padding: 0.25rem 0.5rem;
  225.   margin: 0.25rem;
  226.   border-radius: 4px;
  227. }
  228.  
  229. #selectedTab {
  230.   background-color: #b3647a;
  231.   color: white;
  232. }
  233.  
  234.  /* "Show forms" at the end */
  235. #showFormsButton {
  236.   color: #80002c;
  237. }
  238.  
  239. a, .checkedFavouriteButton:before,
  240.   #selectedTab {
  241.   color: #c48899;
  242.   cursor: pointer
  243. }
  244.  
  245. /* "/fa/ - Fashion" and "Dress to Impress" */
  246. .boardHeader p#labelName, p#labelDescription {
  247.   font-size: 200%;
  248.   color: #80002c;
  249.   display: inline-block;
  250. }
  251.  
  252. /* Posting form labels */
  253. #postingForm th{
  254.   border: 0px;
  255.   background: #ffcccb;
  256. }
  257.  
  258. /* Tab titles in settings */
  259. .settingsTab {
  260.   color: #80002c;
  261. }
  262.  
  263.  
  264. /* Selected tab in settings */
  265. #selectedTab {
  266.   text-shadow: none;
  267.   color: #c48899;
  268. }
  269.  
  270. /* Text areas when clicked on */
  271. #postingForm input:focus, #postingForm textarea:focus,
  272.   .modalDecorationPanel input[type='text']:focus, #settingsMenu input[type='text']:focus,
  273.   #settingsMenu textarea:focus {
  274.   box-shadow: none;
  275. }
  276.  
  277. /* Settings */
  278. .floatingMenu {
  279.   color: #80002c85;
  280.   box-shadow: 4px 4px 4px;
  281. }
  282.  
  283. /* Catalog cell */
  284. .catalogCell{
  285. color: #80002c;
  286. background-color: #ffcccb;
  287. box-shadow: none;
  288. margin-bottom: 20px;
  289. padding: 10px;
  290. border: 1px solid #80002c;
  291.     box-shadow: 3px 3px 3px #80002c54;
  292. }
  293.  
  294. /* Checkbox(?) */
  295. input[type=checkbox].postingCheckbox+label:before {
  296.   font-family: Icons;
  297.   content: "\e0db";
  298.   margin-right: 0.5em;
  299.   color: #80002c;
  300.   display: inline-block;
  301.   cursor: pointer;
  302. }
  303.  
  304.  /* Reply area */
  305. .innerPost {
  306.   border: 1px solid #80002c;
  307.   background: pink;
  308. }
  309.  
  310. /* Focused reply */
  311. div.markedPost {
  312.   border: 1px dashed #80002c;
  313. }
  314.  
  315. /* "Open file" */
  316. a.nameLink {
  317.   color: #80002c;
  318. }
  319.  
  320. /* Mouse hover "Open file" and "(Hide file)" */
  321. a.nameLink:hover,
  322. a.hideFileButton:hover {
  323.   color: #c48899;
  324.   text-shadow: none;
  325. }
  326.  
  327. /* Post created time */
  328. .labelCreated {
  329.   color: #80002c;
  330.   cursor: context-menu;
  331. }
  332.  
  333. /* Quotes*/
  334. .linkQuote, .linkSelf, .panelBacklinks a,
  335. .quoteLink {
  336.   font-weight: normal;
  337.   color: #80002c;
  338. }
  339.  
  340. /* Mouse hover quotes */
  341. .linkQuote:hover, .linkSelf:hover, .panelBacklinks a:hover,
  342. .quoteLink:hover {
  343.   text-shadow:  none;
  344.   color: blue;
  345. }
  346.  
  347. /* Name with email */
  348. a.linkName {
  349.   color: #B3003E;
  350. }
  351.  
  352. /* Name and mouse hover name*/
  353. a.noEmailName,
  354. a.noEmailName:hover {
  355.   cursor: context-menu;
  356.   color: #b3003e;
  357. }
  358.  
  359. /* Subject */
  360. span.labelSubject {
  361.   color: #e60050;
  362. }
  363.  
  364. /* Role */
  365. span.labelRole:before {
  366.   color: #ff0000;
  367. }
  368.  
  369. /* ==RED TEXT== */
  370. .redText {
  371.   color: #ff0000;
  372. }
  373.  
  374. /* Close buttons*/
  375. span#closeSettingsMenuButton:hover,
  376. span#closeSideCatalogButton:hover,
  377. span#closeWatcherMenuButton:hover {
  378.   color: #80002c;
  379. }
  380.  
  381. /* Watched cell subject */
  382. label.watchedCellLabel a,
  383. span.watchedCellCloseButton:hover {
  384.   color: #80002c;
  385. }
  386.  
  387. /* Watched cell label hover */
  388. label.watchedCellLabel a:hover {
  389.   color: #c48899;
  390. }
  391.  
  392. /* "Manage board" and "moderate thread" */
  393. #linkManagement, #linkMod {
  394.   color: #80002c;
  395. }
  396.  
  397. /* "Manage board" and "moderate thread" mouse hover*/
  398. #linkManagement:hover, #linkMod:hover {
  399.   color: #c48899;
  400. }
  401.  
  402. /* "Manage board" and "moderate thread" */
  403. #linkModeration {
  404.   color: #80002c;
  405. }
  406.  
  407. /* "Manage board" and "moderate thread" mouse hover*/
  408. #linkModeration:hover {
  409.   color: #c48899;
  410. }
  411.  
  412. span#divPages a {
  413.   color: #80002c;
  414. }
  415.  /* Page number hover*/
  416. span#divPages a:hover {
  417.   color: #c48899;
  418. }
  419.  /* Quick reply header*/
  420. #quick-reply th {
  421.   border: none;
  422. }
  423.  
  424. a.linkReply {
  425.   font-weight: normal;
  426. }
  427.  
  428. /* width */
  429. ::-webkit-scrollbar {
  430.   width: 7px;
  431.   height: 7px;
  432. }
  433.  
  434. /* Track */
  435. ::-webkit-scrollbar-track {
  436.   background: #ffcccb;
  437. }
  438.  
  439. /* Handle */
  440. ::-webkit-scrollbar-thumb {
  441.   background: #b3647a;
  442. }
  443.  
  444. /* Handle on hover */
  445. ::-webkit-scrollbar-thumb:hover {
  446.   background: #80002c;
  447. }
  448. #divLatestPosts .latestPostCell {
  449.     background: #ffdddc;
  450.     border: 1px solid #80002c;
  451.     box-shadow: 3px 3px 3px #80002c54;
  452. }
  453. #divLatestImages img {
  454.     background: #ffdddc;
  455.     border: 1px solid #f4b8c2a6;
  456. }
  457. .topBoards a {
  458.     background: #ffdddc;
  459. }
  460. .innerPost {
  461.     background: #ffcccb;
  462.     box-shadow: 3px 3px 3px #80002c54;
  463. }
  464. div.markedPost {
  465.     background: #eab5b4;
  466. }
  467. a {
  468.     color: #80002c;
  469.     text-decoration: none;
  470. }
  471. .linkQuote:Hover, .linkSelf:Hover, .panelBacklinks a:Hover, .quoteLink:Hover {
  472.     font-weight: normal;
  473.     color: #c48899;
  474. }
  475. #navOptionsSpan a:Hover {
  476.     color: #c48899;
  477. }
  478. .originalNameLink {
  479.     color: #80002c;
  480. }
  481. .coloredIcon:Hover {
  482.     color: #c48899;
  483. }
  484. #divLatestPosts .latestPostCell, .innerPost, .sideCatalogCell, .markedPost, .sideCatalogMarkedCell, .catalogCell {
  485.     border: 1px solid #80002c;
  486. }
  487. .boardPages {
  488.     color: #80002c;
  489.     padding: 0.1em 0.25em;
  490. }
  491. a {
  492.     color: #80002c;
  493.     text-decoration: none;
  494. }
  495. a:Hover {
  496.     color: #c48899;
  497.     text-decoration: none;
  498. }
  499.  
  500. /* Side catalog */
  501. #sideCatalogDiv {
  502.   color: #80002c;
  503.   background: #ffe4e6;
  504. }
  505.  
  506. a.sideCatalogCell:hover {
  507.   text-shadow: none;
  508.   color: #c48899;
  509. }
  510.  
  511. /* Side catalog cell */
  512. .sideCatalogCell {
  513. background: #ffcccb;
  514. border: 1px solid #80002c;
  515.     box-shadow: 3px 3px 3px #80002c54;
  516. }
  517.  
  518. /* Side catalog selected cell */
  519. .sideCatalogMarkedCell {
  520.   border: 1px dashed #80002c;
  521.   background: #EAB5B4;
  522.   box-shadow: none;
  523. }
  524.  
  525. .sideCatalogMarkedCell:hover {
  526.   color: #c48899;
  527.   text-shadow: none;
  528. }
  529.  
  530. /* Also side catalog */
  531. #sideCatalog {
  532.   color: #80002c;
  533.   background: #ffe4e6;
  534. },
  535.  
  536.  
  537. @keyframes webringbutton-rainbow {
  538.   from, to { color: red; text-shadow-color: red }
  539.   12.5% { color: orange; text-shadow-color: orange }
  540.   25% { color: yellow; text-shadow-color: yellow }
  541.   37.5% { color: lime; text-shadow-color: lime }
  542.   50% { color: green; text-shadow-color: green }
  543.   62.5% { color: #66f; text-shadow-color: blue }
  544.   75% { color: #f6f; text-shadow-color: purple }
  545.   87.5% { color: magenta; text-shadow-color: magenta }
  546. }
  547. .WebringButton {
  548.   font-size: 120%;
  549.  
  550.   text-shadow: 0 0 5px;
  551.   animation: webringbutton-rainbow 3s linear infinite;
  552. }
  553.  
  554. .WebringWrapper {
  555.   position: fixed;
  556.   z-index: 1000000;
  557.   top: 0;
  558.   left: 0;
  559.   width: 100%;
  560.   height: 100%;
  561. }
  562.  
  563. .WebringWrapper--closing {
  564.   pointer-events: none;
  565. }
  566.  
  567. @keyframes webringwrappershade-fadein {
  568.   from { opacity: 0 } to { opacity: 0.6 }
  569. }
  570. .WebringWrapper__shade {
  571.   position: absolute;
  572.   top: 0;
  573.   left: 0;
  574.   right: 0;
  575.   bottom: 0;
  576.   background-color: black;
  577.   opacity: 0.6;
  578.  
  579.   animation: webringwrappershade-fadein .3s ease;
  580. }
  581.  
  582. @keyframes webringwrappershade-fadeout {
  583.   from { opacity: 0.6 } to { opacity: 0 }
  584. }
  585. .WebringWrapper--closing .WebringWrapper__shade {
  586.   opacity: 0;
  587.   animation: webringwrappershade-fadeout .3s ease;
  588. }
  589.  
  590. @keyframes webring-slidein {
  591.   from { transform: translate(-50%, -50%) scale(1.3); opacity: 0 }
  592.   to { translate(-50%, -50%) scale(1); opacity: 1 }
  593. }
  594. .Webring {
  595.   position: absolute;
  596.   top: 50%;
  597.   left: 50%;
  598.   transform: translate(-50%, -50%) scale(1);
  599.  
  600.   font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  601.  
  602.   min-width: 90%;
  603.   min-height: 500px;
  604.   max-height: 95%;
  605.  
  606.   background-image: linear-gradient(to right bottom, #c48899, #b3647a);
  607.   color: #ffe4e6;
  608.  
  609.   animation: webring-slidein .3s cubic-bezier(.21,.75,0,1);
  610. }
  611.  
  612. @keyframes webring-slideout {
  613.   from { transform: translate(-50%, -50%) scale(1); opacity: 1 }
  614.   to { translate(-50%, -50%) scale(1.3); opacity: 0 }
  615. }
  616. .WebringWrapper--closing .Webring {
  617.   transform: translate(-50%, -50%) scale(1.3);
  618.   opacity: 0;
  619.   animation: webring-slideout .3s cubic-bezier(.21,.75,0,1);
  620. }
  621.  
  622. .Webring__close {
  623.   font-size: 3rem;
  624.   position: absolute;
  625.   z-index: 100;
  626.  
  627.   top: 2rem;
  628.   right: 2rem;
  629.   line-height: 0;
  630.  
  631.   cursor: pointer;
  632. }
  633.  
  634. /* layout */
  635.  
  636. .Webring__inner {
  637.   position: absolute;
  638.   height: 100%;
  639.   width: 100%;
  640.   top: 0;
  641.   left: 0;
  642.  
  643.   display: grid;
  644.   grid-template-columns: 3rem auto;
  645. }
  646.  
  647. .WebringTabs {
  648.   -webkit-user-select: none;
  649.   -moz-user-select: none;
  650.   -ms-user-select: none;
  651.   -o-user-select: none;
  652.   user-select: none;
  653. }
  654.  
  655. .WebringTabs__button {
  656.   width: 3rem;
  657.   height: 3rem;
  658.   position: relative;
  659.   cursor: pointer;
  660. }
  661.  
  662. .WebringTabs__button--selected {
  663.   cursor: default;
  664. }
  665.  
  666. .WebringTabs__button__strip {
  667.   position: absolute;
  668.   z-index: 100;
  669.   top: 0;
  670.   left: 0;
  671.   height: 3rem;
  672.  
  673.   white-space: nowrap;
  674.  
  675.   overflow: hidden;
  676.  
  677.   width: 3rem;
  678.   background-color: #80002c;
  679.   color: #ffdddc;
  680.   box-shadow: none;
  681.   transition: .25s ease;
  682.   transition-property: width, background-color, color, box-shadow;
  683. }
  684.  
  685. .WebringTabs__button__strip:hover {
  686.   width: 12rem;
  687.   background-color: #b3647a;
  688.   color: #ffe4e6;
  689.   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.21), 0 4px 8px rgba(0, 0, 0, 0.3);
  690. }
  691.  
  692. .WebringTabs__button--selected .WebringTabs__button__strip {
  693.   background-color: #ffdddc;
  694.   color: #c48899;
  695. }
  696.  
  697. .WebringTabs__button__strip svg {
  698.   width: 1.5rem;
  699.   height: 1.5rem;
  700.   padding: 0.75rem;
  701.   box-sizing: content-box;
  702. }
  703.  
  704. .WebringTabs__button__strip span {
  705.   display: inline-block;
  706.   height: 3rem;
  707.   line-height: 3rem;
  708.   vertical-align: top;
  709.   padding: 0 1rem;
  710. }
  711.  
  712. .WebringTabs__button--close {
  713.   position: absolute;
  714.   bottom: 0;
  715. }
  716.  
  717. .WebringTabs__button--refresh {
  718.   position: absolute;
  719.   bottom: 3rem;
  720. }
  721.  
  722. .WebringTabs__button--refresh span {
  723.   font-size: 70%;
  724. }
  725.  
  726. @keyframes refreshloading {
  727.   from { transform: rotate(0deg); }
  728.   to { transform: rotate(360deg); }
  729. }
  730. .WebringTabs__button--refresh-loading svg {
  731.   animation: refreshloading 1s linear infinite;
  732. }
  733.  
  734. .WebringStage {
  735.   background-color: rgba(0, 0, 0, 0.3);
  736.   overflow-y: auto;
  737. }
  738.  
  739. .WebringTable {
  740.   padding: 1rem;
  741.   color: #ffdddc;
  742. }
  743.  
  744. .WebringTable a {
  745.   color: #ffe4e6;
  746.   outline: none;
  747.   text-shadow: none;
  748. }
  749.  
  750. .WebringTable a:hover {
  751.   color: #ffcccb;
  752.   text-shadow: 0 0 4px;
  753. }
  754.  
  755. .WebringTable a:active {
  756.   color: #eab5b4;
  757. }
  758.  
  759. .WebringTable__header {
  760.   text-align: center;
  761.   margin-top: 0;
  762. }
  763.  
  764. .WebringTable table {
  765.   width: 100%;
  766. }
  767.  
  768. .WebringTable td {
  769.   padding: 1px 3px;
  770. }
  771.  
  772. .WebringTable__board--samesite td:nth-child(1) {
  773.   background-color: #b3647a;
  774. }
  775.  
  776. .WebringTable__board td:nth-child(3),
  777. .WebringTable__board td:nth-child(2)
  778. {
  779.   text-overflow: ellipsis;
  780.   white-space: nowrap;
  781.   overflow: hidden;
  782.   max-width: 200px;
  783. }
  784.  
  785. .WebringTable table tr:nth-child(2n) td {
  786.   background-color: #80002c;
  787. }
  788.  
  789. .WebringTable__board--samesite td:nth-child(1) {
  790.   background-color: #b3647a !important;
  791.   font-weight: bold;
  792. }
  793.  
  794. .WebringTable__board--sameboard td {
  795.   background-color: #b3647a !important;
  796.   font-weight: bold;
  797. }
  798.  
  799. .WebringTable__board__last-activity {
  800.   text-align: center;
  801.   color: #ffe4e6;
  802. }
  803.  
  804. @media (max-width: 600px) {
  805.   .Webring {
  806.     max-width: 100%;
  807.     width: 100%;
  808.     height: 90%;
  809.   }
  810.  
  811.   .WebringTable table th:nth-child(3),
  812.   .WebringTable table th:nth-child(4),
  813.   .WebringTable table th:nth-child(5),
  814.   .WebringTable table th:nth-child(6),
  815.   .WebringTable table td:nth-child(3),
  816.   .WebringTable table td:nth-child(4),
  817.   .WebringTable table td:nth-child(5),
  818.   .WebringTable table td:nth-child(6) {
  819.     display: none;
  820.   }
  821.  
  822.   .WebringTable__board td:nth-child(2) {
  823.     max-width: 120px;
  824.   }
  825. }
  826.  
  827. /* Webring boards on the boardlist */
  828. .linkBoard[href^="http"] ~ .fa-puzzle-piece {
  829.   display: none;
  830. }
  831.  
  832. .linkBoard[href^="http"]::after {
  833.   content: "WR";
  834.  
  835.   position: relative;
  836.  
  837.   display: inline-block;
  838.   margin-left: 5px;
  839.   padding: 3px 6px;
  840.   border-radius: 5px;
  841.  
  842.   color: #ffe4e6;
  843.   background-color: #00796B;
  844.  
  845.   font-size: 0.8rem;
  846.   font-family: sans-serif;
  847.  
  848.   pointer-events: none;
  849. }
  850.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement