JovialFeline

Notice excerpt

Dec 16th, 2015
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.18 KB | None | 0 0
  1. /* Notices */
  2.  
  3. .side .md > ol:not(:first-of-type) {
  4.     position: absolute;
  5.     top: -120px;
  6.     right: 0px;
  7.     margin: 0 0 0 0;
  8.     padding: 0 0 0 0;
  9.     width: 600px;
  10.     list-style: none;
  11. }
  12.  
  13. .side .md > ol:not(:first-of-type) a {
  14.     background-color: #010713;
  15.     display: inline-block;
  16.     font-size: 12px;
  17.     font-weight: normal;
  18.     padding: 5px 0px 5px 5px;
  19.     text-decoration: none;
  20.     margin-bottom: 3px;
  21.     opacity: 0.8;
  22. }
  23.  
  24. .side .md > ol a:hover {opacity: 1}
  25. .side .md > ol a[href$='#event'] {border: 2px solid #e29b1e}
  26. .side .md > ol a[href$='#notice'] {border: 2px solid #228822}
  27. .side .md > ol a[href$='#discussion'] {border: 2px solid #101828}
  28.  
  29. .side .md > ol a[href$='#event']:after,
  30. .side .md > ol a[href$='#notice']:after,
  31. .side .md > ol a[href$='#discussion']:after {
  32.     margin: 0;
  33.     font-weight: bold;
  34.     margin-left: 5px;
  35.     padding: 6px 6px;
  36. }
  37.  
  38. .side .md > ol a[href$='#event']:after {
  39.     background-color: #e29b1e;
  40.     content: "EVENT";
  41.     color: #8e6106;
  42. }
  43. .side .md > ol a[href$='#notice']:after {
  44.     background-color: #228822;
  45.     content: "NOTICE";
  46.     color: #abeaab;
  47. }
  48. .side .md > ol a[href$='#discussion']:after {
  49.     background-color: #101828;
  50.     content: "DISCUSSION";
  51.     color: #a9bbab;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment