Advertisement
Guest User

Untitled

a guest
Mar 24th, 2016
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.43 KB | None | 0 0
  1. /* Let readers follow the transcript with a pointer
  2.    That should be easier to follow their cursor with */
  3. .transcript {
  4.     cursor:default;
  5.     width:75%;
  6. }
  7.  
  8. /* Remove bullets */
  9. .ns-1111 .mw-content-text ul,
  10. .transcript ul {
  11.     list-style-type:none;
  12. }
  13.  
  14. /* alignment markers */
  15. .ns-1111 .mw-content-text ul li,
  16. .transcript ul li {
  17.     border-left:1px dotted #888;
  18.     padding:20px 15px 5px 10px;
  19. }
  20.  
  21. /* First bold word should always be the character
  22.    Move and stylise it */
  23. .ns-1111 .mw-content-text ul li b:first-of-type,
  24. .transcript ul li b:first-of-type {
  25.     color:#129;
  26.     position:relative;
  27.     float:left;
  28.     /* removes the weird indent */
  29.     margin-right:-100%;
  30.     bottom:20px;
  31.     right:9px;
  32.     line-height:13px;
  33.     padding:5px 3px 0 2px;
  34.     border-bottom:1px solid;
  35. }
  36.  
  37. /* stylise hover on dialogue */
  38. .ns-1111 .mw-content-text ul li:hover,
  39. .transcript ul li:hover {
  40.     background:#CDE5F1;
  41.     outline:1px solid #888;
  42.     opacity:1.0 !important;
  43. }
  44.  
  45. .ns-1111 .mw-content-text ul li:hover li,
  46. .transcript ul li:hover li {
  47.     opacity:.7;
  48. }
  49.  
  50. /* alternating colours */
  51. /* white */
  52. .ns-1111 .mw-content-text ul li:hover li:hover,
  53. .transcript ul li:hover li:hover,
  54. .ns-1111 .mw-content-text ul li:hover li:hover li:hover li:hover,
  55. .transcript ul li:hover li:hover li:hover li:hover,
  56. .ns-1111 .mw-content-text ul li:hover li:hover li:hover li:hover li:hover li:hover,
  57. .transcript ul li:hover li:hover li:hover li:hover li:hover li:hover,
  58. .ns-1111 .mw-content-text ul li:hover li:hover li:hover li:hover li:hover li:hover li:hover li:hover,
  59. .transcript ul li:hover li:hover li:hover li:hover li:hover li:hover li:hover li:hover {
  60.     background:#FFFFFF;
  61. }
  62.  
  63. /* blue */
  64. .ns-1111 .mw-content-text ul li:hover li:hover li:hover,
  65. .transcript ul li:hover li:hover li:hover,
  66. .ns-1111 .mw-content-text ul li:hover li:hover li:hover li:hover li:hover,
  67. .transcript ul li:hover li:hover li:hover li:hover li:hover,
  68. .ns-1111 .mw-content-text ul li:hover li:hover li:hover li:hover li:hover li:hover li:hover,
  69. .transcript ul li:hover li:hover li:hover li:hover li:hover li:hover li:hover {
  70.     background:#CDE5F1;
  71. }
  72.  
  73. /* Quest actions */
  74. .quest-action {
  75.     text-align:center;
  76.     font-style:italic;
  77.     margin:0 5%;
  78. }
  79.  
  80. .quest-action:hover {
  81.     background:#DDE5F1;
  82.     outline:1px dotted;
  83. }
  84.  
  85. .quest-action:before,
  86. .quest-action:after {
  87.     content:'———';
  88.     margin:4px;
  89.     letter-spacing:-1px;
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement