Guest User

Untitled

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