Advertisement
Guest User

Untitled

a guest
Oct 24th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.96 KB | None | 0 0
  1. [id^="change"]:not([class*="has-notes"]) {
  2.     visibility: hidden;
  3.     display: none;
  4. }
  5.  
  6. [id^="change"]:nth-child(2n-1) {
  7.     background: #ffd;
  8.     border-radius: 12px 6px 6px 6px;
  9. }
  10.  
  11. [id^="change"]:nth-child(2n) {
  12.     background: #efefef;
  13.     border-radius: 12px 6px 6px 6px;
  14. }
  15.  
  16. [id^="note-"] h4 a:not([class*="user"]){
  17.     color: #6c8a7c !important;
  18.     font-size: 10px;
  19. }
  20.  
  21. [id^="note-"] h4 {
  22.     color: white !important;
  23.     font-size: 0px;
  24.     padding: 8px;
  25.     border-bottom: none;
  26. }
  27.  
  28.  
  29. [id^="note-"] h4 a[class*="user"] {
  30.     color: #6c8a7c;
  31.     font-size: 16px;
  32. }
  33.  
  34. [id^="note-"] h4 a[class*="user"]:after {
  35.     content: ":"
  36. }
  37.  
  38. [id^="note-"] h4 a:nth-child(3) {
  39.     color: #6c8a7c;
  40.     padding-right: 10px;
  41.     padding-top: 3px;
  42.     float: left;
  43.     transform: rotate(355deg);
  44.     transform-origin: left top 0;
  45. }
  46.  
  47. [id*="-notes"] {
  48.     margin-top: -15px;
  49.     margin-left: 25px;
  50. }
  51.  
  52. ul.details {
  53.     visibility: hidden;
  54.     display: none;
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement